Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
BluePay-Sample-Code/C++/Get_Data/Single_Transaction_Query.cpp
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
40 lines (32 sloc)
1.04 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// BluePay C++ Sample code. | |
// | |
// This code sample runs a report that grabs a single transaction | |
// from the BluePay gateway based on certain criteria. | |
// See comments below on the details of the report. | |
// If using TEST mode, only TEST transactions will be returned. | |
#include "Single_Transaction_Query.h" | |
#include "../bluepay-cpp/BluePay.h" | |
#include <iostream> | |
using namespace std; | |
void singleTransactionQuery(){ | |
string accountId = "Merchant's Account ID Here"; | |
string secretKey = "Merchant's Secret Key Here"; | |
string mode = "TEST"; | |
string transactionID = "Transaction ID here"; | |
BluePay report( | |
accountId, | |
secretKey, | |
mode | |
); | |
report.getSingleTransQuery( | |
transactionID, // ID of previous transaction | |
"2015-01-01", // Search Date Start: YYYY-MM-DD | |
"2015-05-30", // Search Date End: YYYY-MM-DD | |
"1" // Do not include errored transactions in search? Yes | |
); | |
// Makes the API Request with Blue | |
report.process(); | |
// Reads the responses from BluePay if transaction was approved | |
cout << report.getResponse(); | |
} | |