# Help with the HTTP request node

**URL:** https://discourse.nodered.org/t/help-with-the-http-request-node/100766
**Category:** General
**Created:** [14 April 2026 12:02 UTC](https://discourse.nodered.org/t/help-with-the-http-request-node/100766 "2026-04-14T12:02:26Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![dynamicdave](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/dynamicdave/32/96_2.png) [@dynamicdave](https://discourse.nodered.org/u/dynamicdave)
#### Post date: [14 April 2026 12:17 UTC](https://discourse.nodered.org/t/help-with-the-http-request-node/100766/2 "2026-04-14T12:17:26Z")

</div>

You could try something like this in a function node (untested as not near my PC)...

```auto
msg.url = "https://webhook.site/330debe9-0f95-4805-a766-09cace553fcb";

msg.payload = {
    login: "login_dl",
    password: "password",
    type: "import",
    really: 1,
    content: `<active_item/><new_item/><stationname.short>apiKeyPROTO</stationname.short><message><item.artist>testArtist</item.artist>+-+<item.title>meTitle</item.title></message>`
};

return msg;

```

---

_[View the full topic](https://discourse.nodered.org/t/help-with-the-http-request-node/100766)._
