Microsoft Azure API Management · Example Payload

Microsoft Azure Api Management Devportal Listapis Example

A2AAI GatewayAPI CenterAPI GatewayAPI ManagementEnterpriseMCPMicrosoft Azure

Microsoft Azure Api Management Devportal Listapis Example is an example object payload from Microsoft Azure API Management, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "DevPortal_ListApis",
  "method": "GET",
  "path": "/apis",
  "summary": "List available APIs",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "ApiListExample",
      "example": {
        "count": 2,
        "value": [
          {
            "id": "petstore-api",
            "name": "Petstore API",
            "description": "Manage pet inventory and orders.",
            "serviceUrl": "https://petstore.example.com"
          },
          {
            "id": "weather-api",
            "name": "Weather API",
            "description": "Retrieve weather forecasts and current conditions.",
            "serviceUrl": "https://weather.example.com"
          }
        ]
      }
    }
  ]
}