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. |
|
how-to |
extensibility-hooks |
true |
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') %>
<%= include('./_includes/_default_hook_enable_behavior') %>
-
Navigate to the Hooks page in the Auth0 Dashboard, and click Create a Hook.
-
Enter a descriptive name for your Hook, select the extensibility point for which the Hook should execute, and click Create.
-
Locate the section for the extensibility point you selected, and click the pencil icon next to the hook you created.
-
Update the Hook using the Hook Editor, and click the disk icon to save.
<%= include('./_includes/_default_hook_enable_behavior') %>
- Make a
POST
call to the Create a Hook endpoint. Be sure to replaceMGMT_API_ACCESS_TOKEN
,HOOK_NAME
,HOOK_SCRIPT
, andEXTENSIBILITY_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. :::
To explore starter code and sample Hook scripts, see the documentation for your chosen extensibility point: