PUT api/Stages/{id}
Update an existing Stage. This is not a partial update therefore, please pass in the full Stage 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 Stage record in the body of the request
Stage| Name | Description | Type | Additional information |
|---|---|---|---|
| Number | integer |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| Probability | integer |
None. |
|
| ProcessId | globally unique identifier |
None. |
|
| ID | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"Number": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"Probability": 4,
"ProcessId": "a3308c18-76ac-465f-bdfb-9293edf0dbb0",
"ID": "b380b836-8a81-4ca4-af0a-2cf5b9c82f8d"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.