Co-authored-by: olivermrbl <olivermrbl@users.noreply.github.com> Co-authored-by: Shahed Nasser <shahednasser@gmail.com>
29 lines
661 B
YAML
29 lines
661 B
YAML
type: object
|
|
required:
|
|
- token
|
|
- user
|
|
properties:
|
|
token:
|
|
description: >-
|
|
The token of the invite to accept. This is a unique token generated when
|
|
the invite was created or resent.
|
|
type: string
|
|
user:
|
|
description: The details of 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 password for the User
|
|
type: string
|
|
format: password
|