Skip to content

SetDisappearingChat#

Test

השיטה מכוונת לשינוי הגדרות של הודעות נעלמות בצ'אטים. יש להשתמש בהגדרות הסטנדרטיות של האפליקציה: 0 (כבוי), 86400 (24 שעות), 604800 (7 ימים), 7776000 (90 ימים).

בַּקָשָׁה#

כדי להגדיר הגדרות, עליך לבצע בקשה בכתובת:

POST
{{apiUrl}}/waInstance{{idInstance}}/setDisappearingChat/{{apiTokenInstance}}
TEST

לפרמטרים של בקשת apiUrl, idInstance ו-apiTokenInstance, עיין ב לפני שמתחילים סָעִיף.

בקש פרמטרים#

פָּרָמֶטֶר סוּג הֶכְרֵחִי תֵאוּר
chatId string כֵּן Correspondent id
ephemeralExpiration integer כֵּן משך החיים של הודעות בצ'אטים, מקבל את הערכים בשניות: 0, 86400, 604800, 7776000

בקשת גוף לדוגמה{#request-example-body}#

{
    "chatId": "71234567890@c.us",
    "ephemeralExpiration": 0
}

תְגוּבָה#

Response parameters#

פָּרָמֶטֶר סוּג תֵאוּר
chatId string כֵּן
disappearingMessagesInChat boolean מצב צ'אט (נעלמת או רגיל), מקבל את הערכים: נכון, שקר
ephemeralExpiration integer משך החיים של הודעות בצ'אטים, מקבל את הערכים בשניות: 0, 86400, 604800, 7776000

גוף לדוגמא תגובה#

{
    "chatId": "712345678910@c.us",
    "disappearingMessagesInChat": false,
    "ephemeralExpiration": 0
}

SetDisappearingChat שגיאות#

לרשימה של שגיאות משותפות לכל השיטות, עיין ב שגיאות נפוצות

בקש דוגמאות#

import requests
import json

url = "{{apiUrl}}/waInstance{{idInstance}}/setDisappearingChat/{{apiTokenInstance}}
"
payload = json.dumps({
  "chatId": "712345678910@c.us",
  "ephemeralExpiration": 0
})
headers = {
  'Content-Type': 'application/json'
}

response = requests.request("POST", url, headers=headers, data=payload)

print(response.text)
curl --location '{{apiUrl}}/waInstance{{idInstance}}/setDisappearingChat/{{apiTokenInstance}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "chatId": "79851150769@c.us",
    "ephemeralExpiration": 0
}'
var restTemplate = new RestTemplate();
var requestUrl = new StringBuilder();
requestUrl
    .append({{apiUrl}})
    .append("/waInstance").append({{idInstance}})
    .append("/setDisappearingChat/")
    .append({{apiTokenInstance}});

var headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);

var jsonBody = "{\"chatId\": \"71234567890@c.us\",\"ephemeralExpiration\": 0}";

var requestEntity = new HttpEntity<>(jsonBody, headers);

var response = restTemplate.exchange(requestUrl.toString(), HttpMethod.POST, requestEntity, String.class);
System.out.println(response);
var requestUrl = new StringBuilder();
requestUrl
    .append({{apiUrl}})
    .append("/waInstance").append({{idInstance}})
    .append("/setDisappearingChat/")
    .append({{apiTokenInstance}});

var response = Unirest.post(requestUrl.toString())
    .header("Content-Type", "application/json")
    .body("{\"chatId\": \"71234567890@c.us\",\"ephemeralExpiration\": 0}")
    .asString();

System.out.println(response);
Sub SetDisappearingChat()
    Dim url As String
    Dim RequestBody As String
    Dim http As Object
    Dim response As String

    ' The apiUrl, idInstance and apiTokenInstance values are available in console, double brackets must be removed
    url = "{{apiUrl}}/waInstance{{idInstance}}/setDisappearingChat/{{apiTokenInstance}}"

    ' ChatId — ID of the chat in which you need to change the settings (@c.us for private chats, @g.us for group chats), ephemeralExpiration - Message lifetime in seconds, takes values: 0, 86400, 604800, 7776000
    RequestBody = "{""chatId"":""70123456789@c.us"", ""ephemeralExpiration"": ""0""}"

    Set http = CreateObject("MSXML2.XMLHTTP")

    With http
        .Open "POST", url, False
        .setRequestHeader "Content-Type", "application/json"
        .Send RequestBody
    End With

    response = http.responseText

    Debug.Print response

    ' Outputting the answer to the desired cell
    Range("A1").Value = response

    Set http = Nothing
End Sub