View All Methods in this API

scheduleNewsletter

Version 1 This method allows you to schedule a newsletter to be sent out. {reference_type: coupon, couponRedeemed, subscription, membership, membershipScan, vote, survey, contest or blank} {send_when: now, scheduled, repeat, action, drip}

https://api.peoplevine.com/newsletter.asmx/scheduleNewsletter

For non required fields, you can either omit from the JSON string or set it to a default value
(e.g. String = "", Integer/Double = 0, Boolean = false, DateTime = 1900-01-01T00:00:00.000Z)

INPUT

Name Type Description Required
{"auth": {"api_username": "", "api_password": "", "api_key": "", "company_no": 0, "username": "", "password": "", "timezone_offset": 0, "auth_type": "", "system_name": "", "system_company_no": 0 }, "schedule": {"newsletter_subject": "", "company_no": 0, "last_sent": "1/1/1900 12:00 AM", "last_status": "", "newsletter_schedule_no": 0, "totalViews": 0, "newsletter_no": 0, "send_when": "", "next_date": "1/1/1900 12:00 AM", "start_date": "1/1/1900 12:00 AM", "end_date": "1/1/1900 12:00 AM", "send_frequency": 0, "reference_type": "", "reference_no": 0, "created_on": "1/1/1900 12:00 AM" } }
{"auth": {"api_username": "", "api_password": "", "api_key": "", "company_no": 0, "username": "", "password": "" }, "schedule": {"newsletter_subject": "", "company_no": 0, "last_sent": "1/1/1900 12:00 AM", "last_status": "", "newsletter_schedule_no": 0, "totalViews": 0, "newsletter_no": 0, "send_when": "", "next_date": "1/1/1900 12:00 AM", "start_date": "1/1/1900 12:00 AM", "end_date": "1/1/1900 12:00 AM", "send_frequency": 0, "reference_type": "", "reference_no": 0, "created_on": "1/1/1900 12:00 AM" } }

OUTPUT

By default, every API call returns an object of returnMessage as either XML or JSON depending on your content-type of the request.  With in the returnMessage structure the returnObject is specified above and differs based on the API meth.

Name Type Description
responseCode String This identifies the error that occurred for additional handling. Response codes starting with "A" are a success or "E" are an error.
message String Additional minor details on the response to display to your customers.
isError Boolean True if an error. False if succesful.
methodFailed String If there's an error, this is the method it failed at for debugging purposes.
extendedMessage String Additional instructions on how you can fix the error or what you can do with the return object.
reason String Explains why this error occurred or what was completed.
reponseTime Double How long it took to respond in seconds.
returnObject Double We provide the newsletter_no of the newsletter that was just created
{"responseCode": "", "message": "", "isError": false, "methodFailed": "", "extendedMessage": "", "reason": "", "responseTime": 0, "returnObject": {} }

Sample Code

This sample code is to generate a function leveraging existing core functions you've already built.

                
func getAPIKit() -> (url: String, dict: Dictionary<String, AnyObject>) {

    var newsletter_subject = ""
    var company_no = 0
    var last_sent = "1/1/1900 12:00 AM"
    var last_status = ""
    var newsletter_schedule_no = 0
    var totalViews = 0
    var newsletter_no = 0
    var send_when = ""
    var next_date = "1/1/1900 12:00 AM"
    var start_date = "1/1/1900 12:00 AM"
    var end_date = "1/1/1900 12:00 AM"
    var send_frequency = 0
    var reference_type = ""
    var reference_no = 0
    var created_on = "1/1/1900 12:00 AM"

    let url = "https://api.peoplevine.com/newsletter.asmx/scheduleNewsletter"
    
    let key = "schedule"
    let scheduleDict: Dictionary<String, AnyObject> = ["newsletter_subject": newsletter_subject, "company_no": company_no, "last_sent": last_sent, "last_status": last_status, "newsletter_schedule_no": newsletter_schedule_no, "totalViews": totalViews, "newsletter_no": newsletter_no, "send_when": send_when, "next_date": next_date, "start_date": start_date, "end_date": end_date, "send_frequency": send_frequency, "reference_type": reference_type, "reference_no": reference_no, "created_on": created_on ]
    let finalDict = User.getAuthDict(dictToAdd: scheduleDict, dictKey: key)
    
    return (url, finalDict)
  }

                
            

To get started we reccomend that you download the Alamofire project to simplify integration: https://github.com/Alamofire/Alamofire, in addition to SwiftyJSON: https://github.com/SwiftyJSON/SwiftyJSON

                
import Foundation

struct AUTH {
    static var api_username = <string>
    static var api_password = <string>
    static var api_key = <string>
    static var company_no = <double>
    static var username = <string>
    static var password = <string>
    static var timezone_offset = <double>
    static var auth_type = <string>
    static var system_name = <string>
    static var system_company_no = <double>}
    
struct SCHEDULE {
    static var newsletter_subject = <string>
    static var company_no = <double>
    static var last_sent = <dateTime>
    static var last_status = <string>
    static var newsletter_schedule_no = <double>
    static var totalViews = <double>
    static var newsletter_no = <double>
    static var send_when = <string>
    static var next_date = <dateTime>
    static var start_date = <dateTime>
    static var end_date = <dateTime>
    static var send_frequency = <double>
    static var reference_type = <string>
    static var reference_no = <double>
    static var created_on = <dateTime>}
    
func scheduleNewsletterRequest() {
    
    var scheduleNewsletterObjects = [AnyObject]()
    let postsEndpoint: String = "https://api.peoplevine.com/newsletter.asmx/scheduleNewsletter"

    let authAndFieldsDict = ["auth": ["api_username": AUTH.api_username, "api_password": AUTH.api_password, "api_key": AUTH.api_key, "company_no": AUTH.company_no, "username": AUTH.username, "password": AUTH.password, "timezone_offset": AUTH.timezone_offset, "auth_type": AUTH.auth_type, "system_name": AUTH.system_name, "system_company_no": AUTH.system_company_no ], "schedule": ["newsletter_subject": SCHEDULE.newsletter_subject, "company_no": SCHEDULE.company_no, "last_sent": SCHEDULE.last_sent, "last_status": SCHEDULE.last_status, "newsletter_schedule_no": SCHEDULE.newsletter_schedule_no, "totalViews": SCHEDULE.totalViews, "newsletter_no": SCHEDULE.newsletter_no, "send_when": SCHEDULE.send_when, "next_date": SCHEDULE.next_date, "start_date": SCHEDULE.start_date, "end_date": SCHEDULE.end_date, "send_frequency": SCHEDULE.send_frequency, "reference_type": SCHEDULE.reference_type, "reference_no": SCHEDULE.reference_no, "created_on": SCHEDULE.created_on ] ]

    Alamofire.request(.POST, postsEndpoint, parameters: authAndFieldsDict, encoding: .JSON).responseJSON { (request, response, data, error) in

      if let anError = error {

        println("error calling POST on /posts")
        println(error)

      } else if let jsonData: AnyObject = data {
        if let dataString = (jsonData.valueForKey("d") as! String).dataUsingEncoding(NSUTF8StringEncoding) {
            let json = JSON(data: dataString)  //use this object to parse data
            
            //SAMPLE PARSING
            let varData = json["returnObject"][0]["object"].stringValue

            // ----------
            // BELOW REPRESENTS AN EXAMPLE USING PURE SWIFT JSONSERIALIZATION INSTEAD OF SWIFTYJSON --------//

            //          if let scheduleNewsletterDict = NSJSONSerialization.JSONObjectWithData(encoString, options: .MutableContainers, error: nil) as? NSDictionary {
            //            if let returnObjectArray = scheduleNewsletterDict["returnObject"] as? NSArray {
            //
            //              for scheduleNewsletterObject in returnObjectArray {
            //                scheduleNewsletterObjects.append(scheduleNewsletterObject)
            //                if let item = scheduleNewsletterObject["object_name"] as? NSDictionary {
            //                  let varItem = item["field_name"] as! String
            //                }
            //              }
            //
            //              println("\n\(scheduleNewsletterObjects.count) Total")
            //            }
            //          }
        }
      }
    }
  }



            
<!DOCTYPE html>
<html>
<head>
<title>API Call - scheduleNewsletter</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
</head>
<body>
<script type="text/javascript">
   $(function() {
      var dataValue = {
         
            "auth": {
                "api_username": "", 
                "api_password": "", 
                "api_key": "", 
                "company_no": 0, 
                "username": "", 
                "password": "", 
                "timezone_offset": 0, 
                "auth_type": "", 
                "system_name": "", 
                "system_company_no": 0, 
                },
            
            "schedule": {
                "newsletter_subject": "", 
                "company_no": 0, 
                "last_sent": "1/1/1900 12:00 AM", 
                "last_status": "", 
                "newsletter_schedule_no": 0, 
                "totalViews": 0, 
                "newsletter_no": 0, 
                "send_when": "", 
                "next_date": "1/1/1900 12:00 AM", 
                "start_date": "1/1/1900 12:00 AM", 
                "end_date": "1/1/1900 12:00 AM", 
                "send_frequency": 0, 
                "reference_type": "", 
                "reference_no": 0, 
                "created_on": "1/1/1900 12:00 AM", 
                },
            
      };
      
      $.ajax({
         url: 'https://api.peoplevine.com/newsletter.asmx/scheduleNewsletter',
         type: 'POST',
         data: JSON.stringify(dataValue),
         contentType: 'application/json; charset=utf-8',
         dataType: 'json',
         error: function (XMLHttpRequest, textStatus, errorThrown) {
                alert("ERROR");
         },
         success: function (result) {
                var obj = JSON.parse(result.d).returnObject;

                $.each(obj, function(i) {
                    $("#divID").html(obj[i].field_name); //do something with the data
                })
         }
      })
   });
</script>
</body>
</html>
            
    
System.Net.HttpWebRequest req = System.Net.HttpWebRequest.Create("https://api.peoplevine.com/newsletter.asmx/scheduleNewsletter");
req.Method = "POST";
req.ContentType = "application/json; charset=utf-8";

string dataValue = "{auth: {api_username: <string>, api_password: <string>, api_key: <string>, company_no: <double>, username: <string>, password: <string>, timezone_offset: <double>, auth_type: <string>, system_name: <string>, system_company_no: <double> },schedule: {newsletter_subject: <string>, company_no: <double>, last_sent: <dateTime>, last_status: <string>, newsletter_schedule_no: <double>, totalViews: <double>, newsletter_no: <double>, send_when: <string>, next_date: <dateTime>, start_date: <dateTime>, end_date: <dateTime>, send_frequency: <double>, reference_type: <string>, reference_no: <double>, created_on: <dateTime> }}";

ASCIIEncoding encoding = new ASCIIEncoding();
byte[] bytes = encoding.GetBytes(dataValue);

req.ContentLength = bytes.Length;

System.IO.Stream strm = req.GetRequestStream();
strm.Write(bytes, 0, bytes.Length);
strm.Close();

System.Net.HttpWebResponse rsp = req.GetResponse();
System.IO.Stream data = rsp.GetResponseStream();
System.IO.StreamReader rdr = new System.IO.StreamReader(data);

string response = rdr.ReadToEnd();

Dim req As System.Net.HttpWebRequest = System.Net.HttpWebRequest.Create("https://api.peoplevine.com/newsletter.asmx/scheduleNewsletter")
req.Method = "POST"
req.ContentType = "application/json; charset=utf-8"
        
Dim dataValue As String = "{auth: {api_username: <string>, api_password: <string>, api_key: <string>, company_no: <double>, username: <string>, password: <string>, timezone_offset: <double>, auth_type: <string>, system_name: <string>, system_company_no: <double> },schedule: {newsletter_subject: <string>, company_no: <double>, last_sent: <dateTime>, last_status: <string>, newsletter_schedule_no: <double>, totalViews: <double>, newsletter_no: <double>, send_when: <string>, next_date: <dateTime>, start_date: <dateTime>, end_date: <dateTime>, send_frequency: <double>, reference_type: <string>, reference_no: <double>, created_on: <dateTime> }}"
        
Dim encoding As New ASCIIEncoding()
Dim bytes As Byte() = encoding.GetBytes(dataValue)
        
req.ContentLength = bytes.Length
        
Dim strm As System.IO.Stream = req.GetRequestStream()
strm.Write(bytes, 0, bytes.Length)
strm.Close()
        
Dim rsp As System.Net.HttpWebResponse = req.GetResponse()
Dim data As System.IO.Stream = rsp.GetResponseStream()
Dim rdr As New System.IO.StreamReader(data)

Dim response As String = rdr.ReadToEnd()
// This sample uses the Apache HTTP client from HTTP Components (http://hc.apache.org/httpcomponents-client-ga/)
import java.net.URI;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.utils.URIBuilder;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;

public class JavaSample {

  public static void main(String[] args) {
   HttpClient httpclient = HttpClients.createDefault();

   try
   {
      URIBuilder builder = new URIBuilder("https://peoplevine.azure-api.net/customer/customer/registerCustomer");
      // Specify your subscription key
      builder.setParameter("subscription-key", "");
      URI uri = builder.build();
      HttpPost request = new HttpPost(uri);
      StringEntity reqEntity = new StringEntity("", ContentType.create("application/json"));
      request.setEntity(reqEntity);
      HttpResponse response = httpclient.execute(request);
      HttpEntity entity = response.getEntity();
      if (entity != null) {
         System.out.println(EntityUtils.toString(entity));
      }
   }
   catch (Exception e)
   {
      System.out.println(e.getMessage());
   }
  }
}
<?php

// This sample uses the HTTP_Request2 package. (for more information: http://pear.php.net/package/HTTP_Request2)
require_once 'HTTP/Request2.php';
$headers = array(
   'Content-Type' => 'application/json',
);

$query_params = array(
   // Specify your subscription key
   'subscription-key' => '',
);

$request = new Http_Request2('https://peoplevine.azure-api.net/customer/customer/registerCustomer');
$request->setMethod(HTTP_Request2::METHOD_POST);
// Basic Authorization Sample
// $request-setAuth('{username}', '{password}');
$request->setHeader($headers);

$url = $request->getUrl();
$url->setQueryVariables($query_params);
$request->setBody("");

try
{
   $response = $request->send();
   
   echo $response->getBody();
}
catch (HttpException $ex)
{
   echo $ex;
}

?>

    #import <Foundation/Foundation.h>
    
    NSDictionary *authDic = [NSDictionary dictionaryWithObjectsAndKeys:
            <string>, @"api_username",
            <string>, @"api_password",
            <string>, @"api_key",
            <double>, @"company_no",
            <string>, @"username",
            <string>, @"password",
            <double>, @"timezone_offset",
            <string>, @"auth_type",
            <string>, @"system_name",
            <double>, @"system_company_no", nil];
    
    NSDictionary *scheduleDic = [NSDictionary dictionaryWithObjectsAndKeys:
            <string>, @"newsletter_subject",
            <double>, @"company_no",
            <dateTime>, @"last_sent",
            <string>, @"last_status",
            <double>, @"newsletter_schedule_no",
            <double>, @"totalViews",
            <double>, @"newsletter_no",
            <string>, @"send_when",
            <dateTime>, @"next_date",
            <dateTime>, @"start_date",
            <dateTime>, @"end_date",
            <double>, @"send_frequency",
            <string>, @"reference_type",
            <double>, @"reference_no",
            <dateTime>, @"created_on", nil];
    
    NSDictionary *finalDic = [NSDictionary dictionaryWithObjectsAndKeys:
                authDic, @"auth",scheduleDic, @"schedule", nil];
 
    NSMutableDictionary* jsonString = nil;
    jsonString = [NSJSONSerialization JSONObjectWithData: findalDic options:NSJSONReadingMutableContainers];
    
    NSMutableData *bodyData = [NSMutableData dataWithData:[jsonString dataUsingEncoding:NSUTF8StringEncoding]];
    
    NSString *urlString = @"https://api.peoplevine.com/newsletter.asmx/scheduleNewsletter";
    
    ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:urlString]];    
    [request setTimeOutSeconds:250];    
    [request setRequestMethod:@"POST"];    
    [request addRequestHeader:@"Content-Type" value:@"application/json"];    
    [request addRequestHeader:[NSString stringWithFormat:@"%d",bodyData.length] value:@"Content-length"];    
    [request setPostBody:bodyData];    
    [request startSynchronous];

    NSDictionary *responseDic = (NSDictionary*)[request.responseString JSONValue];   
   
    if (responseDic || [responseDic objectForKey:@"d"])
    {
        NSMutableDictionary *dicSave=[responseDic objectForKey:@"d"];
        // -------------------------------------------------------------------
        // convert into the data and NSUTF8StringEncoding
        // -------------------------------------------------------------------
        NSString *strDic=[dicSave copy];
        NSMutableDictionary *dirJson;
        if (strDic)
        {
            NSData* dataFile=[strDic dataUsingEncoding:NSUTF8StringEncoding];
            NSString* newStr = [[NSString alloc] initWithData:dataFile
                                                     encoding:NSUTF8StringEncoding];
           
            dirJson = [newStr JSONValue] ;
        }
        // -------------------------------------------------------------------
        
        NSString *str=[[dirJson objectForKey:@"returnObject"]valueForKey:@"customer_no"];
    }
    else
    {
        UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"Error" message:@"An Error Occurred" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
        [alert show];
    }
require 'net/http'

uri = URI('https://peoplevine.azure-api.net/customer/customer/registerCustomer')

uri.query = URI.encode_www_form({
   # Specify your subscription key
   'subscription-key' => '',
})

request = Net::HTTP::Post.new(uri.request_uri)

# Basic Authorization Sample
# request.basic_auth 'username', 'password'
request['Content-type'] = 'application/json'

request.body = ""

response = Net::HTTP.start(uri.host, uri.port, :use_ssl => uri.scheme == 'https') do |http|
    http.request(request)
end

puts response.body
########### Python 2.7 #############
import httplib, urllib, base64

headers = {
   # Basic Authorization Sample
   # 'Authorization': 'Basic %s' % base64.encodestring('{username}:{password}'),
   'Content-type': 'application/json',
}

params = urllib.urlencode({
   # Specify your subscription key
   'subscription-key': '',
})

try:
   conn = httplib.HTTPSConnection('peoplevine.azure-api.net')
   conn.request("POST", "/customer/customer/registerCustomer?%s" % params, "", headers)
   response = conn.getresponse()
   data = response.read()
   print(data)
   conn.close()
except Exception as e:
   print("[Errno {0}] {1}".format(e.errno, e.strerror))

####################################

########### Python 3.2 #############
import http.client, urllib.request, urllib.parse, urllib.error, base64

headers = {
   # Basic Authorization Sample
   # 'Authorization': 'Basic %s' % base64.encodestring('{username}:{password}'),
   'Content-type': 'application/json',
}

params = urllib.parse.urlencode({
   # Specify your subscription key
   'subscription-key': '',
})

try:
   conn = http.client.HTTPSConnection('peoplevine.azure-api.net')
   conn.request("POST", "/customer/customer/registerCustomer?%s" % params, "", headers)
   response = conn.getresponse()
   data = response.read()
   print(data)
   conn.close()
except Exception as e:
   print("[Errno {0}] {1}".format(e.errno, e.strerror))

####################################
@ECHO OFF

REM for Basic Authorization use: --user {username}:{password}
REM Specify values for path parameters (shown as {...}), your subscription key and values for query parameters
curl -v -X POST "https://peoplevine.azure-api.net/customer/customer/registerCustomer?subscription-key="^
 -H "Content-Type: application/json"