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": "1cea2f79-ed12-4523-abdc-ca3df2ec69b2",
"Name": "sample string 1",
"CompanyId": "486d73ae-0bda-4990-a822-483680a76151"
}
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": "66fa549a-d6fc-4a28-955a-3482fef4dac7",
"Name": "sample string 1",
"CompanyId": "26d14e5f-c66d-4342-a440-6bfde056bf30"
},
"Total": 1,
"Message": "sample string 1"
}