From 40ef226d3c37472316cbeb34710fbdd6528456f8 Mon Sep 17 00:00:00 2001 From: WillAbides Date: Mon, 29 Jun 2020 08:26:54 -0500 Subject: [PATCH] Replace limit with pagesize in docs for catalog endpoint (#1641) Co-authored-by: Marwan Sulaiman --- docs/content/design/proxy.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/design/proxy.md b/docs/content/design/proxy.md index 541f8350..50f83c79 100644 --- a/docs/content/design/proxy.md +++ b/docs/content/design/proxy.md @@ -69,9 +69,9 @@ The proxy provides a `/catalog` service endpoint to fetch all the modules and th A query is of the form -`https://proxyurl/catalog?token=foo&limit=47` +`https://proxyurl/catalog?token=foo&pagesize=47` -Where token is an optional continuation token and limit is the desired size of the returned page. +Where token is an optional continuation token and pagesize is the desired size of the returned page. The `token` parameter is not required for the first call and it's needed for handling paginated results.