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": "a6ff24ec-345e-4e33-b95a-9332ecf25ed6",
"Name": "sample string 1",
"CompanyId": "e984e4e6-befd-4ee6-a58f-956a44de90dc"
}
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": "6c14a1bc-61d4-46d1-b96d-5c4333b1000e",
"Name": "sample string 1",
"CompanyId": "67a6baf5-8e22-4205-b2e7-77c678650ae4"
},
"Total": 1,
"Message": "sample string 1"
}