Skip to content

Get Record Entries

This endpoint can be used to get a paged list of record entries for a Records Field

Request

GET /v2.0/accounts/{account-uuid}/slate/fields/{field-uuid}/record-entries

Authorization

Required. Allowed authorization schemes:

Authorization Scheme Supported
JWT
API Key not supported

Headers

Header Required Notes
Content-Type: application/json required
Continuation-Token optional If a request to this endpoint provides a continuation token in the response, set this header on the next request to retrieve the following page. On initial request, this header can be omitted, or set to an empty string.

Query Parameters

N/A

Response

Response Status Code More Information
Success 200 Successful response body details below
Internal Server Error 500 more info

Headers

Header Frequency Notes
Authorization sometimes if using JWT authorization scheme

Body

{
  "correlationUUID": "<correlation-uuid>",
  "data": {
    "entries": [
      "<entry-info-1>",
      "<entry-info-2>",
      ...
      "<entry-info-n>"
    ],
    "continuationToken": "<continuation-token>"
  }
}

Each entry will represent slate data, since each entry is stored as a slate. To get the full entry, you will use the standard slate endpoints.

Notes

  • continuationToken attribute will only be provided if there is more data