ניתוק

אם המשתמש ינתק את הקישור של הפעולה smart home מ-Google Assistant, המערכת תשלוח לשירות ההשלמה כוונה (intent) מסוג action.devices.DISCONNECT. הכוונה הזו מציינת ש-Assistant לא ישלח יותר כוונות עבור המשתמש הזה, ושירות הענן שלכם אמור להפסיק לבצע קריאות ל-API של Google Home Graph (Request Sync ו-Report State) עבור המכשירים שלו.

בקשה
{
    "requestId": "ff36a3cc-ec34-11e6-b1a0-64510650abcf",
    "inputs": [{
      "intent": "action.devices.DISCONNECT",
    }]
}
JSON
{}
Node.js
const {smarthome} = require('actions-on-google');
const app = smarthome();
// ...
app.onDisconnect((body, headers) => {
  // TODO Disconnect user account from Google Assistant
  // You can return an empty body
  return {};
});
Java
@Override
public void onDisconnect(
    @NotNull DisconnectRequest disconnectRequest, @Nullable Map<?, ?> map) {
  // TODO Disconnect user account from Google Assistant
  // This function does not return anything
}

למידע נוסף, עיינו במסמכי העזרה של הכוונה DISCONNECT.