Skip to main content
GET
/
{env_id}
/
{flow_id}
/
{tenant}
/
connectors
/
{connector_id}
/
accesstoken
Retrieve access token
curl --request GET \
  --url https://api.hotglue.com/{env_id}/{flow_id}/{tenant}/connectors/{connector_id}/accesstoken \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9..."
}

Authorizations

x-api-key
string
header
required

Path Parameters

env_id
string
required

ID of environment

flow_id
string
required

ID of flow

tenant
string
required

ID of tenant

connector_id
string
required

ID of connector

Example:

"salesforce"

Response

200

success
boolean
Example:

true

access_token
string
Example:

"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9..."