Retrieve a spending card

Retrieve a single issued card associated with a Moov account.

To use this endpoint from the browser, you’ll need to specify the /accounts/{accountID}/issued-cards.read scope when generating a token.
GET
/issuing/{accountID}/issued-cards/{issuedCardID}
cURL
1
2
curl -X GET "https://api.moov.io/issuing/{accountID}/issued-cards/{issuedCardID}" \
  -H "Authorization: Bearer {token}" \
200 404 429
Successfully retrieved card.
{
  "authorizedUser": {
    "firstName": "Jane",
    "lastName": "Doe"
  },
  "brand": "Discover",
  "controls": {
    "singleUse": false,
    "velocityLimits": [
      {
        "amount": 10000,
        "interval": "per-transaction"
      }
    ]
  },
  "createdOn": "2019-08-24T14:15:22Z",
  "expiration": {
    "month": "01",
    "year": "21"
  },
  "formFactor": "virtual",
  "fundingWalletID": "string",
  "issuedCardID": "ec7e1848-dc80-4ab0-8827-dd7fc0737b43",
  "lastFourCardNumber": "1234",
  "memo": "string",
  "state": "active"
}
No account with the specified accountID was found.
Request was refused due to rate limiting.

Retry-After

number

Path parameters

accountID

string <uuid> required
ID of the account.

issuedCardID

string <uuid> required
ID of the issued card.

Response

application/json

authorizedUser

object required
Fields for identifying an authorized individual.
Show child attributes

firstName

string

lastName

string

brand

string<enum> required
The card brand.
Possible values: American Express, Discover, Mastercard, Visa

createdOn

string<date-time> <=24 characters required

expiration

object required
The expiration date of the card or token.
Show child attributes

month

string 2 characters

year

string 2 characters

formFactor

string<enum> required
Specifies the type of spend card to be issued. Presently supports virtual only, providing a digital number without a physical card.
Possible values: virtual

fundingWalletID

string required
Unique identifier for the wallet funding the card.

issuedCardID

string<uuid> <=36 characters required
UUID

lastFourCardNumber

string required

state

string<enum> required

The state represents the operational status of an issued card. A card can only approve incoming authorizations if it is in an active state.

  • active: The card is operational and approves authorizations. Generally becomes active shortly after card creation.
  • inactive: The card cannot approve authorizations. This is currently a temporary state assigned post-creation during the activation process.
  • closed: The card is permanently deactivated and cannot approve authorizations. A card can be closed by request or when it expires.
  • pending-verification: Awaiting additional authorized user verification before the card can be activated.
Possible values: active, inactive, pending-verification, closed

controls

object
Show child attributes

singleUse

boolean
Indicates if the card is single-use. If true, the card closes after the first authorization.

velocityLimits

array
Sets the spending limit per time interval. Only one limit per interval is supported.
Show child attributes

amount

integer
The maximum amount in cents that can be spent in a given interval.

interval

string<enum>
Specifies the time frame for the velocity limit. Currently supports only per-transaction limits.
Possible values: per-transaction

memo

string
Optional descriptor for the card.