Subscribers.Upsert
Overview
Adds any subscriber not on the specified list and updates any specified attributesSyntax
Subscribers.Upsert(1, 2)
| 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"});