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": "2768933f-30eb-4125-9b74-a3179d851ea7",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "bd6d3508-9b9b-4ba5-802b-9c8023d6cef1",
"CreateDate": "2026-06-22T01:38:46.8397363-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-22T01:38:46.8397363-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": "195189bd-118d-400f-9f1c-61b5114ca97a",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "cbaee0a0-f6b0-4553-9fe5-eba0ae24f37c",
"CreateDate": "2026-06-22T01:38:46.8397363-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-22T01:38:46.8397363-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}