Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Custom CF Exporting to Adobe Target

Avatar

Level 2

Hi All,

We are using AEM 6.5.20 , as you know in AMS Content Fragment is not exporting to Adobe Target .

Currently I am checking anyone did the custom solution for Exporting Content Fragment to Adobe Target Using Adobe I/O.

 

any leads that will be appreciated.

4 Replies

Avatar

Level 4

Hi @lax50 

 

  • Adobe I/O Auth

  • Content Fragment serialization

    • Write a Sling Model/Service to turn CF JSON into the format Target’s Offer API expects.

    • Use Externalizer to resolve publish URLs for referenced assets.

  • Push to Target

    • Call Adobe Target’s Offers API via Adobe I/O to create/update offers.

  • Trigger export

    • Add a workflow step or UI button in AEM (“Export to Target”).

    • Or hook into CF publish events for auto-export.

Adobe docs (Cloud Service only, but shows the model): Experience League – CF to Target

Example approach with XF/Target export automation (can adapt for CF): StackOverflow

 

Hope this helpful.:)

 

Regards,

Karishma.

 

Avatar

Level 2

do you have any example/ use case where it has been implemented 

Avatar

Level 4

Not exactly but found some resource 

Exporting Content Fragments to Adobe Target | Adobe Experience Manager.

Hope this helpful:)

Avatar

Community Advisor

Hi @lax50 ,

On AMS/6.5 you need a custom solution:

Build a service that reads the CF JSON from AEM.

Use Adobe I/O Target APIs (/offers, /content) to push that JSON into Target as an offer.

Manage authentication with Adobe I/O (JWT/Service Account or OAuth).

Automate via workflow/replication so when a CF is published, the corresponding Target offer is created/updated.

no OOTB support on 6.5 AMS - you must custom-build an exporter that posts CF JSON into Target via Adobe I/O APIs.

 

Hrishikesh Kagane