Skip to main content
POST
/
api
/
v3
/
auth
/
login
Authentication Login
curl --request POST \
  --url https://preview.kotanipay.com/api/v3/auth/login \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "example@gmail.com"
}
'
{
  "success": true,
  "message": "login magic link sent to your email",
  "data": {}
}
Login to your integrator account. This endpoint allows you to authenticate and receive a JWT access token for API access.

Body

application/json
email
string
Example:

"example@gmail.com"

Response

success
boolean
Example:

true

message
string
Example:

"login magic link sent to your email"

data
object
Example:
{}