Group Members

List members of an access group

Returns a paginated list of members that belong to a specific access group.

Each member includes: id, email, displayName, status, verified, paid, registeredAt, and lastLoginAt. Use cursor-based pagination to iterate through large groups.

GET /access-groups/{groupId}/members

List members of an access group

curl --request GET \
  --url 'https://api.sotion.so/api/v1/access-groups/{GROUPID}/members' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "data": [
    {
      "id": "<uuid>",
      "email": "<email>",
      "displayName": "<string>",
      "status": "active",
      "verified": true,
      "paid": true,
      "registeredAt": "<date-time>",
      "lastLoginAt": "<date-time>"
    }
  ],
  "pagination": {
    "hasMore": true,
    "nextCursor": "<uuid>"
  }
}

Paginated list of group members.

Authorizations

  • Authorization string required header

    Per-site API key (prefix: so_...). Each key is scoped to exactly one Sotion site — the site context is determined entirely by the key. No site ID is needed in any URL. Pass as: Authorization: Bearer so_...

Path Parameters

  • groupId string (uuid) required

    UUID of the access group. Get group IDs from listAccessGroups or createAccessGroup responses.

Query Parameters

  • after string (uuid)

    Cursor for pagination. Pass the nextCursor value from a previous response to get the next page of results.

  • limit integer

    Number of items to return per page (1-100). Default: 50.

Response

application/json
  • X-RateLimit-Limit integer response header

    Maximum requests allowed in the current window.

  • X-RateLimit-Remaining integer response header

    Requests remaining in the current window.

  • X-RateLimit-Reset integer response header

    Unix timestamp (seconds) when the rate limit window resets.

  • X-Request-Id string (uuid) response header

    Unique request identifier for support and debugging.

  • data[] object array
    + Show Child Attributes
    • id string (uuid)

      Unique identifier (UUID) for the member.

    • email string (email)

      Member's email address (normalized to lowercase).

    • displayName string nullable

      Display name shown to the member, null if not set.

    • status string enum enum

      'active' means the member can access the site. 'blocked' means the member is denied access. Allowed values: active, blocked.

    • verified boolean nullable

      Whether the member has verified their email by clicking a login link. Null if unknown.

    • paid boolean nullable

      Whether this member is marked as a paying customer. Set manually or via the API.

    • registeredAt string (date-time) nullable

      When the member first registered (clicked a login link or was added).

    • lastLoginAt string (date-time) nullable

      When the member last logged in via a login link.

  • pagination object
    + Show Child Attributes
    • hasMore boolean

      True if there are more items after this page.

    • nextCursor string (uuid) nullable

      Pass this value as the 'after' query parameter to fetch the next page. Null when there are no more pages.