Returns the organization name, invitee email, and invitation lifecycle metadata for the given invitation id. Unauthenticated so the invite landing page can render context before the user signs up. The inviter identity is intentionally not exposed; the invitee email is returned so the sign-up form can lock the field (anyone holding the invitation id can sign up against it anyway).
Documentation Index
Fetch the complete documentation index at: https://docs.avidoai.com/llms.txt
Use this file to discover all available pages before exploring further.
The id of the invitation to preview.
1 - 256"550e8400-e29b-41d4-a716-446655440000"
Invitation preview retrieved successfully
Public, unauthenticated invitation preview returned to the invite landing page so it can render the org name and status before the user signs up.
The display name of the organization the invitation is for.
"Acme Inc."
The email address the invitation was issued to. The sign-up form locks this field so the user cannot deviate from the invited address.
^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$"alice@acme.com"
Lifecycle status of the invitation. Only pending invitations can be accepted; the UI should surface a terminal-state message for any other value.
pending, accepted, rejected, canceled "pending"
ISO-8601 timestamp at which the invitation expires. UI may surface an expired state if this is in the past.
^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z|([+-](?:[01]\d|2[0-3]):[0-5]\d)))$"2025-01-01T00:00:00.000Z"