Get Member Information
https://api.vercel.com/v1/installations/{integrationConfigurationId}/member/{memberId}const response = await fetch('https://api.vercel.com/v1/installations/string/member/string', { method: 'GET', headers: { 'Authorization': 'Bearer YOUR_ACCESS_TOKEN', 'Content-Type': 'application/json', },});
const data = await response.json();console.log(data);{ "id": "string", "role": "ADMIN", "globalUserId": "string", "userEmail": "string"}Default authentication mechanism
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."