GET
/
v1
/
wallets
/
settings
curl --request GET \
  --url https://api.hyperline.co/v1/wallets/settings \
  --header 'Authorization: Bearer <token>'
{
  "enabled": true,
  "allow_free_credits": true,
  "allow_topup_on_portal": false,
  "product_ids": [],
  "updated_at": "2024-12-20T16:04:11Z"
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json
enabled
boolean
required

Indicates if the wallet feature is enabled or not. If disabled, wallets won't be debited even if they are in active state and with money.

allow_free_credits
boolean
required

Allow top up for free amounts on wallets.

allow_topup_on_portal
boolean
required

Allow wallet top up on customer's portal.

product_ids
string[]
required

Product IDs on which wallet will apply. If empty, the wallet will apply to all invoice line items.

updated_at
string | null
required

Last edition date of the wallet settings.