Files
medusa-store/docs/api/store/paths/auth_{email}.yaml
2022-08-05 14:06:12 +02:00

25 lines
575 B
YAML

get:
operationId: GetAuthEmail
summary: Check if email has account
description: Checks if a Customer with the given email has signed up.
parameters:
- in: path
name: email
schema:
type: string
format: email
required: true
description: The email to check if exists.
tags:
- Auth
responses:
'200':
description: OK
content:
application/json:
schema:
properties:
exists:
type: boolean
description: Whether email exists or not.