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": "7a038293-b5e9-4a6f-8ea0-12449be33783",
"ID": "f721c8b7-72b9-400c-8349-6b07c98e9904"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.