Get All Customer Groups
Retrieve a complete list of all customer groups available in your SenderWiz account.
π Get All Customer Groups
πΉ HTTP Request
GET ADMIN-API-URL/groupsπΈ Query Parameters
Parameter
Default
Description
π Authorization Header
X-ADMIN-API-KEY: your-admin-api-key-hereπ» PHP Example
// GET ALL CUSTOMER GROUPS
$response = $endpoint->getCustomerGroups($pageNumber = 1, $perPage = 10);
// DISPLAY RESPONSE
echo '<hr /><pre>';
print_r($response->body);
echo '</pre>';π¦ Sample JSON Response
Last updated