Get Paginated List of Subscription Plans
GET/api/v1/subscriptions/plans
Get Paginated List of Subscription Plans
Request
Responses
- 200
Subscription Plan Response
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
count number
next url
previous url
results object[]
plan_name string
price double
billing_cycle string
Possible values: [MO, WE, BI]
short_lead string
company string
{
"count": 0,
"next": "string",
"previous": "string",
"results": [
{
"plan_name": "Gym Subscription Monthly",
"price": 1000,
"billing_cycle": "MO",
"short_lead": "Monthly Gym Subscription that includes personal trainer",
"company": "Monsters Inc."
}
]
}
Loading...