For the complete documentation index, see llms.txt. This page is also available as Markdown.

Account Validation

Performs one or more validation checks for a given card, such as CVC, AVS, and cardholder name, in a synchronous (blocking) request. The presence of validation data in the request body implicitly specifies which checks are performed.

Beta

Perform account validation checks

post
/cards/{card_id}/validations

Performs one or more validation checks for a given card, such as CVC, AVS, and cardholder name, in a synchronous (blocking) request. The presence of validation data in the request body implicitly specifies which checks are performed.

Required scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
card_idstringRequiredExample: CRDecqZp3xRgXU3TFmtcDdzQs
Header parameters
AuthorizationstringRequired

Bearer token for authentication.

Example: Bearer <JWT_TOKEN>
Content-Typestring · enumRequired

Content type of a request to CMP

Example: application/vnd.api+jsonPossible values:
Body

The request body to initiate account validations. A card verification is always performed; the presence of cvc, cardholder_address, or cardholder_name additionally requests the corresponding optional check (CVC, AVS, name match).

Responses
200

SUCCESS: The validation was performed and results are in the response body.

application/vnd.api+json

The response body for a successful synchronous validation.

post/cards/{card_id}/validations

Last updated