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": "ad1472c7-dbf8-47a6-b909-67a05f1e02f9",
"Name": "sample string 1",
"CompanyId": "b43e5ee2-4a58-46f2-8ed6-027d15ca5b31"
}
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": "64b65d3d-cd61-4872-bcc1-aa0a45170586",
"Name": "sample string 1",
"CompanyId": "8b8afcba-2f41-4a20-9812-95d8b08d5d29"
},
"Total": 1,
"Message": "sample string 1"
}