Authentication

POST /auth

API to authenticate using credential and application details

application/json

Body

Post the necessary fields for the API to authendicate the application

Responses

POST /auth
curl \
 -X POST https://api-console.logezy.co/v1/auth \
 -H "Content-Type: application/json" \
 -H "Accept: application/json" \
 -d '{"email":"string","password":"string","application_id":"string","client_id":"string","client_secret":"string"}'
Request example
# Headers
Accept: application/json

# Payload
{
  "email": "string",
  "password": "string",
  "application_id": "string",
  "client_id": "string",
  "client_secret": "string"
}
Response examples (200)
{
  "application_id": "73b3aab2-d1de-4ce2-ae82-ded953ff755e",
  "client_id": "OTM5NzUxNWQtMWRmYi00NWE5LWE0OTktOGY5ZGRjNWM3N2M2",
  "code": "fe39e7d5-6555-4fd5-aefa-916d3e010081"
}