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": "398011f6-5da6-4fe2-a722-38bc886a484f",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "c51a726a-ded8-429d-a3e4-7d812dac5bd8",
"CreateDate": "2026-08-16T07:35:27.0399917-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-16T07:35:27.0399917-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": "828c9481-cc47-4fb1-80d0-5cb535b6c960",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "205ebb10-1e0b-48c5-9c90-df6b12b66b96",
"CreateDate": "2026-08-16T07:35:27.0399917-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-16T07:35:27.0399917-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}