CustomerAlreadyExistsError
Error indicating that a customer record already exists in the core insurance system with the provided email address.
Resolution options:
- Query the
customersfield to get the identifier of the existing customer and use it to create an offer - Use a different email address to create a new customer
type CustomerAlreadyExistsError implements ErrorInterface {
message: String!
}
Fields
CustomerAlreadyExistsError.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