GET visual-script/{id}

Gets a script.

Request Information

URI

https://eurotherm-web-api.xaitcpq.net/visual-script/{id}

URI Parameters

NameDescriptionTypeAdditional information
id

The identifier.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

The script.

VisualScript
NameDescriptionTypeAdditional 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": "b6100098-fb54-4f32-bbe1-1e712462b816",
  "Name": "sample string 2",
  "TestProduct": "4c237962-50b2-46c3-97ba-5a2ad884c778",
  "Active": true,
  "BlocklyXML": "sample string 4",
  "Script": "sample string 5"
}

text/html

Sample:
{"Id":"b6100098-fb54-4f32-bbe1-1e712462b816","Name":"sample string 2","TestProduct":"4c237962-50b2-46c3-97ba-5a2ad884c778","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>4c237962-50b2-46c3-97ba-5a2ad884c778</TestProduct>
  <Id>b6100098-fb54-4f32-bbe1-1e712462b816</Id>
</VisualScript>