GET
/
account
/
api
/
v1
/
session
/
request
curl --request GET \
  --url https://svc.sandbox.anon.com/account/api/v1/session/request \
  --header 'Authorization: Bearer <token>'
{
  "message": "<string>",
  "succeeded": true,
  "status": "<string>",
  "details": {
    "requestId": "<string>",
    "appUserId": "<string>",
    "appSdkClientId": "<string>",
    "domain": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

id
string
required

Request ID

Response

200 - application/json
Successful response

Session request status

message
string
required
succeeded
boolean | null
status
string | null
details
object

Was this page helpful?