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": "2981af45-e678-40c4-9c6e-059ddd389a0c",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "76047397-4a47-4e04-a0a2-4ddec88be7cf",
"CreateDate": "2025-11-04T17:08:07.8931324-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-11-04T17:08:07.8931324-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": "d6b67851-e339-42bf-b38c-c62784ffcc39",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "51628d02-185d-4ea1-b958-96e042f75f6e",
"CreateDate": "2025-11-04T17:08:07.8931324-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-11-04T17:08:07.8931324-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}