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": "b62a9752-a52c-4457-8299-86a5b2513697",
  "Name": "sample string 1",
  "SourceSystemId": "sample string 2",
  "CompanyId": "cda9504f-76d6-4b20-bc41-cf15353d7885",
  "CreateDate": "2025-10-30T19:19:18.0198248-07:00",
  "CreateUser": "sample string 4",
  "LastModifiedDate": "2025-10-30T19:19:18.0198248-07: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": "2f98d73f-ba44-45f4-9b62-c85f9b48fee1",
    "Name": "sample string 1",
    "SourceSystemId": "sample string 2",
    "CompanyId": "acb439b5-4c47-477c-b2b8-5c0619efb51e",
    "CreateDate": "2025-10-30T19:19:18.0198248-07:00",
    "CreateUser": "sample string 4",
    "LastModifiedDate": "2025-10-30T19:19:18.0198248-07:00",
    "LastModifiedUser": "sample string 5"
  },
  "Total": 1,
  "Message": "sample string 1"
}