Skip to content

Latest commit

 

History

History
76 lines (59 loc) · 2.5 KB

enable-disable.md

File metadata and controls

76 lines (59 loc) · 2.5 KB
title description topics contentType useCase v2
Enable/Disable Hooks
Learn how to enable and disable Hooks using the Dashboard and Management API.
hooks
dashboard
mgmt-api
how-to
extensibility-hooks
true

Enable/Disable Hooks

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') %>

Enable/Disable Hooks using the Dashboard

  1. Navigate to the Hooks page in the Auth0 Dashboard, and locate the extensibility point for which you want to enable or disable a Hook.

  2. Click on the dropdown box located immediately under the extensibility point's name and description.

View Avalilable Hooks for an Extensibility Point

  1. 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.

Enable/Disable Hooks using the Management API

  1. Make a PATCH call to the Update a Hook endpoint. Be sure to replace HOOK_ID and MGMT_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). | :::