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": "645832c5-ec0b-4490-9a9e-986fefeb5943",
"Name": "sample string 1",
"CompanyId": "ee6522eb-5d5a-4a72-9af7-5bdc113d2d21"
}
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": "e847ad7c-b395-40a3-aea2-8027d43726e1",
"Name": "sample string 1",
"CompanyId": "7d12b13d-ee9c-4e4d-a6cc-d57d498e3d82"
},
"Total": 1,
"Message": "sample string 1"
}