SwiftGoma.SwiftGoma

Search endpoints

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

Seller KYC

Get KYC detail

GET/api/v1/seller/kyc/:id

Returns full detail for one KYC submission, including the seller's profile and account info — sensitive fields (passwords, OTP/reset codes) are stripped. Staff-only.

Requires Authorization
ADMIN, SUPPORT only
Session

Path parameters

idstringrequired
KYC record ID.
Request
curl --request GET \
  --url https://api.swiftgoma.com/api/v1/seller/kyc/:id \
  --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": "PENDING",
    "createdAt": "2026-01-06T09:00:00.000Z",
    "sellerProfile": {
      "id": "sp_2b3c4d",
      "businessName": "Boutique Aline",
      "userId": "3f2a1c9e",
      "user": {
        "id": "3f2a1c9e",
        "name": "Aline Mapendo",
        "role": "SELLER",
        "emails": [
          {
            "email": "aline@example.com",
            "isPrimary": true,
            "isVerified": true
          }
        ]
      }
    }
  }
}