For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Members

This endpoint gets paginated community members for a specific Sonoran Radio community.

Get Members

GET /v2/servers/:communityId/members

Rate limit: 15 requests per minute

Returns paginated community membership data, including approval state, permission level, and per-profile access.

Headers

Name
Value

Authorization

Bearer <community-api-key>

URL Parameters

Name
Type
Description

communityId

string

Sonoran Radio community ID

Query Parameters

Name
Type
Description

page

integer

1-based page number. Defaults to 1.

perPage

integer

Page size. Defaults to 25, maximum 100.

status

string

Optional filter: pending, approved, or banned.

sortBy

string

Optional sort field: username, displayName, approved, pending, permission, banned, or accId.

descending

boolean

Set to true to sort descending.

search

string

Optional search across username, display name, and account ID.

Examples

local response = client.radio:getMembersV2({
  page = 1,
  perPage = 25,
  status = "approved",
  sortBy = "username",
  search = "dispatch"
}, "YOUR_COMMUNITY_ID")

Response

Successful requests return application/json.

Last updated

Was this helpful?