24 lines
625 B
YAML
24 lines
625 B
YAML
post:
|
|
operationId: PostCustomersCustomerPasswordToken
|
|
summary: Creates a reset password token
|
|
description: >-
|
|
Creates a reset password token to be used in a subsequent /reset-password
|
|
request. The password token should be sent out of band e.g. via email and
|
|
will not be returned.
|
|
requestBody:
|
|
content:
|
|
application/json:
|
|
schema:
|
|
required:
|
|
- email
|
|
properties:
|
|
email:
|
|
description: The email of the customer.
|
|
type: string
|
|
format: email
|
|
tags:
|
|
- Customer
|
|
responses:
|
|
'204':
|
|
description: OK
|