Skip to main content
POST
Register Stored Cards for Account Updater
Register a batch of already-stored cards for Card Account Updater, so their details are kept current automatically. Send the payment method ids (the vaulted_token received when enrolling each card) in a single request.
How registration behaves
  • You can register between 1 and 100 cards per request; each id must be a valid vaulted_token.
  • Validation is all-or-nothing: if any id is invalid, the whole request is rejected.
  • Registration runs asynchronously. A 200 response with accepted confirms the cards were accepted, not that the update already happened — updates are notified later through the enrollment webhook.
  • Your account must be enabled for Card Account Updater. Otherwise the request returns 403.

Authorizations

public-api-key
string
header
default:<Your public-api-key>
required
private-secret-key
string
header
default:<Your private-secret-key>
required
X-Idempotency-Key
string
header
default:<Your X-Idempotency-Key>
required

Body

application/json
payment_method_ids
string<uuid>[]
required

List of stored payment method ids (vaulted_token) to register for Card Account Updater. Between 1 and 100 items; each must be a valid UUID.

Required array length: 1 - 100 elements

Response

200

accepted
integer

Number of cards accepted for Card Account Updater registration.

Example:

2