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 }, "authenticate": {"authenticate_status": "", "company_no": 0, "user_no": 0, "authenticate_no": 0, "authenticated_with": "", "access_token": "", "expires_on": "1/1/1900 12:00 AM", "authenticate_guid": "", "created_on": "1/1/1900 12:00 AM", "authenticate_id": "", "authenticate_username": "", "authenticate_string": "", "reference_no": 0, "reference_type": "" }, "post": {"post_media_byte": <base64Binary>, "social_post_no": 0, "post_message": "", "post_type": "", "post_link": "", "post_link_name": "", "post_caption": "", "post_media": "", "post_date": "1/1/1900 12:00 AM", "post_status": "", "post_notes": "", "user_no": 0, "company_no": 0, "post_network": "", "created_on": "1/1/1900 12:00 AM", "post_location": "", "post_parameters": "", "post_response": "" }, "values": <>}
{"auth": {"api_username": "", "api_password": "", "api_key": "", "company_no": 0, "username": "", "password": "" }, "authenticate": {"authenticate_status": "", "company_no": 0, "user_no": 0, "authenticate_no": 0, "authenticated_with": "", "access_token": "", "expires_on": "1/1/1900 12:00 AM", "authenticate_guid": "", "created_on": "1/1/1900 12:00 AM", "authenticate_id": "", "authenticate_username": "", "authenticate_string": "", "reference_no": 0, "reference_type": "" }, "post": {"post_media_byte": <base64Binary>, "social_post_no": 0, "post_message": "", "post_type": "", "post_link": "", "post_link_name": "", "post_caption": "", "post_media": "", "post_date": "1/1/1900 12:00 AM", "post_status": "", "post_notes": "", "user_no": 0, "company_no": 0, "post_network": "", "created_on": "1/1/1900 12:00 AM", "post_location": "", "post_parameters": "", "post_response": "" }, "values": <>}
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 authenticate_status = ""
var company_no = 0
var user_no = 0
var authenticate_no = 0
var authenticated_with = ""
var access_token = ""
var expires_on = "1/1/1900 12:00 AM"
var authenticate_guid = ""
var created_on = "1/1/1900 12:00 AM"
var authenticate_id = ""
var authenticate_username = ""
var authenticate_string = ""
var reference_no = 0
var reference_type = ""
var post_media_byte = <base64Binary>
var social_post_no = 0
var post_message = ""
var post_type = ""
var post_link = ""
var post_link_name = ""
var post_caption = ""
var post_media = ""
var post_date = "1/1/1900 12:00 AM"
var post_status = ""
var post_notes = ""
var user_no = 0
var company_no = 0
var post_network = ""
var created_on = "1/1/1900 12:00 AM"
var post_location = ""
var post_parameters = ""
var post_response = ""
var values = <>
let url = "https://api.peoplevine.com/social.asmx/postToSocialOwnKeys"
let key = "authenticate"
let authenticateDict: Dictionary<String, AnyObject> = ["authenticate_status": authenticate_status, "company_no": company_no, "user_no": user_no, "authenticate_no": authenticate_no, "authenticated_with": authenticated_with, "access_token": access_token, "expires_on": expires_on, "authenticate_guid": authenticate_guid, "created_on": created_on, "authenticate_id": authenticate_id, "authenticate_username": authenticate_username, "authenticate_string": authenticate_string, "reference_no": reference_no, "reference_type": reference_type ],
let finalDict = User.getAuthDict(dictToAdd: authenticateDict, dictKey: key)
let key = "post"
let postDict: Dictionary<String, AnyObject> = ["post_media_byte": post_media_byte, "social_post_no": social_post_no, "post_message": post_message, "post_type": post_type, "post_link": post_link, "post_link_name": post_link_name, "post_caption": post_caption, "post_media": post_media, "post_date": post_date, "post_status": post_status, "post_notes": post_notes, "user_no": user_no, "company_no": company_no, "post_network": post_network, "created_on": created_on, "post_location": post_location, "post_parameters": post_parameters, "post_response": post_response ],
let finalDict = User.getAuthDict(dictToAdd: postDict, dictKey: key)
let key = "values"
let valuesDict: Dictionary<String, AnyObject> = ["totalEarned": totalEarned, "activity_graphic": activity_graphic, "activity_summary": activity_summary, "max_rewarded": max_rewarded, "totalCustomers": totalCustomers, "totalActivations": totalActivations, "totalPoints": totalPoints, "point_activity_no": point_activity_no, "activity_type": activity_type, "activity_title": activity_title, "activity_description": activity_description, "activity_point": activity_point, "reference_type": reference_type, "reference_no": reference_no, "active_on": active_on, "expires_on": expires_on, "created_on": created_on, "company_no": company_no, "repeatable_times": repeatable_times, "rank_no": rank_no ]
let finalDict = User.getAuthDict(dictToAdd: valuesDict, 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 AUTHENTICATE {
static var authenticate_status = <string>
static var company_no = <double>
static var user_no = <double>
static var authenticate_no = <double>
static var authenticated_with = <string>
static var access_token = <string>
static var expires_on = <dateTime>
static var authenticate_guid = <string>
static var created_on = <dateTime>
static var authenticate_id = <string>
static var authenticate_username = <string>
static var authenticate_string = <string>
static var reference_no = <double>
static var reference_type = <string>}
struct POST {
static var post_media_byte = <base64Binary>
static var social_post_no = <double>
static var post_message = <string>
static var post_type = <string>
static var post_link = <string>
static var post_link_name = <string>
static var post_caption = <string>
static var post_media = <string>
static var post_date = <dateTime>
static var post_status = <string>
static var post_notes = <string>
static var user_no = <double>
static var company_no = <double>
static var post_network = <string>
static var created_on = <dateTime>
static var post_location = <string>
static var post_parameters = <string>
static var post_response = <string>}
static var values = <>
func postToSocialOwnKeysRequest() {
var postToSocialOwnKeysObjects = [AnyObject]()
let postsEndpoint: String = "https://api.peoplevine.com/social.asmx/postToSocialOwnKeys"
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 ], "authenticate": ["authenticate_status": AUTHENTICATE.authenticate_status, "company_no": AUTHENTICATE.company_no, "user_no": AUTHENTICATE.user_no, "authenticate_no": AUTHENTICATE.authenticate_no, "authenticated_with": AUTHENTICATE.authenticated_with, "access_token": AUTHENTICATE.access_token, "expires_on": AUTHENTICATE.expires_on, "authenticate_guid": AUTHENTICATE.authenticate_guid, "created_on": AUTHENTICATE.created_on, "authenticate_id": AUTHENTICATE.authenticate_id, "authenticate_username": AUTHENTICATE.authenticate_username, "authenticate_string": AUTHENTICATE.authenticate_string, "reference_no": AUTHENTICATE.reference_no, "reference_type": AUTHENTICATE.reference_type ], "post": ["post_media_byte": POST.post_media_byte, "social_post_no": POST.social_post_no, "post_message": POST.post_message, "post_type": POST.post_type, "post_link": POST.post_link, "post_link_name": POST.post_link_name, "post_caption": POST.post_caption, "post_media": POST.post_media, "post_date": POST.post_date, "post_status": POST.post_status, "post_notes": POST.post_notes, "user_no": POST.user_no, "company_no": POST.company_no, "post_network": POST.post_network, "created_on": POST.created_on, "post_location": POST.post_location, "post_parameters": POST.post_parameters, "post_response": POST.post_response ], "values": ]
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 postToSocialOwnKeysDict = NSJSONSerialization.JSONObjectWithData(encoString, options: .MutableContainers, error: nil) as? NSDictionary {
// if let returnObjectArray = postToSocialOwnKeysDict["returnObject"] as? NSArray {
//
// for postToSocialOwnKeysObject in returnObjectArray {
// postToSocialOwnKeysObjects.append(postToSocialOwnKeysObject)
// if let item = postToSocialOwnKeysObject["object_name"] as? NSDictionary {
// let varItem = item["field_name"] as! String
// }
// }
//
// println("\n\(postToSocialOwnKeysObjects.count) Total")
// }
// }
}
}
}
}
<!DOCTYPE html>
<html>
<head>
<title>API Call - postToSocialOwnKeys</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,
},
"authenticate": {
"authenticate_status": "",
"company_no": 0,
"user_no": 0,
"authenticate_no": 0,
"authenticated_with": "",
"access_token": "",
"expires_on": "1/1/1900 12:00 AM",
"authenticate_guid": "",
"created_on": "1/1/1900 12:00 AM",
"authenticate_id": "",
"authenticate_username": "",
"authenticate_string": "",
"reference_no": 0,
"reference_type": "",
},
"post": {
"post_media_byte": <base64Binary>,
"social_post_no": 0,
"post_message": "",
"post_type": "",
"post_link": "",
"post_link_name": "",
"post_caption": "",
"post_media": "",
"post_date": "1/1/1900 12:00 AM",
"post_status": "",
"post_notes": "",
"user_no": 0,
"company_no": 0,
"post_network": "",
"created_on": "1/1/1900 12:00 AM",
"post_location": "",
"post_parameters": "",
"post_response": "",
},
"values": <>,
};
$.ajax({
url: 'https://api.peoplevine.com/social.asmx/postToSocialOwnKeys',
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/social.asmx/postToSocialOwnKeys");
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> },authenticate: {authenticate_status: <string>, company_no: <double>, user_no: <double>, authenticate_no: <double>, authenticated_with: <string>, access_token: <string>, expires_on: <dateTime>, authenticate_guid: <string>, created_on: <dateTime>, authenticate_id: <string>, authenticate_username: <string>, authenticate_string: <string>, reference_no: <double>, reference_type: <string> },post: {post_media_byte: <base64Binary>, social_post_no: <double>, post_message: <string>, post_type: <string>, post_link: <string>, post_link_name: <string>, post_caption: <string>, post_media: <string>, post_date: <dateTime>, post_status: <string>, post_notes: <string>, user_no: <double>, company_no: <double>, post_network: <string>, created_on: <dateTime>, post_location: <string>, post_parameters: <string>, post_response: <string> },values: <>}";
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/social.asmx/postToSocialOwnKeys")
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> },authenticate: {authenticate_status: <string>, company_no: <double>, user_no: <double>, authenticate_no: <double>, authenticated_with: <string>, access_token: <string>, expires_on: <dateTime>, authenticate_guid: <string>, created_on: <dateTime>, authenticate_id: <string>, authenticate_username: <string>, authenticate_string: <string>, reference_no: <double>, reference_type: <string> },post: {post_media_byte: <base64Binary>, social_post_no: <double>, post_message: <string>, post_type: <string>, post_link: <string>, post_link_name: <string>, post_caption: <string>, post_media: <string>, post_date: <dateTime>, post_status: <string>, post_notes: <string>, user_no: <double>, company_no: <double>, post_network: <string>, created_on: <dateTime>, post_location: <string>, post_parameters: <string>, post_response: <string> },values: <>}"
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 *authenticateDic = [NSDictionary dictionaryWithObjectsAndKeys:
<string>, @"authenticate_status",
<double>, @"company_no",
<double>, @"user_no",
<double>, @"authenticate_no",
<string>, @"authenticated_with",
<string>, @"access_token",
<dateTime>, @"expires_on",
<string>, @"authenticate_guid",
<dateTime>, @"created_on",
<string>, @"authenticate_id",
<string>, @"authenticate_username",
<string>, @"authenticate_string",
<double>, @"reference_no",
<string>, @"reference_type", nil];
NSDictionary *postDic = [NSDictionary dictionaryWithObjectsAndKeys:
<base64Binary>, @"post_media_byte",
<double>, @"social_post_no",
<string>, @"post_message",
<string>, @"post_type",
<string>, @"post_link",
<string>, @"post_link_name",
<string>, @"post_caption",
<string>, @"post_media",
<dateTime>, @"post_date",
<string>, @"post_status",
<string>, @"post_notes",
<double>, @"user_no",
<double>, @"company_no",
<string>, @"post_network",
<dateTime>, @"created_on",
<string>, @"post_location",
<string>, @"post_parameters",
<string>, @"post_response", nil];
NSDictionary *valuesDic = [NSDictionary dictionaryWithObjectsAndKeys:
<double>, @"totalEarned",
<string>, @"activity_graphic",
<string>, @"activity_summary",
<double>, @"max_rewarded",
<double>, @"totalCustomers",
<double>, @"totalActivations",
<double>, @"totalPoints",
<double>, @"point_activity_no",
<string>, @"activity_type",
<string>, @"activity_title",
<string>, @"activity_description",
<double>, @"activity_point",
<string>, @"reference_type",
<double>, @"reference_no",
<dateTime>, @"active_on",
<dateTime>, @"expires_on",
<dateTime>, @"created_on",
<double>, @"company_no",
<double>, @"repeatable_times",
<double>, @"rank_no", nil];
NSDictionary *finalDic = [NSDictionary dictionaryWithObjectsAndKeys:
authDic, @"auth",authenticateDic, @"authenticate",postDic, @"post",valuesDic, @"values", nil];
NSMutableDictionary* jsonString = nil;
jsonString = [NSJSONSerialization JSONObjectWithData: findalDic options:NSJSONReadingMutableContainers];
NSMutableData *bodyData = [NSMutableData dataWithData:[jsonString dataUsingEncoding:NSUTF8StringEncoding]];
NSString *urlString = @"https://api.peoplevine.com/social.asmx/postToSocialOwnKeys";
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"