Get rolling release billing status
GET
https://api.vercel.com/v1/projects/{idOrName}/rolling-release/billingGet the Rolling Releases billing status for a project. The team level billing status is used to determine if the project can be configured for rolling releases.
Request
import { Vercel } from "@vercel/sdk";
const vercel = new Vercel({ bearerToken: "<YOUR_BEARER_TOKEN_HERE>",});
async function run() { const result = await vercel.rollingRelease.getRollingReleaseBillingStatus({ idOrName: "<value>", teamId: "team_1a2b3c4d5e6f7g8h9i0j1k2l", slug: "my-team-url-slug", });
console.log(result);}
run();Response
{ "availableSlots": "0", "reason": "plan_not_supported", "message": "string"}AuthorizationbearerToken
Default authentication mechanism