POST
/
accounts
/
{account_id}
/
cards
/
issuing
curl --request POST \
  --url https://api.finup.io/accounts/{account_id}/cards/issuing \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '{
  "bin_id": "<string>",
  "name": "<string>",
  "notes": "<string>",
  "amount": 123,
  "promo": "<string>"
}'
{
  "result": [
    {
      "id": "67b37ed1be539510101fde99",
      "created_at": "2025-02-17T18:24:17.653Z",
      "updated_at": "2025-02-17T18:24:17.653Z",
      "user": "65fc3d09766d7a2c1fafef99",
      "account": "67b300e30a4c3db1b01a3699",
      "currency": "USD",
      "EXP": "**/**",
      "masked_PAN": "4559 88** **** ****",
      "finup_id": "CRD643348276",
      "name": "Approved",
      "notes": "Debit",
      "category": "Universal",
      "currency_short_name": "USD",
      "balance": 0,
      "past_balance": 0,
      "future_balance": 0,
      "deposit": 0,
      "withdraw": 0,
      "spent": 0,
      "status": "Processing",
      "bin_id": "67ade1eef9f79c20b4e78899",
      "3ds": false,
      "address": "2381 Zanker Rd Ste 110, San Jose, CA, 95131, US"
    }
  ]
}

Headers

x-api-key
string
required

API key for authentication

Path Parameters

account_id
string
required

Id of account

Body

application/json
Body
bin_id
string
required

ID of card_type

name
string
required
amount
number
required

Number of cards to be created

notes
string
promo
string

Response

201
application/json
Resource created successfully
result
object[]