Get a KYC form entry details

Get KYC Form Entry by OrganizationID, FormID and FormEntryID

get
Authorizations
Path parameters
organizationIdstringRequired

The organization ID

kycFormIdstring · uuidRequired
kycFormEntryIdstring · uuidRequired
Responses
200
OK
application/json
get
GET /organizations/{organizationId}/kyc-forms/{kycFormId}/entries/{kycFormEntryId} HTTP/1.1
Host: 
Authorization: Bearer jwt
Accept: */*
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "organizationId": "123e4567-e89b-12d3-a456-426614174000",
  "formId": "123e4567-e89b-12d3-a456-426614174000",
  "locale": [
    "en",
    "pt-BR"
  ],
  "status": "draft",
  "answers": [
    {
      "key": "text",
      "valueString": "text",
      "isDefault": true
    }
  ],
  "createdAt": "2025-07-03T20:24:26.591Z",
  "updatedAt": "2025-07-03T20:24:26.591Z"
}

Last updated

Was this helpful?