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": "fd2eef42-fa1c-4248-b461-63da18768986",
"Name": "sample string 1",
"CompanyId": "ddf02a73-1590-48fb-a798-2e5c14026ea5"
}
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": "d294a73d-dc3a-4c84-82d6-393e3458773f",
"Name": "sample string 1",
"CompanyId": "5a8708f1-4946-4702-910d-45a8131b1789"
},
"Total": 1,
"Message": "sample string 1"
}