View All Methods in this API

processPayment

Version 1 This method is used to process payment for a customer. If you pass in a credit card number and/or credit card type, our system will automatically process the charge using your merchant account on file. If you supply cash, papercheck or voucher in the card_type, our system will simply log the transaction.

https://api.peoplevine.com/transaction.asmx/processPayment

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 }, "card": {"card_no": 0, "card_type": "cash", "payment_type": "", "card_name": "", "card_number": "", "card_security": "", "card_month": 0, "card_year": 0, "customer_no": 0, "status": "valid", "card_description": "", "ip_address": "", "sessionid": "", "user_info": "", "device_info": "", "address1": "", "address2": "", "city": "", "state": "", "zip_code": "", "company_no": 0, "created_on": "1/1/1900 12:00 AM", "modified_on": "1/1/1900 12:00 AM", "payment_id": "" }, "paymentInfo": {"transaction_no": 0, "chargeAmount": 0, "isPayment": "true", "isRefund": false, "allowDuplicate": false, "reference_type": "", "reference_no": 0, "processor": "", "payment_processor_no": 0, "group_id": "", "affiliate_no": 0, "transaction_id": "", "notes": "", "subscription_no": 0, "purchase_order": "" } }
{"auth": {"api_username": "", "api_password": "", "api_key": "", "company_no": 0, "username": "", "password": "" }, "card": {"card_type": "cash", "customer_no": 0 }, "paymentInfo": {"chargeAmount": 0, "isPayment": "true" } }

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 transactionResponse
{"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 card_no = 0
    var card_type = ""
    var payment_type = ""
    var card_name = ""
    var card_number = ""
    var card_security = ""
    var card_month = 0
    var card_year = 0
    var customer_no = 0
    var status = ""
    var card_description = ""
    var ip_address = ""
    var sessionid = ""
    var user_info = ""
    var device_info = ""
    var address1 = ""
    var address2 = ""
    var city = ""
    var state = ""
    var zip_code = ""
    var company_no = 0
    var created_on = "1/1/1900 12:00 AM"
    var modified_on = "1/1/1900 12:00 AM"
    var payment_id = ""
    var transaction_no = 0
    var chargeAmount = 0
    var isPayment = false
    var isRefund = false
    var allowDuplicate = false
    var reference_type = ""
    var reference_no = 0
    var processor = ""
    var payment_processor_no = 0
    var group_id = ""
    var affiliate_no = 0
    var transaction_id = ""
    var notes = ""
    var subscription_no = 0
    var purchase_order = ""
    var company_no = 0
    var user_no = 0

    let url = "https://api.peoplevine.com/transaction.asmx/processPayment"
    
    let key = "card"
    let cardDict: Dictionary<String, AnyObject> = ["card_no": card_no, "card_type": card_type, "payment_type": payment_type, "card_name": card_name, "card_number": card_number, "card_security": card_security, "card_month": card_month, "card_year": card_year, "customer_no": customer_no, "status": status, "card_description": card_description, "ip_address": ip_address, "sessionid": sessionid, "user_info": user_info, "device_info": device_info, "address1": address1, "address2": address2, "city": city, "state": state, "zip_code": zip_code, "company_no": company_no, "created_on": created_on, "modified_on": modified_on, "payment_id": payment_id ],
    let finalDict = User.getAuthDict(dictToAdd: cardDict, dictKey: key)
    
    let key = "paymentInfo"
    let paymentInfoDict: Dictionary<String, AnyObject> = ["transaction_no": transaction_no, "chargeAmount": chargeAmount, "isPayment": isPayment, "isRefund": isRefund, "allowDuplicate": allowDuplicate, "reference_type": reference_type, "reference_no": reference_no, "processor": processor, "payment_processor_no": payment_processor_no, "group_id": group_id, "affiliate_no": affiliate_no, "transaction_id": transaction_id, "notes": notes, "subscription_no": subscription_no, "purchase_order": purchase_order, "company_no": company_no, "user_no": user_no ]
    let finalDict = User.getAuthDict(dictToAdd: paymentInfoDict, 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 CARD {
    static var card_no = <double>
    static var card_type = <string>
    static var payment_type = <string>
    static var card_name = <string>
    static var card_number = <string>
    static var card_security = <string>
    static var card_month = <double>
    static var card_year = <double>
    static var customer_no = <double>
    static var status = <string>
    static var card_description = <string>
    static var ip_address = <string>
    static var sessionid = <string>
    static var user_info = <string>
    static var device_info = <string>
    static var address1 = <string>
    static var address2 = <string>
    static var city = <string>
    static var state = <string>
    static var zip_code = <string>
    static var company_no = <double>
    static var created_on = <dateTime>
    static var modified_on = <dateTime>
    static var payment_id = <string>}
    
struct PAYMENTINFO {
    static var transaction_no = <double>
    static var chargeAmount = <double>
    static var isPayment = <boolean>
    static var isRefund = <boolean>
    static var allowDuplicate = <boolean>
    static var reference_type = <string>
    static var reference_no = <double>
    static var processor = <string>
    static var payment_processor_no = <double>
    static var group_id = <string>
    static var affiliate_no = <double>
    static var transaction_id = <string>
    static var notes = <string>
    static var subscription_no = <double>
    static var purchase_order = <string>
    static var company_no = <double>
    static var user_no = <double>}
    
func processPaymentRequest() {
    
    var processPaymentObjects = [AnyObject]()
    let postsEndpoint: String = "https://api.peoplevine.com/transaction.asmx/processPayment"

    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 ], "card": ["card_no": CARD.card_no, "card_type": CARD.card_type, "payment_type": CARD.payment_type, "card_name": CARD.card_name, "card_number": CARD.card_number, "card_security": CARD.card_security, "card_month": CARD.card_month, "card_year": CARD.card_year, "customer_no": CARD.customer_no, "status": CARD.status, "card_description": CARD.card_description, "ip_address": CARD.ip_address, "sessionid": CARD.sessionid, "user_info": CARD.user_info, "device_info": CARD.device_info, "address1": CARD.address1, "address2": CARD.address2, "city": CARD.city, "state": CARD.state, "zip_code": CARD.zip_code, "company_no": CARD.company_no, "created_on": CARD.created_on, "modified_on": CARD.modified_on, "payment_id": CARD.payment_id ], "paymentInfo": ["transaction_no": PAYMENTINFO.transaction_no, "chargeAmount": PAYMENTINFO.chargeAmount, "isPayment": PAYMENTINFO.isPayment, "isRefund": PAYMENTINFO.isRefund, "allowDuplicate": PAYMENTINFO.allowDuplicate, "reference_type": PAYMENTINFO.reference_type, "reference_no": PAYMENTINFO.reference_no, "processor": PAYMENTINFO.processor, "payment_processor_no": PAYMENTINFO.payment_processor_no, "group_id": PAYMENTINFO.group_id, "affiliate_no": PAYMENTINFO.affiliate_no, "transaction_id": PAYMENTINFO.transaction_id, "notes": PAYMENTINFO.notes, "subscription_no": PAYMENTINFO.subscription_no, "purchase_order": PAYMENTINFO.purchase_order, "company_no": PAYMENTINFO.company_no, "user_no": PAYMENTINFO.user_no ] ]

    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 processPaymentDict = NSJSONSerialization.JSONObjectWithData(encoString, options: .MutableContainers, error: nil) as? NSDictionary {
            //            if let returnObjectArray = processPaymentDict["returnObject"] as? NSArray {
            //
            //              for processPaymentObject in returnObjectArray {
            //                processPaymentObjects.append(processPaymentObject)
            //                if let item = processPaymentObject["object_name"] as? NSDictionary {
            //                  let varItem = item["field_name"] as! String
            //                }
            //              }
            //
            //              println("\n\(processPaymentObjects.count) Total")
            //            }
            //          }
        }
      }
    }
  }



            
<!DOCTYPE html>
<html>
<head>
<title>API Call - processPayment</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, 
                },
            
            "card": {
                "card_no": 0, 
                "card_type": "cash", 
                "payment_type": "", 
                "card_name": "", 
                "card_number": "", 
                "card_security": "", 
                "card_month": 0, 
                "card_year": 0, 
                "customer_no": 0, 
                "status": "valid", 
                "card_description": "", 
                "ip_address": "", 
                "sessionid": "", 
                "user_info": "", 
                "device_info": "", 
                "address1": "", 
                "address2": "", 
                "city": "", 
                "state": "", 
                "zip_code": "", 
                "company_no": 0, 
                "created_on": "1/1/1900 12:00 AM", 
                "modified_on": "1/1/1900 12:00 AM", 
                "payment_id": "", 
                },
            
            "paymentInfo": {
                "transaction_no": 0, 
                "chargeAmount": 0, 
                "isPayment": "true", 
                "isRefund": false, 
                "allowDuplicate": false, 
                "reference_type": "", 
                "reference_no": 0, 
                "processor": "", 
                "payment_processor_no": 0, 
                "group_id": "", 
                "affiliate_no": 0, 
                "transaction_id": "", 
                "notes": "", 
                "subscription_no": 0, 
                "purchase_order": "", 
                "company_no": 0, 
                "user_no": 0, 
                },
            
      };
      
      $.ajax({
         url: 'https://api.peoplevine.com/transaction.asmx/processPayment',
         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/transaction.asmx/processPayment");
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> },card: {card_no: <double>, card_type: <string>, payment_type: <string>, card_name: <string>, card_number: <string>, card_security: <string>, card_month: <double>, card_year: <double>, customer_no: <double>, status: <string>, card_description: <string>, ip_address: <string>, sessionid: <string>, user_info: <string>, device_info: <string>, address1: <string>, address2: <string>, city: <string>, state: <string>, zip_code: <string>, company_no: <double>, created_on: <dateTime>, modified_on: <dateTime>, payment_id: <string> },paymentInfo: {transaction_no: <double>, chargeAmount: <double>, isPayment: <boolean>, isRefund: <boolean>, allowDuplicate: <boolean>, reference_type: <string>, reference_no: <double>, processor: <string>, payment_processor_no: <double>, group_id: <string>, affiliate_no: <double>, transaction_id: <string>, notes: <string>, subscription_no: <double>, purchase_order: <string>, company_no: <double>, user_no: <double> }}";

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/transaction.asmx/processPayment")
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> },card: {card_no: <double>, card_type: <string>, payment_type: <string>, card_name: <string>, card_number: <string>, card_security: <string>, card_month: <double>, card_year: <double>, customer_no: <double>, status: <string>, card_description: <string>, ip_address: <string>, sessionid: <string>, user_info: <string>, device_info: <string>, address1: <string>, address2: <string>, city: <string>, state: <string>, zip_code: <string>, company_no: <double>, created_on: <dateTime>, modified_on: <dateTime>, payment_id: <string> },paymentInfo: {transaction_no: <double>, chargeAmount: <double>, isPayment: <boolean>, isRefund: <boolean>, allowDuplicate: <boolean>, reference_type: <string>, reference_no: <double>, processor: <string>, payment_processor_no: <double>, group_id: <string>, affiliate_no: <double>, transaction_id: <string>, notes: <string>, subscription_no: <double>, purchase_order: <string>, company_no: <double>, user_no: <double> }}"
        
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 *cardDic = [NSDictionary dictionaryWithObjectsAndKeys:
            <double>, @"card_no",
            <string>, @"card_type",
            <string>, @"payment_type",
            <string>, @"card_name",
            <string>, @"card_number",
            <string>, @"card_security",
            <double>, @"card_month",
            <double>, @"card_year",
            <double>, @"customer_no",
            <string>, @"status",
            <string>, @"card_description",
            <string>, @"ip_address",
            <string>, @"sessionid",
            <string>, @"user_info",
            <string>, @"device_info",
            <string>, @"address1",
            <string>, @"address2",
            <string>, @"city",
            <string>, @"state",
            <string>, @"zip_code",
            <double>, @"company_no",
            <dateTime>, @"created_on",
            <dateTime>, @"modified_on",
            <string>, @"payment_id", nil];
    
    NSDictionary *paymentInfoDic = [NSDictionary dictionaryWithObjectsAndKeys:
            <double>, @"transaction_no",
            <double>, @"chargeAmount",
            <boolean>, @"isPayment",
            <boolean>, @"isRefund",
            <boolean>, @"allowDuplicate",
            <string>, @"reference_type",
            <double>, @"reference_no",
            <string>, @"processor",
            <double>, @"payment_processor_no",
            <string>, @"group_id",
            <double>, @"affiliate_no",
            <string>, @"transaction_id",
            <string>, @"notes",
            <double>, @"subscription_no",
            <string>, @"purchase_order",
            <double>, @"company_no",
            <double>, @"user_no", nil];
    
    NSDictionary *finalDic = [NSDictionary dictionaryWithObjectsAndKeys:
                authDic, @"auth",cardDic, @"card",paymentInfoDic, @"paymentInfo", nil];
 
    NSMutableDictionary* jsonString = nil;
    jsonString = [NSJSONSerialization JSONObjectWithData: findalDic options:NSJSONReadingMutableContainers];
    
    NSMutableData *bodyData = [NSMutableData dataWithData:[jsonString dataUsingEncoding:NSUTF8StringEncoding]];
    
    NSString *urlString = @"https://api.peoplevine.com/transaction.asmx/processPayment";
    
    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"