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": "f2ad4568-b7a3-4fa2-90c7-b8520e6bc889",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "17ee0def-828d-467a-b8fa-bf4aecfa7123",
"CreateDate": "2025-11-26T21:52:56.2363868-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-11-26T21:52:56.2363868-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": "d3545ce3-4b82-4633-8c8d-79a71d8e561d",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "38e177ab-f745-4bcc-89ea-a4fa3958028c",
"CreateDate": "2025-11-26T21:52:56.2363868-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-11-26T21:52:56.2363868-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}