Set up webhook integration
Adapty webhook integration consists of the following steps:

- You set up your endpoint:
- Ensure your server can process Adapty requests with the Content-Type header set to
application/json
. - Configure your server to receive Adapty's verification request and respond with any
2xx
status and a JSON body. - Handle subscription events once the connection is verified.
- Ensure your server can process Adapty requests with the Content-Type header set to
- You configure and enable the webhook integration in the Adapty Dashboard. You can also map Adapty events to custom event names. We recommend testing in the Sandbox environment before switching to production.
- Adapty sends a verification request to your server.
- Your server responds with a
2XX
status and a JSON body. - Once Adapty receives a valid response, it starts sending subscription events.
Set up your server to process Adapty requests
Adapty will send to your webhook endpoint 2 types of requests:
- Verification request: the initial request to verify the connection is set up correctly. This request will not contain any event and will be sent the moment you click the Save button in the Webhook integration of the Adapty Dashboard. To confirm your endpoint successfully received the verification request, your endpoint should answer with the verification response.
- Subscription event: A standard request Adapty server sends every time an event is created in it. Your server does not need to reply with any specific response. The only thing the Adapty server needs is to receive a standard 200-code HTTP response if it successfully receives the message.
Verification request
After you enable webhook integration in the Adapty Dashboard, Adapty will send a POST verification request containing an empty JSON object {}
as a body.
Set up your endpoint to have the Content-Type header as application/json
, i.e. your server's endpoint should expect the incoming webhook request to have its payload formatted as JSON.
Your server must reply with a 2xx status code and send any valid JSON response, for example:
{}
Once Adapty receives the verification response in the correct format and with a 2xx status code, your Adapty webhook integration is fully configured.
Subscription events
Subscription events are sent with the Content-Type header set to application/json
and contain event data in JSON format. For possible event types and request structures, see Webhook event types and fields.
Configure webhook integration in the Adapty Dashboard
Within Adapty, you can configure separate flows for production events and test events received from the Apple or Stripe sandbox environment or Google test account.
For production events, use the Production endpoint URL field specifying the URL to which the callbacks will be sent. Additionally, configure the Authorization header value for production endpoint field - the header for your server to authenticate Adapty events. Note that we'll use the value specified in the Authorization header value for production endpoint field as the Authorization
header exactly as provided, without any changes or additions.
For test events, employ the Sandbox endpoint URL and Authorization header value for sandbox endpoint fields accordingly.
To set up the webhook integration:
- Open Integrations -> Webhook in your Adapty Dashboard.

-
Turn on the toggle to initiate the integration.
-
Fill out the integration fields:
Field Description Production endpoint URL The URL Adapty uses to send HTTP POST requests for events in production. Authorization header value for production endpoint The header that your server will use to authenticate requests from Adapty in production. Note that we'll use the value specified in this field as the
Authorization
header exactly as provided, without any changes or additions.Although not mandatory, it's strongly recommended for enhanced security.
Additionally, for your testing needs in the sandbox environment, two other fields are available:
Testing field Description Sandbox endpoint URL The URL Adapty uses to send HTTP POST requests for events in the sandbox environment. Authorization header value for sandbox endpoint The header that your server will use to authenticate requests from Adapty during testing in the sandbox environment. Note that we'll use the value specified in this field as the
Authorization
header exactly as provided, without any changes or additions.Although not mandatory, it's strongly recommended for enhanced security.
-
(optional) Pick the events you want to receive and map their names. Check out our Event flows to see which events are triggered in different situations.
If your event IDs differ from those used in Adapty, keep the IDs in your system as is and replace the default Adapty event IDs with yours in the Events names section of the Integrations -> Webhooks page.
The event ID can be any string; simply make sure the event ID in your webhook processing server coincides with the one you entered in the Adapty Dashboard. You cannot leave the event ID empty for enabled events.

-
Additional fields and options are not obligatory; use them as needed:
Setting Description Send Trial Price When enabled, Adapty will include the subscription price in the price_local
andprice_usd
fields for the Trial Started event.Exclude Historical Events Opt to exclude events that occurred before the user installed the app with Adapty SDK. This prevents duplication of events and ensures accurate reporting. For instance, if a user activated a monthly subscription on January 10th and updated the app with Adapty SDK on March 6th, Adapty will omit events before March 6th and retain subsequent events. Send user attributes Enable this option to send user-specific attributes, such as language preferences. These attributes will appear in the user_attributes
field. See Event fields for more information.Send attribution Turn on this option to include attribution information (e.g., AppsFlyer data) in the attributions
field. Refer to the Attribution data section for details.Send Play Store purchase token Turn on this option to receive the Play Store token required for purchase revalidation, if needed. Enabling it will add the play_store_purchase_token
parameter to the event. For details on its content, refer to the Play Store purchase token section. -
Remember to click the Save button to confirm the changes.
The moment you click the Save button, Adapty will send a verification request and will wait for your server verification response.
Choose events to send and map event names
Choose the events you want to receive in your server by enabling the toggle next to it. If your event names differ from those used in Adapty and you need to keep your names as is, you can set up the mapping by replacing the default Adapty event names with your own in the Events names section of the Integrations -> Webhooks page.

The event name can be any string. You cannot leave the fields empty for enabled events. If you accidentally removed Adapty event name, you can always copy the name from the Events to send to third-party integrations topic.
Handle webhook events
Webhooks are typically delivered within 5 to 60 seconds after the event occurs. Cancellation events, however, may take up to 2 hours to be delivered after a user cancels their subscription. If your server's response status code is outside the 200-404 range, Adapty will retry sending the event up to 9 times over 24 hours with exponential backoff. We suggest you set up your webhook to do only basic validation of the event body from Adapty before responding. If your server can't process the event and you don't want Adapty to retry, use a status code within the 200-404 range. Also, handle any time-consuming tasks asynchronously and respond to Adapty quickly. If Adapty doesn't receive a response within 10 seconds, it will consider the attempt a failure and will retry.