List Response Structure

Breaking Change: All list endpoints now return an object wrapper instead of a raw array.

Before:

[{ "id": "..." }, { "id": "..." }]

After:

{
  "data": [{ "id": "..." }, { "id": "..." }],
  "pagination": { "cursor": "..." }
}

Update your integration to access the data property for the list of items.