POST api/workflow-product-releases
Request Information
URI Parameters
None.
Body Parameters
WorkflowProductReleaseCreateDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ProductID | globally unique identifier |
None. |
|
| WorkflowPublishedVersionID | globally unique identifier |
None. |
|
| Title | string |
None. |
|
| Description | string |
None. |
|
| PriceSnapshot | decimal number |
None. |
|
| IsCurrent | boolean |
None. |
|
| IsEnabled | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProductID": "fdfd6b91-12e2-463c-adc8-712437a74349",
"WorkflowPublishedVersionID": "587a8e78-a796-49db-bbf5-fbc0c5602bd5",
"Title": "sample string 3",
"Description": "sample string 4",
"PriceSnapshot": 1.0,
"IsCurrent": true,
"IsEnabled": true
}
application/xml, text/xml
Sample:
<WorkflowProductReleaseCreateDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIProject.API.Models.DTO"> <Description>sample string 4</Description> <IsCurrent>true</IsCurrent> <IsEnabled>true</IsEnabled> <PriceSnapshot>1</PriceSnapshot> <ProductID>fdfd6b91-12e2-463c-adc8-712437a74349</ProductID> <Title>sample string 3</Title> <WorkflowPublishedVersionID>587a8e78-a796-49db-bbf5-fbc0c5602bd5</WorkflowPublishedVersionID> </WorkflowProductReleaseCreateDTO>
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.