Skip to content

Store API

The Store API is the commerce integration surface for elasticStage. It’s what powers the elasticStage Shopify app, and what you build against to connect any storefront to on-demand fulfilment.

  • Base URL: https://api.staging.elasticstage.com/store (staging)
  • Auth: OAuth 2.1 (authorization code + PKCE) — see Authentication
  • Version prefix: /v1
  1. Read the connected creator (GET /v1/creator) to confirm which account you’re acting for.
  2. List releases (GET /v1/releases) and drill into a release (GET /v1/releases/{id}) for its products.
  3. Quote shipping (GET /v1/shipping-rates) for the destination and items.
  4. Place an order (POST /v1/orders) — requires the orders:create scope.
  5. Track it by polling GET /v1/orders/{id} or, better, subscribing to order.* webhooks.