-
Notifications
You must be signed in to change notification settings - Fork 5
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
As an API user, I want to search using URL parameters #462
Comments
This was completed at the initiation of the API. See https://pds-gamma.jpl.nasa.gov/api/products?limit=100&q=lid%20eq%20*insight*&only-summary=false as an example |
@jordanpadams Your request string doesn't work for me using firefox or safari. |
@gxtchen you have to use curl or wget to test this. this will no longer work in the browser because we disabled the HTML / XML responses. |
@jordanpadams @tloubrieu-jpl This works. q=... doesn't return anything. |
@gxtchen I was able to make that request work: I think this is equivalent to the one which you tested but did not work. I think the reason why it did not work is the quote missing around the lid url value. Did you get this request from a documentation that we should update. |
Motivation
...so that I can provide more simple search criteria, and do not need to know the complexity of the API query syntax
Additional Details
Acceptance Criteria
Given a deployed API with data ingested
When I perform a query against an API endpoint with
<endpoint>?lidvid eq *my_lid*
Then I expect the API to query the Registry for a lidvid that matches
*my_lid*
.Engineering Details
The text was updated successfully, but these errors were encountered: