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": "9e568e19-12c3-4cb2-b8b5-fba8a1eb6db2",
"Name": "sample string 1",
"CompanyId": "18d02cbd-31d5-486a-9e20-b41201864688"
}
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": "4c15955b-97c0-4cd4-bda7-c5b1759176ed",
"Name": "sample string 1",
"CompanyId": "df7f8399-2000-4398-a03f-5609c4018be7"
},
"Total": 1,
"Message": "sample string 1"
}