Pinecone TypeScript SDK - v8.2.0
    Preparing search index...

    Interface Invite

    An invitation to join the organization.

    Invite

    interface Invite {
        createdAt: Date;
        email: string;
        expiresAt?: Date | null;
        id: string;
        processedAt?: Date | null;
        status: string;
    }
    Index
    createdAt: Date

    The date and time the invite was created.

    Invite

    email: string

    The email address the invite was sent to.

    Invite

    expiresAt?: Date | null

    When the invite expires if not accepted. Default TTL is 7 days. Resending the invite extends this to now plus 7 days. null if the invite does not expire.

    Invite

    id: string

    The unique ID of the invite.

    Invite

    processedAt?: Date | null

    The date and time the invite was accepted. null or omitted while the invite is still pending or expired.

    Invite

    status: string

    The lifecycle status of an invite. Possible values: pending, expired, processed. List endpoints return only pending and expired invites; processed is returned only when fetching a single invite by ID.

    Invite