Create KYC form entry
Authorizations
Path parameters
organizationIdstringRequired
The organization ID
kycFormIdstring · uuidRequired
Body
localestring · enumRequiredExample:
["en","pt-BR"]
Possible values: statusstring · enumOptionalPossible values:
The status of the form entry.
Responses
201
OK
application/json
403
Forbidden operation
application/json
404
Resource not found
application/json
422
Request validation failed
application/json
post
POST /organizations/{organizationId}/kyc-forms/{kycFormId}/entries HTTP/1.1
Host:
Authorization: Bearer jwt
Content-Type: application/json
Accept: */*
Content-Length: 107
{
"locale": [
"en",
"pt-BR"
],
"answers": [
{
"key": "text",
"valueString": "text",
"isDefault": true
}
],
"status": "draft"
}
{
"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-11T22:42:12.819Z",
"updatedAt": "2025-07-11T22:42:12.819Z"
}
Last updated
Was this helpful?