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": "1712fe85-cdd7-4146-ae0d-892d5f9c0bec",
"Name": "sample string 1",
"CompanyId": "4d4d52cb-d3dc-4326-9de9-40de77851675"
}
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": "4775bb47-eea9-428b-b631-efbf7f1f2b51",
"Name": "sample string 1",
"CompanyId": "edb6b2de-bb91-413d-a6dc-e4ca74dfd26a"
},
"Total": 1,
"Message": "sample string 1"
}