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": "7fe940a9-4fdc-4bae-80c5-c68187ef6797",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "4da17dfa-a233-4002-8019-242a404fae67",
"CreateDate": "2026-08-03T02:24:38.6930666-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-03T02:24:38.6930666-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": "0510dc28-badb-48f6-bd0e-1f0f8c8f9eac",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "2d2aee52-f9c8-4e85-95be-1bbb35fe285b",
"CreateDate": "2026-08-03T02:24:38.6930666-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-03T02:24:38.6930666-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}