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": "448b1cf3-e8ea-4dba-afac-8029ac8130e6",
"Name": "sample string 1",
"CompanyId": "e32c6b78-0c3d-4497-a067-bdb774e5598c"
}
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": "ea74b8e4-6a8f-4269-8bcf-5b9537ee9c99",
"Name": "sample string 1",
"CompanyId": "9aa03d94-02d8-460d-8955-00aa731e6b37"
},
"Total": 1,
"Message": "sample string 1"
}