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": "5a0543fc-ac7f-43fa-a391-d595b0433536",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "98b3e724-9995-41b2-95df-d0525aa3b458",
"CreateDate": "2026-08-23T23:58:00.8457603-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-23T23:58:00.8457603-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": "d7040f7f-ea50-46dd-91b4-078edde4ce4f",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "04bd4b85-1b87-44e1-9fb2-d4da17e0cdc0",
"CreateDate": "2026-08-23T23:58:00.8457603-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-23T23:58:00.8457603-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}