Shopify
Read and create Shopify store data (products, orders, customers) via the Admin REST API.
Operations
list_productsget_productlist_orderslist_customerscreate_product.
Inputs
operation(required) — One of: list_products, get_product, list_orders, list_customers, create_product.shop(required) — The store's myshopify subdomain (the '<shop>' in <shop>.myshopify.com).apiKey(required) — Shopify Admin API access token (custom/private app). Sent as the X-Shopify-Access-Token header.id— Product id — required for get_product.query— Optional query params as a JSON object string, e.g. {"limit": 10, "status": "active"}.body— Request body as a JSON object string (for create_product), e.g. {"product": {"title": "New Tee"}}.
Example
operation: list_products
shop: <your shop>
apiKey: <your apiKey>