Skip to main content
POST
/
api
/
auth
/
token
Authenticate
curl --request POST \
  --url https://api.retailreadyai.com/api/auth/token \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "password": "<string>"
}
'
{
  "message": "API token issued successfully",
  "data": {
    "access_token": "<string>",
    "token_type": "<string>",
    "expires_in": 123
  }
}

Body

application/json
email
string
required

User's email

password
string<password>
required

User's password

Response

Successfully generated access token

message
string

Success message

Example:

"API token issued successfully"

data
object