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": "e1ad7bd3-9750-431a-96f7-29a24c2695c8",
"Name": "sample string 1",
"CompanyId": "a1956326-8abf-4f57-aa3d-2ec738fca22f"
}
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": "87fad2c3-6762-4124-991a-078591c6af19",
"Name": "sample string 1",
"CompanyId": "815dd3a3-d59e-400e-9ec9-30afe7f3de87"
},
"Total": 1,
"Message": "sample string 1"
}