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": "61985f93-fa54-4368-b74f-898cc6fdab98",
"Name": "sample string 1",
"CompanyId": "630441c6-3cdf-4e78-843a-fb693a6bb81f"
}
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": "01ee40f1-8e76-4b80-afd9-d473abe4b45b",
"Name": "sample string 1",
"CompanyId": "ebb56c6d-2654-442b-aa72-cb6f44f9feb8"
},
"Total": 1,
"Message": "sample string 1"
}