Get All Customers
Fetch a paginated list of all customers from your SenderWiz account using the Admin API with optional filters.
π Get All Customers
πΉ HTTP Request
GET ADMIN-API-URL/customersπΈ Query Parameters (Optional)
Parameter
Type
Required
Description
π Authorization Header
π» PHP Example
// GET ALL CUSTOMERS
$response = $endpoint->getCustomers([
'page' => 1,
'per_page' => 20,
'search' => 'Smith'
]);
// DISPLAY RESPONSE
echo '<hr /><pre>';
print_r($response->body);
echo '</pre>';π¦ Sample JSON Response
Last updated