Custom Table

These endpoints let you manage custom tables in the system. It allows you to retrieve, create, update, and delete custom table records.

Get Custom Tables

get

Return the custom tables.

Authorizations
AuthorizationstringRequired

Bearer authentication header of the form Bearer <token>.

Query parameters
pageintegerOptional

Page number

Default: 0Example: 0
sizeinteger · min: 1 · max: 50Optional

Page size

Default: 10Example: 10
querystringOptional

Search Query

Supported KeysSupported OperatorsNotes
id:Equal operator
Support multiple values with each value separated by the ; delimiter
tableName:Like operator
displayName:Like operator
menuLocation:Like operator
historicalType:Like operator
parentEntity:Like operator
parentEntityIsNull:Equal operator
Boolean
parentReferenceField:Like operator
Example: {"summary":"Search a custom table by ID","value":"id:a31aa166-70be-4303-81e4-5ada93b5213a"}
Responses
chevron-right
200

Successful operation

application/json
totalPagesintegerRequired

Total number of pages available

lastbooleanRequired

Indicates whether this is the last page

totalElementsintegerRequired

Total number of elements across all pages

numberOfElementsintegerRequired

Number of elements in the current page

firstbooleanRequired

Indicates whether this is the first page

sizeintegerRequired

Size of the page (number of elements per page)

numberintegerRequired

Current page number (zero-indexed)

get
/core/v1/custom-tables

Get Custom Table by Id

get

Return the custom table by Id.

Authorizations
AuthorizationstringRequired

Bearer authentication header of the form Bearer <token>.

Path parameters
tableIdstringRequiredExample: d45ee37-92c4-4d76-9838-221ec2364701
Responses
chevron-right
200

Successful operation

application/json
idstringOptional

Unique identifier of the custom table

tableNamestringOptional

Technical name of the custom table

displayNamestringOptional

Display name of the custom table

menuLocationstringOptional

Location of the table in menu hierarchy

historicalTypestringOptional

Type of historical tracking for the table

parentEntitystringOptional

Parent entity reference

parentReferenceFieldstringOptional

Field used for parent entity reference

get
/core/v1/custom-tables/{tableId}

Last updated