Skip to main content
POST
/
api
/
auth
/
login
Login with password or impersonation token
curl --request POST \
  --url https://your-instance.example.com/api/auth/login \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "password": "<string>",
  "impersonationToken": "<string>"
}
'
{}

Body

application/json

Provide either password or impersonationToken with email.

email
string<email>
required
password
string
impersonationToken
string

Response

Login successful

Generic response envelope. Endpoint-specific fields are intentionally open.