---
title: DisplayableError - Customer API
description: Represents an error in the input of a mutation.
api_version: 2026-01
api_name: customer
type: interface
api_type: graphql
source_url:
  html: 'https://shopify.dev/docs/api/customer/latest/interfaces/DisplayableError'
  md: 'https://shopify.dev/docs/api/customer/latest/interfaces/DisplayableError.md'
---

# Displayable​Error

interface

Represents an error in the input of a mutation.

## Fields

* field

  [\[String!\]](https://shopify.dev/docs/api/customer/latest/scalars/String)

  The path to the input field that caused the error.

* message

  [String!](https://shopify.dev/docs/api/customer/latest/scalars/String)

  non-null

  The error message.

***

##### Variables

```json
{
	"field": "",
	"message": ""
}
```

##### Schema

```graphql
interface DisplayableError {
  field: [String!]
  message: String!
}
```
