steps to update a dataflow using API | Community
Skip to main content
itsMeTechy
October 10, 2025
Solved

steps to update a dataflow using API

  • October 10, 2025
  • 1 reply
  • 216 views

can someone give me the series of steps we need to do to update dataflow mapping. for ex: if the existing mapping for an attribute if its mapped as direct attributes from source, and now need to add a dataprep while mapping to target attribute. how can i do this using API. 

Best answer by Devyendar

@itsmetechy 

Here are the series of steps to update dataflow mapping:-

  1. Find your dataflow and its mappingSetId
  2. Fetch the current mapping set
  3. Validate your new Data Prep expression (optional but recommended)
  4. Update the mapping set, replace the target attribute’s direct map with an EL expression.

    • PUT /data/foundation/conversion/mappingSets/{mappingSetId} (send back the full mapping set with your edited mappings[]).

  5. (If needed) Patch the dataflow to point to a new mapping set

  6. Run/verify

 

1 reply

Devyendar
DevyendarAccepted solution
October 22, 2025

@itsmetechy 

Here are the series of steps to update dataflow mapping:-

  1. Find your dataflow and its mappingSetId
  2. Fetch the current mapping set
  3. Validate your new Data Prep expression (optional but recommended)
  4. Update the mapping set, replace the target attribute’s direct map with an EL expression.

    • PUT /data/foundation/conversion/mappingSets/{mappingSetId} (send back the full mapping set with your edited mappings[]).

  5. (If needed) Patch the dataflow to point to a new mapping set

  6. Run/verify

 

Devyendar
October 22, 2025

@itsmetechy hope the answer provided was useful, can you mark the response as "Correct Answer" to help the wider community.