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": "eb15db74-b398-4314-a939-2e10ee0d8114",
"Name": "sample string 1",
"CompanyId": "2bee3772-5c8c-42cf-a27d-9a2ed49b7643"
}
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": "7d6e7f05-4074-482a-ac22-7b69b90efaef",
"Name": "sample string 1",
"CompanyId": "6b56bca0-f7ad-4dee-b64a-2f6ded5202ba"
},
"Total": 1,
"Message": "sample string 1"
}