Tool Router
Create a link session for a toolkit in a tool router session
Initiates an authentication link session for a specific toolkit within a tool router session. Returns a link token and redirect URL that users can use to complete the OAuth flow.
post/api/v3.1/tool_router/session/{session_id}/link
Path parameters
session_idstring toolRouterSessionId required
The session ID returned when creating the session
Example:trs_LX9uJKBinWWr
The unique identifier of the tool router session
Request body
Example request
{
"toolkit": "github",
"callback_url": "https://myapp.com/callback"
}Response
Successfully created link session. Returns link token, redirect URL, and connected account ID.
Example response
{
"link_token": "lt_abc123xyz",
"redirect_url": "https://app.composio.dev/link/lt_abc123xyz",
"connected_account_id": "ca_abc123xyz"
}