import { Vercel } from "@vercel/sdk";
const vercel = new Vercel({
bearerToken: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
await vercel.marketplace.submitPrepaymentBalances({
integrationConfigurationId: "<id>",
});
}
run();
Copy
Ask AI
This response has no body data.
marketplace
Submit Prepayment Balances
Sends the prepayment balances. The partner should do this at least once a day and ideally once per hour. Use the credentials.access_token we provided in the Upsert Installation body to authorize this request.
POST
/
v1
/
installations
/
{integrationConfigurationId}
/
billing
/
balance
submit-prepayment-balances
Copy
Ask AI
import { Vercel } from "@vercel/sdk";
const vercel = new Vercel({
bearerToken: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
await vercel.marketplace.submitPrepaymentBalances({
integrationConfigurationId: "<id>",
});
}
run();