Merchant Daily Summary Report

Description

Provides a listing of transactions Originated and Settled for a specific day. This is also a daily emailed report.
You can use this in the Active Reports to pull your data directly.

You can get the direct data or the report in HTML format for display in a web browser.

Report Parameters

Name

Type

Max. Length

Required

Description

CoNo

String

10

 Yes

Company Number

EffDate

DateTime

 

Yes

The date the transaction is effective. This is typically the business day following today’s date.

TodaysDate

DateTime

 

Yes

The date the report is being requested.

If you pass in EffDate of 1900-01-01 you will trigger the test response. This is useful for testing, if you have a new merchant with no data, we will return a sample set of data to you.

Example Request

/EpnPublic/ActiveReports/GetReport.aspx?&Action=Report&Token={YourToken}&OutputType=XML&ReportPermDesc=DailySummary&Parameter_CoNo={MerchantNumber}&Parameter_EffDate=2024-02-01&Parameter_TodaysDate=2024-01-31

SDK Example

string token = Token.GetToken("{MerchantNumber}", "{MerchantPassword}");
Console.WriteLine(token);
//Set parameters for report
D.ReportDefinition.Parameter[] reportParams = new D.ReportDefinition.Parameter[]
{
  new D.ReportDefinition.Parameter { PermDesc = "CoNo", ParamValue = "{MerchantNumber}" },
  new D.ReportDefinition.Parameter { PermDesc = "TodaysDate", ParamValue = "2024-01-01" },
  new D.ReportDefinition.Parameter { PermDesc = "EffDate", ParamValue = "2024-01-02" },
};
//Run report
Response resp = GetReport.RunReport(token, "MerchantInformation", reportParams,
D.ReportDefinition.OutputType.HTML);
Console.WriteLine(resp.I.SData);