Skip to main content
POST
/
v2
/
card
/
{id}
/
credentials
Fetch card credentials (pin/pan/cvv/password/phone)
curl --request POST \
  --url https://api.sandbox.finsei.com/v2/card/{id}/credentials \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "fields": [
    "password"
  ]
}
'
{
  "password": "<string>",
  "cvv": "<string>",
  "pin": "<string>",
  "pan": "<string>",
  "phone": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/json
fields
enum<string>[]
Available options:
password,
cvv,
pin,
pan,
phone

Response

OK

password
string | null
required
cvv
string | null
required
pin
string | null
required
pan
string | null
required
phone
string | null
required