Variable | Type | Description |
---|---|---|
segment_id | string|int | The ID of the segment for which to get the subscribers |
start | int|null | Optional, for large lists. The page number to start. Defaults to first page (page = 0). |
limit | int|null | Optional, for large lists. The number of results to return per page. Defaults to 100. Upper limit is 1000. |
Parameter | Description |
---|---|
subscriber_id | The id of the subscriber |
The email of the subscriber |
[ { "subscriber_id": 75001, "email": "john.doe@example.com" }, { "subscriber_id": 75002, "email": "john.doe2@example.com" } ]
Code | Message | Description |
---|---|---|
407 | Missing required param segment_id | segment_id param is required |
407 | Missing required param start | start param is required |
407 | Missing required param limit | limit param is required |
141 | No such segment with ID: %s. | Invalid access to segment_id |
141 | Segment %s has been deleted. | Segment has been deleted |
101 | List not found for segment: %s | List not found for this segment |
11 | No user found for list: %s | User not found for this list |
407 | Missing required param start | Parametrul start este obligatoriu |
407 | Missing required param limit | Parametrul limit este obligatoriu |
101 | List not found for segment: %s | Lista nu a fost găsită pentru acest segment |
11 | No user found for list: %s | User-ul nu a fost găsit pentru acest segment |
{ "err": true, "message": "Missing required param segment_id", "code": 407 }
{ "err": true, "message": "Missing required param start", "code": 407 }
{ "err": true, "message": "Missing required param limit", "code": 407 }
{ "err": true, "message": "No such segment with ID: 999999.", "code": 141 }