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": "4df8824f-a716-4249-bdfb-d75f218f073b",
"Name": "sample string 2",
"Description": "sample string 3",
"Stages": [
{
"Number": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"Probability": 4,
"ProcessId": "e0772b82-c1a4-44e6-abf5-9ac0fdfc7d37",
"ID": "b031b0ed-4e73-4517-821e-c51431b4197d"
},
{
"Number": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"Probability": 4,
"ProcessId": "e0772b82-c1a4-44e6-abf5-9ac0fdfc7d37",
"ID": "b031b0ed-4e73-4517-821e-c51431b4197d"
}
]
}