You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in the web app when you press the ? the interface will product a form for query params, when using prism from the command line they parameters are not sent in the url. in the code view the json looks like this
GET http://myserver.com:8081/gmn/pricing/v1/prices/itinerant
not
GET http://myserver.com:8081/gmn/pricing/v1/prices/itinerant?source=EDG1&destinations=COR2&bitrate=25&duration=260&performance=Premium&management=Responsive
The text was updated successfully, but these errors were encountered:
russmilburn
changed the title
Prims is not sending query paramerters
Prism is not sending query parameters
Feb 27, 2018
in the web app when you press the ? the interface will product a form for query params, when using prism from the command line they parameters are not sent in the url. in the code view the json looks like this
"query": { "source": "{$.ctx.source}", "destinations": "{$.ctx.destinations}", "bitrate": "{$.ctx.bitrate}", "duration": "{$.ctx.duration}", "performance": "{$.ctx.performance}", "management": "{$.ctx.management}" }
the url request is this
GET http://myserver.com:8081/gmn/pricing/v1/prices/itinerant
not
GET http://myserver.com:8081/gmn/pricing/v1/prices/itinerant?source=EDG1&destinations=COR2&bitrate=25&duration=260&performance=Premium&management=Responsive
The text was updated successfully, but these errors were encountered: