List authorizations

List issued card authorizations associated with a Moov account.
GET
/issuing/{accountID}/authorizations
200 404 429
Successfully retrieved issued card authorizations.
[
  {
    "authorizationID": "ec7e1848-dc80-4ab0-8827-dd7fc0737b43",
    "authorizedAmount": "-14.89",
    "cardTransactions": [
      "ec7e1848-dc80-4ab0-8827-dd7fc0737b43"
    ],
    "cardVerification": {
      "addressLine1": "noMatch",
      "cvv": "match",
      "postalCode": "notChecked"
    },
    "createdOn": "2019-08-24T14:15:22Z",
    "fundingWalletID": "ec7e1848-dc80-4ab0-8827-dd7fc0737b43",
    "issuedCardID": "ec7e1848-dc80-4ab0-8827-dd7fc0737b43",
    "merchantData": {
      "city": "San Francisco",
      "country": "US",
      "mcc": "7298",
      "name": "Whole Body Fitness",
      "networkID": "1234567890",
      "postalCode": "94107",
      "state": "CA"
    },
    "network": "discover",
    "status": "pending"
  }
]
No account with the specified accountID was found.
Request was refused due to rate limiting.

X-Retry-In

string <duration>
How long (in milliseconds) to wait until able to retry the request.

Path parameters

accountID

string <uuid> required
ID of the account.

Query parameters

issuedCardID

string <uuid>
Optional ID of the issued card to filter results.

startDateTime

string <RFC-3339>
Optional date-time which inclusively filters all authorizations created after this date-time.

endDateTime

string <RFC-3339>
Optional date-time which exclusively filters all authorizations created before this date-time.

statuses

string
Optional, comma-separated statuses of the authorization to filter results.
Possible values: pending, declined, canceled, cleared, expired

count

integer
Optional parameter to limit the number of results in the query.
Default: 200

skip

integer
The number of items to offset before starting to collect the result set.

Response

application/json

authorizationID

string<uuid> <=36 characters Pattern
UUID v4

authorizedAmount

string Pattern
A decimal-formatted signed numerical string that represents up to 9 decimal place precision.

cardTransactions

array
List of card transaction IDs associated with this authorization.

cardVerification

object
The results of validating cardholder data from for a card network transaction.
right_key Show child attributes

addressLine1

string<enum>
Possible values: noMatch, match, notChecked, unavailable

cvv

string<enum>
Possible values: noMatch, match, notChecked, unavailable

postalCode

string<enum>
Possible values: noMatch, match, notChecked, unavailable

createdOn

string<date-time> <=24 characters

fundingWalletID

string<uuid> <=36 characters Pattern
UUID v4

issuedCardID

string<uuid> <=36 characters Pattern
UUID v4

merchantData

right_key Show child attributes

city

string
Location of merchant.

country

string
Two-letter code of the merchant country.

mcc

string
Merchant category code.

name

string
Name of merchant or company.

networkID

string
External identifier used to identify the merchant with the card brand.

postalCode

string
Five digit postal code.

state

string
Two-letter code of merchant state.

network

string<enum>
The name of the network a card transaction is routed through.
Possible values: discover, shazam, visa

status

string<enum>
Status of the authorization.
Possible values: pending, declined, canceled, cleared, expired