From 6da16a7ca47be94dea2d5baff2350e7959a0ecda Mon Sep 17 00:00:00 2001 From: Ken Lui <116421546+kenlhlui@users.noreply.github.com> Date: Tue, 13 Aug 2024 15:30:44 -0400 Subject: [PATCH] 1. Fixed the correct query string first 10 resutls. The original `start=1` skips the actual first reocrd, making the result showing the first 2 - 11 records. --- orcid-api-web/tutorial/search.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orcid-api-web/tutorial/search.md b/orcid-api-web/tutorial/search.md index e552157b641..76c67671eda 100644 --- a/orcid-api-web/tutorial/search.md +++ b/orcid-api-web/tutorial/search.md @@ -402,7 +402,7 @@ Description: Search for records modified between January 1, 2018 and today Paging: First 10 results -URL: ```https://pub.sandbox.orcid.org/v3.0/search/?q=profile-last-modified-date:%5B2018-01-01T00:00:00Z%20TO%20NOW%5D&start=1&rows=10``` +URL: ```https://pub.sandbox.orcid.org/v3.0/search/?q=profile-last-modified-date:%5B2018-01-01T00:00:00Z%20TO%20NOW%5D&start=0&rows=10``` ### Example 14