Chilkat Online Tools

Delphi (DLL) / MongoDB Atlas / Get One Team by Name

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}}/orgs/{{ORG-ID}}/teams/byName/{{TEAM-NAME}}',sbResponseBody);


Curl Command

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

Postman Collection Item JSON

{
  "name": "Get One Team by Name",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{base_url}}/api/atlas/{{version}}/orgs/{{ORG-ID}}/teams/byName/{{TEAM-NAME}}",
      "host": [
        "{{base_url}}"
      ],
      "path": [
        "api",
        "atlas",
        "{{version}}",
        "orgs",
        "{{ORG-ID}}",
        "teams",
        "byName",
        "{{TEAM-NAME}}"
      ]
    },
    "description": "https://docs.atlas.mongodb.com/reference/api/teams-get-one-by-name/"
  },
  "response": [
  ]
}