How to disable "Test it" button for openAPI ? #1046
-
Hello, Is there any way to disable / remove the "Test it" button with the openAPI integration ? Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
nolannbiron
Jul 30, 2025
Replies: 1 comment 1 reply
-
Hello @vmaerten You can use Example from our documentation: openapi: '3.0'
info: ...
tags: [...]
paths:
/example:
get:
summary: Example summary
description: Example description
operationId: examplePath
responses: [...]
parameters: [...]
x-hideTryItPanel: true |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
vmaerten
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello @vmaerten
You can use
x-hideTryItPanel
at operation level to remove the "Test it" button.Example from our documentation: