Hi
I'm facing an error that seems to be common, we are trying to send batch updates to Target using API v2, but we see always the same response,
<response>
<success>false</success>
<visitorId></visitorId>
<message>Batch is empty</message>
</response>
I'm using the following cURL to make the calls,
curl --location --request POST 'https://<<CLIENT CODE>>.tt.omtrdc.net/m2/<<CLIENT CODE>>/v2/profile/batchUpdate' \
--header 'Authorization: Bearer <<TOKEN>>' \
--data-binary '@BATCH.TXT'
The contents of the BATCH.txt file are like this:
batch=thirdPartyId,param1,param2
id1,value1,value1
id2,value2,value2
I've search here and find some comments regarding this APÌ isn't working on Postman, so we tried via unix and get the same response, any thoughts in whats are we messing?