Webhook Body Empty

Hello, I am experiencing an issue with creating a workflow; it seems that the webhook node is unable to fully receive JSON, as the body part is empty as I have attached below. Could you please assist me?

From Webhook source it should like this:

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

Hey @Yoppi_Arie_W,

Welcome to the community :cake:

It looks like you have the webhook node configured for a GET request, If you are sending JSON data I would expect the other system to be using a POST or a PUT. Can you check what HTTP method the sender is using and make sure the webhook node is configured for the same method type.

base on their doc it say

The format prepared by the engine is ​JSON​. with Method use POST and application/json for Content-type

@Yoppi_Arie_W Method use POST and application/json for Content-type So you should change method to POST in your Webhook node.

When I change to POST and test it, in their side it say failed

Did they get an response/error code? What’s the external service so we can look at the docs?

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