Skip to main content
GET
/
api
/
query
/
migration
/
integrations
/
{integration-type}
cURL
curl 'https://{domo-domain}/api/query/migration/integrations/{integration-type}' \
  -H 'accept: application/json,*/*;q=0.8' \
  -H 'accept-language: en-US,en;q=0.9' \
  -H 'cache-control: max-age=0' \
  -H 'X-DOMO-Developer-Token: {developer-token}'
[
  {
    "id": "31e0307a-cb31-4018-b824-eb04b15827e1",
    "name": "My BigQuery Amplifier Integration",
    "type": "BIGQUERY",
    "authMethod": "SERVICE_ACCOUNT"
  }
]

Authorizations

X-DOMO-Developer-Token
string
header
required

Domo access token generated from the admin panel

Path Parameters

integration-type
string
required

One of the integration types returned by the 'List Cloud Amplifier Integration Types' API (case-insensitive).

Response

200 - application/json

Successful response

id
string<uuid>

Unique identifier of the Cloud Amplifier integration.

name
string

Readable name of the Cloud Amplifier integration.

type
string

Type of the Cloud Amplifier integration.

authMethod
enum<string>

Authentication method of the Cloud Amplifier integration, one of [ "OAUTH", "SERVICE_ACCOUNT" ].

Available options:
OAUTH,
SERVICE_ACCOUNT