Document Authentication

https://app.nipamail.com/transactional/login

Below, we listed the request parameters that required on /user/login API and resource url.

POST https://app-a.nipamail.com/api/v1/user/login
Parameter Type Description Required
username string The username which used to log in to Nipamail Transactional's app. Yes
password string Your login password Yes
Example Request
POST /api/v1/user/login HTTP/1.1 
Host: app-x.nipamail.com

username=email@mail.com
password=Pa$$w0rd
Example Result
Once you execute the above API call, you will receive either a success data or error data in JSON format

{
  "status": "success",
  "code": 200,
  "data": {
    "session_key": "ffa67286202c04c8af6aeb512579ead5d5896054aabb071",
    "message": "login success"
  }
}