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": "2f73d524-ddc2-4cd2-8696-bf16cb29924c",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "b93f3279-732d-493d-aaa2-324cdc3919d4",
"CreateDate": "2026-08-01T23:54:28.903108-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-01T23:54:28.903108-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": "30f6fc44-707d-4247-a5f5-52a63279ce2a",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "519118ac-b64d-441d-beaf-d1c2cbb4cc35",
"CreateDate": "2026-08-01T23:54:28.903108-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-01T23:54:28.903108-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}