v1

latestOpenAPI 3.0.1Apache 2.02026-07-248286406.8 KB
Card

Get MassPay card information

This GET endpoint is used to retrieve MassPay card information associated with the provided wallet token. <br> You can use this endpoint to obtain information about the MassPay card associated with the wallet. <br> To use this endpoint, you need to provide the user_token and wallet_token as required parameters in the URL Path. <br> The response will include a JSON object containing details for the MassPay card, including the card number, balance, status. If your company is not PCI compliant, each field would contain a url that displays the corresponding card detail once accessed through an iFrame.

get/payout/wallet/{user_token}/{wallet_token}/card

Response

Succesful operation.

card_numberstring required

16 Digits card number

cvvstring required

3 Digits cvv code

expiration_datestring date required

Card expiration date

pin_numberstring required

Card pin number (used in ATM machines)

balancenumber float required

Available balance on the card

type'VISA' | 'MASTERCARD' | 'DISCOVER' | 'AMEX' | 'UNIONPAY' required

Card type

status'ACTIVE' | 'INACTIVE' | 'CLOSED' required

Status of the card

Example response

{
  "card_number": "4016483301928344",
  "cvv": "123",
  "expiration_date": "2023-08-21",
  "pin_number": "1234",
  "balance": 103,
  "type": "VISA",
  "status": "ACTIVE"
}