Skip to main content
GET
/
v1
/
organizations
/
billing
/
payment-method
Get Payment Method
curl --request GET \
  --url https://api.mixpeek.com/v1/organizations/billing/payment-method \
  --header 'Authorization: <authorization>'
{
  "has_payment_method": true,
  "auto_billing_enabled": true,
  "payment_method": {
    "payment_method_id": "<string>",
    "type": "<string>",
    "card_last4": "<string>",
    "card_brand": "<string>"
  }
}

Headers

Authorization
string
required

REQUIRED: Bearer token authentication using your API key. Format: 'Bearer sk_xxxxxxxxxxxxx'. You can create API keys in the Mixpeek dashboard under Organization Settings.

Response

Successful Response

Response with current payment method.

has_payment_method
boolean
required

Whether organization has a payment method saved

auto_billing_enabled
boolean
required

Whether automatic billing is enabled

payment_method
PaymentMethodInfo · object

Payment method details (null if none saved)