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": "fe3b6be7-3b78-494f-b3a7-6d3676506dd9",
"Name": "sample string 1",
"CompanyId": "a0f05f7f-72f6-42f3-ad1f-dc1efba6e2f0"
}
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": "8427fe03-18fc-4e01-96a8-6cb897a89936",
"Name": "sample string 1",
"CompanyId": "5f69f29f-807f-45e8-b19f-82f92b3ea88d"
},
"Total": 1,
"Message": "sample string 1"
}