Skip to main content
GET
/
admin
/
stripe
/
get-products
Get Stripe products
curl --request GET \
  --url https://nimbussuite.com/api/v1/admin/stripe/get-products \
  --header 'Authorization: Bearer <token>'
{
  "products": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "price": 123,
      "currency": "<string>",
      "interval": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

List of Stripe products

products
object[]