Last updated 1 year ago
The organization ID
The status of the form entry.
OK
const response = await fetch('/organizations/{organizationId}/kyc-forms/{kycFormId}/entries', { method: 'POST', headers: { "Authorization": "Bearer jwt", "Content-Type": "application/json" }, body: JSON.stringify({ "locale": [ "en", "pt-BR" ], "answers": [ { "key": "text", "valueString": "text" } ] }), }); 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-12-21T12:07:33.230Z", "updatedAt": "2024-12-21T12:07:33.230Z" }