Login

The Login API allows registered users to authenticate their credentials and obtain an access token, which is required for interacting with secured endpoints in the Cebuana API.

API Method

POST

Endpoint

https://cebuana-apiuat.veryfyglobal.com/auth/login

Headers

Key
Value

Accept

application/json

Content-Type

application/json

Input Sample

Key
Type
Value
Description

email

string

<YOUR_EMAIL>

The email of the user.

password

string

<YOUR_PASSWORD>

The password for the account.

Response Sample

{
    "message": "Ok",
    "data": {
        "token": "351|9BCkCOWB9wmn4I3eZXILjYZTZjAdA91rMlOztd6E80XXXXXX"
    }
}

Last updated