Chilkat Online Tools

PowerBuilder / MongoDB Atlas / Create Access List Entries for One Organization API Key

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_SbRequestBody
oleobject loo_Resp

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

loo_Http.DigestAuth = 1
loo_Http.Login = "username"
loo_Http.Password = "password"

loo_SbRequestBody = create oleobject
li_rc = loo_SbRequestBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

loo_SbRequestBody.Append("[~n")
loo_SbRequestBody.Append("    {~n")
loo_SbRequestBody.Append("        ~"ipAddress~": ~"77.54.32.11~"~n")
loo_SbRequestBody.Append("    }~n")
loo_SbRequestBody.Append("]")

loo_Resp = loo_Http.PTextSb("POST","https://domain.com/api/atlas/{{version}}/orgs/{{ORG-ID}}/apiKeys/{{API-KEY-ID}}/accessList",loo_SbRequestBody,"utf-8","application/text",0,0)
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_SbRequestBody
    return
end if

Write-Debug string(loo_Resp.StatusCode)
Write-Debug loo_Resp.BodyStr
destroy loo_Resp


destroy loo_Http
destroy loo_SbRequestBody

Curl Command

curl -X POST
	--digest -u 'username:password'
	-d '[
    {
        "ipAddress": "77.54.32.11"
    }
]'
https://domain.com/api/atlas/{{version}}/orgs/{{ORG-ID}}/apiKeys/{{API-KEY-ID}}/accessList

Postman Collection Item JSON

{
  "name": "Create Access List Entries for One Organization API Key",
  "request": {
    "method": "POST",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "[\n    {\n        \"ipAddress\": \"77.54.32.11\"\n    }\n]",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{base_url}}/api/atlas/{{version}}/orgs/{{ORG-ID}}/apiKeys/{{API-KEY-ID}}/accessList",
      "host": [
        "{{base_url}}"
      ],
      "path": [
        "api",
        "atlas",
        "{{version}}",
        "orgs",
        "{{ORG-ID}}",
        "apiKeys",
        "{{API-KEY-ID}}",
        "accessList"
      ]
    },
    "description": "https://docs.atlas.mongodb.com/reference/api/api-access-list/create-api-access-entries/"
  },
  "response": [
  ]
}