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": "380ab51c-74fe-45f9-b263-8e527a108223",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "edc8435f-7206-45cf-89c3-cb22bc2deb9a",
"CreateDate": "2026-06-27T08:12:53.6545623-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-27T08:12:53.6545623-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": "80d77fcc-305e-4314-b91d-c1c23ccac30b",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "e224a541-7faa-45b2-908a-c258468de1fe",
"CreateDate": "2026-06-27T08:12:53.6545623-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-27T08:12:53.6545623-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}