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": "599357a0-e33d-463c-b6e1-b96b3a701bf4",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "9a2954b0-b5f2-474d-a327-32b820a17ee4",
"CreateDate": "2026-08-12T11:14:41.7870605-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-12T11:14:41.7870605-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": "a3ee5c55-3479-4a82-9752-88b03caea9d2",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "8f7e9c90-8071-41c6-962e-cc59f11d0897",
"CreateDate": "2026-08-12T11:14:41.7870605-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-12T11:14:41.7870605-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}