Interface PostInvitationsRequest

Hierarchy

  • PostInvitationsRequest

Properties

client_id: string

Auth0 client ID. Used to resolve the application's login initiation endpoint.

connection_id?: string

The id of the connection to force invitee to authenticate with.

roles?: string[]

List of roles IDs to associated with the user.

send_invitation_email?: boolean

Whether the user will receive an invitation email (true) or no email (false), true by default

ttl_sec?: number

Number of seconds for which the invitation is valid before expiration. If unspecified or set to 0, this value defaults to 604800 seconds (7 days). Max value: 2592000 seconds (30 days).

user_metadata?: {
    [key: string]: any;
}

Data related to the user that does not affect the application's core functionality.

Type declaration

  • [key: string]: any