--- title: SuggestedRefundMethod - GraphQL Admin description: Generic attributes of a suggested refund method. api_version: 2025-10 api_name: admin type: interface api_type: graphql source_url: html: >- https://shopify.dev/docs/api/admin-graphql/2025-10/interfaces/SuggestedRefundMethod md: >- https://shopify.dev/docs/api/admin-graphql/2025-10/interfaces/SuggestedRefundMethod.md --- # Suggested​Refund​Method interface Requires `read_orders` access scope or `read_marketplace_orders` access scope. Generic attributes of a suggested refund method. ## Fields * amount [Money​Bag!](https://shopify.dev/docs/api/admin-graphql/2025-10/objects/MoneyBag) non-null The suggested amount to refund in shop and presentment currencies. * maximum​Refundable [Money​Bag!](https://shopify.dev/docs/api/admin-graphql/2025-10/objects/MoneyBag) non-null The maximum available amount to refund in shop and presentment currencies. *** ##### Variables ```json { "amount": "", "maximumRefundable": "" } ``` ##### Schema ```graphql interface SuggestedRefundMethod { amount: MoneyBag! maximumRefundable: MoneyBag! } ```