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": "ac2b3bff-1b1d-4b47-8b88-89d6f3d5114f",
"Name": "sample string 1",
"CompanyId": "335d21d4-b9f1-432b-96dd-04a60bdde470"
}
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": "05850920-209e-41ba-a923-c550bf447224",
"Name": "sample string 1",
"CompanyId": "6eb58f3e-f226-4cca-9cde-ec8790b62edb"
},
"Total": 1,
"Message": "sample string 1"
}