Overwrite stage method settings
- Print
- PDF
Overwrite stage method settings
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Available in Classic and VPC
Overwrite the method settings for a specified stage with the newly specified method settings.Request
The following describes the request format for the endpoint. The request format is as follows:
Method | URI |
---|---|
PATCH | /products/{product-id}/apis/{api-id}/stages/{stage-id}/deployments/{deployment-no}/resources/{resource-id}/methods/{method-name} |
Request headers
For headers common to API Gateway, see API Gateway common request headers.
Request path parameters
The following describes the parameters.
Field | Type | Required | Description |
---|---|---|---|
product-id | String | Required | Product ID
|
api-id | String | Required | API ID
|
stage-id | String | Required | Stage ID
|
deployment-no | Long | Required | Deployment number
|
resource-id | String | Required | Resource ID of the stage
|
method-name | String | Required | Method whose settings you want to overwrite
|
Request syntax
The request syntax is as follows.
{
"cacheTtlSec" : 0,
"throttleRps" : 6,
"isInherit" : true,
"endpointDomain" : "endpointDomain"
}
Request body
The following describes the request body.
Field | Type | Required | Description |
---|---|---|---|
cacheTtlSec | Integer | Optional | API cache TTL
|
throttleRps | Integer | Optional | Per-method per-second request limit
|
isInherit | Boolean | Required | Compliance with stage default settings
|
endpointDomain | String | Optional | Endpoint domain |
Request example
The following is a sample request.
curl --location --request PATCH 'https://apigateway.apigw.ntruss.com/api/v1/products/***3kew***/apis/***hhdy***/stages/***sd32***/deployments/250***/resources/***uku7***/methods/GET' \
--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' \
--data '{
"cacheTtlSec" : 0,
"throttleRps" : 6,
"isInherit" : true,
"endpointDomain" : "https://test.****"
}'
Response
The following describes the response format.
Response syntax
The response syntax is as follows.
{
"stageMethod" : {
"resourceId" : "resourceId",
"endpointCode" : "endpointCode",
"resourcePath" : "resourcePath",
"methodName" : "ANY",
"isInherit" : true,
"methodCode" : "methodCode",
"endpointDomain" : "endpointDomain",
"cacheTtlSec" : 0,
"restUrl" : "restUrl",
"throttleRps" : 1,
"endpointActionId" : "endpointActionId",
"invokeUrl" : "invokeUrl",
"stageDeploymentNo" : 6,
"endpointConfigJson" : "endpointConfigJson"
}
}
Response status codes
For response status codes common to API Gateway, see API Gateway response status codes.
Response example
The following is a sample response.
{
"stageMethod": {
"stageDeploymentNo": 256366,
"methodName": "PUT",
"methodCode": "0003",
"resourceId": "1lynl7fvad",
"invokeUrl": "https://rl5qpeuk8w.apigw.ntruss.com/new_api/test/",
"restUrl": "test - PUT /",
"endpointCode": "0007",
"endpointConfigJson": "{\"httpStatus\":200,\"response\":\"\",\"headers\":{}}",
"isInherit": true
}
}
Was this article helpful?