30 lines
716 B
YAML
30 lines
716 B
YAML
type: object
|
|
description: The details of the invite to be accepted.
|
|
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
|