To pull subscriber info (such as emails and phone numbers) from Shopify, follow these steps:
1. Navigate to the Customers tab in your Shopify admin dashboard:
2. Click "Add filter" on the right:
3. Paste in the following query. This filters to only users that were created (or updated, e.g. if a phone was added to an existing subscriber) by Alia.
FROM customers
SHOW customer_name, note, email_subscription_status, location, orders, amount_spent
WHERE customer_tags CONTAINS 'Alia'
ORDER BY updated_at
4. Click Run in the top right. You can export the data using the Export button.