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": "80e84822-ddea-4892-9d3c-0c28313422fb",
"Name": "sample string 1",
"CompanyId": "ddf740f3-b220-4021-852b-eb1c2806284b"
}
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": "e9b8831b-5a2c-44c7-ae58-c0200da8d811",
"Name": "sample string 1",
"CompanyId": "4c8aa146-0f42-4a18-84ae-f835ae1108a8"
},
"Total": 1,
"Message": "sample string 1"
}