SwiftGoma.SwiftGoma

Search endpoints

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

Account

Resend verification email

POST/api/v1/auth/resend-verification

Issues a fresh verification code for an unverified account and re-sends it by email.

No authentication required
Request/initiation — per IP and per account

Body parameters

emailstringrequired
The unverified account's email address.
localestring
en or fr. Defaults to en.

Notes

  • Subject to a resend cooldown to prevent inbox flooding.
Request
curl --request POST \
  --url https://api.swiftgoma.com/api/v1/auth/resend-verification \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "aline@example.com",
  "locale": "fr"
}'
200Example response
{
  "success": true,
  "data": {
    "id": "3f2a1c9e-7b41-4e2a-9c31-8e6b2d4f10aa",
    "name": "Aline Mapendo",
    "role": "BUYER",
    "email": "aline@example.com",
    "isEmailVerified": false,
    "phone": "243812345678",
    "isPhoneVerified": false,
    "createdAt": "2026-01-14T10:32:00.000Z"
  }
}