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": "160a0b30-73a8-47d3-afed-97746b0da24f",
  "Name": "sample string 1",
  "SourceSystemId": "sample string 2",
  "CompanyId": "8a61245d-be3b-4c19-a265-0a89192734c6",
  "CreateDate": "2025-10-31T00:31:05.467556-07:00",
  "CreateUser": "sample string 4",
  "LastModifiedDate": "2025-10-31T00:31:05.467556-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": "8aa5760f-2b15-4b66-ad7e-f1f1d4437edc",
    "Name": "sample string 1",
    "SourceSystemId": "sample string 2",
    "CompanyId": "d1ac87c4-e4ce-4cfc-a0c7-7992a2555a71",
    "CreateDate": "2025-10-31T00:31:05.467556-07:00",
    "CreateUser": "sample string 4",
    "LastModifiedDate": "2025-10-31T00:31:05.467556-07:00",
    "LastModifiedUser": "sample string 5"
  },
  "Total": 1,
  "Message": "sample string 1"
}