Skip to main content
POST
Get Community Members by Page

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
community_id
string
required

The ID of the community to get members from.

next_cursor
string | null

Cursor returned by the previous page. Leave empty to fetch the first page.

Example:

"1234567890"

Response

Current page data (up to 20 members) and pagination metadata (has_next_page, next_cursor).

code
integer
required

The status code of the response.

msg
string
required

The message of the response.

data
UserModel · object[]
required

A list of user objects.

has_next_page
boolean
required

Whether another page is available.

next_cursor
string | null

The next cursor of the members to get.

Example:

"1234567890"