Authentication
How to use Connections?
Learn how to use connections
Get all connected accounts for an entity
Check if an entity has a connected account for a particular app
Fetch the Connection Parameters
You can use connection parameters locally to build custom actions. The following parameters are typically available:
status
: Current state of the connection (initiated
,active
, orfailed
)refresh_token
: Token used to obtain new access tokensexpires_in
: Token expiration time in secondstoken_type
: Type of token (usually “Bearer”)base_url
: Base URL for API requests- Additional parameters specific to the connected service
Example of how connection params would look like
You can fetch connection details after user is redirected back to your app (If redirect was needed) and connectionStatus
& connectedAccountId
will be available in the query params.
Was this page helpful?