Go / Anypoint Platform APIs / Get exchange automated policies for environment
Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global_Ref.html">Global Unlock Sample for sample code.
http := chilkat.NewHttp()
var success bool
queryParams := chilkat.NewJsonObject()
queryParams.UpdateString("environmentId","{{environment_id}}")
// Adds the "Authorization: Bearer {{token}}" header.
http.SetAuthToken("{{token}}")
resp := http.QuickRequestParams("GET","https://domain.com/apimanager/xapi/v1/organizations/{{organization_id}}/automated-policies",queryParams)
if http.LastMethodSuccess() == false {
fmt.Println(http.LastErrorText())
http.DisposeHttp()
queryParams.DisposeJsonObject()
return
}
fmt.Println(resp.StatusCode())
fmt.Println(resp.BodyStr())
resp.DisposeHttpResponse()
http.DisposeHttp()
queryParams.DisposeJsonObject()
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": [
]
}