Menu

Get Account Information

GEThttps://api.vercel.com/v1/installations/{integrationConfigurationId}/account
Fetches the best account or user’s contact info
https://api.vercel.com/v1/installations/{integrationConfigurationId}/account
const response = await fetch('https://api.vercel.com/v1/installations/string/account', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);
Response
{
"name": "string",
"url": "string",
"contact": {
"email": "string",
"name": "string"
}
}
AuthorizationbearerToken

Default authentication mechanism

integrationConfigurationIdstringRequired
namestringOptional
The name of the team the installation is tied to.
urlstringRequired
A URL linking to the installation in the Vercel Dashboard.
contactobjectRequired
The best contact for the integration, which can change as team members and their roles change.
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 Account Information | Vercel API