POST
/
account
/
api
/
v1
/
session
/
request
curl --request POST \
  --url https://svc.sandbox.anon.com/account/api/v1/session/request \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "iosPushAuthorization": {
    "iosAppId": "<string>",
    "authToken": "<string>"
  },
  "account": {
    "ownerId": "<string>",
    "domain": "<string>"
  },
  "appSdkClientId": "<string>",
  "alertBody": "<string>",
  "alertTitle": "<string>"
}'
{
  "message": "<string>",
  "status": "<string>",
  "requestId": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
iosPushAuthorization
object
required
account
object
required
appSdkClientId
string
required
alertBody
string | null
alertTitle
string | null

Response

200 - application/json
Successful response

Created session request info

message
string
required
status
string
required
requestId
string
required

Was this page helpful?