Chilkat Online Tools

PHP (Extension) / Anypoint Platform APIs / Get buildinfo for environments

Back to Collection Items

<?php

include("chilkat_9_5_0.php");

$http->put_AuthToken('{{token}}');$success = $http->QuickGetSb('https://domain.com/cloudhub/api/buildinfo/environment',$sbResponseBody);
?>

Curl Command

curl -X GET
	-H "Authorization: Bearer {{token}}"
https://domain.com/cloudhub/api/buildinfo/environment

Postman Collection Item JSON

{
  "name": "Get buildinfo for environments",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{token}}",
        "type": "text"
      }
    ],
    "url": {
      "raw": "{{url}}/cloudhub/api/buildinfo/environment",
      "host": [
        "{{url}}"
      ],
      "path": [
        "cloudhub",
        "api",
        "buildinfo",
        "environment"
      ]
    }
  },
  "response": [
  ]
}