List Response Structure
January 13th, 2025
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.
