Create a session for a user based on a client token obtained after successfully completing a challenge. This will return an access token and refresh token which can be used to manage a session.
cURL
curl --request POST \ --url https://api.authsignal.com/v1/sessions \ --header 'Content-Type: application/json' \ --data '{ "token": "eyJhbGciOiJ...", "clientId": "64818035-68c3-4087-a449-bdd176a166c4" }'
{ "accessToken": "<string>", "refreshToken": "<string>" }
OK
The response is of type object.
object
Was this page helpful?