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": "53c330e3-f642-4984-ad68-3daca5fa9cc5",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "6ad910fd-1071-4247-9a26-efbe974983e4",
"CreateDate": "2026-03-24T04:14:00.6730892-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-03-24T04:14:00.6730892-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": "3bbb992e-cb0b-457f-ba98-8a6749907537",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "5fe9c8af-2f35-406b-bb03-bfa86974abda",
"CreateDate": "2026-03-24T04:14:00.6730892-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-03-24T04:14:00.6730892-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}