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": "b70cfb2d-31ae-41c9-b6f7-096c136ae33d",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "2cc9068c-05ee-431d-95aa-493d68adeec4",
"CreateDate": "2025-11-01T23:38:50.2772785-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-11-01T23:38:50.2772785-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": "88afcaf9-db5a-48b7-9e14-f3a66f747140",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "9bdc0704-c20d-450d-96e7-36396521c0ed",
"CreateDate": "2025-11-01T23:38:50.2772785-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-11-01T23:38:50.2772785-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}