GET api/WorkflowList/{id}
Fast method to get Workflow list by id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ApiWorkflowListOutput| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| outer_id | integer |
None. |
|
| id_workflow_board | integer |
None. |
|
| color | string |
None. |
|
| name | string |
None. |
|
| number | integer |
None. |
|
| is_disabled | boolean |
None. |
|
| workflow_lists | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"outer_id": 1,
"id_workflow_board": 2,
"color": "sample string 3",
"name": "sample string 4",
"number": 1,
"is_disabled": true,
"workflow_lists": {}
}
application/xml, text/xml
Sample:
<ApiWorkflowListOutput xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <id>1</id> <outer_id>1</outer_id> <id_workflow_board>2</id_workflow_board> <color>sample string 3</color> <name>sample string 4</name> <number>1</number> <is_disabled>true</is_disabled> <workflow_lists /> </ApiWorkflowListOutput>