Custom field mapping
Allow users to map their fields to your schema
The schemas
option defines fields in your app for your customers to map to. This allows customers to match any field names in their data with standard or programmatically defined field names in your app.
Syntax
schemas: [
{flowId: 'flow_id',
schema: [
{table: 'orders',
fields: [
{id: 'name',
name: "Name"},
{id: 'email',
name: 'Email'}
]
}
]
}
]
Updated 10 days ago