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": "4f850095-0af1-44fb-9564-309e2dd2bbc6",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "38f76bbf-bee1-4016-bcae-e3d87a11a2d6",
"CreateDate": "2026-02-05T17:03:11.0519501-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-02-05T17:03:11.0519501-08: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": "df9c0377-afad-4086-91c9-883c53871b5a",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "25d2653a-f1b6-4413-89a7-2d4f87f24627",
"CreateDate": "2026-02-05T17:03:11.0519501-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-02-05T17:03:11.0519501-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}