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": "8f53e63e-fa5d-4c4a-90d6-5cf59d0b09a5",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "ba089ee6-b740-4c91-b86a-d9b504380fd1",
"CreateDate": "2026-06-22T01:38:45.3709839-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-22T01:38:45.3709839-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": "7da52bb7-5ea2-4279-bfc4-c32091799d8d",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "80b1764d-c02e-4fb1-9a18-d7226f3ac3ec",
"CreateDate": "2026-06-22T01:38:45.3709839-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-22T01:38:45.3709839-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}