mirror of
https://github.com/hoppscotch/hoppscotch.git
synced 2026-04-25 16:55:59 +03:00
[GH-ISSUE #3960] [feature]: prompt for input/variable #1387
Labels
No labels
CodeDay
a11y
browser limited
bug
bug fix
cli
core
critical
design
desktop
discussion
docker
documentation
duplicate
enterprise
feature
feature
fosshack
future
good first issue
hacktoberfest
help wanted
i18n
invalid
major
minor
need information
need testing
not applicable to hoppscotch
not reproducible
pull-request
question
refactor
resolved
sandbox
self-host
spam
stale
testmu
wip
wont fix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hoppscotch#1387
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @billriess on GitHub (Apr 4, 2024).
Original GitHub issue: https://github.com/hoppscotch/hoppscotch/issues/3960
Is there an existing issue for this?
Summary
It would be nice if we could get "prompt" support to allow filling out a variable or specific input at runtime. This is a common feature on other REST clients such as Insomnia and Postman. The basic idea is that you can issue a dialog box to "prompt" you for input when you execute a request. You could have syntax like
GET https://someapi.test/user/<!id!>/which would trigger a dialog input for the value ofidin this case.Why should this be worked on?
Insomnia and Postman both support this and it would help make it easier for others to transition over to hoppscotch.
@thetronjohnson commented on GitHub (Apr 5, 2024):
Hi @billriess, you can use Hoppscotch's request variables to provide an input at runtime. There's no prompt, but I think this could help.
https://docs.hoppscotch.io/documentation/features/variables#variable-scopes
https://github.com/hoppscotch/hoppscotch/assets/22194802/c81586bb-1cb9-4218-a81e-50d68182db51
@Nocusek commented on GitHub (Mar 12, 2026):
In my opinion this is very useful because I often work with multiple requests, for example in Postman -
GET <<HOST>>/api/v1/products/<<PRODUCT_ID>>andGET <<HOST>>/api/v1/products/<<PRODUCT_ID>>/events. When I update the variable in one place, the value is automatically updated in all requests that use in collection. It would also be helpful to have a reset button to restore the value to Initial if it is defined.