Unicode C++ / MongoDB Atlas / Get a Snapshot
        
        Back to Collection Items
        
void ChilkatSample(void)
    {
    http.put_DigestAuth(true);    http.put_Login(L"username");    http.put_Password(L"password");    success = http.QuickGetSb(L"https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/clusters/{{CLUSTER-NAME}}/snapshots/{{SNAPSHOT-ID}}",sbResponseBody);
    }
        Curl Command
        curl -X GET
	--digest -u 'username:password'
https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/clusters/{{CLUSTER-NAME}}/snapshots/{{SNAPSHOT-ID}}
        Postman Collection Item JSON
        {
  "name": "Get a Snapshot",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/clusters/{{CLUSTER-NAME}}/snapshots/{{SNAPSHOT-ID}}",
      "host": [
        "{{base_url}}"
      ],
      "path": [
        "api",
        "atlas",
        "{{version}}",
        "groups",
        "{{ProjectID}}",
        "clusters",
        "{{CLUSTER-NAME}}",
        "snapshots",
        "{{SNAPSHOT-ID}}"
      ]
    },
    "description": "https://docs.atlas.mongodb.com/reference/api/legacy-backup/backup/get-all-snapshots/"
  },
  "response": [
  ]
}