POST TaskCategories
Creates a new task category.
Request Information
URI Parameters
None.
Body Parameters
The task category to create. TaskCategoryId should not be filled in.
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": "3ee3b1de-378d-4b4c-bb03-adb3b7deca2a",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "a2ec1fff-c47e-4355-8bed-a581abdfbf89",
"CreateDate": "2026-06-13T17:43:12.8478666-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-13T17:43:12.8478666-07:00",
"LastModifiedUser": "sample string 5"
}
Response Information
Resource Description
On success, the created 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": "ab9a055b-f3dd-44dd-abc5-7b01456e164c",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "bd00c1f5-3fb6-4cd1-b99e-b8f8474a58bf",
"CreateDate": "2026-06-13T17:43:12.8478666-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-13T17:43:12.8478666-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}