UPDATE PAYMENT SOURCE
Update the payment method for the given customer API key
post
https://api.eyelevel.ai/v1/partner
/subscription/source/:apiKey
UPDATE
{
"subscription": {
"token": "STRING"
}
}
REQUIRED - StringValidation: A Stripe source token
A valid Stripe source token for a credit card.
{
"subscription": {
"amount": INTEGER,
"billingEmail": "STRING",
"billingName": "STRING",
"cancelAt": DATETIME,
"currency": "ENUMERATED STRING",
"interval": "ENUMERATED STRING",
"name": "STRING",
"subscriptionId": "STRING IDENTIFIER",
"subscriptionStart": DATETIME,
"trialEnd": DATETIME
}
}
The price in cents (represented as a whole integer if possible) of the subscription plan per month or per year.
The datetime in RFC3339 format that billing periods are based off of.
The email address that invoices will be sent to. Defaults to the EyeLevel customer email.
The name that invoices will be addressed to. Defaults to the EyeLevel customer name.
The datetime in RFC3339 format when the subscription will end.
The frequency of billing periods, either month or year.
The human readable name for the subscription plan.
The unique identifier for the subscription. You can use this id in other subscription API requests.
The datetime in RFC3339 format when the subscription was started.
The datetime in RFC3339 format when the trial period for the subscription ends.
Last modified 1yr ago