hewong
June 17, 2022, 9:02am
1
The documentation is still using the v3 syntax.
From what I understood, the new syntax would be something like this
const params: GroupChannelCreateParams = {
name: '',
isDistinct: true,
isStrict: true,
};
I’m also trying to find the equivalent of params.addUserIds() in v4, in the documentation there’s only operatorUserIds.
Thank you
Tyler
June 17, 2022, 9:31am
2
Hey @hewong ,
Thank you calling this out. I’ve raised it up to our team to get that corrected. In regards to addUserIds(), you’ll want to utilize invitedUserIds: string[]. I’m having this updated as well.
You can find a complete list of what params are accepted in the API Reference: GroupChannelCreateParams | Sendbird Chat SDK Reference - v4.0.0-beta
hewong
June 17, 2022, 9:44am
3
Thank you for the prompt reply!
Hi @Tyler
How to create a group channel using javascript instead of typescript using v4?