POST NoteCategories
Creates a new note category.
Request Information
URI Parameters
None.
Body Parameters
The note category to create. NoteCategoryId should not be filled in.
NoteCategory| Name | Description | Type | Additional information |
|---|---|---|---|
| NoteCategoryId | 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:
{
"NoteCategoryId": "4d4b6c93-a2d2-4498-8f16-5eaf60cc89e7",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "dcd45ed1-864e-4137-8d78-5c714e47acda",
"CreateDate": "2026-09-19T05:14:47.0199396-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-09-19T05:14:47.0199396-07:00",
"LastModifiedUser": "sample string 5"
}
Response Information
Resource Description
On success, the created note category.
| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | NoteCategory |
None. |
|
| Total | integer |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"NoteCategoryId": "99e84607-fe7e-498f-b4c8-29fa5c1d0725",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "85f13a98-ed15-41ed-afdc-9f7a9cff6a8e",
"CreateDate": "2026-09-19T05:14:47.0199396-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-09-19T05:14:47.0199396-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}