Fetch detailed information about a specific subscriber list by providing its unique list UID. Includes general, default, and notification configuration data.
📄 Get One List
Retrieve details of a specific list using its unique ID.
🔹 HTTP Request
GET API-URL/lists/LIST-UNIQUE-ID
🔸 URL Segments
Segment
Required
Description
LIST-UNIQUE-ID
Yes
Unique identifier of the list to fetch.
🔐 Authorization Header
Include your customer API key:
X-API-KEY: your-api-key-here
💻 PHP Example
// get a single list
$response = $endpoint->getList('LIST-UNIQUE-ID');
// DISPLAY RESPONSE
echo '<hr /><pre>';
print_r($response->body);
echo '</pre>';