members
Creates, updates, deletes, gets or lists a members resource.
Overview
| Name | members |
| Type | Resource |
| Id | vercel.marketplace.members |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | |
global_user_id | string | (wire: globalUserId) |
role | string | "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." (ADMIN, USER) |
user_email | string | (wire: userEmail) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | integration_configuration_id, member_id | Returns the member role and other information for a given member ID ("user_id" claim in the SSO OIDC token). |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
integration_configuration_id | string | |
member_id | string |
SELECT examples
- get
Returns the member role and other information for a given member ID ("user_id" claim in the SSO OIDC token).
SELECT
id,
global_user_id,
role,
user_email
FROM vercel.marketplace.members
WHERE integration_configuration_id = '{{ integration_configuration_id }}' -- required
AND member_id = '{{ member_id }}' -- required
;