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": "dd2a03c7-6ed9-492f-a04d-86f84feb323b",
"Name": "sample string 1",
"CompanyId": "88961092-4ea2-4685-9509-099167bdbed5"
}
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": "f2897c14-6411-4c31-a6f8-6815edbe7230",
"Name": "sample string 1",
"CompanyId": "4eaffc1a-38e6-4241-aaf9-e412863645b6"
},
"Total": 1,
"Message": "sample string 1"
}