Class ByProjectKeyInStoreKeyByStoreKeyCustomersEmailConfirmPost

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

Use this method to verify a Store-specific Customer's email during their email verification process.

Verifying the email of the Customer produces the CustomerEmailVerified Message.

If the Customer exists in the Project but the stores field references a different Store, this method returns a ResourceNotFound error.



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