Skip to content

List integrations

GET
/api/v1/integrations
curl --request GET \
--url 'https://example.com/%7B%7Bapp_url%7D/api/v1/integrations?type=export' \
--header 'Authorization: Bearer <token>'

Lists the integrations (ESPs, CDNs and localization providers) that connectors can be created for, with each integration’s capabilities. Match a connector’s integration_name to an integration’s name to find out what that connector supports.

type
string
Allowed values: export cdn localization

Type

Successful

Media typeapplication/json
object
results
required
Array<object>
object
type
string
Allowed values: export cdn localization
name
required
string
label
required
string
oauth_redirect
boolean | null
logo_path
required
string
setup_fields
required
Array
One of:
object
name
required
string
label
required
string
hint_html
string
required
required
boolean
type
required
string
Allowed values: text
export_fields
Array
One of:
object
name
required
string
label
required
string
hint_html
string
required
required
boolean
type
required
string
Allowed values: text
resource_name
required
string
folder_support
boolean
campaign_selection_required
boolean
uses_oauth
boolean
supports_image_hosting
boolean
supports_selecting_existing_resource
One of:
boolean
published
required
boolean
Example
{
"results": [
{
"type": "export",
"name": "mailchimp",
"label": "Mailchimp",
"oauth_redirect": true,
"logo_path": "/integration_logos/mailchimp.svg",
"setup_fields": [
{
"name": "api_key",
"label": "API Key",
"hint_html": "Enter your API Key",
"required": true,
"type": "text"
}
],
"export_fields": [
{
"name": "api_key",
"label": "API Key",
"hint_html": "Enter your API Key",
"required": true,
"type": "text"
}
],
"resource_name": "Design",
"folder_support": true,
"campaign_selection_required": true,
"uses_oauth": true,
"supports_image_hosting": true,
"supports_selecting_existing_resource": {
"supports_search": true
},
"published": true
}
]
}