curl --location 'https://customers.coldmailreseller.com/api/v1/integration/users/list?search=alice&page=1&limit=20' \
--header 'cmr-x-api-key: <api-key>'{
"status": 200,
"message": "Users",
"data": {
"users": [
{
"id": "H8M9JV2S9HMPYFQW393AZHQVD4XM",
"firstName": "Alice",
"lastName": "Johnson",
"email": "alice@company.com"
}
],
"pagination": {
"totalSearchedCount": 42,
"currentPage": 1,
"nextPage": 2,
"totalPages": 3
}
}
}