Search code examples
iosobjective-cpayment-gatewaypayeezy

How can I impliment Payeezy Recurring base payment in ios?


I want to integrate recurring payment using Payeezy in my iOS app.

I have integrated one time payment successfully and it is working fine.

how can I achieve this?

I have refered this link

Thank you


Solution

  • I am a product manager on the Payeezy team at First Data.

    Payeezy APIs, as on date, does not support the initiation of recurring plans managed within Payeezy Gateway. Merchants managing their own recurring plans can pass the data through the API by utilizing the Recurring Indicator. To utilize the Recurring Indicator you will need to use the “eci_indicator” field and set it to “2”. For example, here is a purchase transaction payload that uses the eci_indicator to denote a recurring payment.

    {
      "merchant_ref": "Astonishing-Sale",
      "transaction_type": "purchase",
      "method": "credit_card",
      "amount": "1299",
      "eci_indicator":"2",
      "currency_code": "USD",
      "credit_card": {
          "type": "visa",
          "cardholder_name": "John Smith",
          "card_number": "4788250000028291",
          "exp_date": "1020",
          "cvv": "123"
      }
    }