title | description | topics | contentType | useCase | v2 | |||
---|---|---|---|---|---|---|---|---|
Enable/Disable Hooks |
Learn how to enable and disable Hooks using the Dashboard and Management API. |
|
how-to |
extensibility-hooks |
true |
You can enable or disable Hooks that have been configured for any given extensibility point using the Dashboard or Management API.
<%= include('./_includes/_hook_enabled_limit') %>
<%= include('./_includes/_default_hook_enable_behavior') %>
-
Navigate to the Hooks page in the Auth0 Dashboard, and locate the extensibility point for which you want to enable or disable a Hook.
-
Click on the dropdown box located immediately under the extensibility point's name and description.
- Select the Hook you want to enable, and confirm. If you want to disable all Hooks, select
None
.
A green dot will appear next to the name of any enabled Hooks.
- Make a
PATCH
call to the Update a Hook endpoint. Be sure to replaceHOOK_ID
andMGMT_API_ACCESS_TOKEN
placeholder values with your hook ID and Management API Access Token, respectively.
{
"method": "PATCH",
"url": "https://${account.namespace}/api/v2/hooks/HOOK_ID",
"headers": [
{ "name": "Content-Type", "value": "application/json" },
{ "name": "Authorization", "value": "Bearer MGMT_API_ACCESS_TOKEN" },
{ "name": "Cache-Control", "value": "no-cache" }
],
"postData": {
"mimeType": "application/json",
"text" : "{ \"enabled\": \"true\" }"
}
}
Value | Description |
---|---|
HOOK_ID |
ID of the hook to be updated. |
MGMT_API_ACCESS_TOKEN |
Access Tokens for the Management API with the scope update:hooks . |
::: note
The enabled
property represents whether the rule is enabled (true
) or disabled (false
). |
:::