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
Linked connectors
Retrieve linked connector
Fetch the configuration details for a linked connector
GET
/
v2
/
{env_id}
/
{flow_id}
/
{tenant}
/
linkedConnectors
Copy
Ask AI
curl --request GET \
--url https://client-api.hotglue.xyz/v2/{env_id}/{flow_id}/{tenant}/linkedConnectors \
--header 'x-api-key: <api-key>'
Copy
Ask AI
[
{
"tap": "asana",
"domain": "asana.com",
"label": "Asana",
"tap_url": "https://app.asana.com/-/oauth_authorize?response_type=code&client_id=*********",
"auth_url": "https://app.asana.com/-/oauth_token",
"icon": "https://s3.amazonaws.com/cdn.hotglue.xyz/images/logos/asana.svg",
"type": "oauth",
"client_id": "**********",
"fieldMap": {
"tasks": {
"name": "tasks",
"selected": [
"gid",
"modified_at",
"resource_type",
"name",
"approval_status",
"assignee_status",
"completed",
"completed_at",
"completed_by",
"created_at",
"dependencies",
"dependents",
"due_at",
"due_on",
"external",
"hearted",
"hearts",
"html_notes",
"is_rendered_as_seperator",
"liked",
"likes",
"memberships",
"notes",
"num_hearts",
"num_likes",
"num_subtasks",
"resource_subtype",
"start_on",
"assignee",
"custom_fields",
"followers",
"parent",
"permalink_url",
"projects",
"tags",
"workspace"
]
}
}
}
]
Authorizations
Path Parameters
ID of environment
ID of flow
ID of tenant
Query Parameters
Request the underlying config for the linked source
Request the catalog of available fields/data to be returned in the payload
JWT token generated with your private signing key.
Response
200
application/json
200
The response is of type object[]
.
Copy
Ask AI
curl --request GET \
--url https://client-api.hotglue.xyz/v2/{env_id}/{flow_id}/{tenant}/linkedConnectors \
--header 'x-api-key: <api-key>'
Copy
Ask AI
[
{
"tap": "asana",
"domain": "asana.com",
"label": "Asana",
"tap_url": "https://app.asana.com/-/oauth_authorize?response_type=code&client_id=*********",
"auth_url": "https://app.asana.com/-/oauth_token",
"icon": "https://s3.amazonaws.com/cdn.hotglue.xyz/images/logos/asana.svg",
"type": "oauth",
"client_id": "**********",
"fieldMap": {
"tasks": {
"name": "tasks",
"selected": [
"gid",
"modified_at",
"resource_type",
"name",
"approval_status",
"assignee_status",
"completed",
"completed_at",
"completed_by",
"created_at",
"dependencies",
"dependents",
"due_at",
"due_on",
"external",
"hearted",
"hearts",
"html_notes",
"is_rendered_as_seperator",
"liked",
"likes",
"memberships",
"notes",
"num_hearts",
"num_likes",
"num_subtasks",
"resource_subtype",
"start_on",
"assignee",
"custom_fields",
"followers",
"parent",
"permalink_url",
"projects",
"tags",
"workspace"
]
}
}
}
]
Assistant
Responses are generated using AI and may contain mistakes.