For the complete documentation index, see llms.txt. This page is also available as Markdown.

Best Practices

Use one data flow per entity group

Split structural entities (Families, Attributes, Channels) from transactional ones (Products) into separate flows. Structural data changes rarely — syncing it daily is overkill and wastes API quota.

Join Products with Families in your destination

The Products entity alone doesn't tell you the full attribute structure. Add Families as a second source and use Coupler.io's Join transformation on the family code to enrich product records with family-level rules.

Use Append for multi-environment exports

If you have staging and production Akeneo instances, add both as sources in a single data flow and use Append to combine them. Tag each row with an environment label so you can filter in your destination.

Data refresh and scheduling

Sync Products more frequently than reference data

Product records (descriptions, images, pricing) change often. Reference entities like Currencies, Locales, and Measure families almost never change — a weekly refresh is plenty for those.

Run a successful manual sync before scheduling

Always complete a manual run first to confirm your credentials and entity selection return the expected data. Only then set up a schedule to avoid silent failures.

Performance optimization

Export reference entities separately

Pulling Attributes, Attribute groups, and Families in the same flow as a large product catalog increases sync time significantly. Keep them in a dedicated flow that runs less frequently.

Use BigQuery or another warehouse for large catalogs

If your catalog exceeds a few thousand products with many localized attribute values, Google Sheets will hit row limits quickly. Route the Products entity to BigQuery and use Looker Studio on top for reporting.

Common pitfalls

Do

  • Create a dedicated Akeneo API connection specifically for Coupler.io exports

  • Check that the connection role has read access to every entity you plan to sync

  • Join Products with Categories to get the full hierarchy path per product

Don't

  • Use admin credentials for the API connection — a read-only role is safer and sufficient

  • Expect values to be flat — attribute values are nested by locale and channel scope

  • Pull all entities in one flow if your catalog is large — split them to stay within rate limits

Last updated

Was this helpful?