In BNDRY, you can configure forms for any situation where you need to collect data from customers and third parties. Common use cases include ongoing customer due diligence, investigations, and requests for information (RFIs). BNDRY forms support a wide variety of input types, validation, conditional fields, and multi-step flows.

BNDRY forms are configured using the FormKit schema, which provides a high degree of flexibility to define forms customised for your processes. Get in touch with our team to set up forms for your organisation in BNDRY.
export default [
{
$formkit: 'text',
name: 'full_name',
label: 'Full Name',
validation: 'required',
placeholder: 'Enter your name'
},
{
$formkit: 'email',
name: 'email',
label: 'Email Address',
validation: 'required|email',
placeholder: 'you@example.com'
},
{
$formkit: 'select',
name: 'role',
label: 'Role',
options: [
{ label: 'Admin', value: 'admin' },
{ label: 'Editor', value: 'editor' },
{ label: 'Viewer', value: 'viewer' }
],
validation: 'required'
}
]
Forms in BNDRY are flexible building blocks that can be deployed and used in different ways depending on your workflow:
Feature | Description |
---|---|
Workspaces | Add one or more forms to a Workspace. Workspaces can be shared with external customers or internal users to collaborate on data collection. |
Internal Use | Create and complete forms directly in BNDRY for internal use cases such as investigations, unusual activity reviews, or preparing Suspicious Matter Reports (SMRs). |
Automations | Add forms to an Automation flow to include and complete forms as part of an end-to-end process. For example, BNDRY's Individual Onboarding Automation starts with a sign-up form, then automatically creates an entity and runs AML screening checks. |
External Portal | Send forms to external customers through BNDRY's secure portal. Recipients can access the form via a time-limited anonymous session, making it easy to request and receive information. |
Embedded Forms | Embed BNDRY forms in your existing applications or websites using an iFrame. Form data flows directly into BNDRY, where it can be linked to Entities and tracked and stored securely. |