Class ByProjectKeyInStoreKeyByStoreKeyMePasswordResetPostString

All Implemented Interfaces:
ErrorableTrait<ByProjectKeyInStoreKeyByStoreKeyMePasswordResetPostString>, ClientRequestCommand<Customer>, CreateHttpRequestCommand, HttpRequestCommand<Customer>, RequestCommand<Customer>

This is the last step in the password reset process of the authenticated Customer.

Resetting a password produces the Customer CustomerPasswordUpdated Message with reset=true.

A ResourceNotFound error is returned in the following scenarios:

  • If no Customer exists with the id specified in the customer:{id} scope.
  • If the Customer exists but is associated with a different Store than what is specified in the manage_my_profile:{projectKey}:{storeKey} scope.


   CompletableFuture<ApiHttpResponse<com.commercetools.api.models.customer.Customer>> result = apiRoot
            .withProjectKey("{projectKey}")
            .inStoreKeyWithStoreKeyValue("{storeKey}")
            .me()
            .password()
            .reset()
            .post("")
            .execute()