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": "3162f0d8-5dca-434b-a5d4-d0db0d2e0960",
"Name": "sample string 2",
"Description": "sample string 3",
"Stages": [
{
"Number": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"Probability": 4,
"ProcessId": "82e8ad0b-31a5-460d-84b6-26105feae12d",
"ID": "3ff7a0d0-19bd-4ca7-907e-3d7a3c2ed2e0"
},
{
"Number": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"Probability": 4,
"ProcessId": "82e8ad0b-31a5-460d-84b6-26105feae12d",
"ID": "3ff7a0d0-19bd-4ca7-907e-3d7a3c2ed2e0"
}
]
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.