diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.webhook/common-issues.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.webhook/common-issues.md index 6d5de6f86..ac4f7e909 100644 --- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.webhook/common-issues.md +++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.webhook/common-issues.md @@ -48,7 +48,7 @@ curl --request GET Make an HTTP request with a body parameter: ```sh -curl --request GET --data 'key=value' +curl --request POST --data 'key=value' ``` Make an HTTP request with header parameter: @@ -60,7 +60,7 @@ curl --request GET --header 'key=value' Make an HTTP request to send a file: ```sh -curl --request GET --from 'key=@/path/to/file' +curl --request POST --form 'key=@/path/to/file' ``` Replace `/path/to/file` with the path of the file you want to send.