I’m trying to set up API call to get user information and got the access token with Postman but no matter what I do I keep getting the message:
Invalid access token, does not any contain scope.
I have app set up with Scope user:master and user:read:admin but doesn’t seem to make any difference.
Hi @nbecirovic
As you can see in our Docs, the next page token is used to paginate through large results and this is the expected behavior, it will change with every call you make
So for our implementation when I go under User Management > Users it shows a total of 5,337 results which sounds about right. But when I run the following:
GET {{baseUrl}}/phone/users (it returns only 747 records)
and for:
GET {{baseUrl}}/phone/numbers (it only returns 226 records)
Am I missing something here? These are totals, not per page results. Which GET would I need to use to return our entire user base as shown on the User Management > Users page?