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": "e96432e0-b7ce-49cc-a180-911650198fc1",
"Name": "sample string 1",
"CompanyId": "4567a4ed-fbd7-45a4-8df0-0afea9c6131b"
}
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": "15de22e0-9ef6-4153-9110-239250fa90bd",
"Name": "sample string 1",
"CompanyId": "5ad9c381-f98d-456e-9438-0c9301994292"
},
"Total": 1,
"Message": "sample string 1"
}