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"
}
Retrieve the global settings of the wallets.
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"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.
Was this page helpful?