Skip to main content
GET
/
v1
/
card
Get list of cards
curl --request GET \
  --url https://api.sandbox.finsei.com/v1/card \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "uuid": "<string>",
    "wallet_id": 123,
    "type": "ChipAndPin",
    "masked_number": "474359******5050",
    "status": "ORDERED",
    "validUntilDate": "<string>",
    "cardholder_name": "<string>",
    "notification": {
      "type": "ERROR",
      "title": "<string>",
      "message": "<string>"
    },
    "orderInfo": {
      "title": "<string>",
      "message": "<string>",
      "ordered_at": 123,
      "dispatched_at": 123,
      "delivery": {}
    },
    "permissions": {
      "canActivate": true,
      "canBlock": true,
      "canUnblock": true,
      "canGetPin": true,
      "canSetPin": true,
      "canGetCvv": true,
      "canGetPassword": true,
      "canSetPassword": true,
      "canGetNumber": true,
      "canClose": true,
      "canSetSmsBalanceNotification": true,
      "canGetLimits": true,
      "canSetLimits": true,
      "canGetOperations": true,
      "canSetOperations": true
    },
    "updatedAtMs": 1666666666999,
    "isSmsBalanceNotification": false,
    "designId": "AIV"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

wallet_id
integer
status[]
enum<string>[]
Available options:
ORDERED,
DISPATCHED,
ACTIVE,
BLOCKED,
CLOSED
type[]
enum<string>[]
Available options:
ChipAndPin,
Virtual,
Disposable
page
integer
per-page
integer
sort
string

Enter a field name to sort by (with a minus to sort desc):

id: sort asc -id: sort desc

Response

OK

id
integer

Unique Card id

uuid
string

Unique Card id (UUID string)

wallet_id
integer

Wallet ID

type
enum<string>
Available options:
ChipAndPin,
Virtual,
Disposable
masked_number
string

Masked Card Number

Example:

"474359******5050"

status
enum<string>

Card status

Available options:
ORDERED,
DISPATCHED,
ACTIVE,
BLOCKED,
CLOSED
validUntilDate
string
cardholder_name
string

Cardholder name

notification
object
orderInfo
object
permissions
object

List of true\false permissions

updatedAtMs
integer

Updated timestamp in milliseconds

Example:

1666666666999

isSmsBalanceNotification
boolean

Is Payment Balance Sms Notification Enabled

Example:

false

designId
string

Design Id code

Example:

"AIV"