Connector Scenarios calling each other

If have a webhook-driven scenario that works fine and returns json as expected when called via postman. I set up a second scenario that calls the first scenario as part of it. When called from the second scenario, make treats the response as binary. Am I missing something?

via postman:
image

Hello @john_allinson ,

I this case you can use toString(toBinary(Data;base64) formula.

If you need additional support, please don’t hesitate to reach out.

//VLAD

2 Likes

Make sure you set the content-type in the headers. This is probably missing so its default sending binary data.

2 Likes

This did it. Thanks!

2 Likes