Target metadata
Supported targets
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
Target metadata
Supported targets
Returns all of the targets that are enabled in a particular flow
GET
/
{env_id}
/
{flow_id}
/
supportedTargets
curl --request GET \
--url https://client-api.hotglue.xyz/{env_id}/{flow_id}/supportedTargets \
--header 'x-api-key: <api-key>'
[
{
"target": "mssql",
"flowType": "all",
"domain": "microsoft.com",
"label": "Microsoft SQL",
"type": "api",
"icon": "https://s3.amazonaws.com/cdn.hotglue.xyz/images/logos/mssql.svg",
"validation_supported": true,
"connect_ui_params": {
"host": {
"label": "Host Name",
"description": "Your SQL server host"
},
"port": {
"label": "Port",
"description": "Your SQL server port"
},
"database": {
"label": "Database",
"description": "Your SQL database name"
},
"user": {
"label": "User",
"description": "Your SQL user"
},
"password": {
"label": "Password",
"description": "Your SQL password",
"type": "password"
}
},
"connector_props": {
"singer_sdk": true
},
"install_uri": "git+https://github.com/hotgluexyz/target-mssql.git@hgi-6830",
"isForked": true
}
]
Authorizations
Response
200
application/json
200
The response is of type object[]
.
curl --request GET \
--url https://client-api.hotglue.xyz/{env_id}/{flow_id}/supportedTargets \
--header 'x-api-key: <api-key>'
[
{
"target": "mssql",
"flowType": "all",
"domain": "microsoft.com",
"label": "Microsoft SQL",
"type": "api",
"icon": "https://s3.amazonaws.com/cdn.hotglue.xyz/images/logos/mssql.svg",
"validation_supported": true,
"connect_ui_params": {
"host": {
"label": "Host Name",
"description": "Your SQL server host"
},
"port": {
"label": "Port",
"description": "Your SQL server port"
},
"database": {
"label": "Database",
"description": "Your SQL database name"
},
"user": {
"label": "User",
"description": "Your SQL user"
},
"password": {
"label": "Password",
"description": "Your SQL password",
"type": "password"
}
},
"connector_props": {
"singer_sdk": true
},
"install_uri": "git+https://github.com/hotgluexyz/target-mssql.git@hgi-6830",
"isForked": true
}
]