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": "d217494c-5673-40f5-bece-32ca20d56f75",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "464194c6-a1b7-412f-9714-5826a4e53bef",
"CreateDate": "2026-05-12T17:05:39.1002715-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-05-12T17:05:39.1002715-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": "3130ff96-6695-41a1-adb5-44fc2730d44d",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "2b0b1a82-b456-4d11-bc0c-49fbc5a42441",
"CreateDate": "2026-05-12T17:05:39.1002715-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-05-12T17:05:39.1002715-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}