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": "b3d0faef-c7e9-4c8c-80d1-6aeef4f46a79",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "a2dcb150-28bd-45a8-bd8c-50444d4c57f5",
"CreateDate": "2026-06-10T08:24:25.8717854-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-10T08:24:25.8717854-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": "ee0621e5-fb6e-4547-8c9a-710a0b3eb2d3",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "a6a0adcb-74e4-4558-80b6-5d932225b1f7",
"CreateDate": "2026-06-10T08:24:25.8717854-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-10T08:24:25.8717854-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}