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": "7550d47f-a3e9-48f3-a6be-3f3c3ad61cbf",
"Name": "sample string 1",
"CompanyId": "0567ff12-fb86-4a9b-b5cd-02e319eae2c5"
}
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": "86a80aaa-f0eb-488d-a54b-d074609efd06",
"Name": "sample string 1",
"CompanyId": "10f5e982-6e84-420a-ab3c-5192a8b62ac8"
},
"Total": 1,
"Message": "sample string 1"
}