Skip to content

Accept Invite

POST
/v1/auth/accept-invite
curl --request POST \
--url http://localhost:8080/v1/auth/accept-invite \
--header 'Content-Type: application/json' \
--data '{ "token": "example", "new_password": "example" }'
Media type application/json
AcceptInvitePayload
object
token
required
Token
string
>= 1 characters
new_password
required
New Password
string
Example generated
{
"token": "example",
"new_password": "example"
}

Successful Response

Media type application/json
Response Accept Invite V1 Auth Accept Invite Post
object
key
additional properties
any
Example generated
{}

Validation Error

Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}