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": "87daaec5-d02c-4802-9ae4-3682d7ddfe6e",
"Name": "sample string 1",
"CompanyId": "49465e3b-cb1b-4173-ad05-54cf9e97e683"
}
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": "c560ee98-11d5-4553-ab23-daa0260098db",
"Name": "sample string 1",
"CompanyId": "631892c4-2304-4aad-bcf9-ca94fcbc5041"
},
"Total": 1,
"Message": "sample string 1"
}