Delphi (ActiveX) / MongoDB Atlas / Get All Custom Roles in a Project
Back to Collection Items
var
begin
http.DigestAuth := 1;http.Login := 'username';http.Password := 'password';success := http.QuickGetSb('https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/customDBRoles/roles',sbResponseBody.ControlInterface);
Curl Command
curl -X GET
--digest -u 'username:password'
https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/customDBRoles/roles
Postman Collection Item JSON
{
"name": "Get All Custom Roles in a Project",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/customDBRoles/roles",
"host": [
"{{base_url}}"
],
"path": [
"api",
"atlas",
"{{version}}",
"groups",
"{{ProjectID}}",
"customDBRoles",
"roles"
]
},
"description": "Get all custom roles in the project."
},
"response": [
]
}