Response envelope
A single-record response wraps the record in data:
{
"data": {
"id": 123,
"url": "..."
}
}List responses return an array plus paging information:
{
"data": [],
"totalRecords": 642,
"nextPage": 2
}DEEnglishA single-record response wraps the record in data:
{
"data": {
"id": 123,
"url": "..."
}
}List responses return an array plus paging information:
{
"data": [],
"totalRecords": 642,
"nextPage": 2
}