List Plans
This API allows partners to retrieve details of a recurring payment plan given its ID.
Get all fee schedules for a particular merchant
Path Parameters
Name
Type
Description
Field Name
Type
Description
Required?
curl --location --request GET '<API_HOST>/api/merchant/2be66e67-88a7-4e04-985d-0a1cfb0a648c/recurring-payments/8049a73c-2ac4-431c-b9a0-2e60acd937eb/recurring-payments/plans?page=1&limit=10' \
--header 'Authorization: Basic <API_KEY>'{
"data": [
{
"plan_id": "8049a73c-2ac4-431c-b9a0-2e60acd937eb",
"name": "Basic",
"amount": 100.00,
"currency_code": "USD",
"billing_period": "MONTHLY",
"duration": 2,
"duration_unit": "MONTHS"
},
{
"plan_id": "9089a73c-2ac4-431c-b9a0-2e60acd989js",
"name": "Premium",
"amount": 300.00,
"currency_code": "USD",
"billing_period": "MONTHLY",
"duration": 3,
"duration_unit": "MONTHS"
}
]
}Last updated