v1

latestOpenAPI 3.0.02026-07-26167441.9 MB

Register Stored Cards for Account Updater

Register up to 100 stored cards for Card Account Updater in a single request, identified by their payment method id (vaulted_token). Validation is synchronous and all-or-nothing: if any id is invalid the whole request is rejected. Registration itself runs asynchronously, so a 200 response confirms the cards were accepted, not that the update completed. Your account must be enabled for Card Account Updater to use this endpoint.

post/payment-methods/account-updater

Request body

payment_method_idsstring[] 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.

Example request

{
  "payment_method_ids": [
    "cbdcc878-ceb4-4dd8-b0f0-49d444855de0"
  ]
}

Response

200

acceptedinteger

Number of cards accepted for Card Account Updater registration.

Example response

{
  "accepted": 2
}