Card acceptance

Update an existing card

You are able to update a linked card and/or resubmit it for verification. If a value is provided for CVV, a new verification ($0 authorization) will be submitted for the card. Updating the expiration date or address will update the information stored on file for the card, but will not be verified.

Only use this method if you have provided Moov with a copy of your PCI attestation of compliance.

To update a card, you’ll need to specify the /accounts/{accountID}/cards.write scope when generating a token.

Parameters

Name Type
accountID UUID string
cardID UUID string
card Card
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
const accountID = "accountID";
const cardID = "cardID";
const card = {
  "cardCvv": "123",
  "billingAddress": {
    "postalCode": "50613"
  }
};

moov.accounts.cards.update({accountID, cardID, card});
Summary Beta