Using OpenAPI proxy
Why this exists
Enable the proxy for your whole spec
openapi: '3.0.3'
x-enable-proxy: true
info:
title: Example API
version: '1.0.0'
servers:
- url: https://api.example.comEnable or disable for a specific operation
openapi: '3.0.3'
info:
title: Example API
version: '1.0.0'
servers:
- url: https://api.example.com
paths:
/reports:
get:
summary: List reports
x-enable-proxy: true
responses:
'200':
description: OK
post:
summary: Create report
x-enable-proxy: false
responses:
'201':
description: CreatedWhat the proxy supports
Security
Last updated
Was this helpful?