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": "234052dc-9958-4ce1-a8d2-5ae37044614f",
"Name": "sample string 1",
"CompanyId": "c4c7a2d7-8a9e-4635-abad-ac5388fe5857"
}
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": "6aef00eb-c532-4805-b848-599f1f59424a",
"Name": "sample string 1",
"CompanyId": "e487e505-fcc6-4356-9a6a-2ac4c944766d"
},
"Total": 1,
"Message": "sample string 1"
}