The Magento 2 CE REST API offers an endpoint to request a reset password email for a given email.
The endpoint is available here: PUT /V1/customers/password
As documented here, this endpoint expects as the input the following required properties:
- email: string
- template: string
I would like to know what this template property refers to and how can I know which templates are available to be specified in this request parameter.
Thank you in advance.