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": "41b336da-2db7-4457-ba4e-f9fd7e1dbaa3",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "1b5232a9-2ed3-4efc-90a7-8b023482fb71",
"CreateDate": "2025-11-04T16:45:45.8063538-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-11-04T16:45:45.8063538-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": "88e3e6bf-4d4c-406e-813f-b2fd2ab5b3b6",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "5dee8b38-af23-4d0d-94a7-cd2394599960",
"CreateDate": "2025-11-04T16:45:45.8063538-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-11-04T16:45:45.8063538-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}