POST
/
v1
/
wallets
/
{id}
/
load
curl --request POST \
  --url https://api.hyperline.co/v1/wallets/{id}/load \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": 24000,
  "amount_free": 24000
}'
{
  "id": "wal_PPpxP5d3uvgiTT",
  "customer_id": "cus_QalW2vTAdkR6IY",
  "state": "active",
  "currency": "EUR",
  "balance": {
    "amount": 2400
  },
  "projected_balance": {
    "amount": 2400
  },
  "created_at": "2024-12-20T16:04:11Z",
  "is_auto_load_enabled": true,
  "auto_load_type": "paid",
  "auto_load_amount": 20000,
  "auto_load_interval": {
    "period": "months",
    "count": 1
  },
  "auto_load_next_date": "2024-12-20T16:04:11Z",
  "auto_load_reset": false
}

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

Load wallet payload

The body is of type object.

Response

200
application/json

The response is of type object.