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": "a4e8c7d8-2750-445d-8fed-d0937fe40449",
"Name": "sample string 1",
"CompanyId": "94ea592b-d1ad-4bff-9d1d-ff8e25da5577"
}
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": "419c7a97-d3c0-4389-a933-91b32bb7ab8f",
"Name": "sample string 1",
"CompanyId": "70124589-11cc-4fca-afa4-e9a03f6ddbe9"
},
"Total": 1,
"Message": "sample string 1"
}