usersGet All List Segments

Retrieve all segments created within a specific subscriber list. Each segment includes a unique identifier, name, and the number of subscribers it contains.

๐Ÿงฉ Get All List Segments

Retrieve all available segments associated with a specific subscriber list. Segments allow you to filter and target contacts based on predefined conditions.

๐Ÿ”น HTTP Request

GET API-URL/lists/LIST-UNIQUE-ID/segments

๐Ÿ”ธ URL Segments

Segment
Required
Description

LIST-UNIQUE-ID

Yes

Unique identifier of the subscriber list.

๐Ÿ”ธ Query Parameters

Parameter
Default
Description

page

1

Page number to retrieve.

per_page

10

Number of segments to return per page.

๐Ÿ” Authorization Header

X-API-KEY: your-api-key-here

๐Ÿ’ป PHP Example

// GET ALL ITEMS
$response = $endpoint->getSegments('LIST-UNIQUE-ID');

// DISPLAY RESPONSE
echo '<pre>';
print_r($response->body);
echo '</pre>';

๐Ÿ“ฆ Sample JSON Response

Last updated