Create New User with API using Fiddler

I’m trying to use Fiddler to create a user through the API, but I keep getting this response:

{“error”:“email is missing, password, reset_password are missing, at least one parameter must be provided, name is missing, username is missing”}

Here is how I setup my composer:

TYPE: Post
URL: http://gitlab/api/v4/users

Header:

User-Agent: Fiddler
Host: 192.URL
Content-Length: 89
PRIVATE-TOKEN: PzJL9F8_HeDb5XJeebAx

Request Body (json/format):

{
“email”: “user@site.com”,
“password”: “thisIsAutoGenerated”,
“reset_password”: “false”,
“username”: “insertusername”,
“name”: “FirstName Lastname”,
}

I eventually want to be able to add an LDAP user, and figured this would be the first step in trying to get me there. Is there something i’m doing wrong trying to add this user?

I haven’t tested on Fiddler but I can add user by the following cURL statement. (replace <…> with proper values)

curl -H “PRIVATE-TOKEN: <private_token>” -H ‘Content-Type:application/json’ -H ‘Accept:application/json’ -X POST -d ‘{“email”:"",“password”:"",“username”:"",“name”:""}’ http:///api/v4/users