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": "d58c96bf-619d-41a9-b465-15e878520e2c",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "5e960220-21a3-4a39-9751-9a2d180f8ad7",
"CreateDate": "2026-06-30T11:45:38.1236577-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-30T11:45:38.1236577-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": "caf4afe6-9211-425d-9ab5-67e403c7b5e1",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "5529878c-50cd-4c4c-a326-acad50e0770f",
"CreateDate": "2026-06-30T11:45:38.1236577-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-30T11:45:38.1236577-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}