1.7.14 • Published 2 days ago

@pushprotocol/restapi v1.7.14

Weekly downloads
-
License
-
Repository
-
Last release
2 days ago

restapi

This package gives access to Push Protocol (Push Nodes) APIs. Visit Developer Docs or Push.org to learn more.

Index

How to use in your app?

Installation

yarn add @pushprotocol/restapi@latest

or

npm install @pushprotocol/restapi@latest

Note - ethers is an optional peer dependency and is required only when sdk is used with ethers signer.

Import SDK

import { PushAPI } from '@pushprotocol/restapi';

About generating the "signer" object for different platforms

When using in SERVER-SIDE code:

const ethers = require('ethers');
const PK = 'your_channel_address_secret_key';
const Pkey = `0x${PK}`;
const _signer = new ethers.Wallet(Pkey);

When using in FRONT-END code:

// any other web3 ui lib is also acceptable
import { useWeb3React } from "@web3-react/core";
.
.
.
const { account, library, chainId } = useWeb3React();
const _signer = library.getSigner(account);

About blockchain agnostic address format

In any of the below methods (unless explicitly stated otherwise) we accept either -

  • CAIP format: for any on chain addresses We strongly recommend using this address format. Learn more about the format and examples. (Example : eip155:1:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb)

  • ETH address format: only for backwards compatibility. (Example: 0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb)

Chat blockchain agnostic address format

Note - For chat related apis, the address is in the format: eip155:<address> instead of eip155:<chainId>:<address>, we call this format Partial CAIP (Example : eip155:0xab16a96d359ec26a11e2c2b3d8f8b8942d5bfcdb)

SDK Features

Manage User

APIs to Initialise User and User APIs.

Initialize

// Initialize PushAPI class instance
const userAlice = await PushAPI.initialize(signer, {
  env: 'staging',
});

Parameters

ParamTypeDefaultRemarks
signerSignerType-Ethers or Viem Signer.
options *PushAPIInitializeProps-Optional configuration properties for initializing the PushAPI.
options.env *ENVstagingAPI env - 'prod', 'staging', 'dev'.
options.progressHook*(progress: ProgressHookType) => void-A callback function to receive progress updates during initialization.
options.account *string-The account to associate with the PushAPI. If not provided, it is derived from signer.
options.version *stringENC_TYPE_V3The encryption version to use for the PushAPI.
options.versionMeta *{ NFTPGP_V1 ?: { password: string } }-Metadata related to the encryption version, including a password if needed, and reset for resetting nft profile
options.autoUpgrade *booleantrueIf true, upgrades encryption keys to the latest encryption version.
options.origin *string-Specify origin or source while creating a Push Profile.

* - Optional


Reinitialize

// Reinitialize PushAPI for fresh start of NFT Account
// Reinitialize only succeeds if the signer account is the owner of the NFT
await userAlice.reinitialize({
  versionMeta: { NFTPGP_V1: { password: 'NewPassword' } },
});

Parameters

ParamTypeDefaultRemarks
optionsPushAPIInitializeProps-Optional configuration properties for initializing the PushAPI.
options.versionMeta{ NFTPGP_V1 ?: password: string }-Metadata related to the encryption version, including a password if needed.

Fetch User Info

// userAlice.info({options?})
const response = await userAlice.info();

Parameters: | Param | Type | Default | Remarks| | ---------- | ---------- | ------------- | ---------------------- | | options | InfoOptions | - | Optional configuration properties | | - | options.overrideAccount | - | The account for which info is retrieved, can override to get info of other accounts not owned by the user. If not provided, it is derived from signer. |


Fetch Profile Info

// userAlice.profile.info({options?})
const response = await userAlice.profile.info();

Parameters: | Param | Type | Default | Remarks| | ---------- | --------- | ------------- | ---------------------- | | options | InfoOptions | - | Optional configuration properties | | - | options.overrideAccount | - | The account for which info is retrieved, can override to get info of other accounts not owned by the user. If not provided, it is derived from signer. |


Update Profile Info

// Update Push Profile
// userAlice.profile.update({options?})
const response = await userAlice.profile.update({
  name: 'Alice',
  description: 'Alice is a software developer',
  picture: imageInBase64Format, // base64 encoded image
});
ParamTypeDefaultRemarks
optionsobject-Configuration options for updating profile
options.name *string-Profile Name
options.description *string-Profile Description
options.picture *string-Profile Picture

* - Optional


Fetch Encryption Info

// Fetch Encryption Info
const aliceEncryptionInfo = await userAlice.encryption.info();

Update Encryption

// userAlice.encryption.update(ENCRYPTION_TYPE, {options?})
// Wallet User Update,
// Usually not required as it's handled internally by the SDK to automatically update to recommended encryption type
const walletAlice = await userAlice.encryption.update(
  CONSTANTS.USER.ENCRYPTION_TYPE.PGP_V3
);

// NFT User Update
// Should be done when the NFT is transferred to a different user
// so messages and connections can be migrated to the new user
const nftAlice = await userAlice.encryption.update(
  CONSTANTS.USER.ENCRYPTION_TYPE.NFTPGP_V1,
  {
    versionMeta: {
      NFTPGP_V1: {
        password: 'new_password',
      },
    },
  }
);
ParamTypeDefaultRemarks
options *object-Optional Configuration for updating encryption
options.versionMeta*{ NFTPGP_V1 ?: { password : string} }-New Password ( In case of NFT Profile )

* - Optional


For Push Notifications

Initializing User is the first step before proceeding to sending/interacting with Notification APIs. Please refer Initialize User Section

Fetch Inbox Or Spam notifications

// lists feeds
const aliceInfo = await userAlice.notification.list('INBOX');

Parameters:

ParameterTypeDefaultDescription
spamINBOX or SPAMINBOXA string representing the type of feed to retrieve.
options*object-An object containing additional options for filtering and pagination.
options.account*string-Account in full CAIP
options.channels*string[]-An array of channels to filter feeds by.
options.page*number-A number representing the page of results to retrieve.
options.limit*number-A number representing the maximum number of feeds to retrieve per page.
options.raw*boolean-A boolean indicating whether to retrieve raw feed data.

* - Optional


Fetch user subscriptions

// fetches list of channels to which the user is subscribed
const subscriptions = await userAlice.notification.subscriptions();

Parameters:

ParameterTypeDefaultDescription
options*object-An object containing additional options for subscriptions.
options.account*string-Account in supported address format.
options.page*number-page of results to retrieve.
options.limit*number-represents the maximum number of subscriptions to retrieve per page.

* - Optional


Subscribe to a channel

// subscribes to a channel
const subscribeStatus = await userAlice.notification.subscribe(channelInCAIP, {
  settings,
});

Parameters:

ParameterTypeDefaultDescription
channelstring-Channel/Alias address in CAIP format
settings*objects[]-Contain array of individual setting object

Individual setting object:

ParamTypeSubtypeDefaultRemarks
settingobject--Individual setting object
-enabledbooleantrueIndicates if setting is enabled or disabled
-valuestring-The value set by the user

* - Optional


Unsubscribe to a channel

// unsubscribes to the channel
const unsubscribeResponse = await userAlice.notification.unsubscribe(
  channelAddressInCAIP
);

Parameters:

ParameterTypeDefaultDescription
channelstring-Channel/Alias address in CAIP format

* - Optional


Channel information

// fetches information about the channel
const channelInfo = await userAlice.channel.info(channelAddressInCAIP);

Parameters:

ParameterTypeDefaultDescription
channel*string-Channel address in CAIP format

* - Optional


Search Channels

// returns channel matching the query
const searchResult = await userAlice.channel.search('push');

Parameters:

ParameterTypeDefaultDescription
querystring-The search query to find channels.
options*ChannelSearchOptions-Configuration options for the search.
options.page*number-The page of results to retrieve. Default is set to 1
options.limit*number-The maximum number of channels to retrieve per page. Default is set to 10

* - Optional


Get Subscribers Of A Channel

// userAlice.channel.subscribers({options?})
const channelSubscribers = await userAlice.channel.subscribers();

Parameters:

ParamTypeSubtypeDefaultRemarks
optionsobject--Configuration options for retrieving subscribers.
-options.channelstringDerived from signerChannel address in chain specific wallet format. If no channel address is passed, then signer is used to derive the channel
-options.pagenumber-A number representing the page of results to retrieve.
-options.limitnumber-Represents the maximum number of subscriptions to retrieve per page
-options.settingbooleanfalseA boolean flag if when set to true, fetches user settings along with the subscriber
-options.categorynumber-Filters out subscribers that have enabled a specific category of notification settings

* - Optional


Send a notification

// sends a notification
// userAlice.channel.send([recipients], {options?})
const sendNotifRes = await userAlice.channel.send(['*'], {
  notification: { title: 'test', body: 'test' },
});

Parameters:

ParamTypeRemarks
recipientsstring[]An array of recipient addresses passed in any supported wallet address format. Possible values are: Broadcast -> *, Targeted -> 0xA, Subset -> 0xA, 0xB, see types of notifications for more info.
optionsNotificationOptionsConfiguration options for sending notifications.
options.notificationINotificationAn object containing the notification's title and body. (Mandatory)
options.notification.titlestringThe title for the notification. If not provided, it is taken from notification.title.
options.notification.bodystringThe body of the notification. If not provided, it is taken from notification.body.
options.payload*IPayloadAn object containing additional payload information for the notification.
options.payload.title*stringThe title for the notification. If not provided, it is taken from notification.title.
options.payload.body*stringThe body of the notification. If not provided, it is taken from notification.body.
options.payload.cta*stringCall to action for the notification.
options.payload.embed*stringMedia information like image/video links
options.payload.category*stringDon't pass category if you are sending a generic notification. Notification category represents index point of each individual settings. Pass this if you want to indicate what category of notification you are sending (If channel has settings enabled). For example, if a channel has 10 settings, then a notification of category 7 indicates it's a notification sent for setting 7, if user has turned setting 7 off then Push ndoes will stop notif from getting to the user.
options.payload.meta*{ domain?: string, type: string, data: string }Metadata for the notification, including domain, type, and data.
options.config*IConfigAn object containing configuration options for the notification.
options.config.expiry*numberExpiry time for the notification in seconds
options.config.silent*booleanIndicates whether the notification is silent.
options.config.hidden*booleanIndicates whether the notification is hidden.
options.advanced*IAdvanceAn object containing advanced options for the notification.
options.advanced.graph*{ id: string, counter: number }Advanced options related to the graph based notification.
options.advanced.ipfs*stringIPFS information for the notification.
options.advanced.minimal*stringMinimal Payload type notification.
options.advanced.chatid*stringFor chat based notification.
options.advanced.pgpPrivateKey*stringPGP private key for chat based notification.
options.channel*stringChannel address in CAIP. Mostly used when a delegator sends a notification on behalf of the channel

* - Optional


Create a channel

// creates a channel
// userAlice.channel.create({options})
const response = await userAlice.channel.create({
  name: 'Test Channel',
  description: 'Test Description',
  icon: imageBase64Format,
  url: 'https://push.org',
});

Parameters:

ParamTypeDefaultRemarks
optionsobject-Configuration options for creating a channel
options.namestring-The name of the channel
options.descriptionstring-A description of the channel
options.iconstring (base64 encoded)-The channel's icon in base64 encoded string format
options.urlstring-The URL associated with the channel
options.aliasstring-alias address in in chain specific wallet format
options.progresshook(progress) => void-A callback function that's called during channel creation progress, see progress object

* - Optional

Optional: Informs about individual progress stages during channel creation if progresshook is function is passed during channel creation API call.

ParamTypeDefaultRemarks
progressobject-progress object that is passed in the callback
Progress.idstring-Predefined, ID associated with the progress objects
Progress.levelstring-Predefined, Level associated with the progress objects
Progress.titlestring-Predefined, title associated with the progress objects
Progress.infostring-Predefined, info associated with the progress objects

Progress object details

Progress.idProgress.levelProgress.titleProgress.info
PUSH-CHANNEL-CREATE-01INFOUploading data to IPFSThe channel’s data is getting uploaded to IPFS
PUSH-CHANNEL-CREATE-02INFOApproving PUSH tokensGives approval to Push Core contract to spend 50 $PUSH
PUSH-CHANNEL-CREATE-03INFOChannel is getting createdCalls Push Core contract to create your channel
PUSH-CHANNEL-CREATE-04SUCCESSChannel creation is done, Welcome to Push EcosystemChannel creation is completed
PUSH-CHANNEL-UPDATE-01INFOUploading new data to IPFSThe channel’s new data is getting uploaded to IPFS
PUSH-CHANNEL-UPDATE-02INFOApproving PUSH tokensGives approval to Push Core contract to spend 50 $PUSH
PUSH-CHANNEL-UPDATE-03INFOChannel is getting updatedCalls Push Core contract to update your channel details
PUSH-CHANNEL-UPDATE-04SUCCESSChannel is updated with new dataChannel is successfully updated
PUSH-ERROR-02ERRORTransaction failed for a function callTransaction failed

Update channel information

// updates channel info
// userAlice.channel.update({options?})
const updateChannelRes = await userAlice.channel.update({
  name: newChannelName,
  description: newChannelDescription,
  url: newChannelURL,
  icon: newBase64FormatImage,
  alias: newAliasAddressInCAIP,
});

Parameters:

ParameterTypeDefaultDescription
options--Configuration options for creating a channel.
options\.namestring-New name of the channel.
options.descriptionstring-New description of the channel.
options.iconstring (base64 encoded)-The channel's new icon in base64 encoded string format.
options.urlstring-New URL associated with the channel.
options.alias*string-New alias address in CAIP
options.progresshook*() => void-A callback function to execute when the channel updation progresses.

* - Optional

Optional: Informs about individual progress stages during channel creation if progresshook is function is passed during channel creation API call.

ParamTypeDefaultRemarks
progressobject-progress object that is passed in the callback
Progress.idstring-Predefined, ID associated with the progress objects
Progress.levelstring-Predefined, Level associated with the progress objects
Progress.titlestring-Predefined, title associated with the progress objects
Progress.infostring-Predefined, info associated with the progress objects

Progress object details

Progress.idProgress.levelProgress.titleProgress.info
PUSH-CHANNEL-CREATE-01INFOUploading data to IPFSThe channel’s data is getting uploaded to IPFS
PUSH-CHANNEL-CREATE-02INFOApproving PUSH tokensGives approval to Push Core contract to spend 50 $PUSH
PUSH-CHANNEL-CREATE-03INFOChannel is getting createdCalls Push Core contract to create your channel
PUSH-CHANNEL-CREATE-04SUCCESSChannel creation is done, Welcome to Push EcosystemChannel creation is completed
PUSH-CHANNEL-UPDATE-01INFOUploading new data to IPFSThe channel’s new data is getting uploaded to IPFS
PUSH-CHANNEL-UPDATE-02INFOApproving PUSH tokensGives approval to Push Core contract to spend 50 $PUSH
PUSH-CHANNEL-UPDATE-03INFOChannel is getting updatedCalls Push Core contract to update your channel details
PUSH-CHANNEL-UPDATE-04SUCCESSChannel is updated with new dataChannel is successfully updated
PUSH-ERROR-02ERRORTransaction failed for a function callTransaction failed

Verify a channel

const verifyChannelRes = await userAlice.channel.verify(channel);

Parameters:

ParameterTypeDefaultDescription
channelstring-Channel address in CAIP to be verified

Create channel Setting

// creates channel settings
const createChannelSettingRes = userAlice.channel.setting([
  {
    type: 1, // Boolean type
    default: 1,
    description: 'Receive marketing notifications',
  },
  {
    type: 2, // Slider type
    default: 10,
    description: 'Notify when loan health breaches',
    data: { upper: 100, lower: 5, ticker: 1 },
  },
]);

Parameters:

PropertyTypeDefaultDescription
typenumber-The type of notification setting. 1 for boolean type and 2 for slider type
defaultnumber-The default value for the setting.
descriptionstring-A description of the setting.
data.upper*number-Valid for slider type only. The upper limit for the setting.
data.lower*number-Valid for slider type only. The lower limit for the setting.
data.ticker*numberValid for slider type only. The ticker by which the slider moves.

| * - Optional


Get delegators information

// fetch delegate information
const delegates = await userAlice.channel.delegate.get();

Parameters:

ParameterTypeDefaultDescription
options*ChannelInfoOptions-Configuration options for retrieving delegator information.
options.channel*string-channel address in CAIP

* - Optional


Add delegator to a channel or alias

// adds a delegate
const addedDelegate = await userAlice.channel.delegate.add(delegate);

Parameters:

ParameterTypeDefaultDescription
delegatestring-delegator address in CAIP
Note: Support for contract interaction via viem is coming soon

Remove delegator from a channel or alias

// removes a delegate
const removeDelegate = await userAlice.channel.delegate.remove(delegate);

Parameters:

ParameterTypeDefaultDescription
delegatestring-delegator address in CAIP
Note: Support for contract interaction via viem is coming soon

Alias Information

// fetch alias info
const aliasInfo = userAlice.channel.alias.info({
  alias: aliasAddress,
  aliasChain: 'POLYGON',
});

Parameters:

ParamTypeDefaultDescription
optionsobject-Configuration options for retrieving alias information.
options.aliasstring-The alias address
options.aliasChainALIAS_CHAIN-The name of the alias chain, which can be 'POLYGON' or 'BSC' or 'OPTIMISM' or 'POLYGONZKEVM'

Stream Notifications

// userAlice.stream(listen, {options?})
// Initial setup
const stream = await userAlice.initStream([CONSTANTS.STREAM.NOTIF], {
  filter: {
    channels: ['*'], // pass in specific channels to only listen to those
    chats: ['*'], // pass in specific chat ids to only listen to those
  },
  connection: {
    retries: 3, // number of retries in case of error
  },
  raw: false, // enable true to show all data
});

// Listen for notifications events
stream.on(CONSTANTS.STREAM.NOTIF, (data: any) => {
  console.log(data);
});

// Connect stream, Important to setup up listen events first
stream.connect();

// stream supports other products as well, such as STREAM.CHAT, STREAM.CHAT_OPS
// more info can be found at push.org/docs/chat

Parameters: | Param | Type | Default | Remarks | | ----- | ---- | ------- | ------- | | listen | constant | - | can be CONSTANTS.STREAM.CHAT, CONSTANTS.STREAM.CHAT_OPS, CONSTANTS.STREAM.NOTIF, CONSTANTS.STREAM.CONNECT, CONSTANTS.STREAM.DISCONNECT | | options* | PushStreamInitializeProps | - | Optional configuration properties for initializing the stream. | | options.filter* | object | - | Option to configure to enable listening to only certain chats or notifications. | | options.filter.channels* | array of strings | ['*'] | pass list of channels over here to only listen to notifications coming from them. | | options.filter.chats* | array of strings | ['*'] | pass list of chatids over here to only listen to chats coming from them. | | options.connection* | object | - | Option to configure the connection settings of the stream | | options.connection.retries* | number | 3 | Number of automatic retries incase of error | | options.raw* | boolean | false | If enabled, will also respond with meta data useful in verifying the integrity of incoming chats or notifications among other things. |

Stream Notification Events

Listen eventsWhen is it triggered?
CONSTANTS.STREAM.NOTIFWhenever a new notification is emitted for the wallet.
CONSTANTS.STREAM.CONNECTWhenever the stream establishes connection.
CONSTANTS.STREAM.DISCONNECTWhenever the stream gets disconnected.

For Push Chat

Initializing User is the first step before proceeding to Chat APIs. Please refer Manage User Section

Fetch List of Chats

// List all chats
const aliceChats = await userAlice.chat.list('CHATS');
// List all chat requests
const aliceRequests = await userAlice.chat.list('REQUESTS');
ParamTypeDefaultRemarks
typeCHATS or REQUESTS-Type of Chats to be listed
options *Object-Optional configuration properties for listing chat
options.page *number1The page number for pagination
options.limit *number10The maximum number of items to retrieve per page

* - Optional


Fetch Latest Chat

// Latest Chat message with the target(bob) user
const aliceChats = await userAlice.chat.latest(bobAddress);
ParamTypeDefaultRemarks
recipientstring-Target DID ( For Group Chats target is chatId, for 1 To 1 chat target is Push DID )

Fetch Chat History

// userAlice.chat.history(recipient. {options?})
const aliceChatHistoryWithBob = await userAlice.chat.history(bobAddress);
ParamTypeDefaultRemarks
recipientstring-Target DID ( For Group Chats target is chatId, for 1 To 1 chat target is Push DID )
options *object-Optional Configuration for fetching chat history
options.reference*string or null-Refers to message refernce hash from where the previous messages are fetched. If null, messages are fetched from latest message
options.limit *number10No. of messages to be loaded

* - Optional


Send Message

// Alice sends message to bob
const aliceMessagesBob = await userAlice.chat.send(bobAddress, {
  content: 'Hello Bob!',
  type: 'Text',
});
ParamTypeDefaultRemarks
recipientstring-Recipient ( For Group Chats target is chatId, for 1 To 1 chat target is Push DID )
optionsobject-Configuration for message to be sent
options.type *Text or Image or Audio or Video or File or MediaEmbed or GIF or Meta or Reaction or Receipt or Intent or Reply or Composite-Type of message Content
options.contentstring or {type:TextorImageorAudioorVideoorFileorMediaEmbedorGIF; content: string} For Reply or {type:TextorImageorAudioorVideoorFileorMediaEmbedorGIF; content: string}[] For Composite-Message Content
options.reference *string-Message reference hash ( Only available for Reaction & Reply Messages )
options.info *{ affected : string[]: arbitrary?: { [key: string]: any } }-Message reference hash ( Only available for Meta & UserActivity Messages )

* - Optional


Accept Chat Request

// Accept Chat Request of Alice
const bobAcceptAliceRequest = await userBob.chat.accept(aliceAddress);
ParamTypeDefaultRemarks
recipientstring-Target ( For Group Chats target is chatId, for 1 To 1 chat target is Push Account )

Reject Chat Request

// Accept Chat Request of alice
await userBob.chat.reject(aliceAddress);
ParamTypeDefaultRemarks
recipientstring-Target ( For Group Chats target is chatId, for 1 To 1 chat target is Push Account )

Block Chat User

// Block chat user
const AliceBlocksBob = await userAlice.chat.block([bobAddress]);
ParamTypeDefaultRemarks
usersstring[]-Users to be blocked.

Unblock Chat User

// Unblock chat user
const AliceUnblocksBob = await userAlice.chat.unblock([bobAddress]);
ParamTypeDefaultRemarks
usersstring[]-Users to be unblocked.

Create Group

// Create a Group
// userAlice.chat.group.create(name, {options?})
const createdGroup = await userAlice.chat.group.create(name);
ParamTypeDefaultRemarks
namestring-The name of the group to be created.
options *object-Optional Configuration for creating group.
options.description *string-A description of the group.
options.image *string-Image for the group.
options.members *string[][]An array of member DID.
options.admins *string[]-An array of admin DID.
options.private *booleanfalseIndicates if the group is private.
options.rules *any[]-Conditions for entry to the group.

* - Optional


Fetch Group Info

// Fetch Group Info
const fetchGroupInfo = await userAlice.chat.group.info(groupChatId);
ParamTypeDefaultRemarks
chatIdstring-Group ChatId

Fetch Group Permissions

// Fetch Group Permissions
const fetchGroupPermissions = await userAlice.chat.group.permissions(
  groupChatId
);
ParamTypeDefaultRemarks
chatIdstring-Group ChatId

Update Group

// Update Group Info
// userAlice.chat.group.update(chatid, {options?})
const updatedGroup = await userAlice.chat.group.update(chatid, options);
ParamTypeDefaultRemarks
chatIdstring-Unique identifier of the group.
options *object-Optional Configuration for updating group.
options.name *string-Updated Group Name
options.description*string-Updated Description
options.image*string(base 64 format)-Updated Image
options.private*booleanfalseIndicates if the group is private.
options.rules *any[]-Define conditions such as token gating, nft gating, custom endpoint for joining or sending message in a group. See conditional group gating to understand rule engine and how to fine tune conditional rules of your group Rules

* - Optional


Add To Group

// await userAlice.chat.group.add(chatid, {options?})
const addAdminToGroup = await userAlice.chat.group.add(groupChatId, {
  role: 'ADMIN', // 'ADMIN' or 'MEMBER'
  accounts: [account1, account2],
});
ParamTypeDefaultRemarks
chatIdstring-Unique identifier of the group.
optionsobject-Configuration for adding participants to group.
options.roleADMIN or MEMBER-Role of added participant
options.accountsstring[]-Added participant addresses

Remove From Group

// await userAlice.chat.group.remove(chatid, {options?})
const removeAdminFromGroup = await userAlice.chat.group.remove(groupChatId, {
  role: 'ADMIN', // 'ADMIN' or 'MEMBER'
  accounts: [account1, account2],
});
ParamTypeDefaultRemarks
chatIdstring-Unique identifier of the group.
optionsobject-Configuration for adding participants to group.
options.roleADMIN or MEMBER-Role of added participant
options.accountsstring[]-Added participant addresses

Join Group

const joinGroup = await userAlice.chat.group.join(groupChatId);
ParamTypeDefaultRemarks
chatIdstring-Unique identifier of the gro
1.7.14

2 days ago

1.6.12-alpha.5

3 days ago

1.7.13

7 days ago

1.6.12-alpha.3

7 days ago

1.7.12

8 days ago

1.6.12-alpha.2

12 days ago

0.0.1-alpha.89

12 days ago

0.0.1-alpha.88

14 days ago

0.0.1-alpha.87

14 days ago

1.7.11

14 days ago

0.0.1-alpha.86

16 days ago

1.7.10

16 days ago

1.7.9

21 days ago

0.0.1-alpha.85

21 days ago

1.7.8

22 days ago

0.0.1-alpha.84

22 days ago

1.7.7

23 days ago

1.7.5

23 days ago

0.0.1-alpha.83

23 days ago

0.0.1-alpha.82

23 days ago

1.7.4

24 days ago

0.0.1-alpha.81

24 days ago

0.0.1-alpha.80

26 days ago

0.0.1-alpha.79

27 days ago

0.0.1-alpha.78

29 days ago

0.0.1-alpha.77

1 month ago

1.7.3

1 month ago

0.0.1-alpha.75

2 months ago

1.7.2

2 months ago

1.7.0

2 months ago

1.6.12-alpha.1

2 months ago

0.0.1-alpha.73

2 months ago

1.6.11

2 months ago

0.0.1-alpha.72

2 months ago

1.6.10

2 months ago

1.6.9

2 months ago

0.0.1-alpha.71

2 months ago

0.0.1-alpha.70

3 months ago

0.0.1-alpha.68

3 months ago

0.0.1-alpha.67

3 months ago

1.6.8

3 months ago

1.6.7

3 months ago

0.0.1-alpha.66

3 months ago

0.0.1-alpha.65

3 months ago

1.6.6

3 months ago

1.6.5

3 months ago

1.6.4

3 months ago

0.0.1-alpha.64

4 months ago

1.6.3

4 months ago

1.6.2

4 months ago

1.6.1

4 months ago

1.6.0

4 months ago

0.0.1-alpha.63

4 months ago

1.5.7

4 months ago

1.5.6

4 months ago

1.5.5

4 months ago

1.5.4

4 months ago

1.5.3

4 months ago

1.5.2

4 months ago

0.0.1-alpha.61

4 months ago

0.0.1-alpha.62

4 months ago

1.5.1

5 months ago

0.0.1-alpha.59

5 months ago

1.5.0

5 months ago

1.4.20

8 months ago

1.4.22

7 months ago

1.4.21

7 months ago

1.4.24

7 months ago

1.4.23

7 months ago

1.4.26

7 months ago

1.4.25

7 months ago

1.4.28

7 months ago

1.4.27

7 months ago

1.4.29

7 months ago

0.0.1-alpha.56

6 months ago

0.0.1-alpha.55

6 months ago

0.0.1-alpha.57

5 months ago

0.0.1-alpha.50

7 months ago

0.0.1-alpha.52

6 months ago

0.0.1-alpha.51

6 months ago

0.0.1-alpha.53

6 months ago

1.4.31

7 months ago

1.4.30

7 months ago

1.4.33

6 months ago

1.4.32

6 months ago

1.4.35

6 months ago

1.4.34

6 months ago

1.4.37

6 months ago

1.4.36

6 months ago

1.4.39

5 months ago

1.4.38

6 months ago

0.0.1-alpha.45

7 months ago

0.0.1-alpha.44

7 months ago

0.0.1-alpha.47

7 months ago

0.0.1-alpha.46

7 months ago

0.0.1-alpha.49

7 months ago

0.0.1-alpha.48

7 months ago

0.0.1-alpha.41

7 months ago

0.0.1-alpha.40

7 months ago

0.0.1-alpha.43

7 months ago

0.0.1-alpha.42

7 months ago

0.0.1-alpha.34

8 months ago

0.0.1-alpha.33

8 months ago

0.0.1-alpha.36

7 months ago

0.0.1-alpha.35

7 months ago

0.0.1-alpha.38

7 months ago

0.0.1-alpha.37

7 months ago

0.0.1-alpha.39

7 months ago

0.0.1-alpha.30

9 months ago

0.0.1-alpha.32

9 months ago

0.0.1-alpha.31

9 months ago

1.4.10

9 months ago

1.4.13

9 months ago

1.4.12

9 months ago

1.4.15

9 months ago

1.4.14

9 months ago

1.4.17

8 months ago

1.4.16

9 months ago

1.4.19

8 months ago

1.4.18

8 months ago

0.0.1-alpha.23

10 months ago

0.0.1-alpha.22

10 months ago

0.0.1-alpha.25

10 months ago

0.0.1-alpha.24

10 months ago

0.0.1-alpha.27

10 months ago

0.0.1-alpha.26

10 months ago

0.0.1-alpha.29

9 months ago

0.0.1-alpha.28

9 months ago

1.4.6

9 months ago

1.4.5

9 months ago

1.4.4

10 months ago

1.4.3

10 months ago

1.4.2

10 months ago

1.4.1

10 months ago

1.4.0

10 months ago

0.0.1-alpha.21

10 months ago

0.0.1-alpha.20

10 months ago

0.0.1-alpha.19

10 months ago

1.4.40

5 months ago

1.4.42

5 months ago

1.4.41

5 months ago

1.4.44

5 months ago

1.4.43

5 months ago

1.4.45

5 months ago

1.4.9

9 months ago

1.4.8

9 months ago

1.4.7

9 months ago

1.3.9

11 months ago

1.2.8

1 year ago

0.0.1-alpha.12

12 months ago

0.0.1-alpha.11

12 months ago

0.0.1-alpha.14

12 months ago

0.0.1-alpha.13

12 months ago

0.0.1-alpha.16

11 months ago

0.0.1-alpha.15

12 months ago

0.0.1-alpha.18

11 months ago

0.0.1-alpha.17

11 months ago

0.0.1-alpha.10

12 months ago

1.3.8

11 months ago

1.2.12

1 year ago

1.2.13

1 year ago

0.0.1-beta.2

1 year ago

1.2.10

1 year ago

1.2.11

1 year ago

1.2.16

12 months ago

1.2.14

12 months ago

0.0.1-beta.1

1 year ago

1.2.15

12 months ago

0.0.1-beta.0

1 year ago

1.3.7

11 months ago

1.3.6

11 months ago

1.3.5

11 months ago

1.3.4

11 months ago

1.3.3

11 months ago

1.3.2

12 months ago

1.3.1

12 months ago

0.0.1-alpha.8

12 months ago

1.3.0

12 months ago

0.0.1-alpha.9

12 months ago

0.0.1-alpha.6

12 months ago

0.0.1-alpha.7

12 months ago

0.0.1-alpha.4

12 months ago

0.0.1-alpha.5

12 months ago

0.0.1-alpha.2

12 months ago

0.0.1-alpha.3

12 months ago

0.0.1-alpha.0

1 year ago

0.0.1-alpha.1

1 year ago

1.2.9

1 year ago

1.2.0

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

1.2.7

1 year ago

1.2.6

1 year ago

1.2.5

1 year ago

1.2.4

1 year ago

1.2.3

1 year ago

1.2.2

1 year ago

1.0.4

1 year ago

1.2.1

1 year ago

1.0.3

1 year ago

0.9.0

1 year ago

1.1.0

1 year ago

0.7.6

1 year ago

0.8.1

1 year ago

0.8.0

1 year ago

0.8.3

1 year ago

0.8.2

1 year ago

0.7.5

1 year ago

0.7.2

1 year ago

0.6.3

1 year ago

0.7.1

1 year ago

0.6.2

1 year ago

0.7.4

1 year ago

0.7.3

1 year ago

0.6.4

1 year ago

0.5.0

1 year ago

0.3.2

1 year ago

0.4.0

1 year ago

0.7.0

1 year ago

0.6.1

1 year ago

0.6.0

1 year ago

0.3.3

1 year ago

0.3.0

1 year ago

0.3.1

1 year ago

0.2.2

1 year ago

0.2.1

2 years ago

0.2.0

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago