-
Notifications
You must be signed in to change notification settings - Fork 445
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prompt for undefined variables #479
Comments
@mfulton26 what do you mean undefined variables in our scope? |
I think I have a similar user case. I use our own apis for a lot of diagnostics against our system. So I might en up with a customer or product id and need to make queries for that but the customer or product id will change almost every time I make the query so given
How would we elegantly allow the system to (probably prompt) for the unknown value |
yes, as @NearlyUnique describes it, I haven't placed instead of silently sending the request using an undefined variable I'd rather get prompted for what value to use in the request |
@mfulton26 @NearlyUnique sorry for the late reply, I am not sure if I totally understand your pain point, here I'd like to show you the two current offerings to help users to find out the undefined variables as following: |
right, so for some requests I'll have some variable that will be unique for every single request, instead of defining the variable somewhere I'd rather get a pop-up window when I try to send the request asking me for the value of any variables in the request that are not defined, this way I can only temporarily define it for just that once when I send the request, the next time I click "Send Request" I'll get prompted/asked again for the value |
I find for some HTTP requests I use I almost always use a unique value for a variable (e.g.
logId
,sessionId
, etc.). I usually just change the variable in the file but I think it would be even nicer if I could get prompted in a pop-up/modal/dialog window for any undefined variables, they can default to the last used value but the first time it is used it could just be blank and allow me to enter it in.The text was updated successfully, but these errors were encountered: