Get Debit Cards

This endpoint gets the card from all accounts.

Endpoint: BASE_URL/baas/debit-cards

Card Fields

  • id: ID generated by Galileo for the card.

  • accountId: account to which the card is linked.

  • cardLastFourDigits: card's last 4 digits.

  • status: current card status.

  • image: card's image without any data.

  • type: this field will indicate if the card is physical or virtual.

  • isLocked: this field indicates whether the card is blocked or not. You can change it using Lock/Unlock.

  • isReadyToUse: this field indicates if the card can be used.

Linker example response:

{
    "statusCode": 200,
    "data": {
        "cards": [
            {
                "id": "312",
                "accountId": "999900843213",
                "cardLastFourDigits": "8236",
                "status": "active",
                "image": "imageURL",
                "type": "virtual",
                "isLocked": true,
                "isReadyToUse": true
            },
            {
                "id": "330",
                "accountId": "999900843211",
                "cardLastFourDigits": "8253",
                "status": "stolen",
                "image": "imageURL",
                "type": "virtual",
                "isLocked": false,
                "isReadyToUse": false
            },
        ]
    }
}

Last updated