Amazon API Gateway Methods API

Manage HTTP methods on resources

Operations 3

GET /restapis/{restapi_id}/resources/{resource_id}/methods/{http_method} Amazon API Gateway Get a Method #
PUT /restapis/{restapi_id}/resources/{resource_id}/methods/{http_method} Amazon API Gateway Put a Method #
DELETE /restapis/{restapi_id}/resources/{resource_id}/methods/{http_method} Amazon API Gateway Delete a Method #

Documentation

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/aws-api-gateway-methods-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

aws-api-gateway-methods-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Amazon API Gateway V1 (REST) Methods API
  description: The API Gateway V1 control plane API is used to create, deploy, and manage REST APIs in Amazon API Gateway.
  version: '2015-07-09'
  contact:
    name: AWS Support
    url: https://aws.amazon.com/premiumsupport/
  termsOfService: https://aws.amazon.com/service-terms/
servers:
- url: https://apigateway.{region}.amazonaws.com
  description: Amazon API Gateway regional endpoint
  variables:
    region:
      default: us-east-1
      description: AWS region
security:
- sigv4: []
tags:
- name: Methods
  description: Manage HTTP methods on resources
paths:
  /restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}:
    parameters:
    - $ref: '#/components/parameters/RestApiId'
    - $ref: '#/components/parameters/ResourceId'
    - $ref: '#/components/parameters/HttpMethod'
    get:
      operationId: getMethod
      summary: Amazon API Gateway Get a Method
      description: Retrieves the Method resource for a given HTTP verb on a Resource.
      tags:
      - Methods
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Method'
              examples:
                getMethod200Example:
                  summary: Default getMethod 200 response
                  x-microcks-default: true
                  value:
                    httpMethod: example-value
                    authorizationType: example-value
                    apiKeyRequired: true
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    put:
      operationId: putMethod
      summary: Amazon API Gateway Put a Method
      description: Adds an HTTP method to a Resource.
      tags:
      - Methods
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PutMethodRequest'
            examples:
              putMethodRequestExample:
                summary: Default putMethod request
                x-microcks-default: true
                value:
                  authorizationType: example-value
                  apiKeyRequired: true
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Method'
              examples:
                putMethod201Example:
                  summary: Default putMethod 201 response
                  x-microcks-default: true
                  value:
                    httpMethod: example-value
                    authorizationType: example-value
                    apiKeyRequired: true
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    delete:
      operationId: deleteMethod
      summary: Amazon API Gateway Delete a Method
      description: Deletes a Method resource.
      tags:
      - Methods
      responses:
        '202':
          description: Accepted
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    PutMethodRequest:
      type: object
      required:
      - authorizationType
      properties:
        authorizationType:
          type: string
          description: Authorization type (NONE, AWS_IAM, CUSTOM, COGNITO_USER_POOLS).
          example: example-value
        apiKeyRequired:
          type: boolean
          description: Whether to require an API key.
          example: true
    Method:
      type: object
      properties:
        httpMethod:
          type: string
          description: HTTP method verb.
          example: example-value
        authorizationType:
          type: string
          description: Authorization type for invoking the method.
          example: example-value
        apiKeyRequired:
          type: boolean
          description: Whether the method requires an API key.
          example: true
  parameters:
    ResourceId:
      name: resource_id
      in: path
      required: true
      description: Identifier of the Resource.
      schema:
        type: string
    HttpMethod:
      name: http_method
      in: path
      required: true
      description: HTTP verb of the Method.
      schema:
        type: string
        enum:
        - GET
        - POST
        - PUT
        - PATCH
        - DELETE
        - HEAD
        - OPTIONS
        - ANY
    RestApiId:
      name: restapi_id
      in: path
      required: true
      description: Identifier of the RestApi resource.
      schema:
        type: string
  securitySchemes:
    sigv4:
      type: apiKey
      in: header
      name: Authorization
      description: AWS Signature Version 4 signed request.
externalDocs:
  description: Amazon API Gateway V1 API Reference
  url: https://docs.aws.amazon.com/apigateway/latest/api/Welcome.html