Skip to main content
GET
Get records for imported data

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uuid
string<uuid>
required

UUID of the data

Query Parameters

page
integer
default:1

Page number

per_page
integer
default:100

Items per page (max 1000)

Response

Records retrieved successfully

success
boolean

Indicates whether the request completed successfully. True for successful responses; false for documented error responses.

Example:

true

message
string

Human-readable response message. Safe to display in logs or simple client notifications; use structured fields for program logic.

Example:

"Records retrieved successfully"

data
object
fields
object[]

The table's columns in schema order — the header row. Returned on every page, so the table can be drawn even when a page holds no rows. Row objects in data.data are keyed by these column names.

pagination
object

Page state for this result set, same envelope as the contacts and conversations APIs. Follow next_page_url (null on the last page) to walk the table.