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": "562abd9e-c374-4ea5-beda-61e39b42c872",
"Name": "sample string 1",
"CompanyId": "308e33d5-5e88-43d6-bf01-dcbcc9b2a633"
}
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": "44783ebe-e319-44f5-aa2d-cf444a5a986d",
"Name": "sample string 1",
"CompanyId": "2040c836-ac59-4e5c-95b7-c79795adb5a6"
},
"Total": 1,
"Message": "sample string 1"
}