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

NameDescriptionTypeAdditional information
id

Note ID

globally unique identifier

Required

Body Parameters

Serialized Process record in the body of the request

Process
NameDescriptionTypeAdditional 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": "31abdf22-8574-4a38-9018-7d155adbd7d7",
  "Name": "sample string 2",
  "Description": "sample string 3",
  "Stages": [
    {
      "Number": 1,
      "Name": "sample string 2",
      "Description": "sample string 3",
      "Probability": 4,
      "ProcessId": "029d06c6-3dcf-4419-bfa5-cc4cd6cf371c",
      "ID": "d0ef6132-b4fc-41dd-b316-ce5b817c0b29"
    },
    {
      "Number": 1,
      "Name": "sample string 2",
      "Description": "sample string 3",
      "Probability": 4,
      "ProcessId": "029d06c6-3dcf-4419-bfa5-cc4cd6cf371c",
      "ID": "d0ef6132-b4fc-41dd-b316-ce5b817c0b29"
    }
  ]
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.