list-dropdownGet 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

Last updated