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": "b16bae26-5e12-4783-b167-fd63bd18cb5a",
"Name": "sample string 1",
"CompanyId": "36ba5600-0bb4-4fc8-a96e-c0d8d067f180"
}
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": "cc4d8315-fdc1-4dde-8e5f-788d961813a8",
"Name": "sample string 1",
"CompanyId": "59426be1-1f60-416e-8f95-dda38ac53e59"
},
"Total": 1,
"Message": "sample string 1"
}