Skip to content

Resend Invite

POST
/v1/admin/users/{user_id}/resend-invite
curl --request POST \
--url http://localhost:8080/v1/admin/users/example/resend-invite

Re-issue an invite link for a user that hasn’t accepted yet.

Only valid while user.status == 'invited'. Marks any previously-issued unconsumed invite for the same (tenant, email) as consumed so two redemption links can never both be live, then issues a fresh token. The new link is shown once in the response.

user_id
required
User Id
string

Successful Response

Media type application/json
Response Resend Invite V1 Admin Users User Id Resend 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": {}
}
]
}