Skip to main content
POST
/
v1
/
auth
/
login
Login
curl --request POST \
  --url https://api.oneinbox.ai/v1/auth/login \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "password": "<string>"
}
'
{
  "access_token": "<string>",
  "expires_in_minutes": 123,
  "token_type": "Bearer"
}

Body

application/json
email
string<email>
required
password
string
required

Response

Successful Response

access_token
string
required
expires_in_minutes
integer
required
token_type
string
default:Bearer