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": "fb00a170-ba52-471a-b0d5-cd2427d9384f",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "d3d91f87-4437-4836-86a3-907b70f1303f",
"CreateDate": "2025-12-29T01:59:30.8540152-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-29T01:59:30.8540152-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": "fc55244f-ba23-441b-be8b-2031ba090e5a",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "eac71365-419a-4f14-a33b-55ce6b73d154",
"CreateDate": "2025-12-29T01:59:30.8540152-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-29T01:59:30.8540152-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}