GET algorithm/{id}
Gets a script.
Request Information
URI
https://mtm-api.xaitcpq.net/algorithm/{id}
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The identifier. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The script.
VisualScript| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| TestProduct | globally unique identifier |
None. |
|
| Active | boolean |
None. |
|
| BlocklyXML | string |
None. |
|
| Script | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "e9c93b11-cbdb-4ad0-9ed0-0b860e754339",
"Name": "sample string 2",
"TestProduct": "ce1ecad2-a5fa-4c9a-9244-89e25d46cd89",
"Active": true,
"BlocklyXML": "sample string 4",
"Script": "sample string 5"
}
text/html
Sample:
{"Id":"e9c93b11-cbdb-4ad0-9ed0-0b860e754339","Name":"sample string 2","TestProduct":"ce1ecad2-a5fa-4c9a-9244-89e25d46cd89","Active":true,"BlocklyXML":"sample string 4","Script":"sample string 5"}
application/xml, text/xml
Sample:
<VisualScript xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.DataModels"> <Active>true</Active> <BlocklyXML>sample string 4</BlocklyXML> <Name>sample string 2</Name> <Script>sample string 5</Script> <TestProduct>ce1ecad2-a5fa-4c9a-9244-89e25d46cd89</TestProduct> <Id>e9c93b11-cbdb-4ad0-9ed0-0b860e754339</Id> </VisualScript>