SwiftGoma.SwiftGoma

Search endpoints

Jump to any API endpoint by name, method, or path

Login

Log in with password

POST/api/v1/auth/login/password

Standard email + password login.

No authentication required
Credential check — tight, feeds automatic IP blocking

Body parameters

emailstringrequired
Account email address.
passwordstringrequired
Account password.
deviceNamestring
Human-readable device label for the new session.
localestring
en or fr.

Possible errors

401UNAUTHORIZEDIdentifiants invalides.

Notes

  • If two-factor authentication is enabled, the response is { requiresTotp: true, pendingToken } instead — pass pendingToken to POST /login/totp.
  • A login-detected security email is sent for sign-ins from a new device or location.
Request
curl --request POST \
  --url https://api.swiftgoma.com/api/v1/auth/login/password \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "aline@example.com",
  "password": "••••••••",
  "deviceName": "Chrome on macOS",
  "locale": "fr"
}'
200Example response
{
  "success": true,
  "data": {
    "user": {
      "id": "3f2a1c9e-7b41-4e2a-9c31-8e6b2d4f10aa",
      "name": "Aline Mapendo",
      "role": "BUYER",
      "email": "aline@example.com",
      "isEmailVerified": true,
      "phone": "243812345678",
      "isPhoneVerified": false,
      "createdAt": "2026-01-14T10:32:00.000Z"
    }
  }
}