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": "15b45a13-e076-436c-92ff-fc862a2ce24e",
"Name": "sample string 1",
"CompanyId": "a999b2dd-23f9-40f1-a0c8-5d851edf55e3"
}
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": "bf6c4165-aa2c-4dc1-9a52-5810b28342c2",
"Name": "sample string 1",
"CompanyId": "8750a8d8-c8ec-473d-b491-103c32e7d43d"
},
"Total": 1,
"Message": "sample string 1"
}