--- title: StoreCreditAccountTransaction - GraphQL Admin description: Interface for a store credit account transaction. api_version: 2026-04 api_name: admin type: interface api_type: graphql source_url: html: >- https://shopify.dev/docs/api/admin-graphql/latest/interfaces/StoreCreditAccountTransaction md: >- https://shopify.dev/docs/api/admin-graphql/latest/interfaces/StoreCreditAccountTransaction.md metadata: domain: admin --- # Store​Credit​Account​Transaction interface Requires `read_store_credit_account_transactions` access scope. Interface for a store credit account transaction. ## Fields * account [Store​Credit​Account!](https://shopify.dev/docs/api/admin-graphql/latest/objects/StoreCreditAccount) non-null The store credit account that the transaction belongs to. * amount [Money​V2!](https://shopify.dev/docs/api/admin-graphql/latest/objects/MoneyV2) non-null The amount of the transaction. * balance​After​Transaction [Money​V2!](https://shopify.dev/docs/api/admin-graphql/latest/objects/MoneyV2) non-null The balance of the account after the transaction. * created​At [Date​Time!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/DateTime) non-null The date and time when the transaction was created. * event [Store​Credit​System​Event!](https://shopify.dev/docs/api/admin-graphql/latest/enums/StoreCreditSystemEvent) non-null The event that caused the store credit account transaction. * origin [Store​Credit​Account​Transaction​Origin](https://shopify.dev/docs/api/admin-graphql/latest/unions/StoreCreditAccountTransactionOrigin) The origin of the store credit account transaction. *** ##### Variables ```json { "account": "", "amount": "", "balanceAfterTransaction": "", "createdAt": "", "event": "", "origin": "" } ``` ##### Schema ```graphql interface StoreCreditAccountTransaction { account: StoreCreditAccount! amount: MoneyV2! balanceAfterTransaction: MoneyV2! createdAt: DateTime! event: StoreCreditSystemEvent! origin: StoreCreditAccountTransactionOrigin } ```