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": "4b0313ae-bebc-4b65-8bea-cd10b6009f39",
"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>4b0313ae-bebc-4b65-8bea-cd10b6009f39</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.