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": "5a586f89-5519-4197-a043-9da491ab6ba5",
"Name": "sample string 1",
"CompanyId": "be703d03-4ba9-4859-8d13-ad35675bfe16"
}
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": "d7eeef0f-debf-4d4e-9c62-74bfab4dc53b",
"Name": "sample string 1",
"CompanyId": "5f95db33-72d2-4c68-90c3-9649aa3ccb3f"
},
"Total": 1,
"Message": "sample string 1"
}