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": "759a94db-70ec-4af0-8a4f-a7ea02296e46",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "fba1cc71-1c76-4f4e-8402-934829a06896",
"CreateDate": "2026-02-03T04:18:23.6658078-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-02-03T04:18:23.6658078-08: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": "5bddcb0d-8bf9-42f2-b619-064dde5784c1",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "c77d5975-0e98-4753-9d65-4aad5a6e7ea5",
"CreateDate": "2026-02-03T04:18:23.6658078-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-02-03T04:18:23.6658078-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}