Hi, API experts,
May I ask a simple question?
In this Platform API: get /api/v2/users/search. it has q64 parameter.
|Parameter |Location |Description
|q64 |query |(string, required) q64
The API description is - Search users using the q64 value returned from a previous search.
Here is its JavaScript code sample:
let q64 = "q64_example"; // String | q64
But I still don't understand the meaning of q64 value? Also, what does "value returned from a previous search" mean? What does this q64 string represent to, the part text of user name or what else? Can you share with me some samples to help me understand?
How to use it in a real JavaScript code scenario?
Thanks a lot!
James