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": "8001ded4-3bbb-4c11-8bd5-ad46a3bd951a",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "66e899e5-cf6a-4a27-8bd4-10864985b18c",
"CreateDate": "2026-08-04T17:25:37.9292411-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-04T17:25:37.9292411-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": "3b9d1fd5-1178-404e-b7f9-d15b4e1ba4c8",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "dda5aa7d-10a0-4584-8f52-129c420ebb83",
"CreateDate": "2026-08-04T17:25:37.9292411-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-04T17:25:37.9292411-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}