ryft.createConversation()
Creates a new conversation with a set of recipients in which the messages will be sent.
let res = await ryft.createConversation(
{
recipients: [
"did:pkh:001...",
"did:pkh:002...",
"did:pkh:003..."
],
name: "Dev chat",
description: "Conversation to chat with devs"
}
);
Returns
{
status: 200,
doc: "cjzl6cwe1...x6iqjwvcb",
result: "Success creating Conversation Context."
}