HTTP error in a custom action created in adobe io to export profiles.
I've created an action in adobe io that exports profiles in an adobe ajo journey, but even though it's not returning errors in my adobe io, ajo is taking a very large fraction of profiles from my action with the http error.
This adobe io code receives the data and sends it to S3 (it's arriving correctly)
example: out of 2000 profiles 1.3k are giving http errors (not timeouts) and the rest work correctly.
My app doesn't require authentication and is true for web, this is the payload I'm sending from adobe ajo to my export action:
{
"journeyId": {
"toBeMapped": true,
"dataType": "string",
"label": "nome jornada"
},
"fileName": {
"toBeMapped": true,
"dataType": "string",
"label": "Nome do arquivo"
},
"CHAVE": {
"toBeMapped": true,
"dataType": "string",
"label": "Chave"
},
"MARCA": {
"toBeMapped": true,
"dataType": "string",
"label": "Marca"
}
}