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": "28c99161-91b2-4785-a0e1-d18f02c2705d",
"Name": "sample string 1",
"CompanyId": "72b0335a-b0c2-4e47-90dc-acff5f3a4c88"
}
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": "9ca4dea5-36d6-41de-a5f1-f761acdf34f6",
"Name": "sample string 1",
"CompanyId": "de4bb2f3-ea69-4ff2-a28f-05a09b7d6ee3"
},
"Total": 1,
"Message": "sample string 1"
}