Chilkat Online Tools

unicodeCpp / Anypoint Platform APIs / Get exchange automated policies for environment

Back to Collection Items

#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkHttpResponseW.h>

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

    CkHttpW http;
    bool success;

    CkJsonObjectW queryParams;
    queryParams.UpdateString(L"environmentId",L"{{environment_id}}");

    // Adds the "Authorization: Bearer {{token}}" header.
    http.put_AuthToken(L"{{token}}");

    CkHttpResponseW *resp = http.QuickRequestParams(L"GET",L"https://domain.com/apimanager/xapi/v1/organizations/{{organization_id}}/automated-policies",queryParams);
    if (http.get_LastMethodSuccess() == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    wprintf(L"%d\n",resp->get_StatusCode());
    wprintf(L"%s\n",resp->bodyStr());
    delete resp;
    }

Curl Command

curl -G -d "environmentId=%7B%7Benvironment_id%7D%7D"
	-H "Authorization: Bearer {{token}}"
https://domain.com/apimanager/xapi/v1/organizations/{{organization_id}}/automated-policies

Postman Collection Item JSON

{
  "name": "Get exchange automated policies for environment",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{token}}",
        "type": "text"
      }
    ],
    "url": {
      "raw": "{{url}}/apimanager/xapi/v1/organizations/{{organization_id}}/automated-policies?environmentId={{environment_id}}",
      "host": [
        "{{url}}"
      ],
      "path": [
        "apimanager",
        "xapi",
        "v1",
        "organizations",
        "{{organization_id}}",
        "automated-policies"
      ],
      "query": [
        {
          "key": "environmentId",
          "value": "{{environment_id}}"
        }
      ]
    }
  },
  "response": [
  ]
}