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": "b047d6da-42ae-4061-afc8-a1649bbfae1e",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "8b38fbc3-68b2-482d-92e0-2172116848bc",
"CreateDate": "2025-12-01T03:54:26.3459968-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-01T03:54:26.3459968-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": "99c87314-f4b6-4ac2-85d1-98754bd624e0",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "829ba5fe-0771-4c52-bd33-8e614bdd8dcb",
"CreateDate": "2025-12-01T03:54:26.3616324-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-01T03:54:26.3616324-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}