Chilkat Online Tools

PHP (Extension) / Anypoint Platform APIs / Get single asset reviews

Back to Collection Items

<?php

include("chilkat_9_5_0.php");

$http->put_AuthToken('{{token}}');$success = $http->QuickGetSb('https://domain.com/exchange/api/v2/assets/{{organization_id}}/{{app_Id}}/1.0.0/reviews',$sbResponseBody);
?>

Curl Command

curl -X GET
	-H "Authorization: Bearer {{token}}"
https://domain.com/exchange/api/v2/assets/{{organization_id}}/{{app_Id}}/1.0.0/reviews

Postman Collection Item JSON

{
  "name": "Get single asset reviews",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{token}}",
        "type": "text"
      }
    ],
    "url": {
      "raw": "{{url}}/exchange/api/v2/assets/{{organization_id}}/{{app_Id}}/1.0.0/reviews",
      "host": [
        "{{url}}"
      ],
      "path": [
        "exchange",
        "api",
        "v2",
        "assets",
        "{{organization_id}}",
        "{{app_Id}}",
        "1.0.0",
        "reviews"
      ]
    }
  },
  "response": [
  ]
}