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": "09581418-2dff-4496-8ee2-25a9a0862a49",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "e53e23a9-2a3a-46bb-8890-7d41b7c4d149",
"CreateDate": "2026-06-28T09:39:27.443131-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-28T09:39:27.443131-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": "dc1b56cf-c39d-42fe-a4c9-bb0cd4d31b7e",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "52424456-5157-43d1-a82f-802f5ddc2deb",
"CreateDate": "2026-06-28T09:39:27.443131-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-28T09:39:27.443131-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}