Last updated 3 months ago
The organization ID
The status of the form entry.
OK
const response = await fetch('/organizations/{organizationId}/kyc-forms/{kycFormId}/entries/{kycFormEntryId}', { method: 'PATCH', headers: { "Authorization": "Bearer jwt", "Content-Type": "application/json" }, body: JSON.stringify({}), }); 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-21T09:11:42.122Z", "updatedAt": "2024-11-21T09:11:42.122Z" }