Logout#
השיטה מיועדת להתנתקות מופע.
בקשה#
כדי לנתק את המופע, עליך לבצע בקשה בכתובת:
עבור פרמטרי הבקשה 'apiUrl', 'idInstance' ו- 'apiTokenInstance', חזור אל לפני שתתחיל במקטע.
תגובה#
פרמטרים של תגובה#
פרמטר | סוג | תיאור |
---|---|---|
isLogout | boolean | תוצאת התנתקות חשבון WhatsApp |
תשובה לדוגמה#
{
"isLogout": true
}
שגיאות התנתקות#
לקבלת רשימה של שגיאות המשותפות לכל השיטות, עיין במאמר שגיאות נפוצות במקטע
דוגמה לגוף תגובה#
import requests
url = "{{apiUrl}}/waInstance{{idInstance}}/logout/{{apiTokenInstance}}"
payload = {}
headers= {}
response = requests.request("GET", url, headers=headers, data = payload)
print(response.text.encode('utf8'))
curl --location '{{apiUrl}}/waInstance{{idInstance}}/logout/{{apiTokenInstance}}'
var restTemplate = new RestTemplate();
var requestUrl = new StringBuilder();
requestUrl
.append({{apiUrl}})
.append("/waInstance").append({{idInstance}})
.append("/logout/")
.append({{apiTokenInstance}});
var response = restTemplate.exchange(requestUrl.toString(), HttpMethod.GET, null, String.class);
System.out.println(response);
var requestUrl = new StringBuilder();
requestUrl
.append({{apiUrl}})
.append("/waInstance").append({{idInstance}})
.append("/logout/")
.append({{apiTokenInstance}});
var response = Unirest.get(requestUrl.toString())
.header("Content-Type", "application/json")
.asString();
System.out.println(response);
Sub Logout()
Dim url 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}}/Logout/{{apiTokenInstance}}"
Set http = CreateObject("MSXML2.XMLHTTP")
http.Open "GET", url, False
http.Send
response = http.responseText
Debug.Print response
' Outputting the answer to the desired cell
' Range("A1").Value = response
Set http = Nothing
End Sub