Postscript List Subscribers
postscript_list_subscribersList SMS subscribers for a Postscript (Shopify) shop. Supports filtering by email, phone number, Shopify customer ID, and created/updated timestamps, plus sorting. Page-based pagination: returns { page_info: { page, total_pages }, subscribers: [...] }; pass page to walk results.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | 1-indexed page number (default 1). Walk until page === page_info.total_pages. | |
| sort | No | Sort spec like "created_at__desc" or "updated_at__asc". | |
| _apiKey | Yes | Postscript Private API token (Bearer). From Settings → API. | |
| email__eq | No | Exact email match. | |
| created_at__gte | No | ISO timestamp; subscribers created on/after this time. | |
| created_at__lte | No | ISO timestamp; subscribers created on/before this time. | |
| email__contains | No | Substring email match. | |
| updated_at__gte | No | ISO timestamp; subscribers updated on/after this time. | |
| phone_number__eq | No | Exact phone match (E.164, e.g. +15551234567). | |
| phone_number__contains | No | Substring phone match. | |
| shopify_customer_id__eq | No | Exact Shopify customer ID match. |