Organization Docs need update?

https://www.better-auth.com/docs/plugins/organization#members

this need to be update?

i tried to call this in nextjs
const data = await auth.api.listMembers({
    query: {
      organizationId: authData.session.activeOrganizationId,
      limit: 100,
      offset: 0,
      sortBy: "createdAt",
      sortDirection: "desc",
    },
  });

and i got this error
An error occurred in the Server Components render but no message was provided


after i add headers
const org = await auth.api.listMembers({
    headers: await headers(),
  });

it works
Screenshot_2025-10-17_at_02.53.20.png
The organization plugin allows you to manage your organization's members and teams.
Was this page helpful?