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
GET
https://<PayEngine-host>/api/merchant/:merchantId/recurring-payments/plans
Request
Path Parameters
Name
Type
Description
merchant_id*
string
Merchant ID
Field Name
Type
Description
Required?
data
array
Recurring Payments
Required
data[i].plan_id
string
PayEngine system ID for the Recurring Payment Plan
Required
data[i].name
string
Plan name
Required
data[i].amount
string
Recurring payment amount
Required
data[i].billing_period
string
DAILY, WEEKLY, MONTHLY, QUARTERLY, YEARLY
Required
data[i].duration
string
The number of recurring payments that will be processed in total
Required
data[i].duration_unit
string
Accepted values are DAYS | WEEKS | MONTHS | YEARS
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>'
Last updated