curl --location --request GET 'https://api.inboxkit.com/v1/api/email-insights/mailbox/mb-123e4567-e89b-12d3-a456-426614174000/bounce-events?period=30&limit=100&offset=0&bounce_type=hard' \
--header 'X-Workspace-Id;' \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"events": [
{
"bounce_type": "hard",
"recipient": "[email protected]",
"reason": "string",
"timestamp": "2019-08-24T14:15:22.123Z"
}
],
"total": 0,
"hard_count": 0,
"soft_count": 0
}
}