Browsing the code I was able to figure out that in order to send multiple datums for POST I had to use a syntax like
x=1&y=2
rather than something like
{"x":1,"y":2}
The latter would be cool, but seems to not be supported at the moment. The former is fine but the documentation should be changed to reflect it.