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": "0e2963d5-f0e6-4057-8bb4-0325c024fbbf",
"Name": "sample string 2",
"Description": "sample string 3",
"Stages": [
{
"Number": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"Probability": 4,
"ProcessId": "4d9ac1f1-0a16-4dee-a836-1084831cda58",
"ID": "e297f43f-8373-42f8-8f8e-70b49d493a2f"
},
{
"Number": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"Probability": 4,
"ProcessId": "4d9ac1f1-0a16-4dee-a836-1084831cda58",
"ID": "e297f43f-8373-42f8-8f8e-70b49d493a2f"
}
]
}