Syntax

var result = proxy.update(objectType, properties [, saveOptions]);

Parameters

Name Type Required Description
objectType string Yes SOAP API object type
properties object Yes Properties to update (must include identifier)
saveOptions object No SOAP save options (e.g., for upsert)

Return Value

{
    Status: "OK",
    RequestID: "...",
    Results: [{ StatusCode: "OK", StatusMessage: "...", Object: {...} }]
}

Examples

Update subscriber status

var proxy = new Script.Util.WSProxy();
var result = proxy.update("Subscriber", {
    SubscriberKey: "sub_jane",
    Status: "Unsubscribed"
});

Upsert DE row (update or create)

var proxy = new Script.Util.WSProxy();
var result = proxy.update(
    "DataExtensionObject[MyDE_Key]",
    {
        Properties: {
            Property: [
                { Name: "SubscriberKey", Value: "sub_jane" },
                { Name: "Score", Value: "95" },
                { Name: "UpdatedAt", Value: Platform.Function.Now() }
            ]
        }
    },
    [{ SaveAction: "UpdateAdd" }]  // SaveAction: UpdateOnly, AddOnly, UpdateAdd (upsert)
);

Notes

SaveAction Options

SaveAction Behavior
UpdateOnly Update existing; fail if not found
AddOnly Insert new; fail if already exists
UpdateAdd Upsert — update if found, insert if not

See Also