Skip to main content
GET
/
v1
/
card
/
{id}
Get detailed information about card
curl --request GET \
  --url https://api.sandbox.finsei.com/v1/card/{id} \
  --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",
  "password": "Aa123!qweqwe",
  "cvv": 1234,
  "pin": 1234,
  "number": 4743591235635050,
  "phone3ds": "+48511155588",
  "limits": {
    "updatedAtMs": 1666666666999,
    "purchase": {
      "value": "DEFAULT",
      "switch": {
        "enabled": true,
        "value": true
      },
      "usage": {
        "currency_id": "EUR",
        "transaction": 123,
        "daily": {
          "total": 123,
          "used": 123,
          "available": 123,
          "reset": 123
        },
        "monthly": {
          "total": 123,
          "used": 123,
          "available": 123,
          "reset": 123
        }
      }
    },
    "withdrawal": {
      "value": "DEFAULT",
      "switch": {
        "enabled": true,
        "value": true
      },
      "usage": {
        "currency_id": "EUR",
        "transaction": 123,
        "daily": {
          "total": 123,
          "used": 123,
          "available": 123,
          "reset": 123
        },
        "monthly": {
          "total": 123,
          "used": 123,
          "available": 123,
          "reset": 123
        }
      }
    },
    "internet_purchase": {
      "value": "DEFAULT",
      "switch": {
        "enabled": true,
        "value": true
      },
      "usage": {
        "currency_id": "EUR",
        "transaction": 123,
        "daily": {
          "total": 123,
          "used": 123,
          "available": 123,
          "reset": 123
        },
        "monthly": {
          "total": 123,
          "used": 123,
          "available": 123,
          "reset": 123
        }
      }
    },
    "contactless_purchase": {
      "value": "DEFAULT",
      "switch": {
        "enabled": true,
        "value": true
      },
      "usage": {
        "currency_id": "EUR",
        "transaction": 123,
        "daily": {
          "total": 123,
          "used": 123,
          "available": 123,
          "reset": 123
        },
        "monthly": {
          "total": 123,
          "used": 123,
          "available": 123,
          "reset": 123
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
required

Card id for detalization

Query Parameters

expand
enum<string>[]
Available options:
password,
cvv,
pin,
number,
limits,
phone3ds

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"

password
string

3d secure password

Example:

"Aa123!qweqwe"

cvv
string

Card CVV

Example:

1234

pin
string

Card PIN

Example:

1234

number
string

Card Number

Example:

4743591235635050

phone3ds
string

3d secure phone

Example:

"+48511155588"

limits
object