Get One List

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>';

๐Ÿ“ฆ Sample JSON Response