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": "c73597fc-959b-470c-8cac-c09a7b1f0a88",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "9c39be16-64ec-49c4-be96-43bc8cd7a696",
"CreateDate": "2026-09-26T13:57:30.9866759-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-09-26T13:57:30.9866759-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": "e7d40d3c-f710-43ac-9270-0e7edb8d070f",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "381f4acf-e11e-401a-bbbe-0f6df8b4ed0f",
"CreateDate": "2026-09-26T13:57:30.9866759-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-09-26T13:57:30.9866759-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}