/auth/site/login
POST
/auth/site/login
const url = 'https://demo.consystence.com/auth/site/login';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"email":"example","pin":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://demo.consystence.com/auth/site/login \ --header 'Content-Type: application/json' \ --data '{ "email": "example", "pin": "example" }'Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
email
string
pin
string
Examplegenerated
{ "email": "example", "pin": "example"}Responses
Section titled “Responses”OK