Files
medusa-store/docs/api/store/components/schemas/StorePostCustomersReq.yaml
2022-12-22 17:09:49 +02:00

25 lines
487 B
YAML

type: object
required:
- first_name
- last_name
- email
- password
properties:
first_name:
description: The Customer's first name.
type: string
last_name:
description: The Customer's last name.
type: string
email:
description: The email of the customer.
type: string
format: email
password:
description: The Customer's password.
type: string
format: password
phone:
description: The Customer's phone number.
type: string