Expand my Community achievements bar.

SOLVED

Naming Output File for Datasets in AEP

Avatar

Level 2

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

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

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"

}

}

 

 

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

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"

}

}