Gitea API request to make a repository not working

Hey guys, I am trying to write a command on the windows CMD to make a repository.
The command works on the swagger page.

curl -X 'POST' -H 'accept:application/json' -H 'Content-Type:application/json' -d "{ \"auto_init\":true, \"default_branch\":\"master\", \"description\":\"My Test\", \"gitignores\":\"Vim\", \"issue_labels\":\"Default\", \"license\":\"DOC\", \"name\":\"test2\", \"private\":false, \"readme\":\"Default\", \"template\":false, \"trust_model\":\"default\"}" http://localhost:3000/api/v1/user/repos?access_token=7b1559aef7a1367f7312054c908c591c3e3f2948

But I don’t get back any errors or any response.
How can I change my post request so that it actually works?