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": "8f11007c-1762-4a19-b5bb-cb0ca25370d2",
"Name": "sample string 1",
"CompanyId": "05643c9e-2e95-49ef-a24c-1e0202e575f5"
}
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": "7eccdfeb-0d7b-41a7-9112-cd67b04f67ae",
"Name": "sample string 1",
"CompanyId": "c69add66-d6c5-4f15-a7f3-40d326b07ffd"
},
"Total": 1,
"Message": "sample string 1"
}