Skip to main content
A Product in Qonversion maps your store SKU (App Store product ID, Play Store product ID, or Stripe price ID) to a stable Qonversion product identifier. Products are referenced by entitlements, offerings, experiments, and analytics.

Key concepts

  • Product ID — Your stable identifier used in code and API.
  • Product UID — The internal Qonversion UID returned by the API for referencing products in other resources.
  • Typesubscription, in_app, consumable, or non_consumable.
  • Duration — For subscriptions: weekly, monthly, 3_month, 6_month, annual, lifetime, or a custom duration.
  • Path consolidation — v3 split product operations between /products/{id} (GET) and /products/{uid} (PUT/PATCH/DELETE); v4 uses a single path /products/{product_id} for all operations.

Available endpoints

MethodEndpointDescriptionStatus
GET/productsList productsUpdated — v3
POST/productsCreate a productUpdated — v3
DELETE/products/{product_id}Delete a productUpdated — v3
GET/products/{product_id}Get a productUpdated — v3
PATCH/products/{product_id}Update a product (partial)Updated — v3

Authentication

All v4 endpoints require a Secret Key. See Authentication.