v1.0.0
OpenAPI 3.1.0

List your collections

US region

Client Libraries

List your collections

Returns a list of all of your collections, including the name and schema for each collection.

Responses
  • application/json
  • 429

    Your request is over the 10-per-second limit.

Request Example for get/v1/collections
curl https://api.customer.io/v1/collections \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "collections": [
    {
      "bytes": 296,
      "created_at": 1552341937,
      "updated_at": 1552341937,
      "id": 1,
      "name": "upcoming events",
      "rows": 2,
      "schema": [
        "eventDate",
        "eventName",
        "presents"
      ]
    }
  ]
}