Chilkat Online Tools

Delphi (DLL) / MongoDB Atlas / Get a Single Custom Role

Back to Collection Items

var

begin
CkHttp_putDigestAuth(http,True);CkHttp_putLogin(http,'username');CkHttp_putPassword(http,'password');success := CkHttp_QuickGetSb(http,'https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/customDBRoles/roles/OrdersAppendRole',sbResponseBody);


Curl Command

curl -X GET
	--digest -u 'username:password'
https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/customDBRoles/roles/OrdersAppendRole

Postman Collection Item JSON

{
  "name": "Get a Single Custom Role",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/customDBRoles/roles/OrdersAppendRole",
      "host": [
        "{{base_url}}"
      ],
      "path": [
        "api",
        "atlas",
        "{{version}}",
        "groups",
        "{{ProjectID}}",
        "customDBRoles",
        "roles",
        "OrdersAppendRole"
      ]
    },
    "description": "\tGet the custom role named {ROLE-NAME}."
  },
  "response": [
  ]
}