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
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 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"
}