Chilkat Online Tools

Unicode C++ / MongoDB Atlas / Create an Atlas User

Back to Collection Items

void ChilkatSample(void)
    {
    http.put_DigestAuth(true);    http.put_Login(L"username");    http.put_Password(L"password");    json.UpdateString(L"username",L"john.doe@example.com");    json.UpdateString(L"password",L"myPassword1@");    json.UpdateString(L"emailAddress",L"john.doe@example.com");    json.UpdateString(L"mobileNumber",L"2125550198");    json.UpdateString(L"firstName",L"John");    json.UpdateString(L"lastName",L"Doe");    json.UpdateString(L"roles[0].orgId",L"{{ORG-ID}}");    json.UpdateString(L"roles[0].roleName",L"ORG_MEMBER");    json.UpdateString(L"country",L"US");
    }

Curl Command

curl -X POST
	--digest -u 'username:password'
	-d '{
    "username": "john.doe@example.com",
    "password": "myPassword1@",
    "emailAddress": "john.doe@example.com",
    "mobileNumber": "2125550198",
    "firstName": "John",
    "lastName": "Doe",
    "roles": [
        {
            "orgId": "{{ORG-ID}}",
            "roleName": "ORG_MEMBER"
        }
    ],
    "country": "US"
}'
https://domain.com/api/atlas/{{version}}/users

Postman Collection Item JSON

{
  "name": "Create an Atlas User",
  "request": {
    "method": "POST",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"username\": \"john.doe@example.com\",\n    \"password\": \"myPassword1@\",\n    \"emailAddress\": \"john.doe@example.com\",\n    \"mobileNumber\": \"2125550198\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"roles\": [\n        {\n            \"orgId\": \"{{ORG-ID}}\",\n            \"roleName\": \"ORG_MEMBER\"\n        }\n    ],\n    \"country\": \"US\"\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{base_url}}/api/atlas/{{version}}/users",
      "host": [
        "{{base_url}}"
      ],
      "path": [
        "api",
        "atlas",
        "{{version}}",
        "users"
      ]
    },
    "description": "https://docs.atlas.mongodb.com/reference/api/user-create/"
  },
  "response": [
  ]
}