HTTP Post using fetch

Hello ,
I’m trying to send data to a http server using “post” :
But I’m getting “failure: required parameters missing”

this is the command I’m trying to run:

/tool fetch http-method=post address="10.100.200.1"  port=8000 http-data="test1"

what am I missing?

Thanks,

Either src-path + mode or the url parameter.

https://wiki.mikrotik.com/wiki/Manual:Tools/Fetch#Properties


mode (ftp|http|tftp {!} https; Default: http) Choose the protocol of connection - http, https , ftp or tftp.

src-path (string; Default: ) Title of the remote file you need to copy.

url (string; Default: ) URL pointing to file. Can be used instead of address and src-path parameters.

I thought that

http-method=post

is enough for him to understand I’m using mode=http
:neutral_face:
Thanks ,