Custom Table Entry

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

Get Custom Table Entries

get

Return the custom table entries.

Authorizations
AuthorizationstringRequired

Bearer authentication header of the form Bearer <token>.

Path parameters
tableIdstringRequiredExample: d45ee37-92c4-4d76-9838-221ec2364701
Query parameters
querystringOptional

Filter entries based on specific criteria, depending on the custom table's schema.

Example: employeeId:emp-001
pageintegerOptional

Page number

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

Page size

Default: 10Example: 10
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/{tableId}/entries

Create a new entry in a custom table

post

Creates a new entry in a custom table with the provided details

Authorizations
AuthorizationstringRequired

Bearer authentication header of the form Bearer <token>.

Path parameters
tableIdstringRequiredExample: d45ee37-92c4-4d76-9838-221ec2364701
Body
Other propertiesanyOptional
Responses
post
/core/v1/custom-tables/{tableId}/entries

Update an entry in a custom table

put

Updates an existing entry in a custom table with the provided details

Authorizations
AuthorizationstringRequired

Bearer authentication header of the form Bearer <token>.

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

Entry updated successfully

application/json
Other propertiesanyOptional
put
/core/v1/custom-tables/{tableId}/entries/{entryId}

Last updated