Skip to main content
GET
/
v1
/
installations
/
{integrationConfigurationId}
/
account
get-account-info
import { Vercel } from "@vercel/sdk";

const vercel = new Vercel({
  bearerToken: "<YOUR_BEARER_TOKEN_HERE>",
});

async function run() {
  const result = await vercel.marketplace.getAccountInfo({
    integrationConfigurationId: "<id>",
  });

  console.log(result);
}

run();
{
  "url": "<string>",
  "contact": {
    "email": "<string>",
    "name": "<string>"
  },
  "name": "<string>"
}

Authorizations

Authorization
string
header
required

Default authentication mechanism

Path Parameters

integrationConfigurationId
string
required

Response

url
string
required

A URL linking to the installation in the Vercel Dashboard.

contact
object
required

The best contact for the integration, which can change as team members and their roles change.

name
string

The name of the team the installation is tied to.