How to get rid of the "Object" part of this JSON: [Object: {"idClient": "C0015", "fullName": "Jacinta Montenegro Garcés"}]

I am currently processing some information from some xlsx to JSON when I try to send that JSON in this HTTP Request Node:


You can see that the JSON that I am trying to send is putting “Object”: right before the list of objects, how can I get rid of that object

  • **n8n version:1.77.3
  • **Database (default: SQLite):SQLite
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • **Running n8n via (Docker, npm, n8n cloud, desktop app): Docker
  • **Operating system: Windows

Welcome to the community @jpgiraldo !

Tip for sharing information

Pasting your n8n workflow


Ensure to copy your n8n workflow and paste it in the code block, that is in between the pairs of triple backticks, which also could be achieved by clicking </> (preformatted text) in the editor and pasting in your workflow.

```
<your workflow>
```

That implies to any JSON output you would like to share with us.

Make sure that you have removed any sensitive information from your workflow and include dummy or pinned data with it!


It symply shows the structure (schema) of the data, it is not what the actual data is. You can see the actual data by clicking on the image shown below

Though you likely need a stringified value rather then the object, in which case you can use {{ JSON.stringify($json) }}

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.