Search...
Generate a test token to explore our APIs
App Installed Webhook
When you sign up for the App Installed webhook, you will receive this notification when your app is installed on a site
Was this helpful?
The data payload will include the following as an encoded JWT:
Event Body
json
1{2 "data": {3 "eventType": "<event-type>",4 "instanceId": "<app-instance-id>",5 "data": "<stringified-JSON>"6 }7}
The parsed data
will include:
Sample Data
json
1{2 "data" : "{\"appId\":\"5bc2062d-010b-448c-a62a-d6bb269c5a4c\", \"originInstanceId\":\"07864c16-3a6f-4dd2-9973-028705762b2c\"}",3 "instanceId" : "3bbcabc7-ebb7-4fc8-8829-13ea0e142123",4 "eventType" : "AppInstalled"5}