Chilkat Online Tools

autoit / MongoDB Atlas / Get a Single Custom Role

Back to Collection Items

; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.

$oHttp = ObjCreate("Chilkat_9_5_0.Http")
Local $bSuccess

$oHttp.DigestAuth = True
$oHttp.Login = "username"
$oHttp.Password = "password"

$oSbResponseBody = ObjCreate("Chilkat_9_5_0.StringBuilder")
$bSuccess = $oHttp.QuickGetSb("https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/customDBRoles/roles/OrdersAppendRole",$oSbResponseBody)
If ($bSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite("Response status code = " & $oHttp.LastStatus & @CRLF)
ConsoleWrite($oSbResponseBody.GetAsString() & @CRLF)

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": [
  ]
}