Skip to main content

account_info

Creates, updates, deletes, gets or lists an account_info resource.

Overview

Nameaccount_info
TypeResource
Idvercel.marketplace.account_info

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the team the installation is tied to.
contactobjectThe best contact for the integration, which can change as team members and their roles change.
urlstringA URL linking to the installation in the Vercel Dashboard.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectintegration_configuration_idFetches 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.

NameDatatypeDescription
integration_configuration_idstring

SELECT examples

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
;