Skip to main content
POST
/
v2
/
card
Create a new card
curl --request POST \
  --url https://api.sandbox.finsei.com/v2/card \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "walletId": "<string>",
  "cardType": "VIRTUAL",
  "currency": "<string>",
  "nameOnCard": "<string>"
}
'
{
  "status": "<string>",
  "data": {
    "cardId": "<string>",
    "cardNumber": "<string>",
    "status": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
walletId
string
required
cardType
enum<string>
required
Available options:
VIRTUAL,
PHYSICAL
currency
string
required
nameOnCard
string
required

Response

Card created

status
string
data
object