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": "53096f6c-9d6e-4053-a692-4cb24bd4fa4b", "Name": "sample string 2", "Description": "sample string 3", "Stages": [ { "Number": 1, "Name": "sample string 2", "Description": "sample string 3", "Probability": 4, "ProcessId": "d378d7f6-2b68-44a1-b646-c1241c280c2d", "ID": "439d7c10-a8c1-4522-b41f-82846719b8cc" }, { "Number": 1, "Name": "sample string 2", "Description": "sample string 3", "Probability": 4, "ProcessId": "d378d7f6-2b68-44a1-b646-c1241c280c2d", "ID": "439d7c10-a8c1-4522-b41f-82846719b8cc" } ] }
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.