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..."
}
}Exchange client credentials for a JWT access token. This is the entry-point for SystemUser API integrations.
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..."
}
}JWT bearer token obtained from POST /auth/system-login using your client credentials.