Skip to main content
POST
/
auth
/
system-login
Exchange client credentials for a JWT access token. This is the entry-point for
curl --request POST \
  --url https://api.getenso.ai/auth/system-login \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "clientKey": "ck_live_...",
  "clientSecret": "cs_live_..."
}
'
{
  "status": "success",
  "message": "Success",
  "data": {
    "accessToken": "eyJhbGciOiJIUzI1NiIsInR5c..."
  }
}
No bearer token required — this endpoint issues the token.
Exchange client credentials for a JWT access token. This is the entry-point for SystemUser API integrations.

Authorizations

Authorization
string
header
required

JWT bearer token obtained from POST /auth/system-login using your client credentials.

Body

application/json
clientKey
string
required
Example:

"ck_live_..."

clientSecret
string
required
Example:

"cs_live_..."

Response

Success

status
string
Example:

"success"

message
string
Example:

"Success"

data
object