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)
{"auth": {"api_username": "", "api_password": "", "api_key": "", "company_no": 0, "username": "", "password": "", "timezone_offset": 0, "auth_type": "", "system_name": "", "system_company_no": 0 }, "customer": {"customer_no": 0, "email": "", "mobile_number": "", "first_name": "", "last_name": "", "address": "", "address2": "", "address3": "", "city": "", "state": "", "zip_code": "", "country": "", "latitude": "", "longitude": "", "phone_number": "", "username": "", "password": "", "profile_photo": "", "opt_in_email": "", "opt_in_sms": "", "opt_in_updates": "", "company_name": "", "website": "", "birthdate": "1/1/1900 12:00 AM", "customer_type": "customer", "customer_source": "", "customer_status": "active", "customer_reference": "", "facebook_handle": "", "facebook_id": "", "twitter_handle": "", "twitter_id": "", "instagram_handle": "", "instagram_id": "", "google_handle": "", "google_id": "", "foursquare_handle": "", "foursquare_id": "", "linkedin_handle": "", "linkedin_id": "", "klout_score": 0, "passbook_enabled": "", "wallet_enabled": "", "device_type": "", "middle_name": "", "last_contacted": "1/1/1900 12:00 AM", "vip_flag": false, "settings": "", "timezone": "", "user_no": 0, "company_no": 0, "created_on": "1/1/1900 12:00 AM", "modified_on": "1/1/1900 12:00 AM", "generatePassword": false, "updateFields": "" } }
{"auth": {"api_username": "", "api_password": "", "api_key": "", "company_no": 0, "username": "", "password": "" }, "customer": {"email": "", "mobile_number": "", "first_name": "", "customer_type": "customer", "customer_status": "active" } }
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 customer_no = 0
var email = ""
var mobile_number = ""
var first_name = ""
var last_name = ""
var address = ""
var address2 = ""
var address3 = ""
var city = ""
var state = ""
var zip_code = ""
var country = ""
var latitude = ""
var longitude = ""
var phone_number = ""
var username = ""
var password = ""
var profile_photo = ""
var opt_in_email = ""
var opt_in_sms = ""
var opt_in_updates = ""
var company_name = ""
var website = ""
var birthdate = "1/1/1900 12:00 AM"
var customer_type = ""
var customer_source = ""
var customer_status = ""
var customer_reference = ""
var facebook_handle = ""
var facebook_id = ""
var twitter_handle = ""
var twitter_id = ""
var instagram_handle = ""
var instagram_id = ""
var google_handle = ""
var google_id = ""
var foursquare_handle = ""
var foursquare_id = ""
var linkedin_handle = ""
var linkedin_id = ""
var klout_score = 0
var passbook_enabled = ""
var wallet_enabled = ""
var device_type = ""
var middle_name = ""
var last_contacted = "1/1/1900 12:00 AM"
var vip_flag = false
var settings = ""
var timezone = ""
var user_no = 0
var company_no = 0
var created_on = "1/1/1900 12:00 AM"
var modified_on = "1/1/1900 12:00 AM"
var generatePassword = false
var updateFields = ""
let url = "https://api.peoplevine.com/customer.asmx/registerCustomer"
let key = "customer"
let customerDict: Dictionary<String, AnyObject> = ["customer_no": customer_no, "email": email, "mobile_number": mobile_number, "first_name": first_name, "last_name": last_name, "address": address, "address2": address2, "address3": address3, "city": city, "state": state, "zip_code": zip_code, "country": country, "latitude": latitude, "longitude": longitude, "phone_number": phone_number, "username": username, "password": password, "profile_photo": profile_photo, "opt_in_email": opt_in_email, "opt_in_sms": opt_in_sms, "opt_in_updates": opt_in_updates, "company_name": company_name, "website": website, "birthdate": birthdate, "customer_type": customer_type, "customer_source": customer_source, "customer_status": customer_status, "customer_reference": customer_reference, "facebook_handle": facebook_handle, "facebook_id": facebook_id, "twitter_handle": twitter_handle, "twitter_id": twitter_id, "instagram_handle": instagram_handle, "instagram_id": instagram_id, "google_handle": google_handle, "google_id": google_id, "foursquare_handle": foursquare_handle, "foursquare_id": foursquare_id, "linkedin_handle": linkedin_handle, "linkedin_id": linkedin_id, "klout_score": klout_score, "passbook_enabled": passbook_enabled, "wallet_enabled": wallet_enabled, "device_type": device_type, "middle_name": middle_name, "last_contacted": last_contacted, "vip_flag": vip_flag, "settings": settings, "timezone": timezone, "user_no": user_no, "company_no": company_no, "created_on": created_on, "modified_on": modified_on, "generatePassword": generatePassword, "updateFields": updateFields ]
let finalDict = User.getAuthDict(dictToAdd: customerDict, 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 CUSTOMER {
static var customer_no = <double>
static var email = <string>
static var mobile_number = <string>
static var first_name = <string>
static var last_name = <string>
static var address = <string>
static var address2 = <string>
static var address3 = <string>
static var city = <string>
static var state = <string>
static var zip_code = <string>
static var country = <string>
static var latitude = <string>
static var longitude = <string>
static var phone_number = <string>
static var username = <string>
static var password = <string>
static var profile_photo = <string>
static var opt_in_email = <string>
static var opt_in_sms = <string>
static var opt_in_updates = <string>
static var company_name = <string>
static var website = <string>
static var birthdate = <dateTime>
static var customer_type = <string>
static var customer_source = <string>
static var customer_status = <string>
static var customer_reference = <string>
static var facebook_handle = <string>
static var facebook_id = <string>
static var twitter_handle = <string>
static var twitter_id = <string>
static var instagram_handle = <string>
static var instagram_id = <string>
static var google_handle = <string>
static var google_id = <string>
static var foursquare_handle = <string>
static var foursquare_id = <string>
static var linkedin_handle = <string>
static var linkedin_id = <string>
static var klout_score = <double>
static var passbook_enabled = <string>
static var wallet_enabled = <string>
static var device_type = <string>
static var middle_name = <string>
static var last_contacted = <dateTime>
static var vip_flag = <boolean>
static var settings = <string>
static var timezone = <string>
static var user_no = <double>
static var company_no = <double>
static var created_on = <dateTime>
static var modified_on = <dateTime>
static var generatePassword = <boolean>
static var updateFields = <string>}
func registerCustomerRequest() {
var registerCustomerObjects = [AnyObject]()
let postsEndpoint: String = "https://api.peoplevine.com/customer.asmx/registerCustomer"
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 ], "customer": ["customer_no": CUSTOMER.customer_no, "email": CUSTOMER.email, "mobile_number": CUSTOMER.mobile_number, "first_name": CUSTOMER.first_name, "last_name": CUSTOMER.last_name, "address": CUSTOMER.address, "address2": CUSTOMER.address2, "address3": CUSTOMER.address3, "city": CUSTOMER.city, "state": CUSTOMER.state, "zip_code": CUSTOMER.zip_code, "country": CUSTOMER.country, "latitude": CUSTOMER.latitude, "longitude": CUSTOMER.longitude, "phone_number": CUSTOMER.phone_number, "username": CUSTOMER.username, "password": CUSTOMER.password, "profile_photo": CUSTOMER.profile_photo, "opt_in_email": CUSTOMER.opt_in_email, "opt_in_sms": CUSTOMER.opt_in_sms, "opt_in_updates": CUSTOMER.opt_in_updates, "company_name": CUSTOMER.company_name, "website": CUSTOMER.website, "birthdate": CUSTOMER.birthdate, "customer_type": CUSTOMER.customer_type, "customer_source": CUSTOMER.customer_source, "customer_status": CUSTOMER.customer_status, "customer_reference": CUSTOMER.customer_reference, "facebook_handle": CUSTOMER.facebook_handle, "facebook_id": CUSTOMER.facebook_id, "twitter_handle": CUSTOMER.twitter_handle, "twitter_id": CUSTOMER.twitter_id, "instagram_handle": CUSTOMER.instagram_handle, "instagram_id": CUSTOMER.instagram_id, "google_handle": CUSTOMER.google_handle, "google_id": CUSTOMER.google_id, "foursquare_handle": CUSTOMER.foursquare_handle, "foursquare_id": CUSTOMER.foursquare_id, "linkedin_handle": CUSTOMER.linkedin_handle, "linkedin_id": CUSTOMER.linkedin_id, "klout_score": CUSTOMER.klout_score, "passbook_enabled": CUSTOMER.passbook_enabled, "wallet_enabled": CUSTOMER.wallet_enabled, "device_type": CUSTOMER.device_type, "middle_name": CUSTOMER.middle_name, "last_contacted": CUSTOMER.last_contacted, "vip_flag": CUSTOMER.vip_flag, "settings": CUSTOMER.settings, "timezone": CUSTOMER.timezone, "user_no": CUSTOMER.user_no, "company_no": CUSTOMER.company_no, "created_on": CUSTOMER.created_on, "modified_on": CUSTOMER.modified_on, "generatePassword": CUSTOMER.generatePassword, "updateFields": CUSTOMER.updateFields ] ]
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 registerCustomerDict = NSJSONSerialization.JSONObjectWithData(encoString, options: .MutableContainers, error: nil) as? NSDictionary {
// if let returnObjectArray = registerCustomerDict["returnObject"] as? NSArray {
//
// for registerCustomerObject in returnObjectArray {
// registerCustomerObjects.append(registerCustomerObject)
// if let item = registerCustomerObject["object_name"] as? NSDictionary {
// let varItem = item["field_name"] as! String
// }
// }
//
// println("\n\(registerCustomerObjects.count) Total")
// }
// }
}
}
}
}
<!DOCTYPE html>
<html>
<head>
<title>API Call - registerCustomer</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,
},
"customer": {
"customer_no": 0,
"email": "",
"mobile_number": "",
"first_name": "",
"last_name": "",
"address": "",
"address2": "",
"address3": "",
"city": "",
"state": "",
"zip_code": "",
"country": "",
"latitude": "",
"longitude": "",
"phone_number": "",
"username": "",
"password": "",
"profile_photo": "",
"opt_in_email": "",
"opt_in_sms": "",
"opt_in_updates": "",
"company_name": "",
"website": "",
"birthdate": "1/1/1900 12:00 AM",
"customer_type": "customer",
"customer_source": "",
"customer_status": "active",
"customer_reference": "",
"facebook_handle": "",
"facebook_id": "",
"twitter_handle": "",
"twitter_id": "",
"instagram_handle": "",
"instagram_id": "",
"google_handle": "",
"google_id": "",
"foursquare_handle": "",
"foursquare_id": "",
"linkedin_handle": "",
"linkedin_id": "",
"klout_score": 0,
"passbook_enabled": "",
"wallet_enabled": "",
"device_type": "",
"middle_name": "",
"last_contacted": "1/1/1900 12:00 AM",
"vip_flag": false,
"settings": "",
"timezone": "",
"user_no": 0,
"company_no": 0,
"created_on": "1/1/1900 12:00 AM",
"modified_on": "1/1/1900 12:00 AM",
"generatePassword": false,
"updateFields": "",
},
};
$.ajax({
url: 'https://api.peoplevine.com/customer.asmx/registerCustomer',
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/customer.asmx/registerCustomer");
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> },customer: {customer_no: <double>, email: <string>, mobile_number: <string>, first_name: <string>, last_name: <string>, address: <string>, address2: <string>, address3: <string>, city: <string>, state: <string>, zip_code: <string>, country: <string>, latitude: <string>, longitude: <string>, phone_number: <string>, username: <string>, password: <string>, profile_photo: <string>, opt_in_email: <string>, opt_in_sms: <string>, opt_in_updates: <string>, company_name: <string>, website: <string>, birthdate: <dateTime>, customer_type: <string>, customer_source: <string>, customer_status: <string>, customer_reference: <string>, facebook_handle: <string>, facebook_id: <string>, twitter_handle: <string>, twitter_id: <string>, instagram_handle: <string>, instagram_id: <string>, google_handle: <string>, google_id: <string>, foursquare_handle: <string>, foursquare_id: <string>, linkedin_handle: <string>, linkedin_id: <string>, klout_score: <double>, passbook_enabled: <string>, wallet_enabled: <string>, device_type: <string>, middle_name: <string>, last_contacted: <dateTime>, vip_flag: <boolean>, settings: <string>, timezone: <string>, user_no: <double>, company_no: <double>, created_on: <dateTime>, modified_on: <dateTime>, generatePassword: <boolean>, updateFields: <string> }}";
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/customer.asmx/registerCustomer")
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> },customer: {customer_no: <double>, email: <string>, mobile_number: <string>, first_name: <string>, last_name: <string>, address: <string>, address2: <string>, address3: <string>, city: <string>, state: <string>, zip_code: <string>, country: <string>, latitude: <string>, longitude: <string>, phone_number: <string>, username: <string>, password: <string>, profile_photo: <string>, opt_in_email: <string>, opt_in_sms: <string>, opt_in_updates: <string>, company_name: <string>, website: <string>, birthdate: <dateTime>, customer_type: <string>, customer_source: <string>, customer_status: <string>, customer_reference: <string>, facebook_handle: <string>, facebook_id: <string>, twitter_handle: <string>, twitter_id: <string>, instagram_handle: <string>, instagram_id: <string>, google_handle: <string>, google_id: <string>, foursquare_handle: <string>, foursquare_id: <string>, linkedin_handle: <string>, linkedin_id: <string>, klout_score: <double>, passbook_enabled: <string>, wallet_enabled: <string>, device_type: <string>, middle_name: <string>, last_contacted: <dateTime>, vip_flag: <boolean>, settings: <string>, timezone: <string>, user_no: <double>, company_no: <double>, created_on: <dateTime>, modified_on: <dateTime>, generatePassword: <boolean>, updateFields: <string> }}"
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 *customerDic = [NSDictionary dictionaryWithObjectsAndKeys:
<double>, @"customer_no",
<string>, @"email",
<string>, @"mobile_number",
<string>, @"first_name",
<string>, @"last_name",
<string>, @"address",
<string>, @"address2",
<string>, @"address3",
<string>, @"city",
<string>, @"state",
<string>, @"zip_code",
<string>, @"country",
<string>, @"latitude",
<string>, @"longitude",
<string>, @"phone_number",
<string>, @"username",
<string>, @"password",
<string>, @"profile_photo",
<string>, @"opt_in_email",
<string>, @"opt_in_sms",
<string>, @"opt_in_updates",
<string>, @"company_name",
<string>, @"website",
<dateTime>, @"birthdate",
<string>, @"customer_type",
<string>, @"customer_source",
<string>, @"customer_status",
<string>, @"customer_reference",
<string>, @"facebook_handle",
<string>, @"facebook_id",
<string>, @"twitter_handle",
<string>, @"twitter_id",
<string>, @"instagram_handle",
<string>, @"instagram_id",
<string>, @"google_handle",
<string>, @"google_id",
<string>, @"foursquare_handle",
<string>, @"foursquare_id",
<string>, @"linkedin_handle",
<string>, @"linkedin_id",
<double>, @"klout_score",
<string>, @"passbook_enabled",
<string>, @"wallet_enabled",
<string>, @"device_type",
<string>, @"middle_name",
<dateTime>, @"last_contacted",
<boolean>, @"vip_flag",
<string>, @"settings",
<string>, @"timezone",
<double>, @"user_no",
<double>, @"company_no",
<dateTime>, @"created_on",
<dateTime>, @"modified_on",
<boolean>, @"generatePassword",
<string>, @"updateFields", nil];
NSDictionary *finalDic = [NSDictionary dictionaryWithObjectsAndKeys:
authDic, @"auth",customerDic, @"customer", nil];
NSMutableDictionary* jsonString = nil;
jsonString = [NSJSONSerialization JSONObjectWithData: findalDic options:NSJSONReadingMutableContainers];
NSMutableData *bodyData = [NSMutableData dataWithData:[jsonString dataUsingEncoding:NSUTF8StringEncoding]];
NSString *urlString = @"https://api.peoplevine.com/customer.asmx/registerCustomer";
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"