Saves the customer's payment details for a recurring order.

Called when a user agrees to save their payment details for recurring payments.

Request
path Parameters
order_id
required
string

The unique identifier of the order.

payment_id
required
string

The unique identifier of the payment.

query Parameters
merchant
required
string

The unique identifier of the merchant.

channel
required
string

The merchant's sales channel.

Request Body schema: application/json

The payment details to be saved.

id
string
brandName
string
expiryYear
integer <int32>
expiryMonth
integer <int32>
bin
string
last4Digits
string
maskedNumber
string
Responses
200

OK

post/api/checkout/v1/callback/orders/{order_id}/payments/{payment_id}/save-recurring-details
Request samples
application/json
{
  • "id": "string",
  • "brandName": "string",
  • "expiryYear": 0,
  • "expiryMonth": 0,
  • "bin": "string",
  • "last4Digits": "string",
  • "maskedNumber": "string"
}
Response samples
application/json
{
  • "callbackResponse": "string"
}
Copyright © Norce 2024. All right reserved.