POST LegacyProcess/CreateAutomatedBlenderFileFromBlend
Creates a Legacy Process record for processing in the local network
Request Information
URI Parameters
Body Parameters
The Blend Ticket GUID to create the automated blender file from.
CreateAutomatedBlenderFileFromBlendRequestName | Description | Type | Additional Information |
---|---|---|---|
BlendTicketGUID |
The GUID of the blend ticket from which the automated blender file will be created |
globally unique identifier |
Required |
Request Formats
application/json, text/json
{ "BlendTicketGUID": "b7e7b48a-b00c-4c5b-b5fd-a54e1b01ccaf" }
application/x-www-form-urlencoded
Response Information
Resource Description
Creates a Legacy Process record for processing in the local network
AgvLegacyProcessName | Description | Type | Additional Information |
---|---|---|---|
Status |
0 = Success. 1 = An error occurred. 2 = An error occurred. 3 = Descriptive message, process was successful. |
string | |
Message |
Informational message that corresponds to the Status returned. 0 - Message will be "OK". 1 - Detailed message returned to give user an indication of what went wrong. 2 - Less Detailed message returned that may not mean anything to the user but that the application might use to take a corrective action. 3 - Not an error but something the user might need to know. |
string | |
ErrorList |
List of error messages of the API call. |
Collection of string | |
WarningList |
List of warning messages of the API call. |
Collection of string | |
Count |
Number of results returned. |
string | |
LegacyProcessRecords |
List of Properties and Values returned for each legacy process record that matches the request. |
Collection of ClsSkyLegacyProcess |
Response Formats
application/json, text/json
{ "Status": "sample string 1", "Message": "sample string 2", "ErrorList": [ "sample string 1", "sample string 2" ], "WarningList": [ "sample string 1", "sample string 2" ], "Count": "2", "LegacyProcessRecords": [ { "LegacyProcessGUID": "8bc5f83a-0239-45fb-8b57-02be2b5d969c" }, { "LegacyProcessGUID": "8bc5f83a-0239-45fb-8b57-02be2b5d969c" } ] }
application/xml, text/xml
<AgvLegacyProcess xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.LegacyProcess"> <ErrorList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </ErrorList> <LegacyProcessRecords xmlns:d2p1="http://schemas.datacontract.org/2004/07/SKY.Core.LegacyProcess"> <d2p1:LegacyProcess> <d2p1:LegacyProcessGUID>8bc5f83a-0239-45fb-8b57-02be2b5d969c</d2p1:LegacyProcessGUID> </d2p1:LegacyProcess> <d2p1:LegacyProcess> <d2p1:LegacyProcessGUID>8bc5f83a-0239-45fb-8b57-02be2b5d969c</d2p1:LegacyProcessGUID> </d2p1:LegacyProcess> </LegacyProcessRecords> <Message>sample string 2</Message> <Status>sample string 1</Status> <WarningList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </WarningList> </AgvLegacyProcess>