Deleta chat
curl --request POST \
--url https://api.wppfy.com/chat/delete \
--header 'Content-Type: application/json' \
--header 'token: <api-key>' \
--data '
{
"number": "5511999999999",
"deleteChatDB": true,
"deleteMessagesDB": true,
"deleteChatWhatsApp": true
}
'import requests
url = "https://api.wppfy.com/chat/delete"
payload = {
"number": "5511999999999",
"deleteChatDB": True,
"deleteMessagesDB": True,
"deleteChatWhatsApp": True
}
headers = {
"token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {token: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
number: '5511999999999',
deleteChatDB: true,
deleteMessagesDB: true,
deleteChatWhatsApp: true
})
};
fetch('https://api.wppfy.com/chat/delete', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.wppfy.com/chat/delete",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'number' => '5511999999999',
'deleteChatDB' => true,
'deleteMessagesDB' => true,
'deleteChatWhatsApp' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.wppfy.com/chat/delete"
payload := strings.NewReader("{\n \"number\": \"5511999999999\",\n \"deleteChatDB\": true,\n \"deleteMessagesDB\": true,\n \"deleteChatWhatsApp\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.wppfy.com/chat/delete")
.header("token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"number\": \"5511999999999\",\n \"deleteChatDB\": true,\n \"deleteMessagesDB\": true,\n \"deleteChatWhatsApp\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.wppfy.com/chat/delete")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"number\": \"5511999999999\",\n \"deleteChatDB\": true,\n \"deleteMessagesDB\": true,\n \"deleteChatWhatsApp\": true\n}"
response = http.request(request)
puts response.read_body{
"response": "Chat deletion process completed",
"actions": [
"Chat deleted from WhatsApp",
"Chat deleted from database",
"Messages associated with chat deleted from database: 42"
],
"errors": [
"Error deleting chat from WhatsApp: connection timeout"
]
}{
"error": "Missing number in payload"
}Chats
Deleta chat
Deleta um chat e/ou suas mensagens do WhatsApp e/ou banco de dados. Você pode escolher deletar:
- Apenas do WhatsApp
- Apenas do banco de dados
- Apenas as mensagens do banco de dados
- Qualquer combinação das opções acima
POST
/
chat
/
delete
Deleta chat
curl --request POST \
--url https://api.wppfy.com/chat/delete \
--header 'Content-Type: application/json' \
--header 'token: <api-key>' \
--data '
{
"number": "5511999999999",
"deleteChatDB": true,
"deleteMessagesDB": true,
"deleteChatWhatsApp": true
}
'import requests
url = "https://api.wppfy.com/chat/delete"
payload = {
"number": "5511999999999",
"deleteChatDB": True,
"deleteMessagesDB": True,
"deleteChatWhatsApp": True
}
headers = {
"token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {token: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
number: '5511999999999',
deleteChatDB: true,
deleteMessagesDB: true,
deleteChatWhatsApp: true
})
};
fetch('https://api.wppfy.com/chat/delete', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.wppfy.com/chat/delete",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'number' => '5511999999999',
'deleteChatDB' => true,
'deleteMessagesDB' => true,
'deleteChatWhatsApp' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.wppfy.com/chat/delete"
payload := strings.NewReader("{\n \"number\": \"5511999999999\",\n \"deleteChatDB\": true,\n \"deleteMessagesDB\": true,\n \"deleteChatWhatsApp\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.wppfy.com/chat/delete")
.header("token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"number\": \"5511999999999\",\n \"deleteChatDB\": true,\n \"deleteMessagesDB\": true,\n \"deleteChatWhatsApp\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.wppfy.com/chat/delete")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"number\": \"5511999999999\",\n \"deleteChatDB\": true,\n \"deleteMessagesDB\": true,\n \"deleteChatWhatsApp\": true\n}"
response = http.request(request)
puts response.read_body{
"response": "Chat deletion process completed",
"actions": [
"Chat deleted from WhatsApp",
"Chat deleted from database",
"Messages associated with chat deleted from database: 42"
],
"errors": [
"Error deleting chat from WhatsApp: connection timeout"
]
}{
"error": "Missing number in payload"
}Autorizações
Corpo
application/json
Número do chat no formato internacional. Para grupos use o ID completo do grupo.
Exemplo:
"5511999999999"
Se true, deleta o chat do banco de dados
Exemplo:
true
Se true, deleta todas as mensagens do chat do banco de dados
Exemplo:
true
Se true, deleta o chat do WhatsApp
Exemplo:
true
Resposta
Operação realizada com sucesso
Mensagem de sucesso
Exemplo:
"Chat deletion process completed"
Lista de ações realizadas
Exemplo:
[
"Chat deleted from WhatsApp",
"Chat deleted from database",
"Messages associated with chat deleted from database: 42"
]
Lista de erros ocorridos, se houver
Exemplo:
[
"Error deleting chat from WhatsApp: connection timeout"
]
⌘I
