account_info
Creates, updates, deletes, gets or lists an account_info resource.
Overview
| Name | account_info |
| Type | Resource |
| Id | vercel.marketplace.account_info |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the team the installation is tied to. |
contact | object | The best contact for the integration, which can change as team members and their roles change. |
url | string | A URL linking to the installation in the Vercel Dashboard. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | integration_configuration_id | Fetches the best account or user’s contact info |
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 |
SELECT examples
- get
Fetches the best account or user’s contact info
SELECT
name,
contact,
url
FROM vercel.marketplace.account_info
WHERE integration_configuration_id = '{{ integration_configuration_id }}' -- required
;