List email bounces

GET/usuario/bounce

Lists emails to students that were deferred, bounced, dropped or marked as spam, newest first, 150 per page. Addresses cleared with the update operation are left out.

The list is nested twice: data.bounces.bounces.

AuthorizationBearer <token>

The school API key, found in the dashboard settings, sent in the Authorization header. The Bearer prefix is optional.

In: header

Query Parameters

cursor?string

Opaque page cursor. Do not build it: follow next_page_url and prev_page_url from the previous page.

Response Body

application/json

application/json

curl -X GET "https://example.com/usuario/bounce"
{  "code": 200,  "success": true,  "data": {    "bounces": {      "bounces": [        {          "bounce": true,          "email": "string",          "nome": "string",          "telefone": "string"        }      ]    },    "paginator": {      "next_page_url": "http://example.com",      "perPage": 0,      "prev_page_url": "http://example.com"    }  }}