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": "7f37decb-b6bb-44c5-9953-0e26043694d1",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "b889eb7f-79dc-4990-b212-c9d2644bc91f",
"CreateDate": "2026-08-23T08:28:01.3951226-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-23T08:28:01.3951226-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": "d2887beb-65de-416d-8e6b-90d43be14f32",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "4a90369b-20c3-47a2-b220-554aad165221",
"CreateDate": "2026-08-23T08:28:01.3951226-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-23T08:28:01.3951226-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}