Last updated 1 year ago
The organization ID
OK
The status of the form entry.
const response = await fetch('/organizations/{organizationId}/kyc-forms/{kycFormId}/entries/{kycFormEntryId}', { method: 'GET', headers: { "Authorization": "Bearer jwt" }, }); const data = await response.json();
{ "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": false } ], "createdAt": "2024-11-21T08:50:07.249Z", "updatedAt": "2024-11-21T08:50:07.249Z" }