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

NameDescriptionTypeAdditional information
id

Note ID

globally unique identifier

Required

Body Parameters

Serialized Stage record in the body of the request

Stage
NameDescriptionTypeAdditional 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": "10ea6e39-bb32-46eb-b360-b16d21bb545e",
  "ID": "1b115dd5-fc76-44ca-ab06-d3a7b48787e6"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.