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": "2575084c-f296-497e-990a-f76d4c022aee",
"Name": "sample string 1",
"CompanyId": "1e053ec0-628f-47e9-b562-4645ee472df8"
}
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": "e090c141-9ddf-46cf-8cdd-81cc332b6b40",
"Name": "sample string 1",
"CompanyId": "c1b7f991-4eb2-4eb0-b36e-70b4dee6098d"
},
"Total": 1,
"Message": "sample string 1"
}