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": "90446fa5-e085-4938-9b8b-25f280d0af2c",
"Name": "sample string 1",
"CompanyId": "1117d975-2376-40f3-a5f9-ebd03d3b1553"
}
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": "1427b40b-b972-4b6a-8be8-db4a2d55ec83",
"Name": "sample string 1",
"CompanyId": "d43c3c56-a8cb-4320-ab87-af4ee3580307"
},
"Total": 1,
"Message": "sample string 1"
}