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": "d1b008d4-219d-4ac4-b96b-ffb29e7fefe7",
"Name": "sample string 1",
"CompanyId": "5203c4d1-816c-4983-8bb4-df439b397a34"
}
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": "d048f50d-9032-418a-bac1-ffce10de5075",
"Name": "sample string 1",
"CompanyId": "45b20443-3df8-490e-8a04-2a1ee60fbf21"
},
"Total": 1,
"Message": "sample string 1"
}