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": "edfba0be-3787-4d3b-9aff-1e24bde4d506",
"Name": "sample string 1",
"CompanyId": "4769beff-cc55-4909-a42c-1a56feb0aff7"
}
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": "bb6e6495-7cd2-4d79-b603-6585c46b1008",
"Name": "sample string 1",
"CompanyId": "6b74e7da-e554-4298-8647-ec09bf48999d"
},
"Total": 1,
"Message": "sample string 1"
}