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": "cbb88e4f-f5c7-400b-9d02-fc3389d4906e",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "a52081d5-f729-462b-a3d8-a60ac2a18f29",
"CreateDate": "2026-08-03T02:25:01.9861882-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-03T02:25:01.9861882-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": "79435144-c8a0-414b-a5b7-76b6a985675d",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "d8d0981e-7280-4df4-bdf6-8706d5ebff14",
"CreateDate": "2026-08-03T02:25:01.9861882-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-03T02:25:01.9861882-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}