cURL
curl --request POST \ --url https://synapse.telepatia.ai/v1/auth/login \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "consultationInternalId": "cons_abc123" } '
200
Example
{ "code": "a1b2c3d4e5", "expiresAt": "2026-02-20T18:30:00+00:00", "expiresIn": 300, "redirectUrl": "https://scribe.telepatia.ai/#/onboarding/sign-in?code=a1b2c3d4e5" }
Login via API key. Returns a verification code.
API key passed as a Bearer token
Login request body.
128
"cons_abc123"
Successful Response
Login response with verification code.
255
"a1b2c3d4e5"
"2026-02-20T18:30:00+00:00"
300
"https://scribe.telepatia.ai/#/onboarding/sign-in?code=a1b2c3d4e5"