billing_topup_create
POST
/v1/billing/topup
const url = 'https://example.com/v1/billing/topup';const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/v1/billing/topup \ --header 'Authorization: Bearer <token>'POST /v1/billing/topup — Stripe Checkout for a wallet top-up.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”No response body