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": "8127d0e7-d171-415b-bcf4-be9ef43a902b",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "98e6c64f-dcc4-476f-812b-7216c5948db2",
"CreateDate": "2026-06-13T11:28:02.6173253-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-13T11:28:02.6173253-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": "84f3caf5-c250-4c6f-812b-307b5855210b",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "d9244c50-6b3c-4e0f-889f-2a75bca98b28",
"CreateDate": "2026-06-13T11:28:02.6173253-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-13T11:28:02.6173253-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}