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": "5eaeeaa4-ca42-4817-9851-11cb493244a4",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "b687b75f-4b64-4c5e-a33e-dcd248535922",
"CreateDate": "2026-06-02T17:40:50.4557938-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-02T17:40:50.4557938-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": "2279bb47-9713-4b89-9cad-9f3f6ee07145",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "cae11064-a4f1-4b15-8ab2-4f63ccb7c1df",
"CreateDate": "2026-06-02T17:40:50.4557938-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-02T17:40:50.4557938-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}