Authentication

POST /auth

API to authenticate using credential and application details

Headers

  • Accept string
application/json

Body

Post the necessary fields for the API to authendicate the application

  • email string
  • password string
  • application_id string
  • client_id string
  • client_secret string

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • application_id string
    • client_id string
    • code string
  • 400

    Missing Required Information

  • 409

    Email Already Taken

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

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