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": "16c67bff-0825-437d-8428-6fc1c0540ad8",
"Name": "sample string 1",
"CompanyId": "4c16334d-a782-4eb2-8dc6-d885ea892c7d"
}
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": "143a13db-b56d-48a9-8c3b-76a6da5d3732",
"Name": "sample string 1",
"CompanyId": "16167c67-dc23-4e49-828c-ee71fd707a55"
},
"Total": 1,
"Message": "sample string 1"
}