Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update maximum call members to 100 #1498

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ import FilterConditions from '../../../shared/_filter-operators.mdx';
import CallMemberFilters from '../../../shared/video/_call-member-filters.mdx';
import CallMemberSort from '../../../shared/video/_call-member-sort-fields.mdx';

When you create or join a call you get a list of call members, however this can return at most 25 members:
When you create or join a call you get a list of call members, however this can return at most 100 members:

```typescript
// The maximum limit is 25
// The maximum limit is 100
// The default limit is 25
await call.getOrCreate({ members_limit: 25 });
await call.getOrCreate({ members_limit: 100 });

// or
await call.join({ members_limit: 25 });
await call.join({ members_limit: 100 });
```

To get the complete list of call members the Stream API allows you to query, filter and sort members of a call using a paginated list.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ import FilterConditions from '../../../shared/_filter-operators.mdx';
import CallMemberFilters from '../../../shared/video/_call-member-filters.mdx';
import CallMemberSort from '../../../shared/video/_call-member-sort-fields.mdx';

When you create or join a call you get a list of call members, however this can return at most 25 members:
When you create or join a call you get a list of call members, however this can return at most 100 members:

```typescript
// The maximum limit is 25
// The maximum limit is 100
// The default limit is 25
await call.getOrCreate({ members_limit: 25 });
await call.getOrCreate({ members_limit: 100 });

// or
await call.join({ members_limit: 25 });
await call.join({ members_limit: 100 });
```

To get the complete list of call members the Stream API allows you to query, filter and sort members of a call using a paginated list.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ import FilterConditions from '../../../shared/_filter-operators.mdx';
import CallMemberFilters from '../../../shared/video/_call-member-filters.mdx';
import CallMemberSort from '../../../shared/video/_call-member-sort-fields.mdx';

When you create or join a call you get a list of call members, however this can return at most 25 members:
When you create or join a call you get a list of call members, however this can return at most 100 members:

```typescript
// The maximum limit is 25
// The maximum limit is 100
// The default limit is 25
await call.getOrCreate({ members_limit: 25 });
await call.getOrCreate({ members_limit: 100 });

// or
await call.join({ members_limit: 25 });
await call.join({ members_limit: 100 });
```

To get the complete list of call members the Stream API allows you to query, filter and sort members of a call using a paginated list.
Expand Down
Loading