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": "22af1991-19f8-42a9-a021-155eda2af755",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "f091fd5f-b00f-409d-bfb8-da49b688f44d",
"CreateDate": "2026-04-14T09:13:56.9829394-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-04-14T09:13:56.9829394-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": "58cf3d88-9b7b-4097-988b-0684b83d0826",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "5bdb4bed-add1-4443-97f3-d304ba5b16d5",
"CreateDate": "2026-04-14T09:13:56.9829394-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-04-14T09:13:56.9829394-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}