コンテンツにスキップ

Create an anonymous-login challenge.

POST
/api/auth/anon-login/challenge
Code sample: Shell / cURL
curl --request POST \
--url https://auth.example.com/api/auth/anon-login/challenge \
--header 'Content-Type: application/json' \
--data '{ "client_id": "client_123", "device_signature": "device_sig_123", "platform": "web" }'
Media type application/json
object
client_id
required
string
device_signature
string
device_stability
string
platform
string
Example
{
"client_id": "client_123",
"device_signature": "device_sig_123",
"platform": "web"
}

Successful JSON response.

Media type application/json
object
challenge_id
required
string
challenge
required
string
expires_at
required
integer
Example
{
"challenge_id": "challenge_123",
"challenge": "anon_challenge_123",
"expires_at": 1770000300000
}