Interface GraphQLExpiredCustomerPasswordTokenError

Returned when the provided password token of the Customer has expired.

The error is returned as a failed response to:

- [Get Customer by password token](ctp:api:endpoint:/{projectKey}/customers/password-token={passwordToken}:GET) and [Get Customer in Store by password token](ctp:api:endpoint:/{projectKey}/in-store/key={storeKey}/customers/password-token={passwordToken}:GET) requests
- [Reset password of Customer](ctp:api:endpoint:/{projectKey}/customers/password/reset:POST) and [Reset password of Customer in Store](ctp:api:endpoint:/{projectKey}/in-store/key={storeKey}/customers/password/reset:POST) requests
interface GraphQLExpiredCustomerPasswordTokenError {
    code: "ExpiredCustomerPasswordToken";
    [key: string]: any;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: any

Properties

Properties

code: "ExpiredCustomerPasswordToken"

One of the error codes that is listed on the Errors page.