Ambassador · Example Payload

Ambassador Createratelimit Example

API DevelopmentGatewaysIngressKubernetesMock ServersMocksPlatformTesting

Ambassador Createratelimit Example is an example object payload from Ambassador, 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": "createRateLimit",
  "method": "POST",
  "path": "/apis/getambassador.io/v3alpha1/namespaces/{namespace}/ratelimits",
  "summary": "Ambassador Create a New Ratelimit",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "CreateratelimitRequestExample",
      "example": {
        "apiVersion": "example_value",
        "kind": "example_value",
        "metadata": {
          "name": "Example Title",
          "namespace": "example_value",
          "labels": "example_value",
          "annotations": "example_value",
          "creationTimestamp": "2026-01-15T10:30:00Z",
          "generation": 10,
          "resourceVersion": "example_value",
          "uid": "500123"
        },
        "spec": {
          "domain": "example_value",
          "limits": [
            {}
          ]
        }
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "name": "Createratelimit201Example",
      "example": {
        "apiVersion": "example_value",
        "kind": "example_value",
        "metadata": {
          "name": "Example Title",
          "namespace": "example_value",
          "labels": "example_value",
          "annotations": "example_value",
          "creationTimestamp": "2026-01-15T10:30:00Z",
          "generation": 10,
          "resourceVersion": "example_value",
          "uid": "500123"
        },
        "spec": {
          "domain": "example_value",
          "limits": [
            {}
          ]
        }
      }
    }
  ]
}