Welcome to the Google Home Developer Center, the new destination for learning how to develop smart home actions.
Send feedback
Disconnect
Stay organized with collections
Save and categorize content based on your preferences.
If the user unlinks your smart home Action from
Google Assistant , your fulfillment receives an
action.devices.DISCONNECT
intent. This intent indicates that Assistant will not send
any more intents for this user, and your cloud service should stop calling
Google Home Graph APIs (Request Sync and
Report State ) for their devices.
{
"requestId": "ff36a3cc-ec34-11e6-b1a0-64510650abcf",
"inputs": [{
"intent": "action.devices.DISCONNECT",
}]
}
{}
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 {};
});
@Override
public void onDisconnect (
@NotNull DisconnectRequest disconnectRequest , @Nullable Map <? , ? > map ) {
// TODO Disconnect user account from Google Assistant
// This function does not return anything
}
For more information, see the DISCONNECT
intent reference documentation.
Send feedback
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2022-10-31 UTC.
Need to tell us more?
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Incorrect information","incorrectInformation","thumb-down"],["Not enough information/samples","notEnoughInformationSamples","thumb-down"],["Too complicated","tooComplicated","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2022-10-31 UTC."],[],[]]