PUT algorithm/{id}
Saves a script.
Request Information
URI
https://scoregroup-uat-api.xaitcpq.net/algorithm/{id}
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The identifier. |
globally unique identifier |
Required |
Body Parameters
The visual script.
VisualScriptEdit| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| TestProduct | globally unique identifier |
None. |
|
| Active | boolean |
None. |
|
| BlocklyXML | string |
None. |
|
| Script | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"TestProduct": "f6d3fed4-4c16-4857-9e81-c74d2974ddb0",
"Active": true,
"BlocklyXML": "sample string 3",
"Script": "sample string 4"
}
text/html
Sample:
{"Name":"sample string 1","TestProduct":"f6d3fed4-4c16-4857-9e81-c74d2974ddb0","Active":true,"BlocklyXML":"sample string 3","Script":"sample string 4"}
application/xml, text/xml
Sample:
<VisualScriptEdit 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 3</BlocklyXML> <Name>sample string 1</Name> <Script>sample string 4</Script> <TestProduct>f6d3fed4-4c16-4857-9e81-c74d2974ddb0</TestProduct> </VisualScriptEdit>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
A VisualScript.
globally unique identifierResponse Formats
application/json, text/json, text/html
Sample:
"b709cc46-a21e-443a-84db-9e9eea27a48e"
application/xml, text/xml
Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">b709cc46-a21e-443a-84db-9e9eea27a48e</guid>