PUT TaskStatusTypes

Updates a task status type by its Id.

Request Information

URI Parameters

None.

Body Parameters

TaskStatusType that will be updated with given info.

TaskStatusType
NameDescriptionTypeAdditional information
TaskStatusTypeId

globally unique identifier

None.

Name

string

None.

CompanyId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "TaskStatusTypeId": "59e830f0-b041-4d94-ad5b-b74eda3b2a4d",
  "Name": "sample string 1",
  "CompanyId": "2d8c88ca-504e-4129-9b9e-1bb3c70b17b6"
}

Response Information

Resource Description

On success, the updated task status type.

NameDescriptionTypeAdditional information
Data

TaskStatusType

None.

Total

integer

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": {
    "TaskStatusTypeId": "ec4060c0-3edc-42e3-9db4-d78306cf7d65",
    "Name": "sample string 1",
    "CompanyId": "03061789-5c48-4313-af3c-a88612be7206"
  },
  "Total": 1,
  "Message": "sample string 1"
}