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": "5ae01263-ec8e-4c7f-a7e4-a9aff577e2b4",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "6a5f4b8b-5e5e-451f-ba5d-d720be8ebead",
"CreateDate": "2026-03-09T20:15:02.2934751-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-03-09T20:15:02.2934751-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": "77d7bae5-f5b2-4a06-ab8c-56ded8e4dcfa",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "106d20ff-66c5-405b-9d9e-c400734a55d6",
"CreateDate": "2026-03-09T20:15:02.2934751-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-03-09T20:15:02.2934751-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}