Subscribers.Upsert

Overview

Adds any subscriber not on the specified list and updates any specified attributes

Syntax

Subscribers.Upsert(1, 2)

Function Properties

Ordinal Type Description
1 string Required Attribute containing Email address of subscriber or a JSON object containing the EmailAddress and SubscriberKey values for the subscriber
2 string Required Any additional attributes regarding the subscriber. If the Status attribute exists in the passed attributes, it updates the subscriber status

Example

This sample code adds the specified values to the subscriber.

var myList = List.Init("myList");
var status = myList.Subscribers.Upsert("aruiz@example.com",{ZipCode:"46202"});
Last Updated: Jun 8, 2021