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": "23bc38bb-49ec-44f9-a3eb-3d0e751e0b67",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "27e60e22-ab12-44e1-9836-0ab90a32978d",
"CreateDate": "2025-12-10T04:59:44.7959814-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-10T04:59:44.7959814-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": "f787aa65-3828-41fd-a367-73654306a947",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "934e14bd-a9c6-4cd1-837a-7c5d39aa3ca8",
"CreateDate": "2025-12-10T04:59:44.7959814-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-10T04:59:44.7959814-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}