Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface CreateOrganizationInvitationRequestContent

    {
    * inviter: {
    * name: "name"
    * },
    * invitee: {
    * email: "email"
    * },
    * client_id: "client_id"
    * }
    interface CreateOrganizationInvitationRequestContent {
        inviter: OrganizationInvitationInviter;
        invitee: OrganizationInvitationInvitee;
        client_id: string;
        connection_id?: string;
        app_metadata?: AppMetadata;
        user_metadata?: UserMetadata;
        ttl_sec?: number;
        roles?: string[];
        send_invitation_email?: boolean;
    }
    Index

    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.

    app_metadata?: AppMetadata
    user_metadata?: UserMetadata
    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).

    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