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
ProcessName | 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": "7ca33489-4b08-40d5-828a-ebbd5f2d8197", "Name": "sample string 2", "Description": "sample string 3", "Stages": [ { "Number": 1, "Name": "sample string 2", "Description": "sample string 3", "Probability": 4, "ProcessId": "a2612a0c-8481-49ed-8af8-51ab38c4b75d", "ID": "3f5da817-92dd-4f41-97fc-0d0b2a2d92dd" }, { "Number": 1, "Name": "sample string 2", "Description": "sample string 3", "Probability": 4, "ProcessId": "a2612a0c-8481-49ed-8af8-51ab38c4b75d", "ID": "3f5da817-92dd-4f41-97fc-0d0b2a2d92dd" } ] }
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.