Grafana hosted on Azure

Hi,
We have the grafana docker image as an azure web app. When we try to create a new organization using the API: curl -X POST -H "Content-Type: application/json" -d '{"name":"abcs"}' http://admin:pwd@appname.azurewebsites.net/api/orgs
we get the following error:
[{"classification":"DeserializationError","message":"invalid character '\\'' looking for beginning of value"},{"fieldNames":["Name"],"classification":"RequiredError","message":"Required"}]
Any idea how to solve it?

Is the url correct and is it the Grafana API that you connecting to?

Does a basic GET command work:

curl http://admin:pwd@appname.azurewebsites.net/api/dashboards/home

This should return the json for the home dashboard.

The url is correct and the simple GET command works.