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": "962a95a5-51b1-4ddd-a582-e06deee90532",
"Name": "sample string 1",
"CompanyId": "290a61a5-5a1c-4f8a-a760-d646ef407a12"
}
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": "b57e7099-4b34-4d4b-89e8-f007d9b1c6c0",
"Name": "sample string 1",
"CompanyId": "871837e6-7a99-40e1-9192-1487c55ae246"
},
"Total": 1,
"Message": "sample string 1"
}