Process the OAuth callback and create the personal connector. This endpoint is called automatically by the OAuth provider after user authorization.
GEThttps://api.aitronos.com/v1/personal-connectors/callback?code={code}&state={state}&error={error}
code string required Authorization code from OAuth provider.
state string optional State token for CSRF protection (from authorize endpoint). Note: ClickUp doesn't return this parameter.
error string optional Error from OAuth provider if auth failed.
The created personal connector configuration object.
Bash
- Bash
- Python
- JavaScript
curl "https://api.aitronos.com/v1/personal-connectors/callback?code=abc123&state=abc123def456..."Response:
{
"success": true,
"data": {}
}