Login

This is where the login begins.



Endpoint


Method Description URI
POST Post Login Informations /api/v2/login



Required Headers


Key Value
Accept application/json
Content-Type application/json


Post Login Informations

Parameters


Method URI
POST /api/v2/login

Body


Key Type Required
email string Yes
password string Yes

Example :


{
    "email": "example@email.com",
    "password": "examxxxxx"
}

Response


{success} Success code : 200

{
    "success": true,
    "data": {
        "token": "bG2zbROtVk1Wry4UkSN5w5veNLPdugU_"
    },
    "errors": null,
    "meta": {
        "timestamp": "2020-07-20 08:52:30 UTC",
        "timezone": "UTC"
    }
}