Typescript
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" }
Returns the member role and other information for a given member ID (“user_id” claim in the SSO OIDC token).
Default authentication mechanism
The response is of type object.
object