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": "97ea871c-58bd-4024-8051-386cdd0d1737",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "e37cb2f4-d549-4647-bbc4-cea0ccdd1967",
"CreateDate": "2026-04-30T15:58:11.9682995-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-04-30T15:58:11.9682995-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": "803d6252-9398-49e5-963c-46a372666694",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "212f29b1-aa26-40fe-8150-772d060e368a",
"CreateDate": "2026-04-30T15:58:11.9839203-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-04-30T15:58:11.9839203-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}