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": "96c7228c-e1bc-4e70-89a4-6b2b4dfc8ac8",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "d50acaba-7aa7-46a0-8a1a-1c579b39a408",
"CreateDate": "2026-07-21T00:22:07.6161713-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-07-21T00:22:07.6161713-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": "62e98f25-cd13-43ef-84fe-90397f4e2063",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "22dd04ac-7bbc-42fa-8a33-29910e09159c",
"CreateDate": "2026-07-21T00:22:07.6161713-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-07-21T00:22:07.6161713-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}