POST
/
org
/
appUserIdToken
curl --request POST \
  --url https://svc.sandbox.anon.com/org/appUserIdToken \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "appUserId": "<string>",
  "exp": 123
}'
{
  "appUserIdToken": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
appUserId
string
required
exp
integer | null

Response

200 - application/json
AppUserIdToken created successfully.
appUserIdToken
string
required