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
Schema for package search API:
parameters:
name: query description: package search string required: true type: string
name: page description: page number of the query , 10 documents per page required: true type: string
name: sorted_by description: package sort parameter can be name, author, createdat ,updatedAt. (case insensitive) required: false type: string
name: sort description: sort by ascending (asc) or descending (desc) required: false type: string
Curl Request would be similar to: curl --request GET \ --url 'http://localhost:5000/packages?query=fpm&page=1&sorted_by=name&sort=asc'
curl --request GET \ --url 'http://localhost:5000/packages?query=fpm&page=1&sorted_by=name&sort=asc'
Thanks and Regards, Henil
CC @arteevraina @minhqdao @perazz
The text was updated successfully, but these errors were encountered:
Merge pull request fortran-lang#24 from arteevraina/namespace-maintai…
322332b
…ners feat: Added APIs for adding removing namespace maintainers
No branches or pull requests
Schema for package search API:
parameters:
name: query
description: package search string
required: true
type: string
name: page
description: page number of the query , 10 documents per page
required: true
type: string
name: sorted_by
description: package sort parameter can be name, author, createdat ,updatedAt. (case insensitive)
required: false
type: string
name: sort
description: sort by ascending (asc) or descending (desc)
required: false
type: string
Curl Request would be similar to:
curl --request GET \ --url 'http://localhost:5000/packages?query=fpm&page=1&sorted_by=name&sort=asc'
Thanks and Regards,
Henil
CC @arteevraina @minhqdao @perazz
The text was updated successfully, but these errors were encountered: