Community API Pagination

Hi there,

I want to fetch all users of a community through your API endpoint, and it responds to me with a JSON and a “Paging” property inside.
For fetching the next page, what should I do with the “next” token?
I added it at the end of the URL, but it doesn’t work, and it responds to me the first data again.

Here is the paging:

"paging": {
    "next": "eyJza2lwIjoxMCwibGltaXQiOjEwfQ=="    
}

API:

/v3/communities/63d829aeed400112d20880bf/users

Hello, could you please try appending this “?token=eyJza2lwIjoxMCwibGltaXQiOjEwfQ==

What you have suggested doesn’t work.

But, this works for me:

/v3/communities/63d829aeed400112d20880bf/users?&options[limit]=10&options[token]=eyJza2lwIjoxMCwibGltaXQiOjEwfQ==
1 Like