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": "e175ebe1-3b02-48e5-816a-a3ba8c29384f",
"Name": "sample string 1",
"CompanyId": "dc4f3e46-83b6-4ec5-ba79-97dd1f3124fc"
}
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": "13685c0e-db61-4174-9b80-22c47895b67c",
"Name": "sample string 1",
"CompanyId": "7d0057c6-6b6f-4a97-88dc-3831a7827c24"
},
"Total": 1,
"Message": "sample string 1"
}