Reach: Segments
List segment contacts
Retrieve contacts associated with a specific segment.
This endpoint allows you to fetch and filter contacts that belong to a particular segment, identified by its UUID.
get/api/reach/v1/segmentation/segments/{segmentUuid}/contacts
Path parameters
segmentUuidstring required
Example:550e8400-e09b-41d4-a716-400055000000
Segment uuid parameter
Query parameters
pageinteger
Example:1
Page number
per_pageinteger
Example:25
Number of items per page
Response
Success response
Example response
{
"data": [
{
"uuid": "550e8400-e29b-41d4-a716-446655440000",
"name": "John",
"surname": "Doe",
"email": "john.doe@example.com",
"subscription_status": "subscribed",
"subscribed_at": "2023-01-01T00:00:00Z",
"source": "sync",
"note": "VIP customer"
}
],
"meta": {
"current_page": 1,
"per_page": 15,
"total": 100
}
}