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": "98cd064e-9090-42b4-b259-ef26ccf56a4d",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "d43fb060-e649-4b42-a974-960dee21d7df",
"CreateDate": "2026-09-26T13:57:34.9085747-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-09-26T13:57:34.9085747-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": "ad4a81f4-df1b-445c-9ef9-a9d3e9a859df",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "8140b0e6-aebc-47ac-bd55-f6d0d038ad89",
"CreateDate": "2026-09-26T13:57:34.9085747-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-09-26T13:57:34.9085747-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}