Powershell / MongoDB Atlas / Get All Restore Jobs for an M2/M5 Cluster
Back to Collection Items
Add-Type -Path "C:\chilkat\ChilkatDotNet47-x64\ChilkatDotNet47.dll"
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
$http = New-Object Chilkat.Http
$http.DigestAuth = $true
$http.Login = "username"
$http.Password = "password"
$sbResponseBody = New-Object Chilkat.StringBuilder
$success = $http.QuickGetSb("https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/clusters/{{CLUSTER-NAME}}/backup/tenant/restores",$sbResponseBody)
if ($success -eq $false) {
$($http.LastErrorText)
exit
}
$("Response status code = " + $http.LastStatus)
$($sbResponseBody.GetAsString())
Curl Command
curl -X GET
--digest -u 'username:password'
https://domain.com/api/atlas/{{version}}/groups/{{ProjectID}}/clusters/{{CLUSTER-NAME}}/backup/tenant/restores
Postman Collection Item JSON
{
"name": "Get All Restore Jobs for an M2/M5 Cluster",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{base_url}}/api/atlas/{{version}}/groups/{{ProjectID}}/clusters/{{CLUSTER-NAME}}/backup/tenant/restores",
"host": [
"{{base_url}}"
],
"path": [
"api",
"atlas",
"{{version}}",
"groups",
"{{ProjectID}}",
"clusters",
"{{CLUSTER-NAME}}",
"backup",
"tenant",
"restores"
]
},
"description": "https://docs.atlas.mongodb.com/reference/api/shared-backup/restore/get-all-restore-jobs/"
},
"response": [
]
}