We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af887d9 commit 39c7fffCopy full SHA for 39c7fff
quickstart.js
@@ -96,11 +96,11 @@ getAccessToken().then( token => {
96
console.log(token);
97
98
const participantResourceUrl = `/api/v1/administration/projects/` + rksProjectId + '/participants';
99
- getFromApi(token, participantResourceUrl, { 'query': 'smith' } )
+ getFromApi(token, participantResourceUrl)
100
.then(data => {
101
if (data) {
102
// Uncomment this to print out the full response to the console.
103
- logResponse(data);
+ // logResponse(data);
104
console.log(`\nTotal Participants: ${data.totalParticipants}`);
105
} else {
106
console.log("Error when accessing the API.");
0 commit comments