Chilkat Online Tools

delphiDll / MongoDB Atlas / Get All Teams

Back to Collection Items

var
http: HCkHttp;
success: Boolean;
sbResponseBody: HCkStringBuilder;

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

http := CkHttp_Create();

CkHttp_putDigestAuth(http,True);
CkHttp_putLogin(http,'username');
CkHttp_putPassword(http,'password');

sbResponseBody := CkStringBuilder_Create();
success := CkHttp_QuickGetSb(http,'https://domain.com/api/atlas/{{version}}/orgs/{{ORG-ID}}/teams/{{TEAM-ID}}/users',sbResponseBody);
if (success = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

Memo1.Lines.Add('Response status code = ' + IntToStr(CkHttp_getLastStatus(http)));
Memo1.Lines.Add(CkStringBuilder__getAsString(sbResponseBody));

CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbResponseBody);

Curl Command

curl -X GET
	--digest -u 'username:password'
https://domain.com/api/atlas/{{version}}/orgs/{{ORG-ID}}/teams/{{TEAM-ID}}/users

Postman Collection Item JSON

{
  "name": "Get All Teams",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{base_url}}/api/atlas/{{version}}/orgs/{{ORG-ID}}/teams/{{TEAM-ID}}/users",
      "host": [
        "{{base_url}}"
      ],
      "path": [
        "api",
        "atlas",
        "{{version}}",
        "orgs",
        "{{ORG-ID}}",
        "teams",
        "{{TEAM-ID}}",
        "users"
      ]
    },
    "description": "https://docs.atlas.mongodb.com/reference/api/teams-get-all-users/"
  },
  "response": [
  ]
}