Skip to main content
POST
/
api
/
v3
/
auth
/
login
Authentication Login
curl --request POST \
  --url https://sandbox-api.kotanipay.com/api/v3/auth/login \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]"
}
'
{
  "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

Response

success
boolean
Example:

true

message
string
Example:

"login magic link sent to your email"

data
object
Example:
{}