--- title: HasStoreCreditAccounts - Customer API description: >- Represents information about the store credit accounts associated to the specified owner. api_version: 2026-04 api_name: customer type: interface api_type: graphql source_url: html: >- https://shopify.dev/docs/api/customer/latest/interfaces/HasStoreCreditAccounts md: >- https://shopify.dev/docs/api/customer/latest/interfaces/HasStoreCreditAccounts.md --- # Has​Store​Credit​Accounts interface Represents information about the store credit accounts associated to the specified owner. ## Fields * store​Credit​Accounts [Store​Credit​Account​Connection!](https://shopify.dev/docs/api/customer/latest/connections/StoreCreditAccountConnection) non-null[Pre-auth accessible](https://shopify.dev/docs/apps/build/customer-accounts/order-status-page#customer-account-api) A list of the owner resource's store credit accounts. Store credit accounts are not shown for shops with store credit disabled at checkout. * first [Int](https://shopify.dev/docs/api/customer/latest/scalars/Int) ### Arguments The first `n` elements from the [paginated list](https://shopify.dev/api/usage/pagination-graphql). * after [String](https://shopify.dev/docs/api/customer/latest/scalars/String) The elements that come after the specified [cursor](https://shopify.dev/api/usage/pagination-graphql). * last [Int](https://shopify.dev/docs/api/customer/latest/scalars/Int) The last `n` elements from the [paginated list](https://shopify.dev/api/usage/pagination-graphql). * before [String](https://shopify.dev/docs/api/customer/latest/scalars/String) The elements that come before the specified [cursor](https://shopify.dev/api/usage/pagination-graphql). * query [String](https://shopify.dev/docs/api/customer/latest/scalars/String) A filter made up of terms, connectives, modifiers, and comparators. You can apply one or more filters to a query. Learn more about [Shopify API search syntax](https://shopify.dev/api/usage/search-syntax). * currency\_code string * id id Filter by `id` range. Example: * `id:1234` * `id:>=1234` * `id:<=1234` *** *** ##### Variables ```json { "storeCreditAccounts": { "first": "", "after": "", "last": "", "before": "", "query": "" } } ``` ##### Schema ```graphql interface HasStoreCreditAccounts { storeCreditAccounts: StoreCreditAccountConnection! } ```