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": "14e00f08-96a3-4c15-89b1-c8347f84c2d2",
"Name": "sample string 2",
"Description": "sample string 3",
"Stages": [
{
"Number": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"Probability": 4,
"ProcessId": "d7740b4d-1a5f-44db-85c2-538b1596ea23",
"ID": "632ad6f1-bbc4-4c59-925c-9eaf0ec415c5"
},
{
"Number": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"Probability": 4,
"ProcessId": "d7740b4d-1a5f-44db-85c2-538b1596ea23",
"ID": "632ad6f1-bbc4-4c59-925c-9eaf0ec415c5"
}
]
}