Accepts an invitation using a ticket id from an invitation email.
Used by the email-link accept flow. Validates that the logged-in user's email matches the invitation, then activates membership in the ticket's tenant. Idempotent — succeeds silently if the user is already a member.
Authorization
Bearer JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.
In: header
Path Parameters
The invitation ticket id from the email URL.
Response Body
curl -X POST "https://api.fruxon.com/v1/invitations/string"{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}Revokes a pending invitation
Marks the invitation withdrawn so its email link can no longer create a membership. Repeating the operation for an absent or withdrawn id still returns 204. Requires workspace member-management permission.
Reissues a pending invitation with a fresh ticket and expiry.
Invalidates the previous email link, creates a replacement invitation with a new unguessable id and five-day expiry, then sends a fresh email. Requires workspace member-management permission.