Foxpro / MongoDB Atlas / Get All Projects
Back to Collection Items
LOCAL loHttp
LOCAL lnSuccess
LOCAL loSbResponseBody
* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Http')
loHttp = CreateObject('Chilkat.Http')
loHttp.DigestAuth = 1
loHttp.Login = "username"
loHttp.Password = "password"
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.StringBuilder')
loSbResponseBody = CreateObject('Chilkat.StringBuilder')
lnSuccess = loHttp.QuickGetSb("https://domain.com/api/atlas/{{version}}/groups",loSbResponseBody)
IF (lnSuccess = 0) THEN
? loHttp.LastErrorText
RELEASE loHttp
RELEASE loSbResponseBody
CANCEL
ENDIF
? "Response status code = " + STR(loHttp.LastStatus)
? loSbResponseBody.GetAsString()
RELEASE loHttp
RELEASE loSbResponseBody
Curl Command
curl -X GET
--digest -u 'username:password'
https://domain.com/api/atlas/{{version}}/groups
Postman Collection Item JSON
{
"name": "Get All Projects",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{base_url}}/api/atlas/{{version}}/groups",
"host": [
"{{base_url}}"
],
"path": [
"api",
"atlas",
"{{version}}",
"groups"
]
},
"description": "https://docs.atlas.mongodb.com/reference/api/project-get-all/"
},
"response": [
]
}