VB6 / MongoDB Atlas / Return One Restore Job For One Serverless Instance
Back to Collection Items
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim http As New ChilkatHttp
Dim success As Long
http.DigestAuth = 1
http.Login = "username"
http.Password = "password"
Dim sbResponseBody As New ChilkatStringBuilder
success = http.QuickGetSb("https://domain.com/api/atlas/{{versiona}}/groups/{{ProjectID}}/serverless/{{INSTANCE-NAME}}/backup/restoreJobs/{{restoreJobId}}",sbResponseBody)
If (success = 0) Then
Debug.Print http.LastErrorText
Exit Sub
End If
Debug.Print "Response status code = " & http.LastStatus
Debug.Print sbResponseBody.GetAsString()
Curl Command
curl -X GET
--digest -u 'username:password'
https://domain.com/api/atlas/{{versiona}}/groups/{{ProjectID}}/serverless/{{INSTANCE-NAME}}/backup/restoreJobs/{{restoreJobId}}
Postman Collection Item JSON
{
"name": "Return One Restore Job For One Serverless Instance",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{base_url}}/api/atlas/{{versiona}}/groups/{{ProjectID}}/serverless/{{INSTANCE-NAME}}/backup/restoreJobs/{{restoreJobId}}",
"host": [
"{{base_url}}"
],
"path": [
"api",
"atlas",
"{{versiona}}",
"groups",
"{{ProjectID}}",
"serverless",
"{{INSTANCE-NAME}}",
"backup",
"restoreJobs",
"{{restoreJobId}}"
]
},
"description": "https://docs.atlas.mongodb.com/reference/api/cloud-backup/restore/return-one-restore-job-for-one-serverless-instance/"
},
"response": [
]
}