curl --location --request GET 'https://api.inboxkit.com/v1/api/email-insights/workspace/mailboxes-health?page=1&limit=50&health_status=warning&platform=gmail&search=john&tags=&date_from=2025-01-01T00:00:00.000Z&date_to=2025-12-31T23:59:59.999Z&sort_by=bounce_rate&sort_dir=desc' \
--header 'X-Workspace-Id;' \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"mailboxes": [
{
"uid": "string",
"email": "[email protected]",
"username": "string",
"domain_name": "string",
"platform": "gmail",
"health_status": "healthy",
"sent_7d": 0,
"received_7d": 0,
"bounce_rate": 0,
"reply_rate": 0,
"last_event_at": "2019-08-24T14:15:22.123Z"
}
],
"pagination": {
"page": 1,
"limit": 50,
"total": 120,
"total_pages": 3,
"has_more": true
}
}
}