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": "a0d35f50-f4e6-47e9-b385-17468b241693",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "e4619434-c7b8-4489-a7ea-f7e1d457d21b",
"CreateDate": "2026-05-13T17:38:14.71062-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-05-13T17:38:14.71062-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": "372519bb-7f39-4dbd-a6e4-ea4b6e85d0b7",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "0b1cdb07-b7b6-4fca-b12c-7379b0841ebe",
"CreateDate": "2026-05-13T17:38:14.71062-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-05-13T17:38:14.71062-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}