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": "769de2cc-e169-4c1d-a936-0e58bc03c8db",
"Name": "sample string 1",
"CompanyId": "6c96a7ec-cce4-485f-a8b8-9a56990eb894"
}
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": "61647a84-ec4a-42a7-94b7-d36774590396",
"Name": "sample string 1",
"CompanyId": "793b2bb1-cdb6-42a5-8319-79307a8941ae"
},
"Total": 1,
"Message": "sample string 1"
}