Submit Prepayment Balances
https://api.vercel.com/v1/installations/{integrationConfigurationId}/billing/balanceUse the
credentials.access_token we provided in the Upsert Installation body to authorize this request.const response = await fetch('https://api.vercel.com/v1/installations/string/billing/balance', { method: 'POST', headers: { 'Authorization': 'Bearer YOUR_ACCESS_TOKEN', 'Content-Type': 'application/json', }, body: JSON.stringify({ "timestamp": "string", "balances": [] }),});
const data = await response.json();console.log(data);{}Default authentication mechanism
This endpoint expects an object.