Source metadata
Available sources
hotglue API
- Overview
- Secure Requests
- Manage Tenants
- Flows
- Jobs
- Schedule jobs
V1 - One Way Flows
- Introduction
- POSTRun a V1 job
- Source metadata
- Target metadata
- Linked sources
- Linked sources state
- Linked targets
V2 - Two Way Flows
- Introduction
- POSTRun a V2 Job
- Connector metadata
- Linked connectors
- Linked sources
- Linked targets
BETA - Real-time Write
Source metadata
Available sources
Returns details for every source that you can enable in your environment
GET
/
{env_id}
/
availableSources
curl --request GET \
--url https://client-api.hotglue.xyz/{env_id}/availableSources \
--header 'x-api-key: <api-key>'
[
{
"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
Path Parameters
ID of environment
Response
200
application/json
200
The response is of type object[]
.
curl --request GET \
--url https://client-api.hotglue.xyz/{env_id}/availableSources \
--header 'x-api-key: <api-key>'
[
{
"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"
]
}
}
}
]