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": "e1f883b8-cd32-44e8-89d8-93e42cb3b80e",
"Name": "sample string 1",
"CompanyId": "0f3cc2df-2dfd-4136-a6b9-4ee89070b0c9"
}
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": "9ffa24ac-f07f-4fee-97c9-329564cb6980",
"Name": "sample string 1",
"CompanyId": "f7925495-1a86-4c9e-9dd3-e9b44d24b95b"
},
"Total": 1,
"Message": "sample string 1"
}