curl --request PATCH \
--url https://api.hyperline.co/v1/wallets/settings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"enabled": true,
"allow_free_credits": true,
"allow_topup_on_portal": false,
"product_ids": []
}'
{
"enabled": true,
"allow_free_credits": true,
"allow_topup_on_portal": false,
"product_ids": [],
"updated_at": "2024-12-20T16:04:11Z"
}
Update the global settings of the wallets.
curl --request PATCH \
--url https://api.hyperline.co/v1/wallets/settings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"enabled": true,
"allow_free_credits": true,
"allow_topup_on_portal": false,
"product_ids": []
}'
{
"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.
Update wallet settings payload
The body is of type object
.
The response is of type object
.
Was this page helpful?