interface Request {
    emails: string[];
    message?: string;
    noEmail?: boolean;
}

Properties

emails: string[]

List of email adddresses to add/remove/renew/revoke external access for

message?: string

Optional message - only when first adding external access

""
noEmail?: boolean

Send email to each address notifying them of external access. Set to true to disable sending emails

false