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": "0ce40ccc-cd3d-4fef-b91a-ca91dbb89ed5",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "f2378dc6-cc0f-458b-9656-658d2d1e552b",
"CreateDate": "2026-09-02T00:31:44.1281528-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-09-02T00:31:44.1281528-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": "dbf9c598-eef9-4564-b74e-039c1af02468",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "a20cb975-cfad-4146-9728-aa5274baef25",
"CreateDate": "2026-09-02T00:31:44.1281528-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-09-02T00:31:44.1281528-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}