Seller KYC
Mark support-reviewed
POST
/api/v1/seller/kyc/:id/support-reviewThe first review step, typically after a verification call with the seller. Moves the record to SUPPORT_REVIEWED and notifies admins it's ready for final approval.
Requires Authorization
SUPPORT, ADMIN only
Authenticated action
Path parameters
idstringrequired | KYC record ID. |
Body parameters
callNotesstringrequired | Notes from the verification call — required. |
Request
curl --request POST \
--url https://api.swiftgoma.com/api/v1/seller/kyc/:id/support-review \
--header 'Authorization: Bearer <access_token>' \
--header 'Content-Type: application/json' \
--data '{
"callNotes": "<callNotes>"
}'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": "SUPPORT_REVIEWED",
"createdAt": "2026-01-06T09:00:00.000Z"
}
}