---
title: ReturnFee - Customer API
description: A fee associated with the processing of a return.
api_version: 2025-07
api_name: customer
type: interface
api_type: graphql
source_url:
  html: 'https://shopify.dev/docs/api/customer/2025-07/interfaces/ReturnFee'
  md: 'https://shopify.dev/docs/api/customer/2025-07/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/2025-07/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/2025-07/scalars/String)

  non-null

  Human-readable name of the fee.

***

## Types implemented in

* [Return​Restocking​Fee](https://shopify.dev/docs/api/customer/2025-07/objects/ReturnRestockingFee)

  OBJECT

  The restocking fee incurred during the return process.

  * amount​Set

    [Money​Bag!](https://shopify.dev/docs/api/customer/2025-07/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/2025-07/scalars/String)

    non-null

    Human-readable name of the fee.

* [Return​Shipping​Fee](https://shopify.dev/docs/api/customer/2025-07/objects/ReturnShippingFee)

  OBJECT

  The shipping fee incurred during the return process.

  * amount​Set

    [Money​Bag!](https://shopify.dev/docs/api/customer/2025-07/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/2025-07/scalars/String)

    non-null

    Human-readable name of the fee.

***

##### Variables

```json
{
	"amountSet": "",
	"title": ""
}
```

##### Schema

```graphql
interface ReturnFee {
  amountSet: MoneyBag!
  title: String!
}
```
