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": "aa8a7f0f-d989-4c8a-a2b3-5e2507e52bff",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "36228290-2b2f-4360-8b44-2300d78eebc9",
"CreateDate": "2026-02-03T04:18:22.9782491-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-02-03T04:18:22.9782491-08: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": "2e91f6a1-2f57-4300-aa67-63b229db538c",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "36637549-df33-474f-85cf-d60c3c02d82b",
"CreateDate": "2026-02-03T04:18:22.9782491-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-02-03T04:18:22.9782491-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}