Get One Customer
Retrieve a single customer’s full profile details using their unique UID via SenderWiz Admin API.
👤 Get One Customer
🔹 HTTP Request
GET ADMIN-API-URL/customers/CUSTOMER-UID🔸 URL Segments
Segment
Type
Required
Description
🔐 Authorization Header
💻 PHP Example
// GET ONE CUSTOMER
$response = $endpoint->getCustomer('ab382plq98zr7');
// DISPLAY RESPONSE
echo '<hr /><pre>';
print_r($response->body);
echo '</pre>';📦 Sample JSON Response
Last updated