data.users contains the user's contact details and their list of mailboxes.curl --location 'https://customers.coldmailreseller.com/api/v1/integration/mailboxes?page=1&limit=20' \
--header 'cmr-x-api-key: <api-key>'{
"status": 200,
"message": "Mailboxes fetched successfully",
"data": {
"users": [
{
"firstName": "Alice",
"lastName": "Johnson",
"email": "alice@company.com",
"mailboxes": [
{
"firstName": "Alice",
"lastName": "Johnson",
"username": "alice",
"domain": "acmecorp.com",
"password": "********",
"appPassword": "********",
"serviceProvider": "GOOGLE",
"expireOn": "2025-12-31"
}
]
}
],
"pagination": {
"totalSearchedCount": 42,
"currentPage": 1,
"nextPage": 2,
"totalPages": 3
}
}
}