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": "6e0b3382-1631-47a4-91b1-744baeddf40e",
"Name": "sample string 1",
"CompanyId": "8326b725-e07a-40ca-a311-3b708be181fd"
}
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": "c708addc-82f9-45e2-8d89-7763a25899ef",
"Name": "sample string 1",
"CompanyId": "190caee1-2389-4f7b-b128-5f1082f6c0f4"
},
"Total": 1,
"Message": "sample string 1"
}