Skip to content

Latest commit

 

History

History
90 lines (70 loc) · 3.88 KB

create.md

File metadata and controls

90 lines (70 loc) · 3.88 KB
title description topics contentType useCase v2
Create Hooks
Learn how to create Hooks using the Dashboard and Management API. Hooks may also be imported and exported using the Auth0 Deploy Command-Line Interface (CLI) tool.
hooks
dashboard
mgmt-api
how-to
extensibility-hooks
true

Create Hooks

You can create multiple Hooks for any given extensibility point using the Dashboard or Management API.

Hooks may also be imported and exported using the Deploy Command-Line Interface (CLI) Extension.

<%= include('./_includes/_hook_enabled_limit') %>

Create Hooks using the Dashboard

<%= include('./_includes/_default_hook_enable_behavior') %>

  1. Navigate to the Hooks page in the Auth0 Dashboard, and click Create a Hook.

  2. Enter a descriptive name for your Hook, select the extensibility point for which the Hook should execute, and click Create.

  3. Locate the section for the extensibility point you selected, and click the pencil icon next to the hook you created.

  4. Update the Hook using the Hook Editor, and click the disk icon to save.

Create Hooks using the Management API

<%= include('./_includes/_default_hook_enable_behavior') %>

  1. Make a POST call to the Create a Hook endpoint. Be sure to replace MGMT_API_ACCESS_TOKEN, HOOK_NAME, HOOK_SCRIPT, and EXTENSIBILITY_POINT_NAME placeholder values with your Management API Access Token, Hook name, Hook script, and extensibility point name, respectively.
{
	"method": "POST",
	"url": "https://${account.namespace}/api/v2/hooks",
  "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" : "{ \"name\": \"HOOK_NAME\", \"script\": \"HOOK_SCRIPT\", \"triggerId\": \"EXTENSIBILITY_POINT_NAME\" }"
	}
}
Value Description
MGMT_API_ACCESS_TOKEN Access Token for the Management API with the scope create:hooks.
HOOK_NAME Name of the hook you would like to create.
HOOK_SCRIPT Script that contains the code for the hook. Should match what you would enter if you were creating a new hook using the Dashboard.
EXTENSIBILITY_POINT_NAME Name of the extensibility point for which the hook should execute. Options include: credentials-exchange, pre-user-registration, post-user-registration, post-change-password. To learn more about extensibility points, see Extensibiity Points.

<%= include('./_includes/_handle_rate_limits') %>

::: note Optionally, you can add secrets (such as Twilio Keys or database connection strings) to Hooks. To learn more, see Hook Secrets. :::

Explore starter code and sample Hook scripts

To explore starter code and sample Hook scripts, see the documentation for your chosen extensibility point: