POST Service Task works in Test but not on Bot

Hi there,

Trying to send data to a third party API for analysis and I’ve got the service configured and worked into the flow. It pulls in an entity to send along and sends it along as JSON

{
  "text": "{{context.entities.GetInput}}"
}

When I go to test the request, it comes through correctly and I can see the results I’m expecting, but when I go to test it with the bot the Debugger doesn’t see any of these results. Instead I get a “Authentication Successful” with an empty JSON container. I don’t see the results anywhere in the Session Context and Variables window either. Am I missing something?

Using the Test feature

bot2

Thanks

Quick update on this. Discovered that the results are coming through, but there wasn’t an automatic parsing of the data into storage. I can access the results using the following
{{context.service-name.response.body.text}}