POST api/workflow-published-versions
Request Information
URI Parameters
None.
Body Parameters
WorkflowPublishedVersionCreateDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| WorkflowProjectID | globally unique identifier |
None. |
|
| Title | string |
None. |
|
| Description | string |
None. |
|
| PublicConfigJson | string |
None. |
|
| IsEnabled | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"WorkflowProjectID": "c510b78d-4ff4-4d33-8931-e3d2b0e7f624",
"Title": "sample string 2",
"Description": "sample string 3",
"PublicConfigJson": "sample string 4",
"IsEnabled": true
}
application/xml, text/xml
Sample:
<WorkflowPublishedVersionCreateDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIProject.API.Models.DTO"> <Description>sample string 3</Description> <IsEnabled>true</IsEnabled> <PublicConfigJson>sample string 4</PublicConfigJson> <Title>sample string 2</Title> <WorkflowProjectID>c510b78d-4ff4-4d33-8931-e3d2b0e7f624</WorkflowProjectID> </WorkflowPublishedVersionCreateDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.