App Subscription ('installed', 'uninstalled')

App installed subscribe example:

curl --location --request POST '/platform/v1/webhook/subscribe' \
--header 'Authorization: "Bearer API_TOKEN"'\
--header 'Content-Type: application/json' \
--data-raw '{
"event": "app_subscription/installed",
"target_url": "URL"
}'

App installed response example:

{
  "entity_name": "app_subscription",
  "event_type": "installed",
  "data": {
    "business_id": "BUSINESS_ID",
    "app_id": ID
  }
}