Skip to main content
GET
/
{env_id}
/
{flow_id}
/
supportedSources
Supported sources
curl --request GET \
  --url https://api.hotglue.com/{env_id}/{flow_id}/supportedSources \
  --header 'x-api-key: <api-key>'
import requests

url = "https://api.hotglue.com/{env_id}/{flow_id}/supportedSources"

headers = {"x-api-key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};

fetch('https://api.hotglue.com/{env_id}/{flow_id}/supportedSources', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.hotglue.com/{env_id}/{flow_id}/supportedSources",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.hotglue.com/{env_id}/{flow_id}/supportedSources"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("x-api-key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.hotglue.com/{env_id}/{flow_id}/supportedSources")
.header("x-api-key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.hotglue.com/{env_id}/{flow_id}/supportedSources")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'

response = http.request(request)
puts response.read_body
[
  {
    "tap": "shopify",
    "tags": [
      "ecommerce"
    ],
    "domain": "shopify.com",
    "label": "Shopify",
    "type": "api",
    "icon": "https://s3.amazonaws.com/cdn.hotglue.xyz/images/logos/shopify.svg",
    "auto_support": true,
    "connect_ui_params": {
      "api_key": {
        "label": "API Key",
        "description": "Shopify API Key",
        "type": "password"
      },
      "shop": {
        "label": "Shop",
        "description": "Shopify shop name (ie. the value test_shop in the string https://test_shop.myshopify.com)"
      }
    },
    "config": {
      "start_date": "2015-01-01T00:00:00.000Z"
    },
    "fieldMap": {
      "shop": {
        "name": "shop",
        "selected": [
          "id",
          "name",
          "domain"
        ]
      }
    }
  }
]
{}

Authorizations

x-api-key
string
header
required

Path Parameters

env_id
string
required

ID of environment

flow_id
string
required

ID of flow

Query Parameters

catalog
boolean

Request the catalog of available fields/data to be returned in the payload

Response

200

tap
string
Example:

"shopify"

tags
string[]
domain
string
Example:

"shopify.com"

label
string
Example:

"Shopify"

type
string
Example:

"api"

icon
string
Example:

"https://s3.amazonaws.com/cdn.hotglue.xyz/images/logos/shopify.svg"

auto_support
boolean
default:true
Example:

true

connect_ui_params
object
config
object
fieldMap
object