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": "7583d15f-2c1a-4967-b050-6828796260e7",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "75dd8629-e3f8-42e9-9429-aaf8a1631b7c",
"CreateDate": "2026-08-16T07:35:25.5399892-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-16T07:35:25.5399892-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": "38cae87e-c9b6-4891-820f-9cbe02fe25f4",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "40eadfea-6e37-428f-9efa-823e73a3c4f6",
"CreateDate": "2026-08-16T07:35:25.5399892-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-16T07:35:25.5399892-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}