v1

latestOpenAPI 3.0.32026-07-26172157253.6 KB
Stripe Payments

Create Stripe Product

Create a Stripe product in the requested environment, then mirror it locally after Stripe succeeds.

post/api/payments/stripe/{environment}/catalog/products

Path parameters

environment'test' | 'live' required

Payment provider environment.

Request body

namestring required
descriptionstring nullable
activeboolean
metadataMetadata
idempotencyKeystring

Response

Product created

Example response

{
  "product": {
    "productId": "prod_123",
    "defaultPriceId": "price_123"
  }
}