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": "8059fed7-1c56-43ac-a3d7-6bbef798d1e7",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "19bd7a24-b615-4a63-af6e-500dff0ad1a4",
"CreateDate": "2026-07-13T23:54:56.5932156-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-07-13T23:54:56.5932156-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": "c45b842a-11e9-435b-a996-a0fbc9c241a9",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "477cd6ae-3da4-489b-87ce-7f7239f0867b",
"CreateDate": "2026-07-13T23:54:56.5932156-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-07-13T23:54:56.5932156-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}