POST api/Workflow/CreateWorkflow
Request Information
URI Parameters
None.
Body Parameters
WorkflowDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | decimal number |
None. |
|
| Origine | string |
None. |
|
| IdOrigine | decimal number |
None. |
|
| IdUser | decimal number |
None. |
|
| DateTraitement | date |
None. |
|
| Commentaire | string |
None. |
|
| Etape | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1.0,
"Origine": "sample string 2",
"IdOrigine": 1.0,
"IdUser": 1.0,
"DateTraitement": "2025-10-27T15:38:20.9395678+01:00",
"Commentaire": "sample string 3",
"Etape": "sample string 4"
}
application/xml, text/xml
Sample:
<WorkflowDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Inexa.ASO.Common.Dto.Generated"> <Commentaire>sample string 3</Commentaire> <DateTraitement>2025-10-27T15:38:20.9395678+01:00</DateTraitement> <Etape>sample string 4</Etape> <Id>1</Id> <IdOrigine>1</IdOrigine> <IdUser>1</IdUser> <Origine>sample string 2</Origine> </WorkflowDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |