Use this API to save a card payment instrument after completing an order. The response will contain the cardToken which can be used to make payments using the tokenized charge api.

👍

Good to know

To save the payment card, RSA encryption PKCS#1 v1.5 is used to encrypt the payload.

Sample Payload to be encrypted using RSA PKCS#1 v1.5 Algorithm.

{
    "reference": "{{orderreference}}"
}

Sample payload passed to Save Card API after encryption

{
    "data": "{{encrypteddata}}"
}