GET ALL PLANS
Query for all subscriptions associated with the given EyeLevel partner API key
get
https://api.eyelevel.ai/v1/partner
/subscription
QUERY ALL
{
"subscriptionPlans": [
{
"annual": {
"amount": INTEGER,
"currency": "ENUMERATED STRING",
"planId": "STRING IDENTIFIER"
},
"monthly": {
"amount": INTEGER,
"currency": "ENUMERATED STRING",
"planId": "STRING IDENTIFIER"
},
"name": "STRING"
}
]
}
The price in cents (represented as a whole integer if possible) of the subscription plan per month (monthly) or per year (annual).
Pricing information of the subscription plan on an annual basis.
Pricing information of the subscription plan on a monthly basis.
The human readable name for the subscription plan.
The unique identifier for the subscription plan. You can use this planId in other subscription API requests.
Last modified 1yr ago