PUT TaskCategories
Updates the given task category.
Request Information
URI Parameters
None.
Body Parameters
Task category to update
TaskCategory| Name | Description | Type | Additional information |
|---|---|---|---|
| TaskCategoryId | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| SourceSystemId | string |
None. |
|
| CompanyId | globally unique identifier |
None. |
|
| CreateDate | date |
None. |
|
| CreateUser | string |
None. |
|
| LastModifiedDate | date |
None. |
|
| LastModifiedUser | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"TaskCategoryId": "9999a2a4-fa67-429d-a255-01d900be6059",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "2b385c28-e367-4ee9-b04d-2ca256ec9391",
"CreateDate": "2025-12-05T06:20:52.61243-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-05T06:20:52.61243-08:00",
"LastModifiedUser": "sample string 5"
}
Response Information
Resource Description
On success, the updated task category.
| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | TaskCategory |
None. |
|
| Total | integer |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"TaskCategoryId": "86485ee7-55ce-4ccb-a1f2-613fd77d34ea",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "d40dd7b8-3ec1-4484-9820-661b54515f9f",
"CreateDate": "2025-12-05T06:20:52.61243-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-05T06:20:52.61243-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}