GET
/
v1
/
installations
/
{integrationConfigurationId}
/
member
/
{memberId}
get-member
import { Vercel } from "@vercel/sdk";

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

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

  console.log(result);
}

run();
{
  "id": "<string>",
  "role": "ADMIN"
}

Authorizations

Authorization
string
header
required

Default authentication mechanism

Path Parameters

integrationConfigurationId
string
required
memberId
string
required

Response

id
string
required
role
enum<string>
required

"The ADMIN role, by default, is provided to users capable of installing integrations, while the USER role can be granted to Vercel users with the Vercel Billing or Vercel Viewer role, which are considered to be Read-Only roles."

Available options:
ADMIN,
USER