--- title: AppCharge - Partner API description: A [charge](/docs/admin-api/rest/reference/billing/applicationcharge) created through an app. api_version: 2026-04 api_name: partner type: interface api_type: graphql source_url: html: https://shopify.dev/docs/api/partner/latest/interfaces/appcharge md: https://shopify.dev/docs/api/partner/latest/interfaces/appcharge.md --- # App​Charge interface A [charge](https://shopify.dev/docs/admin-api/rest/reference/billing/applicationcharge) created through an app. ## Fields * amount [Money!](https://shopify.dev/docs/api/partner/latest/objects/Money) non-null The amount of the app charge. * id [ID!](https://shopify.dev/docs/api/partner/latest/scalars/ID) non-null A globally unique identifier. * name [String!](https://shopify.dev/docs/api/partner/latest/scalars/String) non-null The name of the app charge. * test [Boolean!](https://shopify.dev/docs/api/partner/latest/scalars/Boolean) non-null Whether the app purchase was a test transaction. *** ##### Variables ```json { "amount": "", "id": "", "name": "", "test": "" } ``` ##### Schema ```graphql interface AppCharge { amount: Money! id: ID! name: String! test: Boolean! } ```