GET api/Processes/{id}
Get Process by Id. Supported Headers: SelectField
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Process| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| Stages | Collection of Stage |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": "10bc12cd-ffdc-4d22-9b44-966f6e535721",
"Name": "sample string 2",
"Description": "sample string 3",
"Stages": [
{
"Number": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"Probability": 4,
"ProcessId": "20b68d98-2b52-4d12-bead-4019d2a92b2e",
"ID": "4ce7bd99-bbdd-4c90-b244-a8714559fe82"
},
{
"Number": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"Probability": 4,
"ProcessId": "20b68d98-2b52-4d12-bead-4019d2a92b2e",
"ID": "4ce7bd99-bbdd-4c90-b244-a8714559fe82"
}
]
}