billing_auto_reload_update
PUT
/v1/billing/auto-reload
const url = 'https://example.com/v1/billing/auto-reload';const options = {method: 'PUT', 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 PUT \ --url https://example.com/v1/billing/auto-reload \ --header 'Authorization: Bearer <token>'PUT /v1/billing/auto-reload — configure the reload trigger.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”No response body