Hello,
I am encountering an issue with an n8n workflow where I am unable to properly receive JSON data sent from a Softr form via a webhook. Although the webhook is configured to accept POST requests and testing with Postman works correctly (the webhook receives and processes the data as expected), I am not achieving the same results when data is sent via Softr.
Here are the details of my setup:
- n8n Webhook: Configured to accept POST requests, and testing with Postman shows that the data is correctly received and processed.
- Softr Form: Sends data via POST to the n8n webhook URL. The sent data includes information such as the user’s name and the post URL, for example:
{
"Createurs": "@user_name",
"postUrl": "https://example.com/post"
}
- Server Response: When sending via Softr, the n8n server returns “200 OK”, but the data does not seem to be processed or displayed in the n8n workflow.
Specific Questions:
- Are there specific configurations to check in n8n or Softr to ensure correct transmission of JSON data?
- Are there known issues with n8n webhooks processing data sent by Softr?
- Any suggestions on how to diagnose or correct this issue would be greatly appreciated.
Thank you very much for your help and suggestions!