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": "6c3c85f7-b856-4a60-bd56-7b10a3fdd4f5",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "182bcba1-e06b-4a93-b8fd-93af53ff75e9",
"CreateDate": "2026-03-29T02:58:59.8397912-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-03-29T02:58:59.8397912-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": "a4bbc529-bf78-4f1d-8df4-ff64b00aee13",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "2297c288-4c58-43d8-a6bc-61d55924c80d",
"CreateDate": "2026-03-29T02:58:59.8554092-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-03-29T02:58:59.8554092-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}