--- title: AppEvent - Partner API description: An event related to a Shopify app. api_version: 2026-01 api_name: partner type: interface api_type: graphql source_url: html: 'https://shopify.dev/docs/api/partner/latest/interfaces/AppEvent' md: 'https://shopify.dev/docs/api/partner/latest/interfaces/AppEvent.md' --- # App​Event interface An event related to a Shopify app. ## Fields * app [App!](https://shopify.dev/docs/api/partner/latest/objects/App) non-null A Shopify [app](https://shopify.dev/concepts/apps). * occurred​At [Date​Time!](https://shopify.dev/docs/api/partner/latest/scalars/DateTime) non-null The date and time when the event took place. * shop [Shop!](https://shopify.dev/docs/api/partner/latest/objects/Shop) non-null A Shopify shop. * type [App​Event​Types!](https://shopify.dev/docs/api/partner/latest/enums/AppEventTypes) non-null The type of app event. *** ##### Variables ```json { "app": "", "occurredAt": "", "shop": "", "type": "" } ``` ##### Schema ```graphql interface AppEvent { app: App! occurredAt: DateTime! shop: Shop! type: AppEventTypes! } ```