InviteUsersAdminRequest

case class InviteUsersAdminRequest(team_id: String, email: String, channel_ids: String, custom_message: Option[String], real_name: Option[String], resend: Option[Boolean], is_restricted: Option[Boolean], is_ultra_restricted: Option[Boolean], guest_expiration_ts: Option[String])
Value parameters:
channel_ids

A comma-separated list of channel_ids for this user to join. At least one channel is required.

custom_message

An optional message to send to the user in the invite email.

email

The email address of the person to invite.

guest_expiration_ts

Timestamp when guest account should be disabled. Only include this timestamp if you are inviting a guest user and you want their account to expire on a certain date.

is_restricted

Is this user a multi-channel guest user? (default: false)

is_ultra_restricted

Is this user a single channel guest user? (default: false)

real_name

Full name of the user.

resend

Allow this invite to be resent in the future if a user has not signed up yet. (default: false)

team_id

The ID (T1234) of the workspace.

Companion:
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Inherited methods

def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product