POST to Trendnet Camera

Messing around with trying to reboot trendnet cameras via a rule.
I found an API for one of them:

use HTTP POST method, the syntax is :
POST http:/// HTTP/1.0
Authorization: Basic
Content-Length:

=[&=]

3.6.1. restart the camera
request:
GET/POST /reset.cgi
parameters:
Reset=Yes
response:
No response. (204 No Content)

With that, my question is how can I structure a rule to send that?

POST http://172.1.1.11:80/reset.cgi HTTP/1.0
Authorization: Basic xxxxxxxxxxxxxxxxxx(encoded base 64 user/pw as per api)
Content-Length: 27
parameter=Reset[&Reset=Yes]