Microsoft Azure API Management · Example Payload

Microsoft Azure Api Management Selfhostedgateway Proxypost Example

A2AAI GatewayAPI CenterAPI GatewayAPI ManagementEnterpriseMCPMicrosoft Azure

Microsoft Azure Api Management Selfhostedgateway Proxypost 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": "SelfHostedGateway_ProxyPost",
  "method": "POST",
  "path": "/{api-path}",
  "summary": "Proxy POST request through self-hosted gateway",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "ProxyPostExample",
      "example": {
        "sku": "ITEM-456",
        "name": "Widget Pro",
        "quantity": 100
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "ProxyPostExample",
      "example": {
        "statusCode": 201,
        "headers": {
          "x-apim-request-id": "a9b8c7d6-e5f4-3210-abcd-ef9876543210"
        },
        "body": {
          "id": "item-789",
          "sku": "ITEM-456",
          "name": "Widget Pro"
        }
      }
    }
  ]
}