Skip to main content
POST
/
partner-connect
/
transactions
/
verify
Error
A valid request URL is required to generate request examples
{
  "success": true
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json

Requires the cardId (obtained from successful binding) and basic transaction details (amount, currency, description) in the request body.

cardId
string<uuid>
required

Unique identifier of the card.

amount
number<float>
required

Transaction amount being verified.

Required range: x >= 0.01Must be a multiple of 0.01
Example:

100

currency
string
required

Currency code (ISO 4217) of the transaction amount.

Required string length: 3
Example:

"USD"

description
string
required

Verification description.

Example:

"Check details"

Response

Transaction parameters verified successfully. Indicates the provided cardId is valid and the basic parameters are acceptable for potentially proceeding with a transaction.

success
boolean
required

Always true for a successful verification response.

Example:

true