--- title: ReturnFee - Customer API description: A fee associated with the processing of a return. api_version: 2025-10 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. *** ## Types implemented in * [Return​Restocking​Fee](https://shopify.dev/docs/api/customer/latest/objects/ReturnRestockingFee) OBJECT The restocking fee incurred during the return process. * 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. * [Return​Shipping​Fee](https://shopify.dev/docs/api/customer/latest/objects/ReturnShippingFee) OBJECT The shipping fee incurred during the return process. * 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! } ```