Naming Output File for Datasets in AEP | Community
Skip to main content
Adobe_WanKenobi
Level 2
November 1, 2024
Solved

Naming Output File for Datasets in AEP

  • November 1, 2024
  • 1 reply
  • 454 views

Happy Friday RTCDP Community,

 

My team is working on creating output files for some of our datasets in AEP, but the issue we are running into is we are unable to custom name the output file so that the receiving team can differentiate between each file. Does anyone know how to custom name output files when sending datasets out of AEP (not audiences)? Thank you.

 

- Adobe-Wan Kenobi

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by DavidRoss91

Hi @adobe_wankenobi 

You should be able to do this via API. Something like:


POST https://platform.adobe.io/data/export


{

"dataSetId": "dataset_id",

"destination": {

     "type": "s3",

     "uri": "s3://bucket-path/path/to/export",

     "fileName": "name.csv"

},

"fileFormat": "CSV",

"filters": {

     "example": "value"

}

}

 

 

1 reply

DavidRoss91
Community Advisor
DavidRoss91Community AdvisorAccepted solution
Community Advisor
November 4, 2024

Hi @adobe_wankenobi 

You should be able to do this via API. Something like:


POST https://platform.adobe.io/data/export


{

"dataSetId": "dataset_id",

"destination": {

     "type": "s3",

     "uri": "s3://bucket-path/path/to/export",

     "fileName": "name.csv"

},

"fileFormat": "CSV",

"filters": {

     "example": "value"

}

}