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": "c06a3944-ee58-43f8-8e82-b0cd3b4e6f66",
"Name": "sample string 1",
"CompanyId": "02f6dc3e-1faa-4380-88e1-f41ffae7e74c"
}
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": "4498fc80-9d68-4481-b5bb-11502cfc5063",
"Name": "sample string 1",
"CompanyId": "48ad9381-c80e-46ea-a035-e180a799aa8a"
},
"Total": 1,
"Message": "sample string 1"
}