Skip to main content

CustomerNotFoundError

Error indicating that the requested customer was not found in the system.

Common causes:

  • Customer does not exist in the system
  • Invalid customer identifier provided
  • On test environment, the customers reset every Thursday and customers created before that date are not available anymore.
type CustomerNotFoundError implements ErrorInterface {
message: String!
}

Fields​

CustomerNotFoundError.message ● String! non-null scalar​

Interfaces​

ErrorInterface interface​

Error interface for all errors that can be returned by the API. Always include the ErrorInterface in your request so any error returned by the API will be returned.

Implemented By​

CreateOfferResult union ● CustomerResult union ● UpdateCustomerResult union