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 }, "ticketInfo": {"auth_method": "", "onlyUnusedTickets": false, "scan_location": "", "survey_no": 0, "ticket_type": "", "onlyFutureDates": false, "scanned_by": "", "timezone_offset": 0, "api_username": "", "scanned_no": 0, "api_password": "", "company_no": 0, "api_key": "", "first_name": "", "auth_type": "", "last_name": "", "ticket_title": "", "username": "", "password": "", "ticket_description": "", "event_ticket_log_no": 0, "event_no": 0, "system_name": "", "event_ticket_no": 0, "system_company_no": 0, "purchase_date": "1/1/1900 12:00 AM", "ticket_serial": "", "ticket_status": "", "customer_no": 0, "ticket_price": 0, "transaction_no": 0, "scan_date": "1/1/1900 12:00 AM", "affiliate_no": 0, "ticket_notes": "" } }
{"auth": {"api_username": "", "api_password": "", "api_key": "", "company_no": 0, "username": "", "password": "" }, "ticketInfo": {"auth_method": "", "onlyUnusedTickets": false, "scan_location": "", "survey_no": 0, "ticket_type": "", "onlyFutureDates": false, "scanned_by": "", "timezone_offset": 0, "api_username": "", "scanned_no": 0, "api_password": "", "company_no": 0, "api_key": "", "first_name": "", "auth_type": "", "last_name": "", "ticket_title": "", "username": "", "password": "", "ticket_description": "", "event_ticket_log_no": 0, "event_no": 0, "system_name": "", "event_ticket_no": 0, "system_company_no": 0, "purchase_date": "1/1/1900 12:00 AM", "ticket_serial": "", "ticket_status": "", "customer_no": 0, "ticket_price": 0, "transaction_no": 0, "scan_date": "1/1/1900 12:00 AM", "affiliate_no": 0, "ticket_notes": "" } }
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 auth_method = ""
var onlyUnusedTickets = false
var scan_location = ""
var survey_no = 0
var ticket_type = ""
var onlyFutureDates = false
var scanned_by = ""
var timezone_offset = 0
var api_username = ""
var scanned_no = 0
var api_password = ""
var company_no = 0
var api_key = ""
var first_name = ""
var auth_type = ""
var last_name = ""
var ticket_title = ""
var username = ""
var password = ""
var ticket_description = ""
var event_ticket_log_no = 0
var event_no = 0
var system_name = ""
var event_ticket_no = 0
var system_company_no = 0
var purchase_date = "1/1/1900 12:00 AM"
var ticket_serial = ""
var ticket_status = ""
var customer_no = 0
var ticket_price = 0
var transaction_no = 0
var scan_date = "1/1/1900 12:00 AM"
var affiliate_no = 0
var ticket_notes = ""
let url = "https://api.peoplevine.com/eventAPI.asmx/validateTicket"
let key = "ticketInfo"
let ticketInfoDict: Dictionary<String, AnyObject> = ["auth_method": auth_method, "onlyUnusedTickets": onlyUnusedTickets, "scan_location": scan_location, "survey_no": survey_no, "ticket_type": ticket_type, "onlyFutureDates": onlyFutureDates, "scanned_by": scanned_by, "timezone_offset": timezone_offset, "api_username": api_username, "scanned_no": scanned_no, "api_password": api_password, "company_no": company_no, "api_key": api_key, "first_name": first_name, "auth_type": auth_type, "last_name": last_name, "ticket_title": ticket_title, "username": username, "password": password, "ticket_description": ticket_description, "event_ticket_log_no": event_ticket_log_no, "event_no": event_no, "system_name": system_name, "event_ticket_no": event_ticket_no, "system_company_no": system_company_no, "purchase_date": purchase_date, "ticket_serial": ticket_serial, "ticket_status": ticket_status, "customer_no": customer_no, "ticket_price": ticket_price, "transaction_no": transaction_no, "scan_date": scan_date, "affiliate_no": affiliate_no, "ticket_notes": ticket_notes ]
let finalDict = User.getAuthDict(dictToAdd: ticketInfoDict, 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 TICKETINFO {
static var auth_method = <string>
static var onlyUnusedTickets = <boolean>
static var scan_location = <string>
static var survey_no = <double>
static var ticket_type = <string>
static var onlyFutureDates = <boolean>
static var scanned_by = <string>
static var timezone_offset = <double>
static var api_username = <string>
static var scanned_no = <double>
static var api_password = <string>
static var company_no = <double>
static var api_key = <string>
static var first_name = <string>
static var auth_type = <string>
static var last_name = <string>
static var ticket_title = <string>
static var username = <string>
static var password = <string>
static var ticket_description = <string>
static var event_ticket_log_no = <double>
static var event_no = <double>
static var system_name = <string>
static var event_ticket_no = <double>
static var system_company_no = <double>
static var purchase_date = <dateTime>
static var ticket_serial = <string>
static var ticket_status = <string>
static var customer_no = <double>
static var ticket_price = <double>
static var transaction_no = <double>
static var scan_date = <dateTime>
static var affiliate_no = <double>
static var ticket_notes = <string>}
func validateTicketRequest() {
var validateTicketObjects = [AnyObject]()
let postsEndpoint: String = "https://api.peoplevine.com/eventAPI.asmx/validateTicket"
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 ], "ticketInfo": ["auth_method": TICKETINFO.auth_method, "onlyUnusedTickets": TICKETINFO.onlyUnusedTickets, "scan_location": TICKETINFO.scan_location, "survey_no": TICKETINFO.survey_no, "ticket_type": TICKETINFO.ticket_type, "onlyFutureDates": TICKETINFO.onlyFutureDates, "scanned_by": TICKETINFO.scanned_by, "timezone_offset": TICKETINFO.timezone_offset, "api_username": TICKETINFO.api_username, "scanned_no": TICKETINFO.scanned_no, "api_password": TICKETINFO.api_password, "company_no": TICKETINFO.company_no, "api_key": TICKETINFO.api_key, "first_name": TICKETINFO.first_name, "auth_type": TICKETINFO.auth_type, "last_name": TICKETINFO.last_name, "ticket_title": TICKETINFO.ticket_title, "username": TICKETINFO.username, "password": TICKETINFO.password, "ticket_description": TICKETINFO.ticket_description, "event_ticket_log_no": TICKETINFO.event_ticket_log_no, "event_no": TICKETINFO.event_no, "system_name": TICKETINFO.system_name, "event_ticket_no": TICKETINFO.event_ticket_no, "system_company_no": TICKETINFO.system_company_no, "purchase_date": TICKETINFO.purchase_date, "ticket_serial": TICKETINFO.ticket_serial, "ticket_status": TICKETINFO.ticket_status, "customer_no": TICKETINFO.customer_no, "ticket_price": TICKETINFO.ticket_price, "transaction_no": TICKETINFO.transaction_no, "scan_date": TICKETINFO.scan_date, "affiliate_no": TICKETINFO.affiliate_no, "ticket_notes": TICKETINFO.ticket_notes ] ]
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 validateTicketDict = NSJSONSerialization.JSONObjectWithData(encoString, options: .MutableContainers, error: nil) as? NSDictionary {
// if let returnObjectArray = validateTicketDict["returnObject"] as? NSArray {
//
// for validateTicketObject in returnObjectArray {
// validateTicketObjects.append(validateTicketObject)
// if let item = validateTicketObject["object_name"] as? NSDictionary {
// let varItem = item["field_name"] as! String
// }
// }
//
// println("\n\(validateTicketObjects.count) Total")
// }
// }
}
}
}
}
<!DOCTYPE html>
<html>
<head>
<title>API Call - validateTicket</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,
},
"ticketInfo": {
"auth_method": "",
"onlyUnusedTickets": false,
"scan_location": "",
"survey_no": 0,
"ticket_type": "",
"onlyFutureDates": false,
"scanned_by": "",
"timezone_offset": 0,
"api_username": "",
"scanned_no": 0,
"api_password": "",
"company_no": 0,
"api_key": "",
"first_name": "",
"auth_type": "",
"last_name": "",
"ticket_title": "",
"username": "",
"password": "",
"ticket_description": "",
"event_ticket_log_no": 0,
"event_no": 0,
"system_name": "",
"event_ticket_no": 0,
"system_company_no": 0,
"purchase_date": "1/1/1900 12:00 AM",
"ticket_serial": "",
"ticket_status": "",
"customer_no": 0,
"ticket_price": 0,
"transaction_no": 0,
"scan_date": "1/1/1900 12:00 AM",
"affiliate_no": 0,
"ticket_notes": "",
},
};
$.ajax({
url: 'https://api.peoplevine.com/eventAPI.asmx/validateTicket',
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/eventAPI.asmx/validateTicket");
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> },ticketInfo: {auth_method: <string>, onlyUnusedTickets: <boolean>, scan_location: <string>, survey_no: <double>, ticket_type: <string>, onlyFutureDates: <boolean>, scanned_by: <string>, timezone_offset: <double>, api_username: <string>, scanned_no: <double>, api_password: <string>, company_no: <double>, api_key: <string>, first_name: <string>, auth_type: <string>, last_name: <string>, ticket_title: <string>, username: <string>, password: <string>, ticket_description: <string>, event_ticket_log_no: <double>, event_no: <double>, system_name: <string>, event_ticket_no: <double>, system_company_no: <double>, purchase_date: <dateTime>, ticket_serial: <string>, ticket_status: <string>, customer_no: <double>, ticket_price: <double>, transaction_no: <double>, scan_date: <dateTime>, affiliate_no: <double>, ticket_notes: <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/eventAPI.asmx/validateTicket")
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> },ticketInfo: {auth_method: <string>, onlyUnusedTickets: <boolean>, scan_location: <string>, survey_no: <double>, ticket_type: <string>, onlyFutureDates: <boolean>, scanned_by: <string>, timezone_offset: <double>, api_username: <string>, scanned_no: <double>, api_password: <string>, company_no: <double>, api_key: <string>, first_name: <string>, auth_type: <string>, last_name: <string>, ticket_title: <string>, username: <string>, password: <string>, ticket_description: <string>, event_ticket_log_no: <double>, event_no: <double>, system_name: <string>, event_ticket_no: <double>, system_company_no: <double>, purchase_date: <dateTime>, ticket_serial: <string>, ticket_status: <string>, customer_no: <double>, ticket_price: <double>, transaction_no: <double>, scan_date: <dateTime>, affiliate_no: <double>, ticket_notes: <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 *ticketInfoDic = [NSDictionary dictionaryWithObjectsAndKeys:
<string>, @"auth_method",
<boolean>, @"onlyUnusedTickets",
<string>, @"scan_location",
<double>, @"survey_no",
<string>, @"ticket_type",
<boolean>, @"onlyFutureDates",
<string>, @"scanned_by",
<double>, @"timezone_offset",
<string>, @"api_username",
<double>, @"scanned_no",
<string>, @"api_password",
<double>, @"company_no",
<string>, @"api_key",
<string>, @"first_name",
<string>, @"auth_type",
<string>, @"last_name",
<string>, @"ticket_title",
<string>, @"username",
<string>, @"password",
<string>, @"ticket_description",
<double>, @"event_ticket_log_no",
<double>, @"event_no",
<string>, @"system_name",
<double>, @"event_ticket_no",
<double>, @"system_company_no",
<dateTime>, @"purchase_date",
<string>, @"ticket_serial",
<string>, @"ticket_status",
<double>, @"customer_no",
<double>, @"ticket_price",
<double>, @"transaction_no",
<dateTime>, @"scan_date",
<double>, @"affiliate_no",
<string>, @"ticket_notes", nil];
NSDictionary *finalDic = [NSDictionary dictionaryWithObjectsAndKeys:
authDic, @"auth",ticketInfoDic, @"ticketInfo", nil];
NSMutableDictionary* jsonString = nil;
jsonString = [NSJSONSerialization JSONObjectWithData: findalDic options:NSJSONReadingMutableContainers];
NSMutableData *bodyData = [NSMutableData dataWithData:[jsonString dataUsingEncoding:NSUTF8StringEncoding]];
NSString *urlString = @"https://api.peoplevine.com/eventAPI.asmx/validateTicket";
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"