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

Authorizations

Authorization
string
header
required

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

Body

application/json
email
string
required
password
string
required

Response

200 - application/json
Login successful, session token returned.

A session token that can be used to authenticate as an Anon Member identity for use in subsequent requests as a Bearer token via Authorization header.

token
string
required

Was this page helpful?