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": "4eedb48e-a628-4c11-b57b-611ceb13339d",
"Name": "sample string 1",
"CompanyId": "9e65fe4d-f970-4b97-a340-8d08c977c3fa"
}
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": "7e137d7d-5682-40c9-83a8-6b70da7653d4",
"Name": "sample string 1",
"CompanyId": "09d14e1e-831a-4ce7-8778-84a61ffc22bb"
},
"Total": 1,
"Message": "sample string 1"
}