function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Dr. Thomas MillerDr. Thomas Miller 

Do SOAP calls to Marketing Cloud via WSProxy support asynchronous processing?

I call (from SSJS)

api.updateBatch('Subscriber',updateObjects,options)

with options set to

options = {

       RequestType: 'Asynchronous',
    SendResponseTo: [{ResponseType:'email',
                     ResponseAddress:'myemailaddress',
                     RespondWhen:'Always',
                     IncludeResults:true,
                     IncludeObjects:true,
                     OnlyIncludeBase:false}]
 }


but the result of the call says

{"Status":"OK","RequestID":"34b5be92-18ff-4480-925a-23a5fb3e79b6","Results":[{"Object":{"SubscriberKey":"0036E00000YgkZsQAJ",...},...,"StatusCode":"OK","StatusMessage":"Updated Subscriber.",...,"RequestType":"Synchronous",...

Does this mean that asynchronous processing is not supported when you do SOAP calls via WSProxy?