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": "98309fef-3ecf-4b49-bdbb-75a07b6f5d3c",
"Name": "sample string 1",
"CompanyId": "c986d0a8-4ee4-4408-96ae-665b5fb141aa"
}
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": "22d42844-def0-4f04-8db8-b89c5825c04e",
"Name": "sample string 1",
"CompanyId": "e74fc12f-7c88-46b5-9a23-836ad3d731df"
},
"Total": 1,
"Message": "sample string 1"
}