--- title: ReturnFee - Customer API description: A fee associated with the processing of a return. api_version: 2026-04 api_name: customer type: interface api_type: graphql source_url: html: 'https://shopify.dev/docs/api/customer/latest/interfaces/ReturnFee' md: 'https://shopify.dev/docs/api/customer/latest/interfaces/ReturnFee.md' --- # Return​Fee interface A fee associated with the processing of a return. ## Fields * amount​Set [Money​Bag!](https://shopify.dev/docs/api/customer/latest/objects/MoneyBag) non-null[Pre-auth accessible](https://shopify.dev/docs/apps/build/customer-accounts/order-status-page#customer-account-api) The total monetary value of the fee in shop and presentment currencies. * title [String!](https://shopify.dev/docs/api/customer/latest/scalars/String) non-null Human-readable name of the fee. *** ##### Variables ```json { "amountSet": "", "title": "" } ``` ##### Schema ```graphql interface ReturnFee { amountSet: MoneyBag! title: String! } ```