Hooks Overview
Hooks allow you to execute your own side effects during specific events of the Document lifecycle. They allow you to do things like mutate data, perform business logic, integrate with third-parties, or anything else, all during precise moments within your application.
With Hooks, you can transform Payload from a traditional CMS into a fully-fledged application framework. There are many use cases for Hooks, including:
- Modify data before it is read or updated
- Encrypt and decrypt sensitive data
- Integrate with a third-party CRM like HubSpot or Salesforce
- Send a copy of uploaded files to Amazon S3 or similar
- Process orders through a payment provider like Stripe
- Send emails when contact forms are submitted
- Track data ownership or changes over time
There are four main types of Hooks in Payload:
Root Hooks
Root Hooks are not associated with any specific Collection, Global, or Field. They are useful for globally-oriented side effects, such as when an error occurs at the application level.
To add Root Hooks, use the hooks property in your Payload Config:
The following options are available:
Option | Description |
|---|---|
| Runs after an error occurs in the Payload application. |
afterError
The afterError Hook is triggered when an error occurs in the Payload application. This can be useful for logging errors to a third-party service, sending an email to the development team, logging the error to Sentry or DataDog, etc. The output can be used to transform the result object / status code.
The following arguments are provided to the afterError Hook:
Argument | Description |
|---|---|
| The error that occurred. |
| Custom context passed between Hooks. More details. |
| The GraphQL result object, available if the hook is executed within a GraphQL context. |
| The |
| The Collection in which this Hook is running against. This will be |
| The formatted error result object, available if the hook is executed from a REST context. |
Awaited vs. non-blocking hooks
Hooks can either block the request until they finish or run without blocking it. What matters is whether your hook returns a Promise.
Awaited (blocking): If your hook returns a Promise (for example, if it’s declared async), Payload will wait for it to resolve before continuing that lifecycle step. Use this when your hook needs to modify data or influence the response. Hooks that return Promises run in series at the same lifecycle stage.
Non-blocking (sometimes called “fire-and-forget”): If your hook does not return a Promise (returns nothing), Payload will not wait for it to finish. This can be useful for side-effects that don’t affect the outcome of the operation, but keep in mind that any work started this way might continue after the request has already completed.
Declaring a function with async does not make it “synchronous.” The async keyword simply makes the function return a Promise automatically — which is why Payload then awaits it.
Awaited
Non-blocking
Server-only Execution
Hooks are only triggered on the server and are automatically excluded from the client-side bundle. This means that you can safely use sensitive business logic in your Hooks without worrying about exposing it to the client.
Performance
Hooks are a powerful way to customize the behavior of your APIs, but some hooks are run very often and can add significant overhead to your requests if not optimized.
When building hooks, combine together as many of these strategies as possible to ensure your hooks are as performant as they can be.
Writing efficient hooks
Consider when hooks are run. One common pitfall is putting expensive logic in hooks that run very often.
For example, the read operation runs on every read request, so avoid putting expensive logic in a beforeRead or afterRead hook.
Instead, you might want to use a beforeChange or afterChange hook, which only runs when a document is created or updated.
Using Hook Context
Use Hook Context to avoid infinite loops or to prevent repeating expensive operations across multiple hooks in the same request.
To learn more, see the Hook Context documentation.
Offloading to the jobs queue
If your hooks perform any long-running tasks that don't directly affect the request lifecycle, consider offloading them to the jobs queue. This will free up the request to continue processing without waiting for the task to complete.
To learn more, see the Job Queue documentation.