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": "3b178f28-76eb-4041-9ce9-89457aaf2e93",
"Name": "sample string 1",
"CompanyId": "e769eabb-f1a7-4d9b-a254-7a985a887ade"
}
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": "fb0d8753-4a48-4ce8-887d-6ccf1c33ba3e",
"Name": "sample string 1",
"CompanyId": "a380d4c9-20d4-4281-abc9-cd7228f90cb1"
},
"Total": 1,
"Message": "sample string 1"
}