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": "72149ec3-7736-4cc3-8ca3-ac5f5f251b47",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "b0db28b3-a81f-4af3-bc9f-2b2779372bb2",
"CreateDate": "2026-06-17T17:25:16.8559063-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-17T17:25:16.8559063-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": "dee106f6-bb96-446e-a2fe-d0e93c6a1f44",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "525589b9-7efa-4e72-bed5-234b53f2b638",
"CreateDate": "2026-06-17T17:25:16.8559063-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-17T17:25:16.8559063-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}