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": "8ea8cf38-81a3-4c50-9824-c523dd15c330",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "ad60c0a5-0eb5-4da0-80a0-eaa51431a1f6",
"CreateDate": "2025-12-10T04:59:42.2841189-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-10T04:59:42.2841189-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": "f82c5e7f-f3fc-46c4-80d0-a3ef84ec8d7e",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "970693ff-9c31-4db4-99a7-076e28cd5b16",
"CreateDate": "2025-12-10T04:59:42.2841189-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-10T04:59:42.2841189-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}