Menu

Get Integration Resources

GEThttps://api.vercel.com/v1/installations/{integrationConfigurationId}/resources
Get all resources for a given installation ID.
https://api.vercel.com/v1/installations/{integrationConfigurationId}/resources
const response = await fetch('https://api.vercel.com/v1/installations/string/resources', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);
Response
{
"resources": []
}
AuthorizationbearerToken

Default authentication mechanism

integrationConfigurationIdstringRequired
resourcesarrayRequired
400One of the provided values in the request query is invalid.
401The request is not authorized.
403You do not have permission to access this resource.
404Error
Get Integration Resources | Vercel API