Skip to content

Create Contact List

sesv2_create_contact_list R Documentation

Creates a contact list

Description

Creates a contact list.

Usage

sesv2_create_contact_list(ContactListName, Topics, Description, Tags)

Arguments

ContactListName

[required] The name of the contact list.

Topics

An interest group, theme, or label within a list. A contact list can have multiple topics.

Description

A description of what the contact list is about.

Tags

The tags associated with a contact list.

Value

An empty list.

Request syntax

svc$create_contact_list(
  ContactListName = "string",
  Topics = list(
    list(
      TopicName = "string",
      DisplayName = "string",
      Description = "string",
      DefaultSubscriptionStatus = "OPT_IN"|"OPT_OUT"
    )
  ),
  Description = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)