We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
fields
For GET requests you can make a request:
GET
https://lapis-main.loculus.org/cchf/sample/details?fields=accession,accessionVersion
However the corresponding POST request, which is what the Swagger UI generates, doesn't work:
curl -X 'POST' \ 'https://lapis-main.loculus.org/cchf/sample/details' \ -H 'accept: application/json' \ -H 'Content-Type: application/x-www-form-urlencoded' \ -d 'fields=accession,accessionVersion'`
But one can work around this with:
curl -X 'POST' \ 'https://lapis-main.loculus.org/cchf/sample/details' \ -H 'accept: application/json' \ -H 'Content-Type: application/x-www-form-urlencoded' \ -d 'fields=accession&fields=accessionVersion'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For
GET
requests you can make a request:https://lapis-main.loculus.org/cchf/sample/details?fields=accession,accessionVersion
However the corresponding POST request, which is what the Swagger UI generates, doesn't work:
But one can work around this with:
The text was updated successfully, but these errors were encountered: