Hi, I need to send an HTTP request to the Bland API and also show the exact JSON I sent in the Activity comment. Right now it only shows “[object Object]”. How can I display the full JSON payload? Thanks

Hi @Imran and welcome.

If you’re seeing [object Object] it means the value you’re adding to the comment is a JSON object. To make it readable you’ll need to turn it into a string first. You can do that with JSON.stringify(@bland_response).

You’ll need to convert it before the comment block, so just add a calculation block to create the string. For example:

Which will then give you something like this:

I used same method but still showing the error [15:24:04.737] Action execution started.
[15:24:04.738] Action execution failed with error:
Unexpected token o in JSON at position 1 you see in image also can you verify I sending right way http request or any issue by sending http also still not showing in comment


Iset now it’s showing this check my flow if any mistake in anything

I did wonder if my example was confusing, sorry you don’t need the script block that was just me creating a demo object, so yours should look like:


Leave the request the same as you have it then the calculation then the comment.
Obviously this assumes you have the API call configured correctly.


Thanks but now I got this comment the data not sending correctly to bland Api I think it’s showing server error could you help to solve this as well

It’s because your API call structure doesn’t match what Bland expects. A few things I’m seeing:

  1. The API docs show it expects phone_number not phone: Send Call - Bland AI
  2. I don’t see anything in their docs about sending variables the way you’re doing it
  3. The double curly braces {{..}} in your request don’t look right for their API format and Tape doesn’t use/need them

How did you arrive at your current structure? It might help to go back to the Bland API docs and follow their examples exactly first, then adapt it to pull in your Tape field values once you’ve got a basic call working.

I’d suggest testing a simple hardcoded request in Postman or similar first to make sure you understand their API format before trying to integrate it with Tape’s automation.

1 Like