| Name | Type | Required | Description |
|---|---|---|---|
limit | number | No | Number of records to return per page. Default: 50 |
page | number | No | Page number to retrieve. Default: 1 |
search | string | No | Search keyword to filter users by first name, last name, or email |
cmr-x-api-key: ********************curl --location 'https://customers.coldmailreseller.com/api/v1/integration/users/list' \
--header 'cmr-x-api-key: <api-key>'{
"status": 200,
"message": "Users",
"data": {
"users": [
{
"firstName": "john",
"lastName": "doe",
"email": "john@company.com",
"id": "GFGSDBFNH498ZNARTF3YJRRED2D"
},
{
"firstName": "jean",
"lastName": "doe",
"email": "jean@company.com",
"id": "FDFDAHGFGSDBFNH498ZNARTSRED2D"
},
{
"firstName": "michael",
"lastName": "jones",
"email": "jones@company.com",
"id": "GAD34YBFNH498ZNARTF3YJRRED2D"
}
],
"pagination": {
"totalSearchedCount": 3,
"currentPage": 1,
"nextPage": 2,
"totalPages": 1
}
}
}