Skip to content

Commit

Permalink
docs: update maximum call members to 100
Browse files Browse the repository at this point in the history
  • Loading branch information
szuperaz committed Sep 25, 2024
1 parent 4480ba0 commit 89f17d9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
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

0 comments on commit 89f17d9

Please sign in to comment.