PUT api/Processes/{id}
Update an existing Process. This is not a partial update therefore, please pass in the full Process object to your request. For partial updates, use the PATCH endpoint
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Note ID |
globally unique identifier |
Required |
Body Parameters
Serialized Process record in the body of the request
Process| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| Stages | Collection of Stage |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": "9c577d9d-fe9f-499b-b42f-40238eca0624",
"Name": "sample string 2",
"Description": "sample string 3",
"Stages": [
{
"Number": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"Probability": 4,
"ProcessId": "7d815924-65e0-4145-9d56-46e1fa7705d4",
"ID": "79c52e38-6705-41f5-a2a4-cd3dbef5bf12"
},
{
"Number": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"Probability": 4,
"ProcessId": "7d815924-65e0-4145-9d56-46e1fa7705d4",
"ID": "79c52e38-6705-41f5-a2a4-cd3dbef5bf12"
}
]
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.