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

27 lines
572 B
YAML

type: object
required:
- token
- user
properties:
token:
description: The invite token provided by the admin.
type: string
user:
description: The User to create.
type: object
required:
- first_name
- last_name
- password
properties:
first_name:
type: string
description: the first name of the User
last_name:
type: string
description: the last name of the User
password:
description: The desired password for the User
type: string
format: password