Skip to content

Get Card

Request URL

GET /condor/card/get/:cardId (deprecated)

Description

This endpoint is deprecated. Instead of using /condor endpoints, it is recommended to use /ibis endpoints. Ibis endpoints support credit-card issuing, debit-card issuing, and vAccount issuing.

This endpoint will return the requested card details. The cardId must be included in the URL as a path parameter.

Request Body

HEADERS

{
    "x-connectfi-token": "a long random string" //Authorization token received from /auth/get-token request
}

REQUEST BODY

none

Successful Response Example

200 (HTTP response status code) -- Success, card details are returned

{
    "code": "0", //Success
    "data": {
        "condorCard": {
            "last_four": "####", //last 4 digits on the card, #### is used as a placeholder here for documentation purposes
            "status": "NEW",
            "program_id": "Virtual_Debit_Card",
            "name_on_card": "JESSIE TESTMAN UWUR",
            "available_balance": 0,  //amount that has been loaded onto the card
            "currency_code": "USD",
            "additional_data": {
                "account_number": "##############", //customer account number associated with the card, ############## is used as  a placeholder for documentation purposes
                "issue_date": "2022-10-13T18:57:06.787212Z",
                "design_id": "1",
                "designId": "1",
                "card_expiration": "112025",
                "processor_token": "369029391377",
                "routing_number": "#########" //a US ABA account routing number, ######### is used as a placeholder here for documentation purposes
                "accountId": "acca_6tnMJL85Ozk7hZxicTwUkk" //account ID in connectFi
            },
            "cardId": "crda_6s3I3eWyRwOMkvoofAu50U" //card ID in connectFi
        }
    }
}