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": "f47d7c10-1488-4b3c-ac69-b35ad2be9f1d",
"Name": "sample string 1",
"CompanyId": "cb77ac40-cea7-4bba-a90d-1c5ad62a265a"
}
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": "921aba30-6eaa-4951-afce-6624e16a8199",
"Name": "sample string 1",
"CompanyId": "00122cf7-38be-4ef9-8228-e4f616c6d539"
},
"Total": 1,
"Message": "sample string 1"
}