Skip to main content
POST
/
v1
/
auth
/
{app_id}
/
magic_links
/
status
Check magic link status
curl --request POST \
  --url https://{defaultHost}/v1/auth/{app_id}/magic_links/status \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Authorization: <api-key>'
{
  "access": "<string>",
  "refresh": "<string>",
  "csrf": "<string>",
  "access_expires_at": "2023-11-07T05:31:56Z",
  "refresh_expires_at": "2023-11-07T05:31:56Z",
  "user_id": "<string>",
  "key_id": "<string>",
  "message": "ok"
}

Authorizations

Authorization
string
header
required

API Secret token

X-Authorization
string
header
required

User Access token

Path Parameters

app_id
string
required

App ID

Response

magic link not yet activated

Magic link exists but hasn't been activated yet - continue polling

access
string

JWT access token

refresh
string

JWT refresh token

csrf
string

CSRF token

access_expires_at
string<date-time>
refresh_expires_at
string<date-time>
user_id
string

App user ID

key_id
string

App key ID

message
string
Example:

"ok"