SwiftGoma.SwiftGoma

Search endpoints

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

Seller KYC

Approve KYC

POST/api/v1/seller/kyc/:id/approve

Final approval — activates the seller's profile in the same transaction. Admin-only; Support can review but not give final approval.

Requires Authorization
ADMIN only
Authenticated action

Path parameters

idstringrequired
KYC record ID.

Possible errors

409CONFLICTTransition de statut KYC invalide : "PENDING" → "APPROVED".

Notes

  • A KYC record must be SUPPORT_REVIEWED before it can be approved — it can't go straight from PENDING to APPROVED.
Request
curl --request POST \
  --url https://api.swiftgoma.com/api/v1/seller/kyc/:id/approve \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": {
    "id": "kyc_8f1e2a",
    "sellerProfileId": "sp_2b3c4d",
    "idDocumentType": "NATIONAL_ID",
    "idDocumentUrl": "https://res.cloudinary.com/dx3wclabo/image/upload/v1/kyc/id-aline.jpg",
    "proofOfAddressUrl": "https://res.cloudinary.com/dx3wclabo/image/upload/v1/kyc/address-aline.jpg",
    "selfieUrl": "https://res.cloudinary.com/dx3wclabo/image/upload/v1/kyc/selfie-aline.jpg",
    "rccmNumber": null,
    "rccmDocumentUrl": null,
    "status": "APPROVED",
    "createdAt": "2026-01-06T09:00:00.000Z"
  }
}