Create Conversation Group
curl --request POST \
--url https://api.example.com/api/v1/conversations/groups \
--header 'Content-Type: application/json' \
--data '
{
"whatsapp_account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subject": "<string>",
"participants": [
"<string>"
]
}
'import requests
url = "https://api.example.com/api/v1/conversations/groups"
payload = {
"whatsapp_account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subject": "<string>",
"participants": ["<string>"]
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
whatsapp_account_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
subject: '<string>',
participants: ['<string>']
})
};
fetch('https://api.example.com/api/v1/conversations/groups', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"conversation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"group_jid": "<string>",
"subject": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}conversations
Create Conversation Group
Create a WhatsApp group and persist its conversation row.
POST
/
api
/
v1
/
conversations
/
groups
Create Conversation Group
curl --request POST \
--url https://api.example.com/api/v1/conversations/groups \
--header 'Content-Type: application/json' \
--data '
{
"whatsapp_account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subject": "<string>",
"participants": [
"<string>"
]
}
'import requests
url = "https://api.example.com/api/v1/conversations/groups"
payload = {
"whatsapp_account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subject": "<string>",
"participants": ["<string>"]
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
whatsapp_account_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
subject: '<string>',
participants: ['<string>']
})
};
fetch('https://api.example.com/api/v1/conversations/groups', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"conversation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"group_jid": "<string>",
"subject": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Headers
Body
application/json