Files
medusa-store/docs/api/admin/components/schemas/AdminCreateUserRequest.yaml
github-actions[bot] 658339767b chore(docs): Generated API Reference (#4706)
Co-authored-by: olivermrbl <olivermrbl@users.noreply.github.com>
Co-authored-by: Shahed Nasser <shahednasser@gmail.com>
2023-08-07 16:54:48 +03:00

29 lines
572 B
YAML

type: object
required:
- email
- password
properties:
email:
description: The User's email.
type: string
format: email
first_name:
description: The first name of the User.
type: string
last_name:
description: The last name of the User.
type: string
role:
description: >-
The role assigned to the user. These roles don't provide any different
privileges.
type: string
enum:
- admin
- member
- developer
password:
description: The User's password.
type: string
format: password