Documentation Index
Fetch the complete documentation index at: https://docs.bindbee.dev/llms.txt
Use this file to discover all available pages before exploring further.
Overview
A unified model has a fixed schema (e.g. anemployee always exposes first_name, email, etc.). Custom Fields let you extend that schema with extra attributes — for example guardian_mobile — and tell Bindbee how to populate them by pointing a JMESPath expression at the raw upstream payload.
Scopes
Every Custom Field mapping is attached to one of two scopes:- Connector Level: Applied to a specific connector instance.
- Organization Level: Applied to all connectors of a specific integration type.
When a mapping exists at both levels for the same field, the
connector-level mapping takes precedence and overrides the
organization-level one for that connector.
Choosing how to manage Custom Fields
You can manage Custom Fields in two ways. Both create the same underlying configuration and can coexist — pick whichever fits the task.Dashboard Configuration
Visual flow inside the Bindbee Dashboard. Best for ad-hoc setup,
exploring upstream payloads interactively, and one-off field changes.
API Configuration
Programmatic flow for automation, infrastructure-as-code, replicating
configuration across environments, or syncing with internal admin tools.
Fields created from the API are tagged with
source: "API". Fields created
from the dashboard are tagged with source: "DASHBOARD". Both behave
identically once created and appear together in lookups and responses.Using Custom Fields in Responses
Once a field has at least one mapping that resolves on a connector, you can request it back in the unified API response by addinginclude_custom_fields=true to your request.
For example, to fetch employees with custom fields populated:
Best Practices
-
Naming Conventions
- Use clear, descriptive names.
- Follow snake_case formatting.
- Avoid generic names like
custom1,custom2.
-
JMESPath Expressions
- Always preview an expression before saving it.
- Consider data type consistency across connectors of the same integration.
-
Organization vs Connector Level Mapping
- Use Organization Level mappings for data that’s consistent across all connectors of an integration.
- Use Connector Level mappings for connector-specific overrides.
- Review existing Organization Level mappings before creating connector-level duplicates.
-
Automation
- Use the API Configuration flow to keep custom field configuration in version control or replicate it across environments (dev → staging → prod).
- The
configurationendpoint is a good health check — run it after provisioning a new connector to confirm every expected field has a mapping.