v2

latestOpenAPI 3.1.02026-07-31822441.6 KB

Retrieve linked source

Fetch the linked source for a tenant. This can be useful for fetching credentials and flags, and to confirm that a user is properly connected.

get/{env_id}/{flow_id}/{tenant}/linkedSources

Path parameters

env_idstring required

ID of environment

flow_idstring required

ID of flow

tenantstring required

ID of tenant

Query parameters

tokenstring

JWT token generated with your private signing key. Required if config is requested

configboolean

Request the underlying config for the linked source

catalogboolean

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

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"
        ]
      }
    }
  }
]
All 82 operations