Listen-Endpoints wie GET /contacts, GET /messages und GET /conversations geben paginierte Ergebnisse zurück. Aus Performance-Gründen liefert die API keine großen Datensätze in einer einzelnen Antwort.
Query-Parameter
Beispielanfrage
bash
curl -H "Authorization: Bearer YOUR_API_KEY" "https://api.buzzbip.com/v1/contacts?limit=25"Antwortformat
json
{
"data": [
{ "id": "cnt_abc123", "phone": "+21612345678", "firstName": "Walid" }
],
"pagination": {
"hasMore": true,
"nextCursor": "eyJpZCI6ImNudF9hYmMxMjMifQ"
}
}Wenn hasMore true ist, übergeben Sie nextCursor als Query-Parameter cursor, um die nächste Seite abzurufen.
