Recurring payments

What are recurring payments

A recurring payment, also known as a subscription or automatic payment, is a financial transaction that occurs on a regular basis for goods or services. It is an arrangement where a customer or user authorizes a merchant or service provider to charge their account or credit card at predetermined intervals (usually monthly, quarterly, or annually) without the need for manual intervention for each transaction.


How to initiate a recurring transaction?

To achieve a recurring transaction, please follow the requirements below:

  1. Get authorized as a merchant.
  2. Initiate the recurring payment endpoint
POST https://api.bridgerpay.com/mpi/v2/api_key/deposit/credit-card/psp_name
Content-Type: application/json
Authorization: Bearer {{ACCESS_TOKEN}}
{
  "cashier_key": "{cashier_key}",
  "order_id": "g173aa11",
  "currency": "EUR",
  "country": "BE",
  "amount": 15.1,
  "first_name": "John",
  "last_name": "Smith",
  "phone": "+328141112233",
  "email": "[email protected]",
  "address1": "Rue du Pont Simon 115",
  "city": "Appelterre-eichem",
  "state": null,
  "zip_code": "9900",
  "credit_card_token": "{cc_token}",
  "is_recurring": true
}