Menu

List Billing Plans For Installation

GET/v1/installations/{installationId}/plans
Returns the set of billing plans available to a specific Installation
/v1/installations/{installationId}/plans
const response = await fetch('/v1/installations/string/plans', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);
Response
{
"plans": []
}
AuthorizationSystem Authentication

Default authentication mechanism

installationIdstringRequired
X-Vercel-AuthstringOptional
The auth style used in the request (system, user, etc)
Return a list of billing plans for an installation
plansarrayRequired
403Operation failed because the authentication is not allowed to perform this operation
409Operation failed because of a conflict with the current state of the resource
List Billing Plans For Installation | Partner API