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": "d4fa2f79-a6a9-4275-b100-330c704c3b9a",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "9feb06bc-1cd7-4c9c-8f2f-1f6afe900531",
"CreateDate": "2025-11-14T23:07:08.0605331-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-11-14T23:07:08.0605331-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": "206a0787-04ac-494e-bc7a-ac5c50544104",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "469aee44-6877-46dd-b6a5-afaf2b92fad8",
"CreateDate": "2025-11-14T23:07:08.0605331-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-11-14T23:07:08.0605331-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}