07-26-2021 10:12 AM
I’m trying to return a hash of a CSV document I’m returning in a triggered task and I want to return it in a HTTP header.
I would have thought i can do it the same way i can manipulate the status code by setting a binary header, but the headers aren’t coming through.
Does anyone have an idea how to achieve this? (Ideally without buying any additional subscription services, thanks)
Here’s an example of the output of the csv formatter:
Best regards
Thomas
Solved! Go to Solution.
07-26-2021 11:50 AM
Hi @Henchway,
If you are referring to having a SnapLogic triggered task respond with a custom HTTP header value, then these are the following scenarios:
The $content variable within the Mapper will contain the response body so ensure that’s there if necessary.
Thanks,
Ali
07-26-2021 11:06 AM
Hi @Henchway
If you have the key $content
mapped in your response document, that will be considered the response body, and the rest of the key/value pairs are treated as response headers.
07-26-2021 11:50 AM
Hi @Henchway,
If you are referring to having a SnapLogic triggered task respond with a custom HTTP header value, then these are the following scenarios:
The $content variable within the Mapper will contain the response body so ensure that’s there if necessary.
Thanks,
Ali
07-27-2021 02:21 AM
Thank you very much, i wasn’t aware that I had to use the override URL to use custom headers!
Best regards
Thomas