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| Name | Description | Type | Additional information | 
|---|---|---|---|
| TaskStatusTypeId | globally unique identifier | None. | |
| Name | string | None. | |
| CompanyId | globally unique identifier | None. | 
Request Formats
application/json, text/json
            Sample:
{
  "TaskStatusTypeId": "8485384a-f791-4ee9-a2c0-0ece794667db",
  "Name": "sample string 1",
  "CompanyId": "7a5f4f6b-6725-4be1-9401-b98e70b685e1"
}
        Response Information
Resource Description
On success, the updated task status type.
| Name | Description | Type | Additional information | 
|---|---|---|---|
| Data | TaskStatusType | None. | |
| Total | integer | None. | |
| Message | string | None. | 
Response Formats
application/json, text/json
            Sample:
{
  "Data": {
    "TaskStatusTypeId": "9f65501a-d573-4142-9cd6-0a2d4807a52b",
    "Name": "sample string 1",
    "CompanyId": "63bdcf24-2f56-4399-91d6-fd341dbf904a"
  },
  "Total": 1,
  "Message": "sample string 1"
}