Skip to content

Get Recently Updated Slates

This endpoint can be used to get a paged list of recently-updated slates on an account

Request

GET /v2.0/accounts/{account-uuid}/slates/recently-updated

Authorization

Required. Allowed authorization schemes:

Authorization Scheme Supported
JWT
API Key

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": {
    "entities": [
      "<slate-uuid-1>",
      "<slate-uuid-2>",
      ...
      "<slate-uuid-n>"
    ],
    "continuationToken": "<continuation-token>",
    "count": <count>
  }
}

Notes

  • continuationToken attribute will only be provided if there is more data
  • count is only provided on the first request