v2

latestOpenAPI 3.1.02026-07-31822441.6 KB

Retrieve linked connector

Fetch the configuration details for a linked connector

get/v2/{env_id}/{flow_id}/{tenant}/linkedConnectors

Path parameters

env_idstring required

ID of environment

flow_idstring required

ID of flow

tenantstring required

ID of tenant

Query parameters

configboolean

Request the underlying config for the linked source

catalogboolean

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

tokenstring

JWT token generated with your private signing key.

Response

200

tapstring
domainstring
labelstring
tap_urlstring
auth_urlstring
iconstring
typestring
client_idstring

Example response

[
  {
    "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"
        ]
      }
    }
  }
]