メソッドの照会

Prev Next

Classic/VPC環境で利用できます。

リソースパス内でユーザーが定義して作成したメソッドを、リストで並べて照会します。

リクエスト

リクエスト形式を説明します。リクエスト形式は次の通りです。

メソッド URI
GET /products/{product-id}/apis/{api-id}/resources/{resource-id}/methods

リクエストヘッダ

API Gatewayで共通して使用されるヘッダの詳細は、API Gatewayのリクエストヘッダをご参照ください。

リクエストパスパラメータ

パラメータの説明は次の通りです。

フィールド タイプ 必須の有無 説明
product-id String Required APIが属する Product ID
api-id String Required 照会対象の API ID
resource-id String Required API内対象リソースの ID

リクエスト例

リクエストのサンプルコードは次の通りです。

curl --location --request GET 'https://apigateway.apigw.ntruss.com/api/v1/products/********o9/apis/cvcohvd2xj/resources/p1hiuvmwv3/methods' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' \
--header 'Content-Type: application/json'

レスポンス

レスポンス形式を説明します。

レスポンス構文

レスポンス構文は次の通りです。

{
  "methods" : [ {
    "methodDescription" : "methodDescription",
    "resourceId" : "resourceId",
    "useBodyWhenFormData" : true,
    "endpointCode" : "endpointCode",
    "modifier" : "modifier",
    "resourcePath" : "resourcePath",
    "methodName" : "ANY",
    "ncpEndPoint" : {
      "method" : "ANY",
      "stream" : true,
      "service" : "service",
      "actionId" : "actionId",
      "region" : "KR",
      "url" : "url",
      "actionName" : "actionName"
    },
    "requiredApiKey" : {
      "required" : true
    },
    "mockEndPoint" : {
      "headers" : {
        "key" : "value"
      },
      "response" : "response",
      "httpStatus" : 0
    },
    "endpointActionId" : "endpointActionId",
    "produces" : "produces",
    "tenantId" : "tenantId",
    "consumers" : "consumers",
    "methodFilters" : [ {
      "configJson" : "configJson",
      "resourceId" : "resourceId",
      "filterName" : "AUTH",
      "apiId" : "apiId",
      "methodCode" : "methodCode"
    } ],
    "apiId" : "apiId",
    "validation" : {
      "headers" : [ "headers" ],
      "queryStrings" : [ "queryStrings" ],
      "type" : "NONE"
    },
    "authentication" : {
      "authorizerId" : "authorizerId",
      "platform" : "NONE"
    },
    "endpointConfigJson" : "endpointConfigJson",
    "httpEndPoint" : {
      "method" : "ANY",
      "stream" : true,
      "url" : "url"
    }
  } ]
}

レスポンスステータスコード

API Gatewayで共通して使用されるレスポンスステータスコードの詳細は、API Gatewayのレスポンスステータスコードをご参照ください。

レスポンス例

レスポンスのサンプルコードは次の通りです。

{
    "methods": [
        {
            "methodDescription": "",
            "resourceId": "p1hiuvmwv3",
            "methodName": "DELETE",
            "apiId": "cvcohvd2xj",
            "endpointCode": "0007",
            "mockEndPoint": {
                "httpStatus": 200,
                "response": "Successfully deleted",
                "headers": {
                    "timestamp": "103958846273"
                }
            },
            "consumers": "application/json",
            "produces": "application/json",
            "useBodyWhenFormData": false,
            "tenantId": "********65ec41039ce6668c2058b8a9",
            "modifier": "********-7fcd-11ec-a6ba-246e9659184c",
            "validation": {
                "type": "QUERYSTRING_HEADERS",
                "queryStrings": [
                    "accountId"
                ],
                "headers": [
                    "teamNumber"
                ]
            },
            "authentication": {
                "platform": "NONE"
            },
            "requiredApiKey": {
                "required": true
            }
        },
        {
            "methodDescription": "",
            "resourceId": "p1hiuvmwv3",
            "methodName": "OPTIONS",
            "apiId": "cvcohvd2xj",
            "endpointCode": "0008",
            "ncpEndPoint": {
                "service": "Cloud Functions",
                "region": "KR",
                "actionId": "******Jbeodp/pckg/act02",
                "actionName": "pckg/act02",
                "stream": true,
                "method": "OPTIONS",
                "url": "http://ncf.navercorp.com/api/v1/web/******Jbeodp/pckg/act02.{type}"
            },
            "useBodyWhenFormData": false,
            "tenantId": "********65ec41039ce6668c2058b8a9",
            "modifier": "********-7fcd-11ec-a6ba-246e9659184c",
            "validation": {
                "type": "NONE"
            },
            "authentication": {
                "platform": "NONE"
            },
            "requiredApiKey": {
                "required": false
            }
        }
    ]
}