Http Request set headers?

Hello,

I want to send (http post) some data to a website.
To do that, I have to set two headers in the outgoing Http message.
Is it possible to do that with Imp?

In c# I did it before using:

HttpWebRequest request = (HttpWebRequest)WebRequest.Create(baseUri); request.Method = "POST"; request.ContentLength = buffer.Length; request.ContentType = "application/x-www-form-urlencoded"; request.Headers.Add("X-Pvoutput-Apikey", apiKey); request.Headers.Add("X-Pvoutput-SystemId", systemId);

Thanks in advance Jerommeke

It’s not possible with the planner, no. It is possible with agents, which are about to go into closed beta… so it’ll be at least a couple of weeks before you can do this with an imp I’m afraid.

Oké thanks, we will wait then…