You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: src/guides/v2.4/graphql/mutations/update-customer.md
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,17 @@ The following table lists the top-level attributes of the `customer` object. See
65
65
66
66
{% include graphql/customer-output-24.md %}
67
67
68
+
## Errors
69
+
70
+
Error | Description
71
+
--- | ---
72
+
`"input" value should be specified` | The `input` argument is empty.
73
+
`"Email" is not a valid email address.` | The value provided in the `input`.`email` argument has an invalid format.
74
+
`Provide the current "password" to change "email".` | To change an email address, specify the correct customer password in the `password` argument.
75
+
`A customer with the same email address already exists in an associated website.` | You cannot set a new email to a current customer, because another user has the same email address.
76
+
`Invalid login or password.` | The value specified in the `password` argument is incorrect.
77
+
`The current customer isn't authorized.` | The current customer is not currently logged in, or the customer's token does not exist in the `oauth_token` table.
0 commit comments