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": "c7b0040c-555e-4ede-8d8e-1ea0cae2ba64",
"Name": "sample string 1",
"CompanyId": "86755053-c511-49cd-ae1c-49831299a68e"
}
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": "6ee4b406-c15e-4f78-8140-11184cf8c67d",
"Name": "sample string 1",
"CompanyId": "823660ea-abab-4112-b695-0210bd40a976"
},
"Total": 1,
"Message": "sample string 1"
}