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": "37ee6110-0d6d-4935-8db4-c14c9e5cc320",
"Name": "sample string 1",
"CompanyId": "d6082ae3-5220-4113-af51-d6f5b1bdf54d"
}
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": "999075f6-2bdb-4d1d-b3e8-be9c6d73dc00",
"Name": "sample string 1",
"CompanyId": "c78761dc-c450-4b23-aef1-697e9a57ce23"
},
"Total": 1,
"Message": "sample string 1"
}