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": "fe0a3555-886a-4c31-b53b-e134fbd5452b",
"Name": "sample string 1",
"CompanyId": "e7a4efde-1e4d-4bfd-bf70-5f84d5eb505d"
}
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": "49452871-e0bf-40c0-9d30-3e2f0d4a7d73",
"Name": "sample string 1",
"CompanyId": "d3cd1097-67cc-46c0-8d22-801533c42288"
},
"Total": 1,
"Message": "sample string 1"
}