{"info":{"_postman_id":"fda267e4-0945-43d2-bbc7-c34dada1ed2c","name":"Reporting API Development Guide","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"description":"<html><head></head><body></body></html>","owner":"19035881","collectionId":"fda267e4-0945-43d2-bbc7-c34dada1ed2c","publishedId":"2s946fdCDH","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"336699"},"publishDate":"2023-07-14T20:09:25.000Z"},"item":[{"name":"Overview","item":[{"name":"Introduction","item":[],"id":"a9eb075c-4db3-4983-915f-09a4226d58d6","description":"<p>The BridgePay Public Reporting API provides consumers with the ability to request transaction data via a SOAP request made to the service. The user can provide data they wish to use as a filter in the parameter to the SOAP method and will receive a response containing the data they requested.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"24667e13-7bf9-4506-8050-2c09806715a2"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"b013b649-6062-4176-a6dd-28825ce51274"}}],"_postman_id":"a9eb075c-4db3-4983-915f-09a4226d58d6"},{"name":"Connection Strings","item":[],"id":"43b6b009-e59a-4238-8199-eb7d8f46eff8","description":"<p>The reporting service can be accessed on BridgePay’s test server at the following service address:</p>\n<p><a href=\"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc\">https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc</a></p>\n<p>To obtain the service definition, simply add <strong>?wsdl</strong> to the end of the service address.</p>\n<p><a href=\"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc\">https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc?wsdl</a></p>\n<ul>\n<li>Service Name:<ul>\n<li><strong>Bridgepay.Reporting.API.ReportingAPI</strong></li>\n</ul>\n</li>\n<li>Endpoint Names:<ul>\n<li><strong>reportingapi_v1</strong></li>\n<li><strong>reportingapi_v2</strong></li>\n</ul>\n</li>\n<li>Contracts:<ul>\n<li><strong>Bridgepay.Reporting.API.IReportingAPIV1</strong></li>\n<li><strong>Bridgepay.Reporting.API.IReportingAPIV2</strong></li>\n</ul>\n</li>\n</ul>\n<p>Please Note: The latest version (highest number) of the API should be used for new integrations, olderversions are left in place in order to not invalidate previous integrations.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"a56a5c8f-7d7e-422a-a171-5bf73e188f14"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"70192912-27b5-40ae-a97a-7c155f260df1"}}],"_postman_id":"43b6b009-e59a-4238-8199-eb7d8f46eff8"},{"name":"Key Elements","item":[],"id":"361bc5b4-fd21-4a26-a143-df012b3ee4a6","description":"<p>Skip and Take fields are required when calling the API. Transaction Rows and Batch Details will be limited to 1000 at a time. Using take and Skip you can obtain larger data sets in multiple calls. For instance, if 1,500 records are available based on the filter information sent in, the first 1000 records would be obtained by sending in 1000 for Take and 0 for skip. The next 500 records would be obtained by sending in Take for 500 and skip for 1000. See the code example at the end of this document for an<br />example</p>\n<h2 id=\"v1-data-contracts\">V1 Data Contracts</h2>\n<p>The Reporting API provides three data contracts. One for the incoming request and two for the response from the request. When making a request, the consumer must provide a TransctionRowFilter object. When receiving the response, the consumer will get a TransactionSet object which will contain a collection of TransactionRow objects. Because of the similarities between V1 and V2, information for V2 has been included in the TransactionRowFilter. The data contracts are described in more detail below.</p>\n<p>At this time, the Public Reporting API v1 provides only one operation contract for retrieving transactional data.</p>\n<ul>\n<li><strong>PublicGetTransactionsByFilter</strong> (<strong>Credentials</strong> credentials, <strong>TransactionRowFilter</strong> filterObject)<ul>\n<li>This method returns a TransactionSet object as described above.</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"v2-data-contracts\">V2 Data Contracts</h2>\n<p>The Reporting API provides two data contracts. Two for the incoming request and two for the response from the request. When making a PublicGetBatchListByFilter request, the consumer must provide an OrgBatchListFilter object. When receiving the response, the consumer will get an OrgBatchListSet object which will contain a collection of OrgBatchListDetail objects. When making a PublicGetTransactionsByFilterV2 request, the consumer must provide a TransctionRowFilter V2 object. When receiving the response, the consumer will get a TransactionSet object which will contain a collection of TransactionRow objects. The only differences between V1 and V2 of PublicGetTransactionsByFilter is a deprecated field (SortBy) has been removed and ContractID has been added. Please refer back to TransactionRow information in V1 for the V2 field changes. The BatchList data contracts are described in more detail in the Request and Response Information Section.</p>\n<p>At this time, the Public Reporting API v2 provides two operation contracts for retrieving transactional data and batch details.</p>\n<ul>\n<li><strong>PublicGetBatchListByFilter</strong> (<strong>Credentials</strong> credentials, <strong>BatchListFilter</strong> filterObject)<ul>\n<li>This method returns a BatchSet object as described above.</li>\n</ul>\n</li>\n<li><strong>PublicGetTransactionsByFilterV2</strong> (<strong>Credentials</strong> credentials, <strong>TransacitonRowFilterV2</strong> filterObject)<ul>\n<li>This method returns a TransactionSet object as described above.</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"34814ba2-c185-4cf5-8b55-a55ad3e10322"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"4cbe795b-d241-4adf-80f4-3227869ea173"}}],"_postman_id":"361bc5b4-fd21-4a26-a143-df012b3ee4a6"},{"name":"Authentication Information","item":[],"id":"c027da51-73c9-49d2-847f-39d28d79274e","description":"<p>Credentials are required to access the Public Reporting API. Please reach out to your integration analyst to obtain them.</p>\n<ul>\n<li>User Name and Password must be valid otherwise an Invalid Credentials message is returned.</li>\n<li>If no default Organization ID is set then one of the following must be provided otherwise a data access denied error is returned: OrganizationID, MerchantAccountID, MerchantID, and ResellerID<ul>\n<li>Note - Per the new boarding process only Merchant Account users can have default merchant accounts.</li>\n</ul>\n</li>\n<li>If the above checks pass the following data access rules are applied:<ul>\n<li>Merchant Account Users only have access to data within their merchant account.</li>\n<li>Merchant Group Users have access to data within their merchant group where accesshas been granted, reporting API results will exclude data associated to merchant accounts where access has not been granted.</li>\n<li>Sales Agent Users have access to data within their sales agent hierarchy where access has been granted, reporting API results will exclude data associated to merchant accounts where access has not been granted.</li>\n<li>Reseller Users have access to data within their reseller hierarchy where access has been granted, reporting API results will exclude data associated to merchant accounts where access has not been granted.</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"05958795-6c4d-4fa2-a67d-cada3ef7d868"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"ab814b64-712f-49b6-9e8c-e1904f7b70d4"}}],"_postman_id":"c027da51-73c9-49d2-847f-39d28d79274e"}],"id":"1509f900-5e63-4bb0-8823-37390af5f40e","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"a8cc22bc-8d6f-461f-a0cd-4489cbfa7d1c"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"168b9581-354d-449a-a9f6-50734d95b063"}}],"_postman_id":"1509f900-5e63-4bb0-8823-37390af5f40e","description":""},{"name":"Integration Support","item":[],"id":"3e226e13-f42e-4e22-a9ac-64720737641d","description":"<p><em><strong>A test or live merchant account with BridgePay is necessary to successfully process transactions. To acquire a test account, complete the test account request form located on the</strong></em> <a href=\"https://bridgepaynetwork.force.com/TA/s/test-account-request\">BridgePay Integrator Support Portal</a><em><strong>.</strong></em></p>\n<p>To review additional documentation, please visit the <a href=\"https://bridgepaynetwork.atlassian.net/wiki/spaces/DC/overview?homepageId=191824013\">Developer Center</a>. For Integrations Assistance, please <a href=\"https://bridgepaynetwork.force.com/is/s/enteracase\">Enter a Case</a>.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"2ac42416-02bc-41dd-af8a-b052eb1459ff"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"5712b78b-4300-42e7-a2de-7ca8b7c49fb3"}}],"_postman_id":"3e226e13-f42e-4e22-a9ac-64720737641d"},{"name":"Request & Response Information","item":[],"id":"247681ae-ae1d-4240-907c-7c83a4cac535","description":"<h1 id=\"publicgettransactionsbyfilterv1\">PublicGetTransactionsByFilterV1</h1>\n<h2 id=\"request\">Request</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Required</strong></th>\n<th><strong>Parameter Name</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Validations</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comparison Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>O</td>\n<td>AccountHolderName</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided limits the results to those transactions that have an account / c ard h older name matching the submitted value exactly.</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>AccountTypeIndicator</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided limits the results to those transactions with the matching Account Type Indicator.  <br />  <br />Valid Values:  <br />A = Amex  <br />B = Bank Card  <br />C = CUP  <br />D = Discover  <br />E = EBT  <br />G = Gift  <br />M = Mastercard  <br />N = Diners  <br />V = Visa</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>AccountTypeTransform</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided limits the results to those transactions with the matching AccountTypeTransform.  <br />  <br />Valid Values:  <br />AMEX  <br />FSA VISA  <br />FSA MASTERCARD  <br />VISA  <br />MASTER CARD  <br />DINERS CLUB  <br />BANK CARD DEBIT  <br />PAPER CHECK  <br />CHECKING  <br />SAVINGS  <br />DISCOVER  <br />CASH BENEFIT  <br />FOOD STAMPS  <br />GIFT CARD  <br />CASH  <br />CHINA UNIONPAY</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>AmountRangeFrom</td>\n<td>Integer (Implied Decimal)</td>\n<td>Greater Than or Equal To</td>\n<td>When provided, limits the results to those transactions that meet or exceed the amount provided. Integer 100 is $1.00</td>\n<td>GTE</td>\n</tr>\n<tr>\n<td>O</td>\n<td>AmountRangeTo</td>\n<td>Integer (Implied Decimal)</td>\n<td>Less Than or Equal To</td>\n<td>When provided, limits the results to those transactions that are less than or equal to the amount provided. Integer 100 is $1.00</td>\n<td>LTE</td>\n</tr>\n<tr>\n<td>O</td>\n<td>AuthorizationCode</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided limits the results to those transactions that have an authorization code returned from the processor matching the submitted value exactly.</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>BatchID</td>\n<td>Integer</td>\n<td>Exact Match</td>\n<td>When provided limits the results to those transactions that are part of the requested batch.</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>CardBIN</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>Up to the first 8 digits of the card or account number.</td>\n<td></td>\n</tr>\n<tr>\n<td>O</td>\n<td>CardBrand</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided limits the results to those transactions that match the submitted value exactly.  <br />  <br />Valid Values:  <br />AMEX, DISCOVER, MASTERCARD, DINERS and VISA</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>CardholderFirstName</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided, limits the results to those transactions where the first name matches the data provided.</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>CardholderLastName</td>\n<td>String</td>\n<td>Partial Match</td>\n<td>When provided, limits the results to those transactions where the last name contains the data provided.</td>\n<td>CONTAINS</td>\n</tr>\n<tr>\n<td>O</td>\n<td>CardIdentifier</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>Displays whether the card is debit or credit.</td>\n<td></td>\n</tr>\n<tr>\n<td>O</td>\n<td>CardType</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>The brand of the card (Visa, Mastercard, Discover, Amex, etc).</td>\n<td></td>\n</tr>\n<tr>\n<td>O</td>\n<td>ClerkId</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided, limits the results to those transactions where the clerk id matches the data provided.</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>CustomFields</td>\n<td>List (KeyValueOfstringstring)</td>\n<td>Exact Match (Key and value)</td>\n<td>When provided limits the results to those transactions where the Key Value pair match exactly the data provided. Attempting to filter by custom fields is only applicable if custom fields were previously defined via the Boarding API</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>CustomerNumber</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided, limits the results to those transaction where the customer number matches the data provided. CustomerNumber is CustomerAccountCode in BridgeComm API</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>DateRangeFrom</td>\n<td>DateTime (YYYY-MM-DDTHH:MM:SS)</td>\n<td>On or After</td>\n<td>When provided, limits the results to those transactions whose sale dates are on or after the date and timestamp provided.</td>\n<td>GTE</td>\n</tr>\n<tr>\n<td>O</td>\n<td>DateRangeTo</td>\n<td>DateTime (YYYY-MM-DDTHH:MM:SS)</td>\n<td>On or Before</td>\n<td>When provided, limits the results to those transactions whose sale dates are on or before the date and timestamp provided.</td>\n<td>LTE</td>\n</tr>\n<tr>\n<td>O</td>\n<td>EndPartialAccountNumber</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided, limits the results where the last four of the account/card number match the data provided</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>EntryModeTransform</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided limits the results to EntryModes as defined.  <br />  <br />Valid Values:  <br />SWIPE, CHIP READ, KEYED</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>ExcludePaymentMethod</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided, excludes transactions from the results with the provided Account Type Definition.  <br />  <br />See the Account Type Definitions table found <a href=\"https://\">here</a>.</td>\n<td>NOTEQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>ExcludeResponseCode</td>\n<td>String</td>\n<td>Exact Match (1 or 0), Must be used with TransResults field</td>\n<td>When provided, modifies the behavior of the TransResults filter. See the TransResults field for more information.</td>\n<td>N/A</td>\n</tr>\n<tr>\n<td>O</td>\n<td>ExcludeVoid</td>\n<td>Boolean</td>\n<td>Exact Match</td>\n<td>When provided, limits the results to a single transaction that matches the ID provided. This is the Gateway Transaction ID received in the Transaction API response.</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>FeeIsSurcharge</td>\n<td>Boolean</td>\n<td>ExactMatch</td>\n<td>When prov ided, limits the results to those where FeeIsSurcharge matches the boolean value provided.</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>InvoiceNumber</td>\n<td>String</td>\n<td>ExactMatch</td>\n<td>When provided, limits the results to those transactions whose InvoiceNumber matches the data provided.</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>MerchantAccountID</td>\n<td>Integer</td>\n<td>Exact Match</td>\n<td>When provided, limits the results to those transactions processed for the provided BridgePay Merchant Account ID. This is the Merchant Account Code used in the BridgeComm API Request. This value cannot be used with MerchantId.</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>MerchantID</td>\n<td>Integer</td>\n<td>Exact Match</td>\n<td>When provided, limits the results to those transactions processed for the provided BridgePay Merchant ID This is the Merchant Account used in the BridgeComm API Request. This value cannot be used with MerchantAccountId.</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>OrderByList</td>\n<td>List (KeyValueOfstringstring)</td>\n<td>Exact Match (Key and value)</td>\n<td>When provided, results will sort by the vaue element in either 'Ascending' or 'Descending' order. This property replaces SortBy.  <br />  <br />Example:  <br />  <br />BatchId  <br />Descending</td>\n<td>N/A</td>\n</tr>\n<tr>\n<td>O</td>\n<td>OrganizationId</td>\n<td>Integer</td>\n<td>Exact Match</td>\n<td>When provided, limits the results to those transactions whose Organization ID matches the data provided. OrganizationId is passed back in the BridgeComm API Response</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>PaymentMethodID</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided, limits the results to those transactions whose Payment Method ID matches the data provided. Two letter code that identifies the payment method transaction type.  <br />  <br />AC (Amex),BC (Bank Checking), BD (Bank Card Debit), BS (Bank Savings), DC(Discover Credit), DD (Discover Debit), EC(EBT Cash Benefit), EF (FoodStamps), FL (Fleet One), GF (Fuelman Fleet Wide), GG (General Gift), MC (MasterCard Credit), MD (MasterCard Debit), MF (MasterCard Fleet), MP (MasterCard Prepaid), NC (Diner’sClub), VC (Visa Credit), VD (Visa Debit), VF (Voyager),VP (Visa Prepaid), VS (VisaFleet), WX (WrightExpress)</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>PaymentMethodIndicator</td>\n<td>String</td>\n<td>Exact Match (Second Character of PayMethodID above)</td>\n<td>When provided, limits the results to those transactions whose Payment Method Indicator matches the data provided</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>PaymentMethodTransform</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided, limits the results to those payment methods.  <br />  <br />Valid Values:  <br />ACH, CASH, CHECK, CREDIT, DEBIT, EBT, GIFT</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>PurchaseOrderNumber</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided, limits the results to those transactions whose Purchase Order Number matches the data provided.</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>ResellerID</td>\n<td>Integer</td>\n<td>Exact Match</td>\n<td>When provided, limits the results to those transactions processed for the provided BridgePay Reseller ID. This is the reseller code in merchant boarding</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>ResponseCode</td>\n<td>String</td>\n<td>PartialMatch</td>\n<td>When provided, limits the results to those transactions where the response code contains the data provided.  <br />This is the 3 digit code as part of the Gateway Message returned in BridgeComm API Response Code Table available in the appendix.</td>\n<td>CONTAINS</td>\n</tr>\n<tr>\n<td>O</td>\n<td>SettlementStatus</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided, limits the results to those transactions that match the status provided. Settled or Unsettled are acceptable values.</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>R</td>\n<td>Skip</td>\n<td>Integer</td>\n<td></td>\n<td>Determines how many records should be skipped before returning results. Required for paging.</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>R</td>\n<td>Take</td>\n<td>Integer</td>\n<td></td>\n<td>Determines how many records will be returned in the results.</td>\n<td>N/A</td>\n</tr>\n<tr>\n<td>O</td>\n<td>TransactionSourceIP</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided, limits the results to those transactions that were sent from the IP address provided in the filter.  <br />  <br />Example: 192.168.15.155:65010</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>TransactionStatus</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided, limits the results to those transactions whose current status matches the filter provided.  <br />  <br />Valid Values:  <br />Open, Confirmed and Voided</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>TransactionType</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided, limits the results to those transactions whose current Type matches the filter provided.  <br />  <br />Valid Values:  <br />Auth, Sale, Refund, Activate, Deactivate, Reactivate, Inquiry, Unknown, Error, Decline</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>TransactionTypeTransform</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided, limits the results to those transactions whose current Type matches the filter provided.  <br />  <br />Auth Only, Sale, Refund, Activate, Deactivate, Reactivate, Inquiry, Unknown, Error, Decline, Void, Verification</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>TransResults</td>\n<td>String</td>\n<td>Multi-Match (comma separated list)</td>\n<td>When provided, limits the results to those transactions where the BridgePay Response Code matches one of the provided filters. See note below.</td>\n<td>INLIST</td>\n</tr>\n<tr>\n<td>O</td>\n<td>UseMerchantTimeZone</td>\n<td>Boolean</td>\n<td>Exact Match (1 or 0)</td>\n<td>When provided, setting the value to 1 (true) will cause the API to display date time fields as the Time Zone configured for the merchant instead of the Eastern Time Zone default.</td>\n<td>N/A</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> The TransResults field works by mapping the BridgeComm 5-digit response code back to the gateway response code (the ResponseCode field in this contract). In some cases, more than one mapping may exist for a given code. It is recommended that you use the ResponseCode field for more granular filtering.</p>\n<p>The ExcludeTransResults field can modify the behavior of the TransResults field by establishing a “not in” condition. See the Helpful Tips section for more information.</p>\n<p>For more information about the 5-digit BridgeComm response codes, see the BridgeComm documentation.</p>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"transactionset\">TransactionSet</h3>\n<p>A set of transaction rows returned by the provided filter data.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter Name</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RecordAuthSum</td>\n<td>Integer</td>\n<td>The total sum of Authorized amount of records that match the filter, excluding the Take and Skip fields.</td>\n</tr>\n<tr>\n<td>RecordCount</td>\n<td>Integer</td>\n<td>The total number of records that match the filter, excluding the Take and Skip fields.</td>\n</tr>\n<tr>\n<td>RecordSum</td>\n<td>Integer</td>\n<td>The total sum of Settlement amount of records that match the filter, excluding the Take and Skip fields.</td>\n</tr>\n<tr>\n<td>TransactionList</td>\n<td>List (TransactionRow)</td>\n<td>A collection of TransactionRow objects. See below.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"transactionrow\">TransactionRow</h3>\n<p>A transaction returned within a set, can be one or many.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter Name</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AVSMessage</td>\n<td>String</td>\n<td>AVS Message from Gateway</td>\n</tr>\n<tr>\n<td>AVSResultCode</td>\n<td>String</td>\n<td>AVS Result Code from Gateway</td>\n</tr>\n<tr>\n<td>AccountHolderName</td>\n<td>String</td>\n<td>Account Holder Name</td>\n</tr>\n<tr>\n<td>AccountType</td>\n<td>String</td>\n<td>1 character identifier that determines the type of account. Valid values are R (Branded Credit Card), E (Branded debit checking card), V (Branded debit savings card), D (Unbranded debit checking card), I (Unbranded debit savings card), S (Bank savings account), C (Bank checking account), F (EBT food stamp), H (EBT cash benefit), G (Gift card), L (Fleet), A (Cash), K (Check)</td>\n</tr>\n<tr>\n<td>AccountTypeIndicator</td>\n<td>String</td>\n<td>Account Type Indicator</td>\n</tr>\n<tr>\n<td>AccountTypeTransform</td>\n<td>String</td>\n<td>Account Type Transform</td>\n</tr>\n<tr>\n<td>AuthCode</td>\n<td>String</td>\n<td>The Authorization Code provided by the acquiring bank.</td>\n</tr>\n<tr>\n<td>AuthorizedAmount</td>\n<td>Integer (Implied Decimal)</td>\n<td>The amount that was actually authorized. This may be different from the requested amount (e.g. partial approval). Integer 100 is $1.00.</td>\n</tr>\n<tr>\n<td>BatchDateTime</td>\n<td>DateTime</td>\n<td>The close date of the batch that contains the transaction.</td>\n</tr>\n<tr>\n<td>BatchId</td>\n<td>Integer</td>\n<td>The gateway Batch ID that contains this transaction.</td>\n</tr>\n<tr>\n<td>CVVMessage</td>\n<td>String</td>\n<td>CVV Message from Gateway</td>\n</tr>\n<tr>\n<td>CVVResponseCode</td>\n<td>String</td>\n<td>CVV Response Code from Gateway</td>\n</tr>\n<tr>\n<td>CardBrand</td>\n<td>String</td>\n<td>Description of the card brand used.  <br />Valid Values: AMEX, DISCOVER, MASTERCARD, DINERS and VISA</td>\n</tr>\n<tr>\n<td>CardClass</td>\n<td>String</td>\n<td>Displays the tender type used to process a transaction. List of values: Credit, Debit, Gift, Prepaid, EBT, Fleet, None</td>\n</tr>\n<tr>\n<td>ClerkId</td>\n<td>String</td>\n<td>The user supplied Clerk ID (or the Merchant Account Username used to process the transaction if no Clerk ID was provided)</td>\n</tr>\n<tr>\n<td>ClerkName</td>\n<td>String</td>\n<td>**RESERVED FOR FUTURE USE.  <br />**The user supplied name of the Clerk who processed the transaction.</td>\n</tr>\n<tr>\n<td>CustomerAddress</td>\n<td>String</td>\n<td>The user provided Street Address for the transaction.</td>\n</tr>\n<tr>\n<td>CustomerEmail</td>\n<td>String</td>\n<td>The user provided E-Mail Address for the transaction.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td>String</td>\n<td>The user provided Customer ID.  <br />This is what was provided in the BridgeComm Request as CustomerAccountCode.</td>\n</tr>\n<tr>\n<td>CustomerZip</td>\n<td>String</td>\n<td>The user provided Zip Code for the transaction.</td>\n</tr>\n<tr>\n<td>EntryModeId</td>\n<td>String</td>\n<td>Identifies how the transaction was processed.  <br />Valid values are:  <br />T1 (Track 1 Data), T2 (Track 2 Data), T3 (Track 1 and 2 Data), KD (Keyed), CD (Chip Data)</td>\n</tr>\n<tr>\n<td>EntryModeTransform</td>\n<td>String</td>\n<td>Human readable explanation of EntryModeId  <br />Example: SWIPE, KEYED, CHIP READ</td>\n</tr>\n<tr>\n<td>ExpirationDate</td>\n<td>String</td>\n<td>Month and Year of the expiration of the card in MMYY format.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>String</td>\n<td>The first name of the account/card holder.</td>\n</tr>\n<tr>\n<td>GrandParentId</td>\n<td>Integer</td>\n<td>If it exists this would be two hierarchy levels higher than the organization Id, this is not the same thing as the MerchantId or MerchantAccoundId.  <br />EX:  <br />Hierarchy when Sales Agent level is in use:  <br />Reseller (GrandParent)-&gt; Sales Agent (Parent)-&gt; Merchant Group (Child)  <br />  <br />Hierarchy when Reseller for direct merchants in use without Sales Agent level use:  <br />Reseller (GrandParent)-&gt; Merchant Group (Parent)-&gt; Merchant Account (Child)</td>\n</tr>\n<tr>\n<td>GreatGrandParentId</td>\n<td>Integer</td>\n<td>If it exists this would be three hierarchy levels higher than the organization Id, this is not the same thing as the MerchantId or MerchantAccoundId  <br />EX:  <br />Hierarchy when Sales Agent level is in use:  <br />Reseller (GreatGrandParent)-&gt; Sales Agent (GrandParent)-&gt; Merchant Group(Parent)-&gt; Merchant Account (Child)</td>\n</tr>\n<tr>\n<td>HolderType</td>\n<td>String</td>\n<td>A one-character code identifying if the payment method was a personal card (P) or a business/corporate card (O).</td>\n</tr>\n<tr>\n<td>IIASQualified</td>\n<td>Boolean</td>\n<td>IIAS Qualified status True or False.</td>\n</tr>\n<tr>\n<td>InvoiceNumber</td>\n<td>String</td>\n<td>The user provided Invoice Number</td>\n</tr>\n<tr>\n<td>IsoCurrencyCode</td>\n<td>String</td>\n<td>Example: USD</td>\n</tr>\n<tr>\n<td>LastFour</td>\n<td>String</td>\n<td>The last four digits of the account number.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>String</td>\n<td>The last name of the account/card holder.</td>\n</tr>\n<tr>\n<td>MaskedAccount</td>\n<td>String</td>\n<td>A masked version of the account number used to process the transaction.</td>\n</tr>\n<tr>\n<td>Memo</td>\n<td>String</td>\n<td>The user provided memo</td>\n</tr>\n<tr>\n<td>MerchantAccountId</td>\n<td>Integer</td>\n<td>The merchant account ID for the transaction. IN the BridgeComm API request this would be the Merchant Account Code.</td>\n</tr>\n<tr>\n<td>MerchantAddress</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>MerchantAddress2</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>MerchantAddress3</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>MerchantCategoryCode</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>MerchantCity</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>MerchantEmail</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>MerchantId</td>\n<td>Integer</td>\n<td>The merchant ID for the transaction. In the BridgeComm API request this would be the Merchant Account.</td>\n</tr>\n<tr>\n<td>MerchantName</td>\n<td>String</td>\n<td>The name associated with the Merchant Account.</td>\n</tr>\n<tr>\n<td>MerchantPhone</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>MerchantState</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>MerchantZip</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>NetAmount</td>\n<td>Integer</td>\n<td>NetAmount is the Total Amount–(Tip Amount + Duty Amount + Tax Amount) or if Tax Amount is not present: Total Amount–(Tip Amount + Duty Amount + Local Tax Amount + National Tax Amount).  <br />Will show as a negative for Push payments and blind refunds. Note: When present for Level III transactions.</td>\n</tr>\n<tr>\n<td>NetworkMID</td>\n<td>String</td>\n<td>In the BridgeComm API response this would be NetworkMerchantId</td>\n</tr>\n<tr>\n<td>NetworkReferenceNumber</td>\n<td>String</td>\n<td>In the BridgeComm API response this would be the NetworkReferenceNumber</td>\n</tr>\n<tr>\n<td>NetworkTerminalId</td>\n<td>String</td>\n<td>In the BridgeComm API response this would be the NetworkTerminalId</td>\n</tr>\n<tr>\n<td>OrganizationId</td>\n<td>Integer</td>\n<td>In the BridgeComm API response this would be the OrganizationId</td>\n</tr>\n<tr>\n<td>ParentId</td>\n<td>Integer</td>\n<td>This is the OrganizationId of the entity above the OrganizationId the result came from.</td>\n</tr>\n<tr>\n<td>PaymentMethodId</td>\n<td>String</td>\n<td>Two letter code that identifies the payment method transaction type. Valid values: AC (Amex), BC (Bank Checking), BD (Bank Card Debit), BS (Bank Savings), DC (Discover Credit), DD (Discover Debit), EC (EBT Cash Benefit), EF (Food Stamps), FL (Fleet One), GF (Fuelman Fleet Wide), GG (General Gift), MC (Master Card Credit), MD (Master Card Debit), MF (Master Card Fleet), MP (Master Card Prepaid), NC (Diner’s Club), VC (Visa Credit), VD (Visa Debit), VF (Voyager), VP (Visa Prepaid), VS (Visa Fleet), WX (Wright Express)</td>\n</tr>\n<tr>\n<td>PaymentMethodIndicator</td>\n<td>String</td>\n<td>This is the second position of the PaymentMethodId</td>\n</tr>\n<tr>\n<td>PaymentMethodTransform</td>\n<td>String</td>\n<td>Value will be ACH, CASH, CHECK, CREDIT, DEBIT, EBT, GIFT</td>\n</tr>\n<tr>\n<td>ProcessorResponse</td>\n<td>String</td>\n<td>Description of the response provided by the acquiring bank.</td>\n</tr>\n<tr>\n<td>ProviderResponseCode</td>\n<td>String</td>\n<td>In the BridgeComm API response this would align with ProviderResponseCode, if a response code was provided.</td>\n</tr>\n<tr>\n<td>PurchaseOrderNumber</td>\n<td>String</td>\n<td>The user provided Purchase Order Number.</td>\n</tr>\n<tr>\n<td>ReceiptTagData</td>\n<td>String</td>\n<td>This is the receipt tag data as provided in the BridgeComm API response, Example: 4F:A000000025010403;95:0000008000;9F10:06020103A0B000;9B:E800;91:;8A:</td>\n</tr>\n<tr>\n<td>RemainingAmount</td>\n<td>Integer (Implied Decimal)</td>\n<td>The amount of the authorization that is remaining after partial refunds or voids have been applied.  <br />Integer 100 is $1.00</td>\n</tr>\n<tr>\n<td>RequestedAmount</td>\n<td>Integer (Implied Decimal)</td>\n<td>The amount that was requested to be authorized when the transaction was processed. Will show as a negative for Push payments and blind refunds.  <br />Integer 100 is $1.00</td>\n</tr>\n<tr>\n<td>ResellerId</td>\n<td>Integer</td>\n<td>The Reseller ID for the transaction.</td>\n</tr>\n<tr>\n<td>ResponseCode</td>\n<td>String</td>\n<td>The 3 character response code from the gateway. Example: A01 Approved. See the appendix for more information.</td>\n</tr>\n<tr>\n<td>SaleDateTime</td>\n<td>DateTime</td>\n<td>The date and time the transaction was processed.</td>\n</tr>\n<tr>\n<td>SettleAmount</td>\n<td>Integer (Implied Decimal)</td>\n<td>The amount of the transaction that was actually settled. This may be different than the requested amount and authorized amount if the transaction was settled for an amount different from the authorization.  <br />Integer 100 is $1.00</td>\n</tr>\n<tr>\n<td>SettlementStatus</td>\n<td>String</td>\n<td>Identifies whether the transaction has been settled yet or not.  <br />Valid values: Settled, Unsettled</td>\n</tr>\n<tr>\n<td>TaxAmount</td>\n<td>Integer (Implied Decimal)</td>\n<td>The tax amount that was requested to be authorized when the transaction was processed.  <br />Integer 100 is $1.00</td>\n</tr>\n<tr>\n<td>TerminalId</td>\n<td>String</td>\n<td>This currently ties to BridgeComm API field LaneCode, it is currently only in use for Account Inquiry transaction types.</td>\n</tr>\n<tr>\n<td>TipAmount</td>\n<td>Integer</td>\n<td>The part of the total sale that represents the tip</td>\n</tr>\n<tr>\n<td>Token</td>\n<td>String</td>\n<td>The Tokenized account/card number. Is used securely with the expiration date for subsequent transactions</td>\n</tr>\n<tr>\n<td>TransactionAux</td>\n<td>Object</td>\n<td>Object contains information on ContractId (from recurring billing), Id, OriginatingTechnologySource, and SoftwareVendor.</td>\n</tr>\n<tr>\n<td>TransactionCustomFields</td>\n<td>List (CustomFields)</td>\n<td>A collection of provided Custom Fields for the transaction.</td>\n</tr>\n<tr>\n<td>TransactionId</td>\n<td>Long Integer</td>\n<td>The unique gateway ID for the transaction. In BridgeComm API response this is called GatewayTransactionID.</td>\n</tr>\n<tr>\n<td>TransactionIndustryType</td>\n<td>String</td>\n<td>A two - three character string that identifies what industry or SEC code the transaction was processed under.  <br />Valid values: RE (Retail), DM (Direct Marketing), EC (eCommerce), RS (Restaurant), LD (Lodging), PT (Petroleum), POP (Point Of Purchase), PPD (Prearranged Payment and Deposit), CCD (Corporate Credit or Debit), TEL (Telephone Initiated Entry), WEB (Internet Initiated Entry), C21 (Check 21)</td>\n</tr>\n<tr>\n<td>TransactionSourceIP</td>\n<td>String</td>\n<td>The IP Address and Port where the transaction originated.</td>\n</tr>\n<tr>\n<td>TransactionStatus</td>\n<td>String</td>\n<td>Identifies what state the transaction is in. Valid Values: Open (Unconfirmed Sale or Uncaptured Sale - Auth), Confirmed (Finalized for Settlement), and Voided or Refunded.</td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td>String</td>\n<td>Identifies the type of transaction that was requested. Valid values: Sale, Sale-Auth(authorization), Credit, Void, Refund, Increment (incremental authorization for Lodging and Car Rental)</td>\n</tr>\n<tr>\n<td>TransactionTypeTransform</td>\n<td>String</td>\n<td>Valid Values:  <br />Auth Only, Sale, Refund, Activate, Deactivate, Reactivate, Inquiry, Unknown, Error, Decline, Void, Verification</td>\n</tr>\n<tr>\n<td>VoidIndicator</td>\n<td>Boolean</td>\n<td>Indicates whether or not the transaction was voided before the batch was settled.  <br />Valid Values are: True or False</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"publicgettransactionsbyfilterv2\">PublicGetTransactionsByFilterV2</h1>\n<h2 id=\"request-1\">Request</h2>\n<p>The V2 request allows for the same fields as V1 with the addition of the following:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Required</strong></th>\n<th><strong>Parameter Name</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Validations</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comparison Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>O</td>\n<td>ContractID</td>\n<td>Integer</td>\n<td>Exact Match</td>\n<td>When provided, limits the results to those transactions where the ContractID used in recurring billing matches the data provided. Please Note: this is only available with PublicGetTransactionsByFilterV2</td>\n<td>EQUIV</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-1\">Response</h2>\n<p>The V2 request returns the same fields as V1 with the addition of the following TransactionRow element:</p>\n<h3 id=\"transactionrow-1\">TransactionRow</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter Name</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ContractID</td>\n<td>Integer</td>\n<td>The ContractID associated with the transaction.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"publicgetbatchlistbyfilterv2\">PublicGetBatchListByFilterV2</h1>\n<h2 id=\"request-2\">Request</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Required</strong></th>\n<th><strong>Parameter Name</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Validations</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Comparison Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>O</td>\n<td>BatchID</td>\n<td>String</td>\n<td>Exact Match</td>\n<td>When provided limits the results to those batches that have a Batch ID matching the submitted value exactly.</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>DateRangeFrom</td>\n<td>DateTime (YYYY-MM-DDTHH:MM:SS)</td>\n<td>On or After</td>\n<td>When provided, limits the results to those transactions whose sale dates are on or after the date and timestamp provided.</td>\n<td>GTEO</td>\n</tr>\n<tr>\n<td>O</td>\n<td>DateRangeTo</td>\n<td>DateTime (YYYY-MM-DDTHH:MM:SS)</td>\n<td>On or Before</td>\n<td>When provided, limits the results to those transactions whose sale dates are on or before the date and timestamp provided.</td>\n<td>LTE</td>\n</tr>\n<tr>\n<td>R</td>\n<td>IsProcessed</td>\n<td>Boolean</td>\n<td>true or false</td>\n<td>When provided, limits the results to those batches which have been settled from those not settled.</td>\n<td>EQUIV</td>\n</tr>\n<tr>\n<td>O</td>\n<td>OrderByList</td>\n<td>List (KeyValueOfstringOrderByEnum)</td>\n<td>Given a Transaction Property as the key, and Ascending or Descending as the value.</td>\n<td>When provided, the results will be sorted by the value in either 'Ascending' or 'Descending' order.  <br />Note: This property replaces SortBy.</td>\n<td>N/A</td>\n</tr>\n<tr>\n<td>O</td>\n<td>OrganizationId</td>\n<td>Integer</td>\n<td>Exact Match</td>\n<td>When provided, limits the results to those transactions whose Organization ID matches the data provided.</td>\n<td>EQUIV</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-2\">Response</h2>\n<h3 id=\"orgbatchlistset\">OrgBatchListSet</h3>\n<p>A set of batches returned by the provided filter data.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter Name</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BatchList</td>\n<td>List (OrgBatchListDetail)</td>\n<td>A collection of OrgBatchListDetail objects. See below.</td>\n</tr>\n<tr>\n<td>RecordCount</td>\n<td>Integer</td>\n<td>The total number of records that match the filter.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"orgbatchlistdetail\">OrgBatchListDetail</h3>\n<p>A batch returned by the provided filter data.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter Name</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BatchCount</td>\n<td>Integer (Nullable)</td>\n<td>Number of transactions in Detail record.</td>\n</tr>\n<tr>\n<td>BatchDateTime</td>\n<td>DateTime</td>\n<td>DateTime stamp of the Batch Record</td>\n</tr>\n<tr>\n<td>BatchId</td>\n<td>Long</td>\n<td>Batch ID</td>\n</tr>\n<tr>\n<td>BatchTotal</td>\n<td>Long (Nullable)</td>\n<td>Dollar Amount Total in Batch Record</td>\n</tr>\n<tr>\n<td>GatewayObjectId</td>\n<td>Integer (Nullable)</td>\n<td>Gateway Merchant Account Code</td>\n</tr>\n<tr>\n<td>GrandParentId</td>\n<td>Integer (Nullable)</td>\n<td>OrganizationID for Grand Parent of current Organization Id, this relates to Boarding API.</td>\n</tr>\n<tr>\n<td>GreatGrandParentId</td>\n<td>Integer (Nullable)</td>\n<td>Organization ID fro Great Grand parent of current Organization Id, this relates to Boarding API.</td>\n</tr>\n<tr>\n<td>IsProcessed</td>\n<td>Boolean</td>\n<td>Indicates if the batch is settled or not.  <br />Valid Values:  <br />True = Processed  <br />False = Not Processed</td>\n</tr>\n<tr>\n<td>OrganizationId</td>\n<td>Integer</td>\n<td>Organization ID that owns the Batch Record</td>\n</tr>\n<tr>\n<td>OrganizationName</td>\n<td>String</td>\n<td>Organization Name for Batch Record created during account setup.</td>\n</tr>\n<tr>\n<td>ParentId</td>\n<td>Integer (Nullable)</td>\n<td>Organization ID for parent of the Batch Record Owner.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"67fb956f-712a-4862-8e06-cc9dc18d7014"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"4437a2ce-e602-4cca-adf6-743780e48798"}}],"_postman_id":"247681ae-ae1d-4240-907c-7c83a4cac535"},{"name":"Specific Request Layouts","item":[{"name":"PublicGetTransactionsByFilterV1","event":[{"listen":"prerequest","script":{"id":"967b6d6d-2b94-4040-8a83-8f32849c2480","exec":[""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"f7750278-cd27-4693-b7b3-cb03b80d789a","exec":[""],"type":"text/javascript","packages":{}}}],"id":"793dec55-0d67-4b9d-adab-1a481832a8b5","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true,"content-type":true,"user-agent":true},"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"http://bridgepaynetsecuretx.com/reportingapi_v1/IReportingAPIV1/PublicGetTransactionsByFilter","type":"text"},{"key":"User-Agent","value":"Apache-HttpClient/4.1.1 (java 1.5)","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v1\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n    <soapenv:Header/>\r\n    <soapenv:Body>\r\n        <rep:PublicGetTransactionsByFilter>\r\n            <rep:credentials>\r\n                <brid:Password></brid:Password>\r\n                <brid:UserName></brid:UserName>\r\n            </rep:credentials>\r\n            <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n                <brid1:AccountHolderName></brid1:AccountHolderName>\r\n                <brid1:AccountTypeIndicator></brid1:AccountTypeIndicator>\r\n                <brid1:AccountTypeTransform></brid1:AccountTypeTransform>\r\n                <brid1:AmountRangeFrom></brid1:AmountRangeFrom>\r\n                <brid1:AmountRangeTo></brid1:AmountRangeTo>\r\n                <brid1:AuthorizationCode></brid1:AuthorizationCode>\r\n                <brid1:BatchID></brid1:BatchID>\r\n                <brid1:CardClass>{{CardClass}}</brid1:CardClass>\r\n                <brid1:CardBrand></brid1:CardBrand>\r\n                <brid1:CardholderFirstName></brid1:CardholderFirstName>\r\n                <brid1:CardholderLastName></brid1:CardholderLastName>\r\n                <brid1:ClerkId>{{ClerkId}}</brid1:ClerkId>\r\n                <brid1:CustomFields></brid1:CustomFields>\r\n                <brid1:CustomerNumber></brid1:CustomerNumber>\r\n                <brid1:DateRangeFrom></brid1:DateRangeFrom>\r\n                <brid1:DateRangeTo></brid1:DateRangeTo>\r\n                <brid1:EndPartialAccountNumber></brid1:EndPartialAccountNumber>\r\n                <brid1:EntryModeTransform></brid1:EntryModeTransform>\r\n                <brid1:ExcludePaymentMethod></brid1:ExcludePaymentMethod>\r\n                <brid1:ExcludeResponseCode></brid1:ExcludeResponseCode>\r\n                <brid1:ExcludeTransResults></brid1:ExcludeTransResults>\r\n                <brid1:ExcludeVoid></brid1:ExcludeVoid>\r\n                <brid1:FeeIsSurcharge>{{FeeIsSurcharge}}</brid1:FeeIsSurcharge>\r\n                <brid1:ID>{{TransactionId}}</brid1:ID>\r\n                <brid1:InvoiceNumber></brid1:InvoiceNumber>\r\n                <brid1:MerchantAccountID></brid1:MerchantAccountID>\r\n                <brid1:MerchantID>{{MerchantId}}</brid1:MerchantID>\r\n                <brid1:OrderByList></brid1:OrderByList>\r\n                <brid1:OrganizationId></brid1:OrganizationId>\r\n                <brid1:PaymentMethodID></brid1:PaymentMethodID>\r\n                <brid1:MethodIndicator></brid1:MethodIndicator>\r\n                <brid1:PaymentMethodTransform></brid1:PaymentMethodTransform>\r\n                <brid1:PurchaseOrderNumber></brid1:PurchaseOrderNumber>\r\n                <brid1:ResellerID></brid1:ResellerID>\r\n                <brid1:ResponseCode></brid1:ResponseCode>\r\n                <brid1:SettlementStatus></brid1:SettlementStatus>\r\n                <brid1:Skip></brid1:Skip>\r\n                <brid1:SortBy>{{SortBy}}</brid1:SortBy>\r\n                <brid1:Take></brid1:Take>\r\n                <brid1:TransactionSourceIP></brid1:TransactionSourceIP>\r\n                <brid1:TransactionStatus></brid1:TransactionStatus>\r\n                <brid1:TransactionType></brid1:TransactionType>\r\n                <brid1:TransactionTypeTransform></brid1:TransactionTypeTransform>\r\n                <brid1:TransResults></brid1:TransResults>\r\n                <brid1:UseMerchantTimeZone></brid1:UseMerchantTimeZone>\r\n            </rep:filterObject>\r\n        </rep:PublicGetTransactionsByFilter>\r\n    </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v1","description":"<p>V1 is only documented here for existing integrations. For all new Integrations, use V2.</p>\n<p>PublicGetTransactionsByFilterV1 will return a list of transactions meeting the criteria of the provided filters.</p>\n<p><strong>Note that these examples show all data elements; however, in a valid request, only populated elements should be included.</strong></p>\n","urlObject":{"protocol":"https","path":["Reporting.API","ReportingAPI.svc","v1"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"b504f3d6-3f5b-4169-82f4-58634d02b0b5","name":"PublicGetTransactionsByFiterV1","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"http://bridgepaynetsecuretx.com/reportingapi_v1/IReportingAPIV1/PublicGetTransactionsByFilter","type":"text"},{"key":"User-Agent","value":"Apache-HttpClient/4.1.1 (java 1.5)","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v1\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n    <soapenv:Header/>\r\n    <soapenv:Body>\r\n        <rep:PublicGetTransactionsByFilter>\r\n            <rep:credentials>\r\n                <brid:Password></brid:Password>\r\n                <brid:UserName></brid:UserName>\r\n            </rep:credentials>\r\n            <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n                <brid1:AccountHolderName></brid1:AccountHolderName>\r\n                <brid1:AccountTypeIndicator></brid1:AccountTypeIndicator>\r\n                <brid1:AccountTypeTransform></brid1:AccountTypeTransform>\r\n                <brid1:AmountRangeFrom></brid1:AmountRangeFrom>\r\n                <brid1:AmountRangeTo></brid1:AmountRangeTo>\r\n                <brid1:AuthorizationCode></brid1:AuthorizationCode>\r\n                <brid1:BatchID></brid1:BatchID>\r\n                <brid1:CardClass>{{CardClass}}</brid1:CardClass>\r\n                <brid1:CardBrand></brid1:CardBrand>\r\n                <brid1:CardholderFirstName></brid1:CardholderFirstName>\r\n                <brid1:CardholderLastName></brid1:CardholderLastName>\r\n                <brid1:ClerkId>{{ClerkId}}</brid1:ClerkId>\r\n                <brid1:CustomFields></brid1:CustomFields>\r\n                <brid1:CustomerNumber></brid1:CustomerNumber>\r\n                <brid1:DateRangeFrom></brid1:DateRangeFrom>\r\n                <brid1:DateRangeTo></brid1:DateRangeTo>\r\n                <brid1:EndPartialAccountNumber></brid1:EndPartialAccountNumber>\r\n                <brid1:EntryModeTransform></brid1:EntryModeTransform>\r\n                <brid1:ExcludePaymentMethod></brid1:ExcludePaymentMethod>\r\n                <brid1:ExcludeResponseCode></brid1:ExcludeResponseCode>\r\n                <brid1:ExcludeTransResults></brid1:ExcludeTransResults>\r\n                <brid1:ExcludeVoid></brid1:ExcludeVoid>\r\n                <brid1:FeeIsSurcharge>{{FeeIsSurcharge}}</brid1:FeeIsSurcharge>\r\n                <brid1:ID>{{TransactionId}}</brid1:ID>\r\n                <brid1:InvoiceNumber></brid1:InvoiceNumber>\r\n                <brid1:MerchantAccountID></brid1:MerchantAccountID>\r\n                <brid1:MerchantID>{{MerchantId}}</brid1:MerchantID>\r\n                <brid1:OrderByList></brid1:OrderByList>\r\n                <brid1:OrganizationId></brid1:OrganizationId>\r\n                <brid1:PaymentMethodID></brid1:PaymentMethodID>\r\n                <brid1:MethodIndicator></brid1:MethodIndicator>\r\n                <brid1:PaymentMethodTransform></brid1:PaymentMethodTransform>\r\n                <brid1:PurchaseOrderNumber></brid1:PurchaseOrderNumber>\r\n                <brid1:ResellerID></brid1:ResellerID>\r\n                <brid1:ResponseCode></brid1:ResponseCode>\r\n                <brid1:SettlementStatus></brid1:SettlementStatus>\r\n                <brid1:Skip></brid1:Skip>\r\n                <brid1:SortBy>{{SortBy}}</brid1:SortBy>\r\n                <brid1:Take></brid1:Take>\r\n                <brid1:TransactionSourceIP></brid1:TransactionSourceIP>\r\n                <brid1:TransactionStatus></brid1:TransactionStatus>\r\n                <brid1:TransactionType></brid1:TransactionType>\r\n                <brid1:TransactionTypeTransform></brid1:TransactionTypeTransform>\r\n                <brid1:TransResults></brid1:TransResults>\r\n                <brid1:UseMerchantTimeZone></brid1:UseMerchantTimeZone>\r\n            </rep:filterObject>\r\n        </rep:PublicGetTransactionsByFilter>\r\n    </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v1"},"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\">\n    <s:Body>\n        <PublicGetTransactionsByFilterResponse xmlns=\"http://bridgepaynetsecuretx.com/reportingapi_v1\">\n            <PublicGetTransactionsByFilterResult xmlns:a=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.SetModels\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\n                <DataSourceResponses xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <Messages xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <ObjectState xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\">Unchanged</ObjectState>\n                <a:RecordAuthSum>1907977</a:RecordAuthSum>\n                <a:RecordCount>883</a:RecordCount>\n                <a:RecordSum>3676677</a:RecordSum>\n                <a:TransactionList xmlns:b=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.ViewModels\">\n                    <b:TransactionRow>\n                        <b:AVSMessage i:nil=\"true\"/>\n                        <b:AVSResultCode i:nil=\"true\"/>\n                        <b:AccountHolderName> </b:AccountHolderName>\n                        <b:AccountType>R</b:AccountType>\n                        <b:AccountTypeIndicator>M</b:AccountTypeIndicator>\n                        <b:AccountTypeTransform>MASTER CARD</b:AccountTypeTransform>\n                        <b:AuthCode>833871</b:AuthCode>\n                        <b:AuthorizedAmount>2500</b:AuthorizedAmount>\n                        <b:BatchDateTime>2022-01-15T00:00:00</b:BatchDateTime>\n                        <b:BatchId>208987105</b:BatchId>\n                        <b:CVVMessage i:nil=\"true\"/>\n                        <b:CVVResponseCode i:nil=\"true\"/>\n                        <b:CardBIN>411111</b:CardBIN>\n                        <b:CardBrand>MASTERCARD</b:CardBrand>\n                        <b:CardClass>Credit</b:CardClass>\n                        <b:CardIdentifier i:nil=\"true\"/>\n                        <b:ClerkId>tokenpay12345api20220814020838539</b:ClerkId>\n                        <b:ClerkName i:nil=\"true\"/>\n                        <b:CustomerAddress i:nil=\"true\"/>\n                        <b:CustomerEmail i:nil=\"true\"/>\n                        <b:CustomerNumber i:nil=\"true\"/>\n                        <b:CustomerZip>33774</b:CustomerZip>\n                        <b:EntryModeId>KD</b:EntryModeId>\n                        <b:EntryModeTransform>KEYED</b:EntryModeTransform>\n                        <b:ExpirationDate>1024</b:ExpirationDate>\n                        <b:FeeAmount>0</b:FeeAmount>\n                        <b:FeeIsSurcharge>false</b:FeeIsSurcharge>\n                        <b:FirstName i:nil=\"true\"/>\n                        <b:GrandParentId>11857</b:GrandParentId>\n                        <b:GreatGrandParentId i:nil=\"true\"/>\n                        <b:HolderType>P</b:HolderType>\n                        <b:IIASQualified>false</b:IIASQualified>\n                        <b:IndustryTypeTransform>Retail</b:IndustryTypeTransform>\n                        <b:InvoiceNumber i:nil=\"true\"/>\n                        <b:IsoCurrencyCode>USD</b:IsoCurrencyCode>\n                        <b:LastFour>5454</b:LastFour>\n                        <b:LastName i:nil=\"true\"/>\n                        <b:MaskedAccount>5****5454</b:MaskedAccount>\n                        <b:Memo i:nil=\"true\"/>\n                        <b:MerchantAccountId>12345001</b:MerchantAccountId>\n                        <b:MerchantAddress>123 Test St</b:MerchantAddress>\n                        <b:MerchantAddress2 i:nil=\"true\"/>\n                        <b:MerchantAddress3 i:nil=\"true\"/>\n                        <b:MerchantCategoryCode>5999</b:MerchantCategoryCode>\n                        <b:MerchantCity>City</b:MerchantCity>\n                        <b:MerchantEmail>testing@bridgepaynetwork.com</b:MerchantEmail>\n                        <b:MerchantId>12345000</b:MerchantId>\n                        <b:MerchantName>Test Merchant Name</b:MerchantName>\n                        <b:MerchantPhone>5555555555</b:MerchantPhone>\n                        <b:MerchantState>PA</b:MerchantState>\n                        <b:MerchantZip>17602</b:MerchantZip>\n                        <b:NetAmount>2500</b:NetAmount>\n                        <b:NetworkMID>13026001</b:NetworkMID>\n                        <b:NetworkReferenceNumber>788232597</b:NetworkReferenceNumber>\n                        <b:NetworkTerminalId>10001</b:NetworkTerminalId>\n                        <b:OrganizationId>11861</b:OrganizationId>\n                        <b:OriginalReferenceNumber i:nil=\"true\"/>\n                        <b:ParentId>11860</b:ParentId>\n                        <b:PaymentMethodId>MC</b:PaymentMethodId>\n                        <b:PaymentMethodIndicator>C</b:PaymentMethodIndicator>\n                        <b:PaymentMethodTransform>CREDIT</b:PaymentMethodTransform>\n                        <b:ProcessorResponse>Approved</b:ProcessorResponse>\n                        <b:ProviderResponseCode i:nil=\"true\"/>\n                        <b:PurchaseOrderNumber i:nil=\"true\"/>\n                        <b:ReceiptTagData i:nil=\"true\"/>\n                        <b:RemainingAmount>2500</b:RemainingAmount>\n                        <b:RequestedAmount>2500</b:RequestedAmount>\n                        <b:ResellerId>5712</b:ResellerId>\n                        <b:ResponseCode>A01</b:ResponseCode>\n                        <b:SaleDateTime>2022-01-14T16:56:42.067</b:SaleDateTime>\n                        <b:SettleAmount>2500</b:SettleAmount>\n                        <b:SettlementStatus>Settled</b:SettlementStatus>\n                        <b:TaxAmount>245</b:TaxAmount>\n                        <b:TerminalId i:nil=\"true\"/>\n                        <b:TipAmount i:nil=\"true\"/>\n                        <b:Token>1000000044935454</b:Token>\n                        <b:TransactionAux>\n                            <b:ContractId i:nil=\"true\"/>\n                            <b:Id>4060038005</b:Id>\n                            <b:OriginatingTechnologySource>BridgeComm</b:OriginatingTechnologySource>\n                            <b:SoftwareVendor/>\n                        </b:TransactionAux>\n                        <b:TransactionCustomFields xmlns:c=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\"/>\n                        <b:TransactionDynamicDescriptors i:nil=\"true\" xmlns:c=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\"/>\n                        <b:TransactionId>4060038005</b:TransactionId>\n                        <b:TransactionIndustryType>RE</b:TransactionIndustryType>\n                        <b:TransactionSourceIP>73.175.81.76:57177</b:TransactionSourceIP>\n                        <b:TransactionStatus>Confirmed</b:TransactionStatus>\n                        <b:TransactionType>Sale</b:TransactionType>\n                        <b:TransactionTypeTransform>Sale</b:TransactionTypeTransform>\n                        <b:VoidIndicator>false</b:VoidIndicator>\n                    </b:TransactionRow>\n                </a:TransactionList>\n            </PublicGetTransactionsByFilterResult>\n        </PublicGetTransactionsByFilterResponse>\n    </s:Body>\n</s:Envelope>"}],"_postman_id":"793dec55-0d67-4b9d-adab-1a481832a8b5"},{"name":"PublicGetTransactionsByFilterV2","event":[{"listen":"prerequest","script":{"id":"e153c6e8-bfc2-400c-8cd2-51378d8aca0a","exec":[""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"ee81eac0-5847-48fb-b034-b5e8fcad9b83","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","\r","var jsonObject = xml2Json(responseBody);\r","\r","var returnedTransactionId = (jsonObject[\"s:Envelope\"][\"s:Body\"][\"PublicGetTransactionsByFilterV2Response\"][\"PublicGetTransactionsByFilterV2Result\"][\"a:TransactionList\"][\"b:TransactionId\"]);\r","\r","if (returnedTransactionId = pm.environment.get(\"TransactionId\")) {\r","    pm.test(\"TransactionId Matches: \" + returnedTransactionId, true);\r","} else {\r","    pm.test(\"Check If Transaction even worked\", function () {\r","        pm.expect.fail();\r","    });    \r","}"],"type":"text/javascript","packages":{}}}],"id":"af921d88-23db-44e2-80fc-e8f5d0f7b664","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true,"content-type":true,"user-agent":true},"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"http://bridgepaynetsecuretx.com/reportingapi_v2/IReportingAPIV2/PublicGetTransactionsByFilterV2","type":"text"},{"key":"User-Agent","value":"Apache-HttpClient/4.1.1 (java 1.5)","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v2\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n    <soapenv:Header/>\r\n    <soapenv:Body>\r\n        <rep:PublicGetTransactionsByFilterV2>\r\n            <rep:credentials>\r\n                <brid:Password></brid:Password>\r\n                <brid:UserName></brid:UserName>\r\n            </rep:credentials>\r\n            <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n                <brid1:AccountHolderName></brid1:AccountHolderName>\r\n                <brid1:AccountTypeIndicator></brid1:AccountTypeIndicator>\r\n                <brid1:AccountTypeTransform></brid1:AccountTypeTransform>\r\n                <brid1:AmountRangeFrom></brid1:AmountRangeFrom>\r\n                <brid1:AmountRangeTo></brid1:AmountRangeTo>\r\n                <brid1:AuthorizationCode></brid1:AuthorizationCode>\r\n                <brid1:BatchID></brid1:BatchID>\r\n                <brid1:CardClass>{{CardClass}}</brid1:CardClass>\r\n                <brid1:CardBrand></brid1:CardBrand>\r\n                <brid1:CardholderFirstName></brid1:CardholderFirstName>\r\n                <brid1:CardholderLastName></brid1:CardholderLastName>\r\n                <brid1:ContractID></brid1:ContractID>\r\n                <brid1:CustomFields></brid1:CustomFields>\r\n                <brid1:CustomerNumber></brid1:CustomerNumber>\r\n                <brid1:DateRangeFrom></brid1:DateRangeFrom>\r\n                <brid1:DateRangeTo></brid1:DateRangeTo>\r\n                <brid1:EndPartialAccountNumber></brid1:EndPartialAccountNumber>\r\n                <brid1:EntryModeTransform></brid1:EntryModeTransform>\r\n                <brid1:ExcludePaymentMethod></brid1:ExcludePaymentMethod>\r\n                <brid1:ExcludeResponseCode></brid1:ExcludeResponseCode>\r\n                <brid1:ExcludeTransResults></brid1:ExcludeTransResults>\r\n                <brid1:ExcludeVoid></brid1:ExcludeVoid>\r\n                <brid1:FeeIsSurcharge>{{FeeIsSurcharge}}</brid1:FeeIsSurcharge>\r\n                <brid1:ID>{{TransactionId}}</brid1:ID>\r\n                <brid1:InvoiceNumber></brid1:InvoiceNumber>\r\n                <brid1:MerchantAccountID></brid1:MerchantAccountID>\r\n                <brid1:MerchantID>{{MerchantId}}</brid1:MerchantID>\r\n                <brid1:OrderByList></brid1:OrderByList>\r\n                <brid1:OrganizationId></brid1:OrganizationId>\r\n                <brid1:PaymentMethodID></brid1:PaymentMethodID>\r\n                <brid1:MethodIndicator></brid1:MethodIndicator>\r\n                <brid1:PaymentMethodTransform></brid1:PaymentMethodTransform>\r\n                <brid1:PurchaseOrderNumber></brid1:PurchaseOrderNumber>\r\n                <brid1:ResellerID></brid1:ResellerID>\r\n                <brid1:ResponseCode></brid1:ResponseCode>\r\n                <brid1:SettlementStatus></brid1:SettlementStatus>\r\n                <brid1:Skip></brid1:Skip>\r\n                <brid1:Take></brid1:Take>\r\n                <brid1:TransactionSourceIP></brid1:TransactionSourceIP>\r\n                <brid1:TransactionStatus></brid1:TransactionStatus>\r\n                <brid1:TransactionType></brid1:TransactionType>\r\n                <brid1:TransactionTypeTransform></brid1:TransactionTypeTransform>\r\n                <brid1:TransResults></brid1:TransResults>\r\n                <brid1:UseMerchantTimeZone></brid1:UseMerchantTimeZone>\r\n            </rep:filterObject>\r\n        </rep:PublicGetTransactionsByFilterV2>\r\n    </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v2","description":"<p>PublicGetTransactionsByFilterV2 will return a list of transactions meeting the criteria of the provided filters.</p>\n<p><strong>Note that these examples show all data elements; however, in a valid request, only populated elements should be included.</strong></p>\n","urlObject":{"protocol":"https","path":["Reporting.API","ReportingAPI.svc","v2"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"a45d2f74-e951-4418-ae8e-3825d67b6fd3","name":"PublicGetTransactionsByFiterV2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"http://bridgepaynetsecuretx.com/reportingapi_v2/IReportingAPIV2/PublicGetTransactionsByFilterV2","type":"text"},{"key":"User-Agent","value":"Apache-HttpClient/4.1.1 (java 1.5)","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v2\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n    <soapenv:Header/>\r\n    <soapenv:Body>\r\n        <rep:PublicGetTransactionsByFilterV2>\r\n            <rep:credentials>\r\n                <brid:Password></brid:Password>\r\n                <brid:UserName></brid:UserName>\r\n            </rep:credentials>\r\n            <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n                <brid1:AccountHolderName></brid1:AccountHolderName>\r\n                <brid1:AccountTypeIndicator></brid1:AccountTypeIndicator>\r\n                <brid1:AccountTypeTransform></brid1:AccountTypeTransform>\r\n                <brid1:AmountRangeFrom></brid1:AmountRangeFrom>\r\n                <brid1:AmountRangeTo></brid1:AmountRangeTo>\r\n                <brid1:AuthorizationCode></brid1:AuthorizationCode>\r\n                <brid1:BatchID></brid1:BatchID>\r\n                <brid1:CardBIN>{{CardBIN}}</brid1:CardBIN>\r\n                <brid1:CardClass>{{CardClass}}</brid1:CardClass>\r\n                <brid1:CardBrand></brid1:CardBrand>\r\n                <brid1:CardholderFirstName></brid1:CardholderFirstName>\r\n                <brid1:CardholderLastName></brid1:CardholderLastName>\r\n                <brid1:ContractID></brid1:ContractID>\r\n                <brid1:CustomFields></brid1:CustomFields>\r\n                <brid1:CustomerNumber></brid1:CustomerNumber>\r\n                <brid1:DateRangeFrom></brid1:DateRangeFrom>\r\n                <brid1:DateRangeTo></brid1:DateRangeTo>\r\n                <brid1:EndPartialAccountNumber></brid1:EndPartialAccountNumber>\r\n                <brid1:EntryModeTransform></brid1:EntryModeTransform>\r\n                <brid1:ExcludePaymentMethod></brid1:ExcludePaymentMethod>\r\n                <brid1:ExcludeResponseCode></brid1:ExcludeResponseCode>\r\n                <brid1:ExcludeTransResults></brid1:ExcludeTransResults>\r\n                <brid1:ExcludeVoid></brid1:ExcludeVoid>\r\n                <brid1:FeeIsSurcharge>{{FeeIsSurcharge}}</brid1:FeeIsSurcharge>\r\n                <brid1:ID>{{TransactionId}}</brid1:ID>\r\n                <brid1:InvoiceNumber></brid1:InvoiceNumber>\r\n                <brid1:MerchantAccountID></brid1:MerchantAccountID>\r\n                <brid1:MerchantID>{{MerchantId}}</brid1:MerchantID>\r\n                <brid1:OrderByList></brid1:OrderByList>\r\n                <brid1:OrganizationId></brid1:OrganizationId>\r\n                <brid1:PaymentMethodID></brid1:PaymentMethodID>\r\n                <brid1:MethodIndicator></brid1:MethodIndicator>\r\n                <brid1:PaymentMethodTransform></brid1:PaymentMethodTransform>\r\n                <brid1:PurchaseOrderNumber></brid1:PurchaseOrderNumber>\r\n                <brid1:ResellerID></brid1:ResellerID>\r\n                <brid1:ResponseCode></brid1:ResponseCode>\r\n                <brid1:SettlementStatus></brid1:SettlementStatus>\r\n                <brid1:Skip></brid1:Skip>\r\n                <brid1:Take></brid1:Take>\r\n                <brid1:TransactionSourceIP></brid1:TransactionSourceIP>\r\n                <brid1:TransactionStatus></brid1:TransactionStatus>\r\n                <brid1:TransactionType></brid1:TransactionType>\r\n                <brid1:TransactionTypeTransform></brid1:TransactionTypeTransform>\r\n                <brid1:TransResults></brid1:TransResults>\r\n                <brid1:UseMerchantTimeZone></brid1:UseMerchantTimeZone>\r\n            </rep:filterObject>\r\n        </rep:PublicGetTransactionsByFilterV2>\r\n    </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v2"},"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\">\n    <s:Body>\n        <PublicGetTransactionsByFilterV2Response xmlns=\"http://bridgepaynetsecuretx.com/reportingapi_v2\">\n            <PublicGetTransactionsByFilterV2Result xmlns:a=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.SetModels\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\n                <DataSourceResponses xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <Messages xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <ObjectState xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\">Unchanged</ObjectState>\n                <a:RecordAuthSum>1907977</a:RecordAuthSum>\n                <a:RecordCount>883</a:RecordCount>\n                <a:RecordSum>3676677</a:RecordSum>\n                <a:TransactionList xmlns:b=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.ViewModels\">\n                    <b:TransactionRow>\n                        <b:AVSMessage i:nil=\"true\"/>\n                        <b:AVSResultCode i:nil=\"true\"/>\n                        <b:AccountHolderName> </b:AccountHolderName>\n                        <b:AccountType>R</b:AccountType>\n                        <b:AccountTypeIndicator>M</b:AccountTypeIndicator>\n                        <b:AccountTypeTransform>MASTER CARD</b:AccountTypeTransform>\n                        <b:AuthCode>833871</b:AuthCode>\n                        <b:AuthorizedAmount>2500</b:AuthorizedAmount>\n                        <b:BatchDateTime>2022-01-15T00:00:00</b:BatchDateTime>\n                        <b:BatchId>208987105</b:BatchId>\n                        <b:CVVMessage i:nil=\"true\"/>\n                        <b:CVVResponseCode i:nil=\"true\"/>\n                        <b:CardBIN>411111</b:CardBIN>\n                        <b:CardBrand>MASTERCARD</b:CardBrand>\n                        <b:CardClass>Credit</b:CardClass>\n                        <b:CardIdentifier i:nil=\"true\"/>\n                        <b:ClerkId>tokenpay12345api20220814020838539</b:ClerkId>\n                        <b:ClerkName i:nil=\"true\"/>\n                        <b:CustomerAddress i:nil=\"true\"/>\n                        <b:CustomerEmail i:nil=\"true\"/>\n                        <b:CustomerNumber i:nil=\"true\"/>\n                        <b:CustomerZip>33774</b:CustomerZip>\n                        <b:EntryModeId>KD</b:EntryModeId>\n                        <b:EntryModeTransform>KEYED</b:EntryModeTransform>\n                        <b:ExpirationDate>1024</b:ExpirationDate>\n                        <b:FeeAmount>0</b:FeeAmount>\n                        <b:FeeIsSurcharge>false</b:FeeIsSurcharge>\n                        <b:FirstName i:nil=\"true\"/>\n                        <b:GrandParentId>11857</b:GrandParentId>\n                        <b:GreatGrandParentId i:nil=\"true\"/>\n                        <b:HolderType>P</b:HolderType>\n                        <b:IIASQualified>false</b:IIASQualified>\n                        <b:IndustryTypeTransform>Retail</b:IndustryTypeTransform>\n                        <b:InvoiceNumber i:nil=\"true\"/>\n                        <b:IsoCurrencyCode>USD</b:IsoCurrencyCode>\n                        <b:LastFour>5454</b:LastFour>\n                        <b:LastName i:nil=\"true\"/>\n                        <b:MaskedAccount>5****5454</b:MaskedAccount>\n                        <b:Memo i:nil=\"true\"/>\n                        <b:MerchantAccountId>12345001</b:MerchantAccountId>\n                        <b:MerchantAddress>123 Test St</b:MerchantAddress>\n                        <b:MerchantAddress2 i:nil=\"true\"/>\n                        <b:MerchantAddress3 i:nil=\"true\"/>\n                        <b:MerchantCategoryCode>5999</b:MerchantCategoryCode>\n                        <b:MerchantCity>City</b:MerchantCity>\n                        <b:MerchantEmail>testing@bridgepaynetwork.com</b:MerchantEmail>\n                        <b:MerchantId>12345000</b:MerchantId>\n                        <b:MerchantName>Test Merchant Name</b:MerchantName>\n                        <b:MerchantPhone>5555555555</b:MerchantPhone>\n                        <b:MerchantState>PA</b:MerchantState>\n                        <b:MerchantZip>17602</b:MerchantZip>\n                        <b:NetAmount>2500</b:NetAmount>\n                        <b:NetworkMID>13026001</b:NetworkMID>\n                        <b:NetworkReferenceNumber>788232597</b:NetworkReferenceNumber>\n                        <b:NetworkTerminalId>10001</b:NetworkTerminalId>\n                        <b:OrganizationId>11861</b:OrganizationId>\n                        <b:OriginalReferenceNumber i:nil=\"true\"/>\n                        <b:ParentId>11860</b:ParentId>\n                        <b:PaymentMethodId>MC</b:PaymentMethodId>\n                        <b:PaymentMethodIndicator>C</b:PaymentMethodIndicator>\n                        <b:PaymentMethodTransform>CREDIT</b:PaymentMethodTransform>\n                        <b:ProcessorResponse>Approved</b:ProcessorResponse>\n                        <b:ProviderResponseCode i:nil=\"true\"/>\n                        <b:PurchaseOrderNumber i:nil=\"true\"/>\n                        <b:ReceiptTagData i:nil=\"true\"/>\n                        <b:RemainingAmount>2500</b:RemainingAmount>\n                        <b:RequestedAmount>2500</b:RequestedAmount>\n                        <b:ResellerId>5712</b:ResellerId>\n                        <b:ResponseCode>A01</b:ResponseCode>\n                        <b:SaleDateTime>2022-01-14T16:56:42.067</b:SaleDateTime>\n                        <b:SettleAmount>2500</b:SettleAmount>\n                        <b:SettlementStatus>Settled</b:SettlementStatus>\n                        <b:TaxAmount>245</b:TaxAmount>\n                        <b:TerminalId i:nil=\"true\"/>\n                        <b:TipAmount i:nil=\"true\"/>\n                        <b:Token>1000000044935454</b:Token>\n                        <b:TransactionAux>\n                            <b:ContractId i:nil=\"true\"/>\n                            <b:Id>4060038005</b:Id>\n                            <b:OriginatingTechnologySource>BridgeComm</b:OriginatingTechnologySource>\n                            <b:SoftwareVendor/>\n                        </b:TransactionAux>\n                        <b:TransactionCustomFields xmlns:c=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\"/>\n                        <b:TransactionDynamicDescriptors i:nil=\"true\" xmlns:c=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\"/>\n                        <b:TransactionId>4060038005</b:TransactionId>\n                        <b:TransactionIndustryType>RE</b:TransactionIndustryType>\n                        <b:TransactionSourceIP>73.175.81.76:57177</b:TransactionSourceIP>\n                        <b:TransactionStatus>Confirmed</b:TransactionStatus>\n                        <b:TransactionType>Sale</b:TransactionType>\n                        <b:TransactionTypeTransform>Sale</b:TransactionTypeTransform>\n                        <b:VoidIndicator>false</b:VoidIndicator>\n                    </b:TransactionRow>\n                </a:TransactionList>\n            </PublicGetTransactionsByFilterV2Result>\n        </PublicGetTransactionsByFilterV2Response>\n    </s:Body>\n</s:Envelope>"}],"_postman_id":"af921d88-23db-44e2-80fc-e8f5d0f7b664"},{"name":"PublicGetBatchListByFilterV2","event":[{"listen":"prerequest","script":{"id":"335f3e5a-2c2e-4320-b629-8f91fdc90095","exec":["var dateFrom = new Date();\r","dateFrom.setDate (dateFrom.getDate() - 1);\r","pm.environment.set(\"fromIsoDate\", dateFrom.toISOString());"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"test","script":{"id":"9fc12ecb-0edd-40fc-b402-928598779fb1","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","\r","if (pm.response.code == 200) {\r","    var jsonObject = xml2Json(responseBody);\r","    var returnedRecordCount = (jsonObject[\"s:Envelope\"][\"s:Body\"][\"PublicGetBatchListByFilterResponse\"][\"PublicGetBatchListByFilterResult\"][\"a:RecordCount\"]);\r","\r","    if (returnedRecordCount > 0){\r","        pm.test(\"Records Returned: \" + returnedRecordCount, true);\r","    } else {\r","        pm.test(\"Check If Transaction even worked\", function () {\r","        pm.expect.fail();\r","        });\r","    }\r","\r","} else {\r","    pm.test(\"Check If Transaction even worked\", function () {\r","        pm.expect.fail();\r","        });\r","}\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"b3ebcb51-400c-4620-a06f-9b45baa180f4","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true,"content-type":true,"user-agent":true},"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"http://bridgepaynetsecuretx.com/reportingapi_v2/IReportingAPIV2/PublicGetBatchListByFilter","type":"text"},{"key":"User-Agent","value":"Apache-HttpClient/4.1.1 (java 1.5)","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v2\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n    <soapenv:Header/>\r\n    <soapenv:Body>\r\n        <rep:PublicGetBatchListByFilter>\r\n            <rep:credentials>\r\n                <brid:Password></brid:Password>\r\n                <brid:UserName></brid:UserName>\r\n            </rep:credentials>\r\n            <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n                <brid1:BatchId></brid1:BatchId>\r\n                <brid1:DateRangeFrom></brid1:DateRangeFrom>\r\n                <brid1:DateRangeTo></brid1:DateRangeTo>\r\n                <brid1:IsProcessed></brid1:IsProcessed>\r\n                <brid1:OrderByList></brid1:OrderByList>\r\n            </rep:filterObject>\r\n        </rep:PublicGetBatchListByFilter>\r\n    </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v2","description":"<p>PublicGetBatchListByFilterV2 will return a list of batches meeting the criteria of the provided filters.</p>\n<p><strong>Note that these examples show all data elements; however, in a valid request, only populated elements should be included.</strong></p>\n","urlObject":{"protocol":"https","path":["Reporting.API","ReportingAPI.svc","v2"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"0c7f6f29-abd9-4880-84b6-87b308acb005","name":"PublicGetBatchListByFiterV2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"http://bridgepaynetsecuretx.com/reportingapi_v2/IReportingAPIV2/PublicGetBatchListByFilter","type":"text"},{"key":"User-Agent","value":"Apache-HttpClient/4.1.1 (java 1.5)","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v2\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n    <soapenv:Header/>\r\n    <soapenv:Body>\r\n        <rep:PublicGetBatchListByFilter>\r\n            <rep:credentials>\r\n                <brid:Password></brid:Password>\r\n                <brid:UserName></brid:UserName>\r\n            </rep:credentials>\r\n            <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n                <brid1:BatchId></brid1:BatchId>\r\n                <brid1:DateRangeFrom></brid1:DateRangeFrom>\r\n                <brid1:DateRangeTo></brid1:DateRangeTo>\r\n                <brid1:IsProcessed></brid1:IsProcessed>\r\n                <brid1:OrderByList></brid1:OrderByList>\r\n                <brid1:OrganizationId></brid1:OrganizationId>\r\n            </rep:filterObject>\r\n        </rep:PublicGetBatchListByFilter>\r\n    </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v2"},"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\">\n    <s:Body>\n        <PublicGetBatchListByFilterResponse xmlns=\"http://bridgepaynetsecuretx.com/reportingapi_v2\">\n            <PublicGetBatchListByFilterResult xmlns:a=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.SetModels\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\n                <DataSourceResponses xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <Messages xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <ObjectState xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\">Unchanged</ObjectState>\n                <a:BatchList xmlns:b=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\">\n                    <b:OrgBatchListDetail>\n                        <b:BatchCount>24</b:BatchCount>\n                        <b:BatchDateTime>2023-07-13T00:01:41.563</b:BatchDateTime>\n                        <b:BatchId>215665104</b:BatchId>\n                        <b:BatchTotal>22000</b:BatchTotal>\n                        <b:GatewayObjectID>8023001</b:GatewayObjectID>\n                        <b:GrandParentId>70</b:GrandParentId>\n                        <b:GreatGrandParentId i:nil=\"true\"/>\n                        <b:IsProcessed>true</b:IsProcessed>\n                        <b:OrganizationId>1570</b:OrganizationId>\n                        <b:OrganizationName>Offer Space</b:OrganizationName>\n                        <b:ParentId>1104</b:ParentId>\n                    </b:OrgBatchListDetail>\n                    <b:OrgBatchListDetail>\n                        <b:BatchCount>1</b:BatchCount>\n                        <b:BatchDateTime>2023-07-13T08:39:51.857</b:BatchDateTime>\n                        <b:BatchId>215670104</b:BatchId>\n                        <b:BatchTotal>6100</b:BatchTotal>\n                        <b:GatewayObjectID>3933001</b:GatewayObjectID>\n                        <b:GrandParentId>13</b:GrandParentId>\n                        <b:GreatGrandParentId i:nil=\"true\"/>\n                        <b:IsProcessed>true</b:IsProcessed>\n                        <b:OrganizationId>1489</b:OrganizationId>\n                        <b:OrganizationName>PAX Test</b:OrganizationName>\n                        <b:ParentId>1005</b:ParentId>\n                    </b:OrgBatchListDetail>\n                    <b:OrgBatchListDetail>\n                        <b:BatchCount>2</b:BatchCount>\n                        <b:BatchDateTime>2023-07-13T15:24:09.733</b:BatchDateTime>\n                        <b:BatchId>215671104</b:BatchId>\n                        <b:BatchTotal>6200</b:BatchTotal>\n                        <b:GatewayObjectID>3933001</b:GatewayObjectID>\n                        <b:GrandParentId>13</b:GrandParentId>\n                        <b:GreatGrandParentId i:nil=\"true\"/>\n                        <b:IsProcessed>true</b:IsProcessed>\n                        <b:OrganizationId>1489</b:OrganizationId>\n                        <b:OrganizationName>PAX Test</b:OrganizationName>\n                        <b:ParentId>1005</b:ParentId>\n                    </b:OrgBatchListDetail>\n                </a:BatchList>\n                <a:RecordCount>3</a:RecordCount>\n            </PublicGetBatchListByFilterResult>\n        </PublicGetBatchListByFilterResponse>\n    </s:Body>\n</s:Envelope>"}],"_postman_id":"b3ebcb51-400c-4620-a06f-9b45baa180f4"},{"name":"Transactions by MID","event":[{"listen":"prerequest","script":{"id":"6a24e7f9-a703-4cab-a38d-1bc6a8782e15","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"633b4bb8-aa5e-42cc-8651-2fb5b79cedc7","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","\r","var jsonObject = xml2Json(responseBody);\r","\r","var returnedTransactionId = (jsonObject[\"s:Envelope\"][\"s:Body\"][\"PublicGetTransactionsByFilterV2Response\"][\"PublicGetTransactionsByFilterV2Result\"][\"a:TransactionList\"][\"b:TransactionId\"]);\r","\r","if (returnedTransactionId = pm.environment.get(\"TransactionId\")) {\r","    pm.test(\"TransactionId Matches: \" + returnedTransactionId, true);\r","} else {\r","    pm.test(\"Check If Transaction even worked\", function () {\r","        pm.expect.fail();\r","    });    \r","}"],"type":"text/javascript"}}],"id":"6e837b9c-7c07-4bdd-a06e-aba62dff7cc4","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true,"content-type":true,"user-agent":true},"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"text/xml;charset=UTF-8"},{"key":"SOAPAction","type":"text","value":"http://bridgepaynetsecuretx.com/reportingapi_v2/IReportingAPIV2/PublicGetTransactionsByFilterV2"},{"key":"User-Agent","type":"text","value":"Apache-HttpClient/4.1.1 (java 1.5)"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v2\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n   <soapenv:Header/>\r\n     <soapenv:Body>\r\n      <rep:PublicGetTransactionsByFilterV2>\r\n         <rep:credentials>\r\n            <brid:Password></brid:Password>\r\n            <brid:UserName></brid:UserName>\r\n         </rep:credentials>\r\n         <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n            <brid1:MerchantAccountID>{{MerchantAccountID}}</brid1:MerchantAccountID>\r\n            <brid1:Skip>00</brid1:Skip>  <!-- how many records to skip/start retrieving at in the return set> -->\r\n            <brid1:Take>10</brid1:Take>  <!-- how many recordes to retrieve> -->\r\n         </rep:filterObject>\r\n      </rep:PublicGetTransactionsByFilterV2>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v2","description":"<p>Returns all transactions for a Merchant Account/Merchant Account Code combination. This is used primarily to retrieve a total transaction count.</p>\n","urlObject":{"protocol":"https","path":["Reporting.API","ReportingAPI.svc","v2"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"8c2a0a4b-40a7-4acb-be17-4acebafa6aaa","name":"Transactions by MID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"http://bridgepaynetsecuretx.com/reportingapi_v2/IReportingAPIV2/PublicGetTransactionsByFilterV2","type":"text"},{"key":"User-Agent","value":"Apache-HttpClient/4.1.1 (java 1.5)","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v2\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n   <soapenv:Header/>\r\n     <soapenv:Body>\r\n      <rep:PublicGetTransactionsByFilterV2>\r\n         <rep:credentials>\r\n            <brid:Password></brid:Password>\r\n            <brid:UserName></brid:UserName>\r\n         </rep:credentials>\r\n         <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n            <brid1:MerchantAccountID>{{MerchantAccountID}}</brid1:MerchantAccountID>\r\n            <brid1:Skip>00</brid1:Skip>  <!-- how many records to skip/start retrieving at in the return set> -->\r\n            <brid1:Take>10</brid1:Take>  <!-- how many recordes to retrieve> -->\r\n         </rep:filterObject>\r\n      </rep:PublicGetTransactionsByFilterV2>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v2"},"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\">\n    <s:Body>\n        <PublicGetTransactionsByFilterV2Response xmlns=\"http://bridgepaynetsecuretx.com/reportingapi_v2\">\n            <PublicGetTransactionsByFilterV2Result xmlns:a=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.SetModels\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\n                <DataSourceResponses xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <Messages xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <ObjectState xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\">Unchanged</ObjectState>\n                <a:RecordAuthSum>1907977</a:RecordAuthSum>\n                <a:RecordCount>883</a:RecordCount>\n                <a:RecordSum>3676677</a:RecordSum>\n                <a:TransactionList xmlns:b=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.ViewModels\">\n                    <b:TransactionRow>\n                        <b:AVSMessage i:nil=\"true\"/>\n                        <b:AVSResultCode i:nil=\"true\"/>\n                        <b:AccountHolderName> </b:AccountHolderName>\n                        <b:AccountType>R</b:AccountType>\n                        <b:AccountTypeIndicator>M</b:AccountTypeIndicator>\n                        <b:AccountTypeTransform>MASTER CARD</b:AccountTypeTransform>\n                        <b:AuthCode>833871</b:AuthCode>\n                        <b:AuthorizedAmount>2500</b:AuthorizedAmount>\n                        <b:BatchDateTime>2022-01-15T00:00:00</b:BatchDateTime>\n                        <b:BatchId>208987105</b:BatchId>\n                        <b:CVVMessage i:nil=\"true\"/>\n                        <b:CVVResponseCode i:nil=\"true\"/>\n                        <b:CardBIN>411111</b:CardBIN>\n                        <b:CardBrand>MASTERCARD</b:CardBrand>\n                        <b:CardClass>Credit</b:CardClass>\n                        <b:CardIdentifier i:nil=\"true\"/>\n                        <b:ClerkId>tokenpay11861api20220814020838539</b:ClerkId>\n                        <b:ClerkName i:nil=\"true\"/>\n                        <b:CustomerAddress i:nil=\"true\"/>\n                        <b:CustomerEmail i:nil=\"true\"/>\n                        <b:CustomerNumber i:nil=\"true\"/>\n                        <b:CustomerZip>33774</b:CustomerZip>\n                        <b:EntryModeId>KD</b:EntryModeId>\n                        <b:EntryModeTransform>KEYED</b:EntryModeTransform>\n                        <b:ExpirationDate>1024</b:ExpirationDate>\n                        <b:FeeAmount>0</b:FeeAmount>\n                        <b:FeeIsSurcharge>false</b:FeeIsSurcharge>\n                        <b:FirstName i:nil=\"true\"/>\n                        <b:GrandParentId>11857</b:GrandParentId>\n                        <b:GreatGrandParentId i:nil=\"true\"/>\n                        <b:HolderType>P</b:HolderType>\n                        <b:IIASQualified>false</b:IIASQualified>\n                        <b:IndustryTypeTransform>Retail</b:IndustryTypeTransform>\n                        <b:InvoiceNumber i:nil=\"true\"/>\n                        <b:IsoCurrencyCode>USD</b:IsoCurrencyCode>\n                        <b:LastFour>5454</b:LastFour>\n                        <b:LastName i:nil=\"true\"/>\n                        <b:MaskedAccount>5****5454</b:MaskedAccount>\n                        <b:Memo i:nil=\"true\"/>\n                        <b:MerchantAccountId>13026001</b:MerchantAccountId>\n                        <b:MerchantAddress>123 Test St</b:MerchantAddress>\n                        <b:MerchantAddress2 i:nil=\"true\"/>\n                        <b:MerchantAddress3 i:nil=\"true\"/>\n                        <b:MerchantCategoryCode>5999</b:MerchantCategoryCode>\n                        <b:MerchantCity>TestCity</b:MerchantCity>\n                        <b:MerchantEmail>email@bridgepaynetwork.com</b:MerchantEmail>\n                        <b:MerchantId>12345000</b:MerchantId>\n                        <b:MerchantName>Merchant Account</b:MerchantName>\n                        <b:MerchantPhone>5555555555</b:MerchantPhone>\n                        <b:MerchantState>PA</b:MerchantState>\n                        <b:MerchantZip>17602</b:MerchantZip>\n                        <b:NetAmount>2500</b:NetAmount>\n                        <b:NetworkMID>12345001</b:NetworkMID>\n                        <b:NetworkReferenceNumber>788232597</b:NetworkReferenceNumber>\n                        <b:NetworkTerminalId>10001</b:NetworkTerminalId>\n                        <b:OrganizationId>11861</b:OrganizationId>\n                        <b:OriginalReferenceNumber i:nil=\"true\"/>\n                        <b:ParentId>11860</b:ParentId>\n                        <b:PaymentMethodId>MC</b:PaymentMethodId>\n                        <b:PaymentMethodIndicator>C</b:PaymentMethodIndicator>\n                        <b:PaymentMethodTransform>CREDIT</b:PaymentMethodTransform>\n                        <b:ProcessorResponse>Approved</b:ProcessorResponse>\n                        <b:ProviderResponseCode i:nil=\"true\"/>\n                        <b:PurchaseOrderNumber i:nil=\"true\"/>\n                        <b:ReceiptTagData i:nil=\"true\"/>\n                        <b:RemainingAmount>2500</b:RemainingAmount>\n                        <b:RequestedAmount>2500</b:RequestedAmount>\n                        <b:ResellerId>5712</b:ResellerId>\n                        <b:ResponseCode>A01</b:ResponseCode>\n                        <b:SaleDateTime>2022-01-14T16:56:42.067</b:SaleDateTime>\n                        <b:SettleAmount>2500</b:SettleAmount>\n                        <b:SettlementStatus>Settled</b:SettlementStatus>\n                        <b:TaxAmount>245</b:TaxAmount>\n                        <b:TerminalId i:nil=\"true\"/>\n                        <b:TipAmount i:nil=\"true\"/>\n                        <b:Token>1000000044935454</b:Token>\n                        <b:TransactionAux>\n                            <b:ContractId i:nil=\"true\"/>\n                            <b:Id>4060038005</b:Id>\n                            <b:OriginatingTechnologySource>BridgeComm</b:OriginatingTechnologySource>\n                            <b:SoftwareVendor/>\n                        </b:TransactionAux>\n                        <b:TransactionCustomFields xmlns:c=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\"/>\n                        <b:TransactionDynamicDescriptors i:nil=\"true\" xmlns:c=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\"/>\n                        <b:TransactionId>4060038005</b:TransactionId>\n                        <b:TransactionIndustryType>RE</b:TransactionIndustryType>\n                        <b:TransactionSourceIP>73.175.81.76:57177</b:TransactionSourceIP>\n                        <b:TransactionStatus>Confirmed</b:TransactionStatus>\n                        <b:TransactionType>Sale</b:TransactionType>\n                        <b:TransactionTypeTransform>Sale</b:TransactionTypeTransform>\n                        <b:VoidIndicator>false</b:VoidIndicator>\n                    </b:TransactionRow>\n                </a:TransactionList>\n            </PublicGetTransactionsByFilterV2Result>\n        </PublicGetTransactionsByFilterV2Response>\n    </s:Body>\n</s:Envelope>"}],"_postman_id":"6e837b9c-7c07-4bdd-a06e-aba62dff7cc4"},{"name":"Transactions by Reference Number","event":[{"listen":"prerequest","script":{"id":"a3f2b36a-2f53-4af2-b4e9-8e893d4e6147","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"ae6b4a72-4649-453f-8451-bbce127eec8f","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","\r","var jsonObject = xml2Json(responseBody);\r","\r","var returnedTransactionId = (jsonObject[\"s:Envelope\"][\"s:Body\"][\"PublicGetTransactionsByFilterV2Response\"][\"PublicGetTransactionsByFilterV2Result\"][\"a:TransactionList\"][\"b:TransactionId\"]);\r","\r","if (returnedTransactionId = pm.environment.get(\"TransactionId\")) {\r","    pm.test(\"TransactionId Matches: \" + returnedTransactionId, true);\r","} else {\r","    pm.test(\"Check If Transaction even worked\", function () {\r","        pm.expect.fail();\r","    });    \r","}"],"type":"text/javascript"}}],"id":"cfebddd2-7d86-4b1a-b1f6-ad43bf508b0b","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true,"content-type":true,"user-agent":true},"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"text/xml;charset=UTF-8"},{"key":"SOAPAction","type":"text","value":"http://bridgepaynetsecuretx.com/reportingapi_v2/IReportingAPIV2/PublicGetTransactionsByFilterV2"},{"key":"User-Agent","type":"text","value":"Apache-HttpClient/4.1.1 (java 1.5)"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v2\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n   <soapenv:Header/>\r\n     <soapenv:Body>\r\n      <rep:PublicGetTransactionsByFilterV2>\r\n         <rep:credentials>\r\n            <brid:Password></brid:Password>\r\n            <brid:UserName></brid:UserName>\r\n         </rep:credentials>\r\n         <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n            <brid1:ID></brid1:ID>\r\n            <brid1:Skip>00</brid1:Skip>\r\n            <brid1:Take>10</brid1:Take>\r\n         </rep:filterObject>\r\n      </rep:PublicGetTransactionsByFilterV2>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v2","description":"<p>Returns a sale transaction based on the Reference Number/.</p>\n","urlObject":{"protocol":"https","path":["Reporting.API","ReportingAPI.svc","v2"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"af3667d0-86b5-44a7-8a2b-0f14245487a1","name":"Transactions by Reference Number","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"http://bridgepaynetsecuretx.com/reportingapi_v2/IReportingAPIV2/PublicGetTransactionsByFilterV2","type":"text"},{"key":"User-Agent","value":"Apache-HttpClient/4.1.1 (java 1.5)","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v2\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n   <soapenv:Header/>\r\n     <soapenv:Body>\r\n      <rep:PublicGetTransactionsByFilterV2>\r\n         <rep:credentials>\r\n            <brid:Password></brid:Password>\r\n            <brid:UserName></brid:UserName>\r\n         </rep:credentials>\r\n         <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n            <brid1:ID></brid1:ID>\r\n            <brid1:Skip>00</brid1:Skip>\r\n            <brid1:Take>10</brid1:Take>\r\n         </rep:filterObject>\r\n      </rep:PublicGetTransactionsByFilterV2>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v2"},"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\">\n    <s:Body>\n        <PublicGetTransactionsByFilterV2Response xmlns=\"http://bridgepaynetsecuretx.com/reportingapi_v2\">\n            <PublicGetTransactionsByFilterV2Result xmlns:a=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.SetModels\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\n                <DataSourceResponses xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <Messages xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <ObjectState xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\">Unchanged</ObjectState>\n                <a:RecordAuthSum>1500</a:RecordAuthSum>\n                <a:RecordCount>1</a:RecordCount>\n                <a:RecordSum>1500</a:RecordSum>\n                <a:TransactionList xmlns:b=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.ViewModels\">\n                    <b:TransactionRow>\n                        <b:AVSMessage i:nil=\"true\"/>\n                        <b:AVSResultCode i:nil=\"true\"/>\n                        <b:AccountHolderName> </b:AccountHolderName>\n                        <b:AccountType>R</b:AccountType>\n                        <b:AccountTypeIndicator>V</b:AccountTypeIndicator>\n                        <b:AccountTypeTransform>VISA</b:AccountTypeTransform>\n                        <b:AuthCode>503891</b:AuthCode>\n                        <b:AuthorizedAmount>1500</b:AuthorizedAmount>\n                        <b:BatchDateTime>2023-05-17T20:00:00</b:BatchDateTime>\n                        <b:BatchId>212143505</b:BatchId>\n                        <b:CVVMessage i:nil=\"true\"/>\n                        <b:CVVResponseCode i:nil=\"true\"/>\n                        <b:CardBIN>411111</b:CardBIN>\n                        <b:CardBrand>VISA</b:CardBrand>\n                        <b:CardClass>Credit</b:CardClass>\n                        <b:CardIdentifier i:nil=\"true\"/>\n                        <b:ClerkId>clerkID</b:ClerkId>\n                        <b:ClerkName i:nil=\"true\"/>\n                        <b:CustomerAddress>123 Test St</b:CustomerAddress>\n                        <b:CustomerEmail i:nil=\"true\"/>\n                        <b:CustomerNumber i:nil=\"true\"/>\n                        <b:CustomerZip>12345</b:CustomerZip>\n                        <b:EntryModeId>KD</b:EntryModeId>\n                        <b:EntryModeTransform>KEYED</b:EntryModeTransform>\n                        <b:ExpirationDate>0527</b:ExpirationDate>\n                        <b:FeeAmount>0</b:FeeAmount>\n                        <b:FeeIsSurcharge>false</b:FeeIsSurcharge>\n                        <b:FirstName i:nil=\"true\"/>\n                        <b:GrandParentId>11857</b:GrandParentId>\n                        <b:GreatGrandParentId i:nil=\"true\"/>\n                        <b:HolderType>P</b:HolderType>\n                        <b:IIASQualified>false</b:IIASQualified>\n                        <b:IndustryTypeTransform>Direct Marketing</b:IndustryTypeTransform>\n                        <b:InvoiceNumber i:nil=\"true\"/>\n                        <b:IsoCurrencyCode>USD</b:IsoCurrencyCode>\n                        <b:LastFour>1111</b:LastFour>\n                        <b:LastName i:nil=\"true\"/>\n                        <b:MaskedAccount>****1111</b:MaskedAccount>\n                        <b:Memo i:nil=\"true\"/>\n                        <b:MerchantAccountId>12345001</b:MerchantAccountId>\n                        <b:MerchantAddress>123 Test St</b:MerchantAddress>\n                        <b:MerchantAddress2 i:nil=\"true\"/>\n                        <b:MerchantAddress3 i:nil=\"true\"/>\n                        <b:MerchantCategoryCode>5999</b:MerchantCategoryCode>\n                        <b:MerchantCity>Lancaster</b:MerchantCity>\n                        <b:MerchantEmail>email@bridgepaynetwork.com</b:MerchantEmail>\n                        <b:MerchantId>12345000</b:MerchantId>\n                        <b:MerchantName>merchantAccount</b:MerchantName>\n                        <b:MerchantPhone>5555555555</b:MerchantPhone>\n                        <b:MerchantState>PA</b:MerchantState>\n                        <b:MerchantZip>17602</b:MerchantZip>\n                        <b:NetAmount>1500</b:NetAmount>\n                        <b:NetworkMID>12345001</b:NetworkMID>\n                        <b:NetworkReferenceNumber>532911510</b:NetworkReferenceNumber>\n                        <b:NetworkTerminalId>10001</b:NetworkTerminalId>\n                        <b:OrganizationId>11861</b:OrganizationId>\n                        <b:OriginalReferenceNumber i:nil=\"true\"/>\n                        <b:ParentId>11860</b:ParentId>\n                        <b:PaymentMethodId>VC</b:PaymentMethodId>\n                        <b:PaymentMethodIndicator>C</b:PaymentMethodIndicator>\n                        <b:PaymentMethodTransform>CREDIT</b:PaymentMethodTransform>\n                        <b:ProcessorResponse>Approved</b:ProcessorResponse>\n                        <b:ProviderResponseCode i:nil=\"true\"/>\n                        <b:PurchaseOrderNumber i:nil=\"true\"/>\n                        <b:ReceiptTagData i:nil=\"true\"/>\n                        <b:RemainingAmount>1500</b:RemainingAmount>\n                        <b:RequestedAmount>1500</b:RequestedAmount>\n                        <b:ResellerId>5712</b:ResellerId>\n                        <b:ResponseCode>A01</b:ResponseCode>\n                        <b:SaleDateTime>2023-05-17T10:59:19.967</b:SaleDateTime>\n                        <b:SettleAmount>1500</b:SettleAmount>\n                        <b:SettlementStatus>Settled</b:SettlementStatus>\n                        <b:TaxAmount>245</b:TaxAmount>\n                        <b:TerminalId i:nil=\"true\"/>\n                        <b:TipAmount i:nil=\"true\"/>\n                        <b:Token>1000000010261111</b:Token>\n                        <b:TransactionAux>\n                            <b:ContractId i:nil=\"true\"/>\n                            <b:Id>4387004105</b:Id>\n                            <b:OriginatingTechnologySource>BridgeComm</b:OriginatingTechnologySource>\n                            <b:SoftwareVendor/>\n                        </b:TransactionAux>\n                        <b:TransactionCustomFields xmlns:c=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\">\n                            <c:TransactionCustomField>\n                                <c:CustomFieldConfigId>94</c:CustomFieldConfigId>\n                                <c:CustomizableEntityId>1</c:CustomizableEntityId>\n                                <c:DisplayName>Color</c:DisplayName>\n                                <c:EntityId>4387004105</c:EntityId>\n                                <c:FieldName>COLOR</c:FieldName>\n                                <c:Id>272703</c:Id>\n                                <c:OwnerId>11860</c:OwnerId>\n                                <c:ShowOnReceipt>false</c:ShowOnReceipt>\n                                <c:TableName>CHARGE_TRANSACTION</c:TableName>\n                                <c:Value>Red</c:Value>\n                            </c:TransactionCustomField>\n                        </b:TransactionCustomFields>\n                        <b:TransactionDynamicDescriptors i:nil=\"true\" xmlns:c=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\"/>\n                        <b:TransactionId>4387004105</b:TransactionId>\n                        <b:TransactionIndustryType>DM</b:TransactionIndustryType>\n                        <b:TransactionSourceIP>192.168.17.253:54732</b:TransactionSourceIP>\n                        <b:TransactionStatus>Confirmed</b:TransactionStatus>\n                        <b:TransactionType>Sale</b:TransactionType>\n                        <b:TransactionTypeTransform>Sale</b:TransactionTypeTransform>\n                        <b:VoidIndicator>false</b:VoidIndicator>\n                    </b:TransactionRow>\n                </a:TransactionList>\n            </PublicGetTransactionsByFilterV2Result>\n        </PublicGetTransactionsByFilterV2Response>\n    </s:Body>\n</s:Envelope>"}],"_postman_id":"cfebddd2-7d86-4b1a-b1f6-ad43bf508b0b"},{"name":"Transactions by MID and Date Range","event":[{"listen":"prerequest","script":{"id":"b60624f3-bffa-4b5e-ad10-7f058afd62ff","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"8970e626-3d4f-46f8-99a1-f0655c96594a","exec":[""],"type":"text/javascript"}}],"id":"d80c9a52-b4fe-4f43-927b-2eab0eaa12ee","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true,"content-type":true,"user-agent":true},"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"text/xml;charset=UTF-8"},{"key":"SOAPAction","type":"text","value":"http://bridgepaynetsecuretx.com/reportingapi_v1/IReportingAPIV1/PublicGetTransactionsByFilter"},{"key":"User-Agent","type":"text","value":"Apache-HttpClient/4.1.1 (java 1.5)"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v1\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n   <soapenv:Header/>\r\n     <soapenv:Body>\r\n      <rep:PublicGetTransactionsByFilter>\r\n         <rep:credentials>\r\n            <brid:Password></brid:Password>\r\n            <brid:UserName></brid:UserName>\r\n         </rep:credentials>\r\n         <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n            <brid1:DateRangeFrom></brid1:DateRangeFrom>\r\n            <brid1:DateRangeTo></brid1:DateRangeTo>\r\n            <brid1:Skip>00</brid1:Skip>\r\n            <brid1:Take>10</brid1:Take>\r\n         </rep:filterObject>\r\n      </rep:PublicGetTransactionsByFilter>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v1","description":"<p>Returns all transactions based on a Merchant Account/Merchant Account Code combination within a specified date range.</p>\n","urlObject":{"protocol":"https","path":["Reporting.API","ReportingAPI.svc","v1"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"9f9aed18-d20d-47e3-ac4e-afa1b698afc5","name":"Transactions by MID and Date Range","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"http://bridgepaynetsecuretx.com/reportingapi_v1/IReportingAPIV1/PublicGetTransactionsByFilter","type":"text"},{"key":"User-Agent","value":"Apache-HttpClient/4.1.1 (java 1.5)","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v1\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n   <soapenv:Header/>\r\n     <soapenv:Body>\r\n      <rep:PublicGetTransactionsByFilter>\r\n         <rep:credentials>\r\n            <brid:Password></brid:Password>\r\n            <brid:UserName></brid:UserName>\r\n         </rep:credentials>\r\n         <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n            <brid1:DateRangeFrom></brid1:DateRangeFrom>\r\n            <brid1:DateRangeTo></brid1:DateRangeTo>\r\n            <brid1:Skip>00</brid1:Skip>\r\n            <brid1:Take>10</brid1:Take>\r\n         </rep:filterObject>\r\n      </rep:PublicGetTransactionsByFilter>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v1"},"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\">\n    <s:Body>\n        <PublicGetTransactionsByFilterResponse xmlns=\"http://bridgepaynetsecuretx.com/reportingapi_v1\">\n            <PublicGetTransactionsByFilterResult xmlns:a=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.SetModels\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\n                <DataSourceResponses xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <Messages xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <ObjectState xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\">Unchanged</ObjectState>\n                <a:RecordAuthSum>9710</a:RecordAuthSum>\n                <a:RecordCount>10</a:RecordCount>\n                <a:RecordSum>9710</a:RecordSum>\n                <a:TransactionList xmlns:b=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.ViewModels\">\n                    <b:TransactionRow>\n                        <b:AVSMessage i:nil=\"true\"/>\n                        <b:AVSResultCode i:nil=\"true\"/>\n                        <b:AccountHolderName> </b:AccountHolderName>\n                        <b:AccountType>R</b:AccountType>\n                        <b:AccountTypeIndicator>V</b:AccountTypeIndicator>\n                        <b:AccountTypeTransform>VISA</b:AccountTypeTransform>\n                        <b:AuthCode>319451</b:AuthCode>\n                        <b:AuthorizedAmount>-1500</b:AuthorizedAmount>\n                        <b:BatchDateTime>2023-06-13T20:00:00</b:BatchDateTime>\n                        <b:BatchId>215499904</b:BatchId>\n                        <b:CVVMessage i:nil=\"true\"/>\n                        <b:CVVResponseCode i:nil=\"true\"/>\n                        <b:CardBIN>411111</b:CardBIN>\n                        <b:CardBrand>VISA</b:CardBrand>\n                        <b:CardClass>Credit</b:CardClass>\n                        <b:CardIdentifier i:nil=\"true\"/>\n                        <b:ClerkId>clearkID</b:ClerkId>\n                        <b:ClerkName i:nil=\"true\"/>\n                        <b:CustomerAddress>123 Test St</b:CustomerAddress>\n                        <b:CustomerEmail i:nil=\"true\"/>\n                        <b:CustomerNumber i:nil=\"true\"/>\n                        <b:CustomerZip>12345</b:CustomerZip>\n                        <b:EntryModeId>KD</b:EntryModeId>\n                        <b:EntryModeTransform>KEYED</b:EntryModeTransform>\n                        <b:ExpirationDate>0527</b:ExpirationDate>\n                        <b:FeeAmount>0</b:FeeAmount>\n                        <b:FeeIsSurcharge>false</b:FeeIsSurcharge>\n                        <b:FirstName i:nil=\"true\"/>\n                        <b:GrandParentId>11857</b:GrandParentId>\n                        <b:GreatGrandParentId i:nil=\"true\"/>\n                        <b:HolderType>P</b:HolderType>\n                        <b:IIASQualified>false</b:IIASQualified>\n                        <b:IndustryTypeTransform>Direct Marketing</b:IndustryTypeTransform>\n                        <b:InvoiceNumber i:nil=\"true\"/>\n                        <b:IsoCurrencyCode>USD</b:IsoCurrencyCode>\n                        <b:LastFour>1111</b:LastFour>\n                        <b:LastName i:nil=\"true\"/>\n                        <b:MaskedAccount>****1111</b:MaskedAccount>\n                        <b:Memo i:nil=\"true\"/>\n                        <b:MerchantAccountId>13026001</b:MerchantAccountId>\n                        <b:MerchantAddress>123 Test St</b:MerchantAddress>\n                        <b:MerchantAddress2 i:nil=\"true\"/>\n                        <b:MerchantAddress3 i:nil=\"true\"/>\n                        <b:MerchantCategoryCode>5999</b:MerchantCategoryCode>\n                        <b:MerchantCity>Lancaster</b:MerchantCity>\n                        <b:MerchantEmail>email@bridgepaynetwork.com</b:MerchantEmail>\n                        <b:MerchantId>12345000</b:MerchantId>\n                        <b:MerchantName>Merchant Account</b:MerchantName>\n                        <b:MerchantPhone>5555555555</b:MerchantPhone>\n                        <b:MerchantState>PA</b:MerchantState>\n                        <b:MerchantZip>17602</b:MerchantZip>\n                        <b:NetAmount>1500</b:NetAmount>\n                        <b:NetworkMID>12345001</b:NetworkMID>\n                        <b:NetworkReferenceNumber>944789321</b:NetworkReferenceNumber>\n                        <b:NetworkTerminalId>10001</b:NetworkTerminalId>\n                        <b:OrganizationId>11861</b:OrganizationId>\n                        <b:OriginalReferenceNumber i:nil=\"true\"/>\n                        <b:ParentId>11860</b:ParentId>\n                        <b:PaymentMethodId>VC</b:PaymentMethodId>\n                        <b:PaymentMethodIndicator>C</b:PaymentMethodIndicator>\n                        <b:PaymentMethodTransform>CREDIT</b:PaymentMethodTransform>\n                        <b:ProcessorResponse>Credit Posted</b:ProcessorResponse>\n                        <b:ProviderResponseCode i:nil=\"true\"/>\n                        <b:PurchaseOrderNumber i:nil=\"true\"/>\n                        <b:ReceiptTagData i:nil=\"true\"/>\n                        <b:RemainingAmount>1500</b:RemainingAmount>\n                        <b:RequestedAmount>-1500</b:RequestedAmount>\n                        <b:ResellerId>5712</b:ResellerId>\n                        <b:ResponseCode>A02</b:ResponseCode>\n                        <b:SaleDateTime>2023-06-13T08:56:12.037</b:SaleDateTime>\n                        <b:SettleAmount>-1500</b:SettleAmount>\n                        <b:SettlementStatus>Settled</b:SettlementStatus>\n                        <b:TaxAmount>245</b:TaxAmount>\n                        <b:TerminalId i:nil=\"true\"/>\n                        <b:TipAmount i:nil=\"true\"/>\n                        <b:Token>1000000010261111</b:Token>\n                        <b:TransactionAux i:nil=\"true\"/>\n                        <b:TransactionCustomFields xmlns:c=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\">\n                            <c:TransactionCustomField>\n                                <c:CustomFieldConfigId>94</c:CustomFieldConfigId>\n                                <c:CustomizableEntityId>1</c:CustomizableEntityId>\n                                <c:DisplayName>Color</c:DisplayName>\n                                <c:EntityId>4396523304</c:EntityId>\n                                <c:FieldName>COLOR</c:FieldName>\n                                <c:Id>274791</c:Id>\n                                <c:OwnerId>11860</c:OwnerId>\n                                <c:ShowOnReceipt>false</c:ShowOnReceipt>\n                                <c:TableName>CHARGE_TRANSACTION</c:TableName>\n                                <c:Value>Red</c:Value>\n                            </c:TransactionCustomField>\n                        </b:TransactionCustomFields>\n                        <b:TransactionDynamicDescriptors i:nil=\"true\" xmlns:c=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\"/>\n                        <b:TransactionId>4396523304</b:TransactionId>\n                        <b:TransactionIndustryType>DM</b:TransactionIndustryType>\n                        <b:TransactionSourceIP>192.168.17.253:56032</b:TransactionSourceIP>\n                        <b:TransactionStatus>Confirmed</b:TransactionStatus>\n                        <b:TransactionType>Refund</b:TransactionType>\n                        <b:TransactionTypeTransform>Refund</b:TransactionTypeTransform>\n                        <b:VoidIndicator>false</b:VoidIndicator>\n                    </b:TransactionRow>\n                </a:TransactionList>\n            </PublicGetTransactionsByFilterResult>\n        </PublicGetTransactionsByFilterResponse>\n    </s:Body>\n</s:Envelope>"}],"_postman_id":"d80c9a52-b4fe-4f43-927b-2eab0eaa12ee"},{"name":"Transactions by Batch Number","event":[{"listen":"prerequest","script":{"id":"0a005057-9758-4315-b768-696aaff3cc45","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"b211f0e0-6281-495c-b8ad-9fbf373257fd","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","\r","var jsonObject = xml2Json(responseBody);\r","\r","var returnedTransactionId = (jsonObject[\"s:Envelope\"][\"s:Body\"][\"PublicGetTransactionsByFilterV2Response\"][\"PublicGetTransactionsByFilterV2Result\"][\"a:TransactionList\"][\"b:TransactionId\"]);\r","\r","if (returnedTransactionId = pm.environment.get(\"TransactionId\")) {\r","    pm.test(\"TransactionId Matches: \" + returnedTransactionId, true);\r","} else {\r","    pm.test(\"Check If Transaction even worked\", function () {\r","        pm.expect.fail();\r","    });    \r","}"],"type":"text/javascript"}}],"id":"ebc7e170-456c-464a-a312-0790eb564a47","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true,"content-type":true,"user-agent":true},"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"text/xml;charset=UTF-8"},{"key":"SOAPAction","type":"text","value":"http://bridgepaynetsecuretx.com/reportingapi_v2/IReportingAPIV2/PublicGetTransactionsByFilterV2"},{"key":"User-Agent","type":"text","value":"Apache-HttpClient/4.1.1 (java 1.5)"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v2\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n   <soapenv:Header/>\r\n     <soapenv:Body>\r\n      <rep:PublicGetTransactionsByFilterV2>\r\n         <rep:credentials>\r\n            <brid:Password></brid:Password>\r\n            <brid:UserName></brid:UserName>\r\n         </rep:credentials>\r\n         <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n               <brid1:BatchID></brid1:BatchID>\r\n            <brid1:Skip>00</brid1:Skip>\r\n            <brid1:Take>10</brid1:Take>\r\n         </rep:filterObject>\r\n      </rep:PublicGetTransactionsByFilterV2>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v2","description":"<p>Returns all transactions within a specified batch.</p>\n","urlObject":{"protocol":"https","path":["Reporting.API","ReportingAPI.svc","v2"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"41e1634e-b8f1-4745-8d8b-89a579470426","name":"Transactions by Batch Number","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"http://bridgepaynetsecuretx.com/reportingapi_v2/IReportingAPIV2/PublicGetTransactionsByFilterV2","type":"text"},{"key":"User-Agent","value":"Apache-HttpClient/4.1.1 (java 1.5)","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v2\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n   <soapenv:Header/>\r\n     <soapenv:Body>\r\n      <rep:PublicGetTransactionsByFilterV2>\r\n         <rep:credentials>\r\n            <brid:Password></brid:Password>\r\n            <brid:UserName></brid:UserName>\r\n         </rep:credentials>\r\n         <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n               <brid1:BatchID></brid1:BatchID>\r\n            <brid1:Skip>00</brid1:Skip>\r\n            <brid1:Take>10</brid1:Take>\r\n         </rep:filterObject>\r\n      </rep:PublicGetTransactionsByFilterV2>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v2"},"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\">\n    <s:Body>\n        <PublicGetTransactionsByFilterV2Response xmlns=\"http://bridgepaynetsecuretx.com/reportingapi_v2\">\n            <PublicGetTransactionsByFilterV2Result xmlns:a=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.SetModels\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\n                <DataSourceResponses xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <Messages xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <ObjectState xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\">Unchanged</ObjectState>\n                <a:RecordAuthSum>1907977</a:RecordAuthSum>\n                <a:RecordCount>883</a:RecordCount>\n                <a:RecordSum>3676677</a:RecordSum>\n                <a:TransactionList xmlns:b=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.ViewModels\">\n                    <b:TransactionRow>\n                        <b:AVSMessage i:nil=\"true\"/>\n                        <b:AVSResultCode i:nil=\"true\"/>\n                        <b:AccountHolderName> </b:AccountHolderName>\n                        <b:AccountType>R</b:AccountType>\n                        <b:AccountTypeIndicator>M</b:AccountTypeIndicator>\n                        <b:AccountTypeTransform>MASTER CARD</b:AccountTypeTransform>\n                        <b:AuthCode>833871</b:AuthCode>\n                        <b:AuthorizedAmount>2500</b:AuthorizedAmount>\n                        <b:BatchDateTime>2022-01-15T00:00:00</b:BatchDateTime>\n                        <b:BatchId>208987105</b:BatchId>\n                        <b:CVVMessage i:nil=\"true\"/>\n                        <b:CVVResponseCode i:nil=\"true\"/>\n                        <b:CardBIN>411111</b:CardBIN>\n                        <b:CardBrand>MASTERCARD</b:CardBrand>\n                        <b:CardClass>Credit</b:CardClass>\n                        <b:CardIdentifier i:nil=\"true\"/>\n                        <b:ClerkId>tokenpay11861api20220814020838539</b:ClerkId>\n                        <b:ClerkName i:nil=\"true\"/>\n                        <b:CustomerAddress i:nil=\"true\"/>\n                        <b:CustomerEmail i:nil=\"true\"/>\n                        <b:CustomerNumber i:nil=\"true\"/>\n                        <b:CustomerZip>33774</b:CustomerZip>\n                        <b:EntryModeId>KD</b:EntryModeId>\n                        <b:EntryModeTransform>KEYED</b:EntryModeTransform>\n                        <b:ExpirationDate>1024</b:ExpirationDate>\n                        <b:FeeAmount>0</b:FeeAmount>\n                        <b:FeeIsSurcharge>false</b:FeeIsSurcharge>\n                        <b:FirstName i:nil=\"true\"/>\n                        <b:GrandParentId>11857</b:GrandParentId>\n                        <b:GreatGrandParentId i:nil=\"true\"/>\n                        <b:HolderType>P</b:HolderType>\n                        <b:IIASQualified>false</b:IIASQualified>\n                        <b:IndustryTypeTransform>Retail</b:IndustryTypeTransform>\n                        <b:InvoiceNumber i:nil=\"true\"/>\n                        <b:IsoCurrencyCode>USD</b:IsoCurrencyCode>\n                        <b:LastFour>5454</b:LastFour>\n                        <b:LastName i:nil=\"true\"/>\n                        <b:MaskedAccount>5****5454</b:MaskedAccount>\n                        <b:Memo i:nil=\"true\"/>\n                        <b:MerchantAccountId>13026001</b:MerchantAccountId>\n                        <b:MerchantAddress>123 Test St</b:MerchantAddress>\n                        <b:MerchantAddress2 i:nil=\"true\"/>\n                        <b:MerchantAddress3 i:nil=\"true\"/>\n                        <b:MerchantCategoryCode>5999</b:MerchantCategoryCode>\n                        <b:MerchantCity>Lancaster</b:MerchantCity>\n                        <b:MerchantEmail>email@bridgepaynetwork.com</b:MerchantEmail>\n                        <b:MerchantId>12345000</b:MerchantId>\n                        <b:MerchantName>Merchant Account</b:MerchantName>\n                        <b:MerchantPhone>5555555555</b:MerchantPhone>\n                        <b:MerchantState>PA</b:MerchantState>\n                        <b:MerchantZip>17602</b:MerchantZip>\n                        <b:NetAmount>2500</b:NetAmount>\n                        <b:NetworkMID>12345001</b:NetworkMID>\n                        <b:NetworkReferenceNumber>788232597</b:NetworkReferenceNumber>\n                        <b:NetworkTerminalId>10001</b:NetworkTerminalId>\n                        <b:OrganizationId>11861</b:OrganizationId>\n                        <b:OriginalReferenceNumber i:nil=\"true\"/>\n                        <b:ParentId>11860</b:ParentId>\n                        <b:PaymentMethodId>MC</b:PaymentMethodId>\n                        <b:PaymentMethodIndicator>C</b:PaymentMethodIndicator>\n                        <b:PaymentMethodTransform>CREDIT</b:PaymentMethodTransform>\n                        <b:ProcessorResponse>Approved</b:ProcessorResponse>\n                        <b:ProviderResponseCode i:nil=\"true\"/>\n                        <b:PurchaseOrderNumber i:nil=\"true\"/>\n                        <b:ReceiptTagData i:nil=\"true\"/>\n                        <b:RemainingAmount>2500</b:RemainingAmount>\n                        <b:RequestedAmount>2500</b:RequestedAmount>\n                        <b:ResellerId>5712</b:ResellerId>\n                        <b:ResponseCode>A01</b:ResponseCode>\n                        <b:SaleDateTime>2022-01-14T16:56:42.067</b:SaleDateTime>\n                        <b:SettleAmount>2500</b:SettleAmount>\n                        <b:SettlementStatus>Settled</b:SettlementStatus>\n                        <b:TaxAmount>245</b:TaxAmount>\n                        <b:TerminalId i:nil=\"true\"/>\n                        <b:TipAmount i:nil=\"true\"/>\n                        <b:Token>1000000044935454</b:Token>\n                        <b:TransactionAux>\n                            <b:ContractId i:nil=\"true\"/>\n                            <b:Id>4060038005</b:Id>\n                            <b:OriginatingTechnologySource>BridgeComm</b:OriginatingTechnologySource>\n                            <b:SoftwareVendor/>\n                        </b:TransactionAux>\n                        <b:TransactionCustomFields xmlns:c=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\"/>\n                        <b:TransactionDynamicDescriptors i:nil=\"true\" xmlns:c=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\"/>\n                        <b:TransactionId>4060038005</b:TransactionId>\n                        <b:TransactionIndustryType>RE</b:TransactionIndustryType>\n                        <b:TransactionSourceIP>73.175.81.76:57177</b:TransactionSourceIP>\n                        <b:TransactionStatus>Confirmed</b:TransactionStatus>\n                        <b:TransactionType>Sale</b:TransactionType>\n                        <b:TransactionTypeTransform>Sale</b:TransactionTypeTransform>\n                        <b:VoidIndicator>false</b:VoidIndicator>\n                    </b:TransactionRow>\n                </a:TransactionList>\n            </PublicGetTransactionsByFilterV2Result>\n        </PublicGetTransactionsByFilterV2Response>\n    </s:Body>\n</s:Envelope>"}],"_postman_id":"ebc7e170-456c-464a-a312-0790eb564a47"},{"name":"Transactions by Merchant Group","event":[{"listen":"prerequest","script":{"id":"6f19f1d1-4a24-47a8-81f0-d48a05f6b527","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"e0f225b4-5ab9-4ad4-8a59-3eb185ecf4e9","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","\r","var jsonObject = xml2Json(responseBody);\r","\r","var returnedTransactionId = (jsonObject[\"s:Envelope\"][\"s:Body\"][\"PublicGetTransactionsByFilterV2Response\"][\"PublicGetTransactionsByFilterV2Result\"][\"a:TransactionList\"][\"b:TransactionId\"]);\r","\r","if (returnedTransactionId = pm.environment.get(\"TransactionId\")) {\r","    pm.test(\"TransactionId Matches: \" + returnedTransactionId, true);\r","} else {\r","    pm.test(\"Check If Transaction even worked\", function () {\r","        pm.expect.fail();\r","    });    \r","}"],"type":"text/javascript"}}],"id":"7d876735-9e85-4fca-b4d2-14fd08a5e8a5","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true,"content-type":true,"user-agent":true},"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"text/xml;charset=UTF-8"},{"key":"SOAPAction","type":"text","value":"http://bridgepaynetsecuretx.com/reportingapi_v2/IReportingAPIV2/PublicGetTransactionsByFilterV2"},{"key":"User-Agent","type":"text","value":"Apache-HttpClient/4.1.1 (java 1.5)"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v2\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n   <soapenv:Header/>\r\n     <soapenv:Body>\r\n      <rep:PublicGetTransactionsByFilterV2>\r\n         <rep:credentials>\r\n           <brid:Password></brid:Password>\r\n           <brid:UserName></brid:UserName>\r\n         </rep:credentials>\r\n         <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n            <brid1:MerchantID></brid1:MerchantID>\r\n            <brid1:Skip>00</brid1:Skip>\r\n            <brid1:Take>10</brid1:Take>\r\n         </rep:filterObject>\r\n      </rep:PublicGetTransactionsByFilterV2>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v2","description":"<p>Returns all transactions for a Merchant Group. This is used primarily to retrieve a total transaction count.</p>\n","urlObject":{"protocol":"https","path":["Reporting.API","ReportingAPI.svc","v2"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"47121806-baac-4822-ae5b-85807f352222","name":"Transactions by Merchant Group","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"http://bridgepaynetsecuretx.com/reportingapi_v2/IReportingAPIV2/PublicGetTransactionsByFilterV2","type":"text"},{"key":"User-Agent","value":"Apache-HttpClient/4.1.1 (java 1.5)","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v2\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n   <soapenv:Header/>\r\n     <soapenv:Body>\r\n      <rep:PublicGetTransactionsByFilterV2>\r\n         <rep:credentials>\r\n           <brid:Password></brid:Password>\r\n           <brid:UserName></brid:UserName>\r\n         </rep:credentials>\r\n         <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n            <brid1:MerchantID></brid1:MerchantID>\r\n            <brid1:Skip>00</brid1:Skip>\r\n            <brid1:Take>10</brid1:Take>\r\n         </rep:filterObject>\r\n      </rep:PublicGetTransactionsByFilterV2>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Bridgepay.Reporting.API/ReportingAPI.svc/v2"},"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\">\n    <s:Body>\n        <PublicGetTransactionsByFilterV2Response xmlns=\"http://bridgepaynetsecuretx.com/reportingapi_v2\">\n            <PublicGetTransactionsByFilterV2Result xmlns:a=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.SetModels\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\n                <DataSourceResponses xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <Messages xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <ObjectState xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\">Unchanged</ObjectState>\n                <a:RecordAuthSum>1907977</a:RecordAuthSum>\n                <a:RecordCount>883</a:RecordCount>\n                <a:RecordSum>3676677</a:RecordSum>\n                <a:TransactionList xmlns:b=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.ViewModels\">\n                    <b:TransactionRow>\n                        <b:AVSMessage i:nil=\"true\"/>\n                        <b:AVSResultCode i:nil=\"true\"/>\n                        <b:AccountHolderName> </b:AccountHolderName>\n                        <b:AccountType>R</b:AccountType>\n                        <b:AccountTypeIndicator>M</b:AccountTypeIndicator>\n                        <b:AccountTypeTransform>MASTER CARD</b:AccountTypeTransform>\n                        <b:AuthCode>833871</b:AuthCode>\n                        <b:AuthorizedAmount>2500</b:AuthorizedAmount>\n                        <b:BatchDateTime>2022-01-15T00:00:00</b:BatchDateTime>\n                        <b:BatchId>208987105</b:BatchId>\n                        <b:CVVMessage i:nil=\"true\"/>\n                        <b:CVVResponseCode i:nil=\"true\"/>\n                        <b:CardBIN>54545454</b:CardBIN>\n                        <b:CardBrand>MASTERCARD</b:CardBrand>\n                        <b:CardClass>Credit</b:CardClass>\n                        <b:CardIdentifier i:nil=\"true\"/>\n                        <b:ClerkId>tokenpay11861api20220814020838539</b:ClerkId>\n                        <b:ClerkName i:nil=\"true\"/>\n                        <b:CustomerAddress i:nil=\"true\"/>\n                        <b:CustomerEmail i:nil=\"true\"/>\n                        <b:CustomerNumber i:nil=\"true\"/>\n                        <b:CustomerZip>33774</b:CustomerZip>\n                        <b:EntryModeId>KD</b:EntryModeId>\n                        <b:EntryModeTransform>KEYED</b:EntryModeTransform>\n                        <b:ExpirationDate>1024</b:ExpirationDate>\n                        <b:FeeAmount>0</b:FeeAmount>\n                        <b:FeeIsSurcharge>false</b:FeeIsSurcharge>\n                        <b:FirstName i:nil=\"true\"/>\n                        <b:GrandParentId>11857</b:GrandParentId>\n                        <b:GreatGrandParentId i:nil=\"true\"/>\n                        <b:HolderType>P</b:HolderType>\n                        <b:IIASQualified>false</b:IIASQualified>\n                        <b:IndustryTypeTransform>Retail</b:IndustryTypeTransform>\n                        <b:InvoiceNumber i:nil=\"true\"/>\n                        <b:IsoCurrencyCode>USD</b:IsoCurrencyCode>\n                        <b:LastFour>5454</b:LastFour>\n                        <b:LastName i:nil=\"true\"/>\n                        <b:MaskedAccount>5****5454</b:MaskedAccount>\n                        <b:Memo i:nil=\"true\"/>\n                        <b:MerchantAccountId>13026001</b:MerchantAccountId>\n                        <b:MerchantAddress>123 Test St</b:MerchantAddress>\n                        <b:MerchantAddress2 i:nil=\"true\"/>\n                        <b:MerchantAddress3 i:nil=\"true\"/>\n                        <b:MerchantCategoryCode>5999</b:MerchantCategoryCode>\n                        <b:MerchantCity>Lancaster</b:MerchantCity>\n                        <b:MerchantEmail>email@bridgepaynetwork.com</b:MerchantEmail>\n                        <b:MerchantId>12345000</b:MerchantId>\n                        <b:MerchantName>Merchant Account</b:MerchantName>\n                        <b:MerchantPhone>5555555555</b:MerchantPhone>\n                        <b:MerchantState>PA</b:MerchantState>\n                        <b:MerchantZip>17602</b:MerchantZip>\n                        <b:NetAmount>2500</b:NetAmount>\n                        <b:NetworkMID>12345001</b:NetworkMID>\n                        <b:NetworkReferenceNumber>788232597</b:NetworkReferenceNumber>\n                        <b:NetworkTerminalId>10001</b:NetworkTerminalId>\n                        <b:OrganizationId>11861</b:OrganizationId>\n                        <b:OriginalReferenceNumber i:nil=\"true\"/>\n                        <b:ParentId>11860</b:ParentId>\n                        <b:PaymentMethodId>MC</b:PaymentMethodId>\n                        <b:PaymentMethodIndicator>C</b:PaymentMethodIndicator>\n                        <b:PaymentMethodTransform>CREDIT</b:PaymentMethodTransform>\n                        <b:ProcessorResponse>Approved</b:ProcessorResponse>\n                        <b:ProviderResponseCode i:nil=\"true\"/>\n                        <b:PurchaseOrderNumber i:nil=\"true\"/>\n                        <b:ReceiptTagData i:nil=\"true\"/>\n                        <b:RemainingAmount>2500</b:RemainingAmount>\n                        <b:RequestedAmount>2500</b:RequestedAmount>\n                        <b:ResellerId>5712</b:ResellerId>\n                        <b:ResponseCode>A01</b:ResponseCode>\n                        <b:SaleDateTime>2022-01-14T16:56:42.067</b:SaleDateTime>\n                        <b:SettleAmount>2500</b:SettleAmount>\n                        <b:SettlementStatus>Settled</b:SettlementStatus>\n                        <b:TaxAmount>245</b:TaxAmount>\n                        <b:TerminalId i:nil=\"true\"/>\n                        <b:TipAmount i:nil=\"true\"/>\n                        <b:Token>1000000044935454</b:Token>\n                        <b:TransactionAux>\n                            <b:ContractId i:nil=\"true\"/>\n                            <b:Id>4060038005</b:Id>\n                            <b:OriginatingTechnologySource>BridgeComm</b:OriginatingTechnologySource>\n                            <b:SoftwareVendor/>\n                        </b:TransactionAux>\n                        <b:TransactionCustomFields xmlns:c=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\"/>\n                        <b:TransactionDynamicDescriptors i:nil=\"true\" xmlns:c=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\"/>\n                        <b:TransactionId>4060038005</b:TransactionId>\n                        <b:TransactionIndustryType>RE</b:TransactionIndustryType>\n                        <b:TransactionSourceIP>73.175.81.76:57177</b:TransactionSourceIP>\n                        <b:TransactionStatus>Confirmed</b:TransactionStatus>\n                        <b:TransactionType>Sale</b:TransactionType>\n                        <b:TransactionTypeTransform>Sale</b:TransactionTypeTransform>\n                        <b:VoidIndicator>false</b:VoidIndicator>\n                    </b:TransactionRow>\n                </a:TransactionList>\n            </PublicGetTransactionsByFilterV2Result>\n        </PublicGetTransactionsByFilterV2Response>\n    </s:Body>\n</s:Envelope>"}],"_postman_id":"7d876735-9e85-4fca-b4d2-14fd08a5e8a5"},{"name":"Transactions by Date Range by Merchant Group","event":[{"listen":"prerequest","script":{"id":"13d282dd-36b6-432e-9556-499ca6100ee7","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"2088fdfa-3d40-44fc-8233-a66c79662ea2","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","\r","var jsonObject = xml2Json(responseBody);\r","\r","var returnedTransactionId = (jsonObject[\"s:Envelope\"][\"s:Body\"][\"PublicGetTransactionsByFilterV2Response\"][\"PublicGetTransactionsByFilterV2Result\"][\"a:TransactionList\"][\"b:TransactionId\"]);\r","\r","if (returnedTransactionId = pm.environment.get(\"TransactionId\")) {\r","    pm.test(\"TransactionId Matches: \" + returnedTransactionId, true);\r","} else {\r","    pm.test(\"Check If Transaction even worked\", function () {\r","        pm.expect.fail();\r","    });    \r","}"],"type":"text/javascript"}}],"id":"e066e6d9-f297-4fc6-8b63-f736ccaca3c5","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true,"content-type":true,"user-agent":true},"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"text/xml;charset=UTF-8"},{"key":"SOAPAction","type":"text","value":"http://bridgepaynetsecuretx.com/reportingapi_v2/IReportingAPIV2/PublicGetTransactionsByFilterV2"},{"key":"User-Agent","type":"text","value":"Apache-HttpClient/4.1.1 (java 1.5)"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v2\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n   <soapenv:Header/>\r\n     <soapenv:Body>\r\n      <rep:PublicGetTransactionsByFilterV2>\r\n         <rep:credentials>\r\n            <brid:Password></brid:Password>\r\n            <brid:UserName></brid:UserName>\r\n         </rep:credentials>\r\n         <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n            <brid1:DateRangeFrom></brid1:DateRangeFrom>\r\n            <brid1:DateRangeTo></brid1:DateRangeTo>\r\n            <brid1:Skip>00</brid1:Skip>\r\n            <brid1:Take>30</brid1:Take>\r\n         </rep:filterObject>\r\n      </rep:PublicGetTransactionsByFilterV2>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v2","description":"<p>Returns all transactions for a Merchant Group within a specified date range.</p>\n","urlObject":{"protocol":"https","path":["Reporting.API","ReportingAPI.svc","v2"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"c52dd934-8788-46b8-809a-1335511d34b8","name":"Transactions by Date Range by Merchant Group","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"http://bridgepaynetsecuretx.com/reportingapi_v2/IReportingAPIV2/PublicGetTransactionsByFilterV2","type":"text"},{"key":"User-Agent","value":"Apache-HttpClient/4.1.1 (java 1.5)","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v2\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n   <soapenv:Header/>\r\n     <soapenv:Body>\r\n      <rep:PublicGetTransactionsByFilterV2>\r\n         <rep:credentials>\r\n            <brid:Password></brid:Password>\r\n            <brid:UserName></brid:UserName>\r\n         </rep:credentials>\r\n         <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n            <brid1:DateRangeFrom></brid1:DateRangeFrom>\r\n            <brid1:DateRangeTo></brid1:DateRangeTo>\r\n            <brid1:Skip>00</brid1:Skip>\r\n            <brid1:Take>30</brid1:Take>\r\n         </rep:filterObject>\r\n      </rep:PublicGetTransactionsByFilterV2>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v2"},"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\">\n    <s:Body>\n        <PublicGetTransactionsByFilterV2Response xmlns=\"http://bridgepaynetsecuretx.com/reportingapi_v2\">\n            <PublicGetTransactionsByFilterV2Result xmlns:a=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.SetModels\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\n                <DataSourceResponses xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <Messages xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <ObjectState xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\">Unchanged</ObjectState>\n                <a:RecordAuthSum>1907977</a:RecordAuthSum>\n                <a:RecordCount>883</a:RecordCount>\n                <a:RecordSum>3676677</a:RecordSum>\n                <a:TransactionList xmlns:b=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.ViewModels\">\n                    <b:TransactionRow>\n                        <b:AVSMessage i:nil=\"true\"/>\n                        <b:AVSResultCode i:nil=\"true\"/>\n                        <b:AccountHolderName> </b:AccountHolderName>\n                        <b:AccountType>R</b:AccountType>\n                        <b:AccountTypeIndicator>M</b:AccountTypeIndicator>\n                        <b:AccountTypeTransform>MASTER CARD</b:AccountTypeTransform>\n                        <b:AuthCode>833871</b:AuthCode>\n                        <b:AuthorizedAmount>2500</b:AuthorizedAmount>\n                        <b:BatchDateTime>2022-01-15T00:00:00</b:BatchDateTime>\n                        <b:BatchId>208987105</b:BatchId>\n                        <b:CVVMessage i:nil=\"true\"/>\n                        <b:CVVResponseCode i:nil=\"true\"/>\n                        <b:CardBIN>54545454</b:CardBIN>\n                        <b:CardBrand>MASTERCARD</b:CardBrand>\n                        <b:CardClass>Credit</b:CardClass>\n                        <b:CardIdentifier i:nil=\"true\"/>\n                        <b:ClerkId>tokenpay11861api20220814020838539</b:ClerkId>\n                        <b:ClerkName i:nil=\"true\"/>\n                        <b:CustomerAddress i:nil=\"true\"/>\n                        <b:CustomerEmail i:nil=\"true\"/>\n                        <b:CustomerNumber i:nil=\"true\"/>\n                        <b:CustomerZip>33774</b:CustomerZip>\n                        <b:EntryModeId>KD</b:EntryModeId>\n                        <b:EntryModeTransform>KEYED</b:EntryModeTransform>\n                        <b:ExpirationDate>1024</b:ExpirationDate>\n                        <b:FeeAmount>0</b:FeeAmount>\n                        <b:FeeIsSurcharge>false</b:FeeIsSurcharge>\n                        <b:FirstName i:nil=\"true\"/>\n                        <b:GrandParentId>11857</b:GrandParentId>\n                        <b:GreatGrandParentId i:nil=\"true\"/>\n                        <b:HolderType>P</b:HolderType>\n                        <b:IIASQualified>false</b:IIASQualified>\n                        <b:IndustryTypeTransform>Retail</b:IndustryTypeTransform>\n                        <b:InvoiceNumber i:nil=\"true\"/>\n                        <b:IsoCurrencyCode>USD</b:IsoCurrencyCode>\n                        <b:LastFour>5454</b:LastFour>\n                        <b:LastName i:nil=\"true\"/>\n                        <b:MaskedAccount>5****5454</b:MaskedAccount>\n                        <b:Memo i:nil=\"true\"/>\n                        <b:MerchantAccountId>13026001</b:MerchantAccountId>\n                        <b:MerchantAddress>123 Test St</b:MerchantAddress>\n                        <b:MerchantAddress2 i:nil=\"true\"/>\n                        <b:MerchantAddress3 i:nil=\"true\"/>\n                        <b:MerchantCategoryCode>5999</b:MerchantCategoryCode>\n                        <b:MerchantCity>Lancaster</b:MerchantCity>\n                        <b:MerchantEmail>email@bridgepaynetwork.com</b:MerchantEmail>\n                        <b:MerchantId>12345000</b:MerchantId>\n                        <b:MerchantName>Merchant Account</b:MerchantName>\n                        <b:MerchantPhone>5555555555</b:MerchantPhone>\n                        <b:MerchantState>PA</b:MerchantState>\n                        <b:MerchantZip>17602</b:MerchantZip>\n                        <b:NetAmount>2500</b:NetAmount>\n                        <b:NetworkMID>12345001</b:NetworkMID>\n                        <b:NetworkReferenceNumber>788232597</b:NetworkReferenceNumber>\n                        <b:NetworkTerminalId>10001</b:NetworkTerminalId>\n                        <b:OrganizationId>11861</b:OrganizationId>\n                        <b:OriginalReferenceNumber i:nil=\"true\"/>\n                        <b:ParentId>11860</b:ParentId>\n                        <b:PaymentMethodId>MC</b:PaymentMethodId>\n                        <b:PaymentMethodIndicator>C</b:PaymentMethodIndicator>\n                        <b:PaymentMethodTransform>CREDIT</b:PaymentMethodTransform>\n                        <b:ProcessorResponse>Approved</b:ProcessorResponse>\n                        <b:ProviderResponseCode i:nil=\"true\"/>\n                        <b:PurchaseOrderNumber i:nil=\"true\"/>\n                        <b:ReceiptTagData i:nil=\"true\"/>\n                        <b:RemainingAmount>2500</b:RemainingAmount>\n                        <b:RequestedAmount>2500</b:RequestedAmount>\n                        <b:ResellerId>5712</b:ResellerId>\n                        <b:ResponseCode>A01</b:ResponseCode>\n                        <b:SaleDateTime>2022-01-14T16:56:42.067</b:SaleDateTime>\n                        <b:SettleAmount>2500</b:SettleAmount>\n                        <b:SettlementStatus>Settled</b:SettlementStatus>\n                        <b:TaxAmount>245</b:TaxAmount>\n                        <b:TerminalId i:nil=\"true\"/>\n                        <b:TipAmount i:nil=\"true\"/>\n                        <b:Token>1000000044935454</b:Token>\n                        <b:TransactionAux>\n                            <b:ContractId i:nil=\"true\"/>\n                            <b:Id>4060038005</b:Id>\n                            <b:OriginatingTechnologySource>BridgeComm</b:OriginatingTechnologySource>\n                            <b:SoftwareVendor/>\n                        </b:TransactionAux>\n                        <b:TransactionCustomFields xmlns:c=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\"/>\n                        <b:TransactionDynamicDescriptors i:nil=\"true\" xmlns:c=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\"/>\n                        <b:TransactionId>4060038005</b:TransactionId>\n                        <b:TransactionIndustryType>RE</b:TransactionIndustryType>\n                        <b:TransactionSourceIP>73.175.81.76:57177</b:TransactionSourceIP>\n                        <b:TransactionStatus>Confirmed</b:TransactionStatus>\n                        <b:TransactionType>Sale</b:TransactionType>\n                        <b:TransactionTypeTransform>Sale</b:TransactionTypeTransform>\n                        <b:VoidIndicator>false</b:VoidIndicator>\n                    </b:TransactionRow>\n                </a:TransactionList>\n            </PublicGetTransactionsByFilterV2Result>\n        </PublicGetTransactionsByFilterV2Response>\n    </s:Body>\n</s:Envelope>"}],"_postman_id":"e066e6d9-f297-4fc6-8b63-f736ccaca3c5"},{"name":"Transactions Sorted with OrderByList","event":[{"listen":"prerequest","script":{"id":"0a005057-9758-4315-b768-696aaff3cc45","exec":[""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"b211f0e0-6281-495c-b8ad-9fbf373257fd","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","\r","var jsonObject = xml2Json(responseBody);\r","\r","var returnedTransactionId = (jsonObject[\"s:Envelope\"][\"s:Body\"][\"PublicGetTransactionsByFilterV2Response\"][\"PublicGetTransactionsByFilterV2Result\"][\"a:TransactionList\"][\"b:TransactionId\"]);\r","\r","if (returnedTransactionId = pm.environment.get(\"TransactionId\")) {\r","    pm.test(\"TransactionId Matches: \" + returnedTransactionId, true);\r","} else {\r","    pm.test(\"Check If Transaction even worked\", function () {\r","        pm.expect.fail();\r","    });    \r","}"],"type":"text/javascript","packages":{}}}],"id":"ff334384-807f-40de-a244-0aba0fe027b0","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true,"content-type":true,"user-agent":true},"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"http://bridgepaynetsecuretx.com/reportingapi_v2/IReportingAPIV2/PublicGetTransactionsByFilterV2","type":"text"},{"key":"User-Agent","value":"Apache-HttpClient/4.1.1 (java 1.5)","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v2\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n    <soapenv:Header/>\r\n    <soapenv:Body>\r\n        <rep:PublicGetTransactionsByFilterV2>\r\n            <rep:credentials>\r\n                <brid:Password></brid:Password>\r\n                <brid:UserName></brid:UserName>\r\n            </rep:credentials>\r\n            <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n                <brid1:OrderByList>\r\n                    <arr:KeyValueOfstringstring>\r\n                        <arr:Key>DataElementName</arr:Key>\r\n                        <arr:Value>DataElementValue</arr:Value>\r\n                    </arr:KeyValueOfstringstring>\r\n                </brid1:OrderByList>\r\n                <brid1:Skip>00</brid1:Skip>\r\n                <brid1:Take>10</brid1:Take>\r\n            </rep:filterObject>\r\n        </rep:PublicGetTransactionsByFilterV2>\r\n    </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v2","description":"<p>Returns a set of transactions ordered by the corresponding Key and Value pair provided in the OrderByList object. The pair are contained within a KeyBalueOfstringstring element as shown in the example below.</p>\n","urlObject":{"protocol":"https","path":["Reporting.API","ReportingAPI.svc","v2"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"8889a535-3847-4714-80f3-bd6de2a8e9df","name":"Transactions Sorted by Batch Number","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"http://bridgepaynetsecuretx.com/reportingapi_v2/IReportingAPIV2/PublicGetTransactionsByFilterV2","type":"text"},{"key":"User-Agent","value":"Apache-HttpClient/4.1.1 (java 1.5)","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v2\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n   <soapenv:Header/>\r\n     <soapenv:Body>\r\n      <rep:PublicGetTransactionsByFilterV2>\r\n         <rep:credentials>\r\n            <brid:Password></brid:Password>\r\n            <brid:UserName></brid:UserName>\r\n         </rep:credentials>\r\n         <rep:filterObject>\r\n                <!-- All items below must be in alphabetical order because it is raw and Postman isn't serialzing this -->\r\n               <brid1:BatchID></brid1:BatchID>\r\n            <brid1:Skip>00</brid1:Skip>\r\n            <brid1:Take>10</brid1:Take>\r\n         </rep:filterObject>\r\n      </rep:PublicGetTransactionsByFilterV2>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v2"},"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\">\n    <s:Body>\n        <PublicGetTransactionsByFilterV2Response xmlns=\"http://bridgepaynetsecuretx.com/reportingapi_v2\">\n            <PublicGetTransactionsByFilterV2Result xmlns:a=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.SetModels\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\n                <DataSourceResponses xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <Messages xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <ObjectState xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\">Unchanged</ObjectState>\n                <a:RecordAuthSum>1907977</a:RecordAuthSum>\n                <a:RecordCount>883</a:RecordCount>\n                <a:RecordSum>3676677</a:RecordSum>\n                <a:TransactionList xmlns:b=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.ViewModels\">\n                    <b:TransactionRow>\n                        <b:AVSMessage i:nil=\"true\"/>\n                        <b:AVSResultCode i:nil=\"true\"/>\n                        <b:AccountHolderName> </b:AccountHolderName>\n                        <b:AccountType>R</b:AccountType>\n                        <b:AccountTypeIndicator>M</b:AccountTypeIndicator>\n                        <b:AccountTypeTransform>MASTER CARD</b:AccountTypeTransform>\n                        <b:AuthCode>833871</b:AuthCode>\n                        <b:AuthorizedAmount>2500</b:AuthorizedAmount>\n                        <b:BatchDateTime>2022-01-15T00:00:00</b:BatchDateTime>\n                        <b:BatchId>208987105</b:BatchId>\n                        <b:CVVMessage i:nil=\"true\"/>\n                        <b:CVVResponseCode i:nil=\"true\"/>\n                        <b:CardBIN>411111</b:CardBIN>\n                        <b:CardBrand>MASTERCARD</b:CardBrand>\n                        <b:CardClass>Credit</b:CardClass>\n                        <b:CardIdentifier i:nil=\"true\"/>\n                        <b:ClerkId>tokenpay11861api20220814020838539</b:ClerkId>\n                        <b:ClerkName i:nil=\"true\"/>\n                        <b:CustomerAddress i:nil=\"true\"/>\n                        <b:CustomerEmail i:nil=\"true\"/>\n                        <b:CustomerNumber i:nil=\"true\"/>\n                        <b:CustomerZip>33774</b:CustomerZip>\n                        <b:EntryModeId>KD</b:EntryModeId>\n                        <b:EntryModeTransform>KEYED</b:EntryModeTransform>\n                        <b:ExpirationDate>1024</b:ExpirationDate>\n                        <b:FeeAmount>0</b:FeeAmount>\n                        <b:FeeIsSurcharge>false</b:FeeIsSurcharge>\n                        <b:FirstName i:nil=\"true\"/>\n                        <b:GrandParentId>11857</b:GrandParentId>\n                        <b:GreatGrandParentId i:nil=\"true\"/>\n                        <b:HolderType>P</b:HolderType>\n                        <b:IIASQualified>false</b:IIASQualified>\n                        <b:IndustryTypeTransform>Retail</b:IndustryTypeTransform>\n                        <b:InvoiceNumber i:nil=\"true\"/>\n                        <b:IsoCurrencyCode>USD</b:IsoCurrencyCode>\n                        <b:LastFour>5454</b:LastFour>\n                        <b:LastName i:nil=\"true\"/>\n                        <b:MaskedAccount>5****5454</b:MaskedAccount>\n                        <b:Memo i:nil=\"true\"/>\n                        <b:MerchantAccountId>13026001</b:MerchantAccountId>\n                        <b:MerchantAddress>123 Test St</b:MerchantAddress>\n                        <b:MerchantAddress2 i:nil=\"true\"/>\n                        <b:MerchantAddress3 i:nil=\"true\"/>\n                        <b:MerchantCategoryCode>5999</b:MerchantCategoryCode>\n                        <b:MerchantCity>Lancaster</b:MerchantCity>\n                        <b:MerchantEmail>email@bridgepaynetwork.com</b:MerchantEmail>\n                        <b:MerchantId>12345000</b:MerchantId>\n                        <b:MerchantName>Merchant Account</b:MerchantName>\n                        <b:MerchantPhone>5555555555</b:MerchantPhone>\n                        <b:MerchantState>PA</b:MerchantState>\n                        <b:MerchantZip>17602</b:MerchantZip>\n                        <b:NetAmount>2500</b:NetAmount>\n                        <b:NetworkMID>12345001</b:NetworkMID>\n                        <b:NetworkReferenceNumber>788232597</b:NetworkReferenceNumber>\n                        <b:NetworkTerminalId>10001</b:NetworkTerminalId>\n                        <b:OrganizationId>11861</b:OrganizationId>\n                        <b:OriginalReferenceNumber i:nil=\"true\"/>\n                        <b:ParentId>11860</b:ParentId>\n                        <b:PaymentMethodId>MC</b:PaymentMethodId>\n                        <b:PaymentMethodIndicator>C</b:PaymentMethodIndicator>\n                        <b:PaymentMethodTransform>CREDIT</b:PaymentMethodTransform>\n                        <b:ProcessorResponse>Approved</b:ProcessorResponse>\n                        <b:ProviderResponseCode i:nil=\"true\"/>\n                        <b:PurchaseOrderNumber i:nil=\"true\"/>\n                        <b:ReceiptTagData i:nil=\"true\"/>\n                        <b:RemainingAmount>2500</b:RemainingAmount>\n                        <b:RequestedAmount>2500</b:RequestedAmount>\n                        <b:ResellerId>5712</b:ResellerId>\n                        <b:ResponseCode>A01</b:ResponseCode>\n                        <b:SaleDateTime>2022-01-14T16:56:42.067</b:SaleDateTime>\n                        <b:SettleAmount>2500</b:SettleAmount>\n                        <b:SettlementStatus>Settled</b:SettlementStatus>\n                        <b:TaxAmount>245</b:TaxAmount>\n                        <b:TerminalId i:nil=\"true\"/>\n                        <b:TipAmount i:nil=\"true\"/>\n                        <b:Token>1000000044935454</b:Token>\n                        <b:TransactionAux>\n                            <b:ContractId i:nil=\"true\"/>\n                            <b:Id>4060038005</b:Id>\n                            <b:OriginatingTechnologySource>BridgeComm</b:OriginatingTechnologySource>\n                            <b:SoftwareVendor/>\n                        </b:TransactionAux>\n                        <b:TransactionCustomFields xmlns:c=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\"/>\n                        <b:TransactionDynamicDescriptors i:nil=\"true\" xmlns:c=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\"/>\n                        <b:TransactionId>4060038005</b:TransactionId>\n                        <b:TransactionIndustryType>RE</b:TransactionIndustryType>\n                        <b:TransactionSourceIP>73.175.81.76:57177</b:TransactionSourceIP>\n                        <b:TransactionStatus>Confirmed</b:TransactionStatus>\n                        <b:TransactionType>Sale</b:TransactionType>\n                        <b:TransactionTypeTransform>Sale</b:TransactionTypeTransform>\n                        <b:VoidIndicator>false</b:VoidIndicator>\n                    </b:TransactionRow>\n                </a:TransactionList>\n            </PublicGetTransactionsByFilterV2Result>\n        </PublicGetTransactionsByFilterV2Response>\n    </s:Body>\n</s:Envelope>"}],"_postman_id":"ff334384-807f-40de-a244-0aba0fe027b0"},{"name":"Batches Sorted with OrderByList","event":[{"listen":"prerequest","script":{"id":"0a005057-9758-4315-b768-696aaff3cc45","exec":[""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"b211f0e0-6281-495c-b8ad-9fbf373257fd","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","\r","var jsonObject = xml2Json(responseBody);\r","\r","var returnedTransactionId = (jsonObject[\"s:Envelope\"][\"s:Body\"][\"PublicGetTransactionsByFilterV2Response\"][\"PublicGetTransactionsByFilterV2Result\"][\"a:TransactionList\"][\"b:TransactionId\"]);\r","\r","if (returnedTransactionId = pm.environment.get(\"TransactionId\")) {\r","    pm.test(\"TransactionId Matches: \" + returnedTransactionId, true);\r","} else {\r","    pm.test(\"Check If Transaction even worked\", function () {\r","        pm.expect.fail();\r","    });    \r","}"],"type":"text/javascript","packages":{}}}],"id":"1713fe7b-157f-46cd-a0db-40299e691eae","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true,"content-type":true,"user-agent":true},"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"http://bridgepaynetsecuretx.com/reportingapi_v2/IReportingAPIV2/PublicGetTransactionsByFilterV2","type":"text"},{"key":"User-Agent","value":"Apache-HttpClient/4.1.1 (java 1.5)","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v2\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n\t<soapenv:Header/>\r\n\t<soapenv:Body>\r\n\t\t<rep:PublicGetBatchListByFilter>\r\n\t\t\t<rep:credentials>\r\n\t\t\t\t<brid:Password>{Password}</brid:Password>\r\n\t\t\t\t<brid:UserName>{UserName}</brid:UserName>\r\n\t\t\t</rep:credentials>\r\n\t\t\t<rep:filterObject>\r\n\t\t\t\t<brid1:DateRangeFrom>2024-08-01T00:00:00</brid1:DateRangeFrom>\r\n\t\t\t\t<brid1:DateRangeTo>2025-11-01T00:00:00</brid1:DateRangeTo>\r\n\t\t\t\t<brid1:IsProcessed>1</brid1:IsProcessed>\r\n\t\t\t\t<brid1:OrderByList>\r\n\t\t\t\t\t<arr:KeyValueOfstringOrderByEnumOTN9o6ak>\r\n\t\t\t\t\t\t<arr:Key>BatchId</arr:Key>\r\n\t\t\t\t\t\t<arr:Value>Descending</arr:Value>\r\n\t\t\t\t\t</arr:KeyValueOfstringOrderByEnumOTN9o6ak>\r\n\t\t\t\t</brid1:OrderByList>\r\n\t\t\t</rep:filterObject>\r\n\t\t</rep:PublicGetBatchListByFilter>\r\n\t</soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v2","description":"<p>Returns a set of transactions ordered by the corresponding Key and Value pair provided in the OrderByList object. The pair are contained within a KeyBalueOfstringstring element as shown in the example below.</p>\n","urlObject":{"protocol":"https","path":["Reporting.API","ReportingAPI.svc","v2"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"bad31795-4664-4275-9453-2371f21a26e1","name":"Batches Sorted by Batch Number","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"http://bridgepaynetsecuretx.com/reportingapi_v2/IReportingAPIV2/PublicGetTransactionsByFilterV2","type":"text"},{"key":"User-Agent","value":"Apache-HttpClient/4.1.1 (java 1.5)","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:rep=\"http://bridgepaynetsecuretx.com/reportingapi_v2\" xmlns:brid=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\" xmlns:brid1=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.DataLayer.Filters\" xmlns:arr=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n\t<soapenv:Header/>\r\n\t<soapenv:Body>\r\n\t\t<rep:PublicGetBatchListByFilter>\r\n\t\t\t<rep:credentials>\r\n\t\t\t\t<brid:Password>{Password}</brid:Password>\r\n\t\t\t\t<brid:UserName>{UserName}</brid:UserName>\r\n\t\t\t</rep:credentials>\r\n\t\t\t<rep:filterObject>\r\n\t\t\t\t<brid1:DateRangeFrom>2024-08-01T00:00:00</brid1:DateRangeFrom>\r\n\t\t\t\t<brid1:DateRangeTo>2025-11-01T00:00:00</brid1:DateRangeTo>\r\n\t\t\t\t<brid1:IsProcessed>1</brid1:IsProcessed>\r\n\t\t\t\t<brid1:OrderByList>\r\n\t\t\t\t\t<arr:KeyValueOfstringOrderByEnumOTN9o6ak>\r\n\t\t\t\t\t\t<arr:Key>BatchId</arr:Key>\r\n\t\t\t\t\t\t<arr:Value>Descending</arr:Value>\r\n\t\t\t\t\t</arr:KeyValueOfstringOrderByEnumOTN9o6ak>\r\n\t\t\t\t</brid1:OrderByList>\r\n\t\t\t</rep:filterObject>\r\n\t\t</rep:PublicGetBatchListByFilter>\r\n\t</soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.API/ReportingAPI.svc/v2"},"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\">\n    <s:Body>\n        <PublicGetBatchListByFilterResponse xmlns=\"http://bridgepaynetsecuretx.com/reportingapi_v2\">\n            <PublicGetBatchListByFilterResult xmlns:a=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.SetModels\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\n                <DataSourceResponses xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <Messages xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\"/>\n                <ObjectState xmlns=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Framework\">Unchanged</ObjectState>\n                <a:BatchList xmlns:b=\"http://schemas.datacontract.org/2004/07/Bridgepay.Reporting.Core.Model.DBModels\">\n                    <b:OrgBatchListDetail>\n                        <b:BatchCount>24</b:BatchCount>\n                        <b:BatchDateTime>2023-07-13T00:01:41.563</b:BatchDateTime>\n                        <b:BatchId>215665104</b:BatchId>\n                        <b:BatchTotal>22000</b:BatchTotal>\n                        <b:GatewayObjectID>8023001</b:GatewayObjectID>\n                        <b:GrandParentId>70</b:GrandParentId>\n                        <b:GreatGrandParentId i:nil=\"true\"/>\n                        <b:IsProcessed>true</b:IsProcessed>\n                        <b:OrganizationId>1570</b:OrganizationId>\n                        <b:OrganizationName>Offer Space</b:OrganizationName>\n                        <b:ParentId>1104</b:ParentId>\n                    </b:OrgBatchListDetail>\n                    <b:OrgBatchListDetail>\n                        <b:BatchCount>1</b:BatchCount>\n                        <b:BatchDateTime>2023-07-13T08:39:51.857</b:BatchDateTime>\n                        <b:BatchId>215670104</b:BatchId>\n                        <b:BatchTotal>6100</b:BatchTotal>\n                        <b:GatewayObjectID>3933001</b:GatewayObjectID>\n                        <b:GrandParentId>13</b:GrandParentId>\n                        <b:GreatGrandParentId i:nil=\"true\"/>\n                        <b:IsProcessed>true</b:IsProcessed>\n                        <b:OrganizationId>1489</b:OrganizationId>\n                        <b:OrganizationName>PAX Test</b:OrganizationName>\n                        <b:ParentId>1005</b:ParentId>\n                    </b:OrgBatchListDetail>\n                    <b:OrgBatchListDetail>\n                        <b:BatchCount>2</b:BatchCount>\n                        <b:BatchDateTime>2023-07-13T15:24:09.733</b:BatchDateTime>\n                        <b:BatchId>215671104</b:BatchId>\n                        <b:BatchTotal>6200</b:BatchTotal>\n                        <b:GatewayObjectID>3933001</b:GatewayObjectID>\n                        <b:GrandParentId>13</b:GrandParentId>\n                        <b:GreatGrandParentId i:nil=\"true\"/>\n                        <b:IsProcessed>true</b:IsProcessed>\n                        <b:OrganizationId>1489</b:OrganizationId>\n                        <b:OrganizationName>PAX Test</b:OrganizationName>\n                        <b:ParentId>1005</b:ParentId>\n                    </b:OrgBatchListDetail>\n                </a:BatchList>\n                <a:RecordCount>3</a:RecordCount>\n            </PublicGetBatchListByFilterResult>\n        </PublicGetBatchListByFilterResponse>\n    </s:Body>\n</s:Envelope>"}],"_postman_id":"1713fe7b-157f-46cd-a0db-40299e691eae"},{"name":"Reporting Service Version","event":[{"listen":"test","script":{"id":"dddf9f18-10c5-4554-8554-3d33a40d2afe","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r",""],"type":"text/javascript"}}],"id":"a2a620aa-5e72-44ab-b841-47e671a7cdf6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"\"http://bridgepaynetsecuretx.com/versionreporter/IVersionReporter/GetVersion\"","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ver=\"http://bridgepaynetsecuretx.com/versionreporter\">\r\n    <soapenv:Header/>\r\n    <soapenv:Body>\r\n        <ver:GetVersion/>\r\n    </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://www.bridgepaynetsecuretest.com/Reporting.Service/VersionReporter.svc/v1","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"692151d6-8298-4dee-a468-46aa3ccfc834","id":"692151d6-8298-4dee-a468-46aa3ccfc834","name":"Specific Request Layouts","type":"folder"}},"urlObject":{"protocol":"https","path":["Reporting.Service","VersionReporter.svc","v1"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"bca8461a-6591-45ee-bedd-27c7d2a84a67","name":"Reporting Service Version","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"\"http://bridgepaynetsecuretx.com/versionreporter/IVersionReporter/GetVersion\"","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ver=\"http://bridgepaynetsecuretx.com/versionreporter\">\r\n    <soapenv:Header/>\r\n    <soapenv:Body>\r\n        <ver:GetVersion/>\r\n    </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"www.bridgepaynetsecuretest.com/Reporting.Service/VersionReporter.svc/v1"},"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","name":"Content-Type","value":"application/xml","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\">\n    <s:Body>\n        <GetVersionResponse xmlns=\"http://bridgepaynetsecuretx.com/versionreporter\">\n            <GetVersionResult xmlns:a=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Models\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\n                <a:ApplicationName>Bridgepay.Reporting.Service</a:ApplicationName>\n                <a:VersionNumber>2022.2.0.66</a:VersionNumber>\n            </GetVersionResult>\n        </GetVersionResponse>\n    </s:Body>\n</s:Envelope>"}],"_postman_id":"a2a620aa-5e72-44ab-b841-47e671a7cdf6"}],"id":"692151d6-8298-4dee-a468-46aa3ccfc834","description":"<p>The following examples showcase the use of the Reporting API.</p>\n<p><strong>Include only populated elements in your request. Unpopulated elements can result in an error. For any unused element, do not include it in your request.</strong></p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"016adfff-7e95-4505-abd8-6f71255d95ae"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"f518d399-bca4-4b03-b8ba-616728a971fa"}}],"_postman_id":"692151d6-8298-4dee-a468-46aa3ccfc834"},{"name":"Appendix","item":[],"id":"3c0862a6-c532-4730-a3ac-0dc10f6845a6","description":"<h1 id=\"helpful-tips\">Helpful Tips</h1>\n<p>There are two types of parameters in the TransactionRowFilter object: DBQuery Filters and Post-Query Filters.</p>\n<p>Most of the parameters in the filter are DBQuery filters that are used directly against the persisted data store that contains the transactional data. However, some of the filters arePost-Query filters, meaning the filters are not applied until after the persisted data is retrieved. Post-query filters have transformational logic that is better suited after the bulk of the query has been processed by the data store.</p>\n<p>Filters that are processed directly against the data store also have specific comparison modes that can be utilized for easier queries. Review the comparison modes listed in the TransactionRowFilter table for a full list.</p>\n<h2 id=\"comparison-types\">Comparison Types</h2>\n<ul>\n<li><p><strong>GTE</strong> = Greater Than or Equal. The query will look for data that is greater than or equal to the data provided in the filter parameter.</p>\n</li>\n<li><p><strong>LTE</strong> = Less Than or Equal. The query will look for data that is less than or equal to the data provided in the filter parameter.</p>\n</li>\n<li><p><strong>EQUIV</strong> = Equals. The query will look for data that exactly matches the data provided in the filter parameter.</p>\n</li>\n<li><p><strong>NOTEQUIV</strong> = Not Equal. The query will look for data that does not exactly matches the data provided in the filter parameter.</p>\n</li>\n<li><p><strong>CONTAINS</strong> = The query will look for data that contains the data provided in the filter parameter.</p>\n</li>\n<li><p><strong>NOTCONTAINS</strong> = The query will look for data that does not contain the data provided in the filter parameter.</p>\n</li>\n<li><p><strong>INLIST</strong> = The query will look for data where the stored data matches one of the comma delimited entries in the data provided in the filter parameter.</p>\n</li>\n<li><p><strong>N/A</strong> = The parameter is either a Boolean parameter or does not affect the data filtering process.</p>\n</li>\n</ul>\n<h3 id=\"examples\">EXAMPLES:</h3>\n<ul>\n<li><p><strong>AmountRangeFrom</strong> = 100</p>\n<ul>\n<li>Will provide all transactions of $1.00 or more</li>\n</ul>\n</li>\n<li><p><strong>AmountRangeTo</strong> = 200</p>\n<ul>\n<li>Will provide all transactions of $2.00 or less.</li>\n</ul>\n</li>\n<li><p><strong>InvoiceNumber</strong> = 2001</p>\n<ul>\n<li>Will provide all transactions having Invoice Number 2001.</li>\n</ul>\n</li>\n<li><p><strong>ResponseCode</strong> = D</p>\n<ul>\n<li>Will provide all transactions that were declined transactions. See Appendix.</li>\n</ul>\n</li>\n<li><p><strong>ResponseCode</strong> = D0</p>\n<ul>\n<li>Will provide all transactions that were declined with response codes D01–D09.</li>\n</ul>\n</li>\n<li><p><strong>ResponseCode</strong> = D01</p>\n<ul>\n<li>Will provide only those transactions that were declined with response code D01.</li>\n</ul>\n</li>\n<li><p><strong>TransResults</strong> = 00000,00001,10012</p>\n<ul>\n<li>Will provide those transactions where the transaction would have responded with BridgeComm response codes 00000, 00001 or 10012 only.</li>\n</ul>\n</li>\n<li><p><strong>ExcludeTransResults</strong> = 1 must be used with TransResults.</p>\n<ul>\n<li>It modifies the behavior of the TransResults field. For example, if used with the TransResults field listed in the previous bullet, the Reporting API would return those transactions that did NOT get a 00000, 00001, or 10012 response code.</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"post-query-filters\">Post-Query Filters</h2>\n<p>The following fields are Post-Query filters. They will not process until after the initial data store query has completed.</p>\n<ul>\n<li><p>TransactionStatus</p>\n</li>\n<li><p>CardBrand</p>\n</li>\n</ul>\n<p>The data used to query on these parameters must be transformed before the filter can be applied. The data store resources are too time-consuming for these filters and they are therefore added after the data store query is completed.</p>\n<p><strong>You should never use a Post-Query Filter without first limiting the data store query with some DBQuery filters such as a date range and/or the merchant account information.</strong></p>\n<h1 id=\"response-codes\">Response Codes</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>User Message</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>A01</td>\n<td>Good</td>\n<td>Approved: XXXXXX (approval code)</td>\n</tr>\n<tr>\n<td>A02</td>\n<td>Good</td>\n<td>Credit Posted</td>\n</tr>\n<tr>\n<td>A03</td>\n<td>Good</td>\n<td>Void Posted (Auth Reversed)</td>\n</tr>\n<tr>\n<td>A04</td>\n<td>Good</td>\n<td>No Update</td>\n</tr>\n<tr>\n<td>A05</td>\n<td>Good</td>\n<td>Partially Approved</td>\n</tr>\n<tr>\n<td>A06</td>\n<td>Good</td>\n<td>Void Posted (Auth Not Reversed)</td>\n</tr>\n<tr>\n<td>A07</td>\n<td>Good</td>\n<td>Partial Void Posted</td>\n</tr>\n<tr>\n<td>A08</td>\n<td>Good</td>\n<td>Partial Refund Posted</td>\n</tr>\n<tr>\n<td>A09</td>\n<td>Good</td>\n<td>Incremental Auth Posted</td>\n</tr>\n<tr>\n<td>A10</td>\n<td>Good</td>\n<td>Request Accepted</td>\n</tr>\n<tr>\n<td>A11</td>\n<td>Soft</td>\n<td>Approval (Reversal failed)</td>\n</tr>\n<tr>\n<td>A60</td>\n<td>Soft</td>\n<td>Terminal Offline Approval - EMV/Chip</td>\n</tr>\n<tr>\n<td>A61</td>\n<td>Soft</td>\n<td>Terminal Offline Approval - Swipe</td>\n</tr>\n<tr>\n<td>A62</td>\n<td>Soft</td>\n<td>Terminal Offline Approval - Credit</td>\n</tr>\n<tr>\n<td>D01</td>\n<td>Soft</td>\n<td>Denied by customer's bank</td>\n</tr>\n<tr>\n<td>D02</td>\n<td>Hard</td>\n<td>Invalid Expiration Date</td>\n</tr>\n<tr>\n<td>D03</td>\n<td>Soft</td>\n<td>Insufficient Funds</td>\n</tr>\n<tr>\n<td>D04</td>\n<td>Hard</td>\n<td>Hold - Pick Up Card</td>\n</tr>\n<tr>\n<td>D05</td>\n<td>Hard</td>\n<td>Invalid Card Number</td>\n</tr>\n<tr>\n<td>D06</td>\n<td>Hard</td>\n<td>No Account</td>\n</tr>\n<tr>\n<td>D07</td>\n<td>Soft</td>\n<td>Incorrect PIN</td>\n</tr>\n<tr>\n<td>D08</td>\n<td>Soft</td>\n<td>CSC is Invalid</td>\n</tr>\n<tr>\n<td>D09</td>\n<td>Soft</td>\n<td>Duplicate Transaction</td>\n</tr>\n<tr>\n<td>D10</td>\n<td>Hard</td>\n<td>Card Reported Lost/Stolen</td>\n</tr>\n<tr>\n<td>D11</td>\n<td>Hard</td>\n<td>Card Reported Stolen</td>\n</tr>\n<tr>\n<td>D12</td>\n<td>Soft</td>\n<td>Service Not Allowed</td>\n</tr>\n<tr>\n<td>D13</td>\n<td>Hard</td>\n<td>Stop Recurring</td>\n</tr>\n<tr>\n<td>D15</td>\n<td>Soft</td>\n<td>Maximum Transaction Limit is Exceeded</td>\n</tr>\n<tr>\n<td>D16</td>\n<td>Hard</td>\n<td>Card is Expired</td>\n</tr>\n<tr>\n<td>D17</td>\n<td>Soft</td>\n<td>Re-Enter Transaction</td>\n</tr>\n<tr>\n<td>D18</td>\n<td>Soft</td>\n<td>Bad Amount</td>\n</tr>\n<tr>\n<td>D19</td>\n<td>Soft</td>\n<td>Unmapped Decline</td>\n</tr>\n<tr>\n<td>D20</td>\n<td>Soft</td>\n<td>Billing Profile Configuration Error</td>\n</tr>\n<tr>\n<td>D21</td>\n<td>Soft</td>\n<td>PIN Try Exceeded</td>\n</tr>\n<tr>\n<td>D22</td>\n<td>Hard</td>\n<td>Refund was Not Processed/Received</td>\n</tr>\n<tr>\n<td>D24</td>\n<td>Hard</td>\n<td>Chargeback Received</td>\n</tr>\n<tr>\n<td>D25</td>\n<td>Soft</td>\n<td>Refund Limit is Reached for the Day</td>\n</tr>\n<tr>\n<td>D26</td>\n<td>Soft</td>\n<td>Settlement Failed</td>\n</tr>\n<tr>\n<td>D27</td>\n<td>Hard</td>\n<td>Transaction Error</td>\n</tr>\n<tr>\n<td>D28</td>\n<td>Soft</td>\n<td>Cashback Limit Exceeded/Cashback Unavailable</td>\n</tr>\n<tr>\n<td>D29</td>\n<td>Soft</td>\n<td>Card is Restricted</td>\n</tr>\n<tr>\n<td>D30</td>\n<td>Soft</td>\n<td>Call for Authorization</td>\n</tr>\n<tr>\n<td>D31</td>\n<td>Soft</td>\n<td>Declined Due to Fraud Rules</td>\n</tr>\n<tr>\n<td>D32</td>\n<td>Soft</td>\n<td>Declined Due to Fraud Engine Decision</td>\n</tr>\n<tr>\n<td>D33</td>\n<td>Soft</td>\n<td>Incorrect Merchant Setup</td>\n</tr>\n<tr>\n<td>D34</td>\n<td>Soft</td>\n<td>Merchant Profile Configuration Issue</td>\n</tr>\n<tr>\n<td>D35</td>\n<td>Soft</td>\n<td>Card Chip Decline</td>\n</tr>\n<tr>\n<td>E02</td>\n<td>Soft</td>\n<td>Processing Network Unavailable</td>\n</tr>\n<tr>\n<td>E03</td>\n<td>Soft</td>\n<td>Transaction Data Integrity Validation Error</td>\n</tr>\n<tr>\n<td>E04</td>\n<td>Soft</td>\n<td>Refund Limit is Reached for the Day</td>\n</tr>\n<tr>\n<td>E06</td>\n<td>Soft</td>\n<td>Card is Blacklisted</td>\n</tr>\n<tr>\n<td>E07</td>\n<td>Soft</td>\n<td>Tokenization not Supported</td>\n</tr>\n<tr>\n<td>E08</td>\n<td>Soft</td>\n<td>Refunds are Not Allowed</td>\n</tr>\n<tr>\n<td>E09</td>\n<td>Soft</td>\n<td>Processing Network Error</td>\n</tr>\n<tr>\n<td>E10</td>\n<td>Soft</td>\n<td>3D Secure Verification Failed</td>\n</tr>\n<tr>\n<td>E31</td>\n<td>Soft</td>\n<td>Declined Due to Pre-Processing Rules</td>\n</tr>\n<tr>\n<td>X01</td>\n<td>Hard</td>\n<td>Processing Cancelled by User</td>\n</tr>\n<tr>\n<td>X02</td>\n<td>Soft</td>\n<td>Pending Processing</td>\n</tr>\n<tr>\n<td>X03</td>\n<td>Soft</td>\n<td>3D Secure Verification Required</td>\n</tr>\n<tr>\n<td>X04</td>\n<td>Soft</td>\n<td>Processing Cancelled: The Request has Expired</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"document-version\">Document Version:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Version:</strong></th>\n<th><strong>Updated by:</strong></th>\n<th><strong>Change(s):</strong></th>\n<th><strong>Date:</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1.3</td>\n<td>Noah Hippensteel</td>\n<td>Updated for FE 24.10.</td>\n<td>04/02/2025</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>Noah Hippensteel</td>\n<td>FE 24.5 updates. See release notes for details.</td>\n<td>10/14/2024</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>Mark Mauer</td>\n<td>Updated MerchantAccountId to MerchantAccountID in all requests and field details.  <br />Updated MerchantId to MerchantID in all requests and field details.  <br />Updated PaymentMethodId to PaymentMethodID in all requests and field details.  <br />Updated BatchID to BatchId in the PublicGetBatchListByFilter request.</td>\n<td>09/24/2024</td>\n</tr>\n<tr>\n<td>1.0</td>\n<td>Noah Hippensteel</td>\n<td>Added Document Version Table.</td>\n<td>09/09/2024</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"ff9a96ce-b45f-41bf-b339-700d4ad64832"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"9fe00b70-4ed2-4530-8663-57956ca22347"}}],"_postman_id":"3c0862a6-c532-4730-a3ac-0dc10f6845a6"}],"event":[{"listen":"prerequest","script":{"id":"4f9b2ff6-f9d5-41d1-a0ca-110300fcc3cd","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"25fb02e7-cff8-4a89-be7c-703bb0892c8b","type":"text/javascript","exec":[""]}}],"variable":[{"key":"baseURL","value":"www.bridgepaynetsecuretest.com"},{"key":"AccountHolderName","value":"","type":"string"},{"key":"AccountTypeIndicator","value":"","type":"string"},{"key":"AccountTypeTransform","value":"","type":"string"},{"key":"AmountRangeFrom","value":"","type":"string"},{"key":"AmountRangeTo","value":"","type":"string"},{"key":"AuthorizationCode","value":"","type":"string"},{"key":"BatchID","value":"","type":"string"},{"key":"CardBrand","value":"","type":"string"},{"key":"CardholderFirstName","value":"","type":"string"},{"key":"CardholderLastName","value":"","type":"string"},{"key":"ContractID","value":"","type":"string"},{"key":"CustomFields","value":"","type":"string"},{"key":"CustomerNumber","value":"","type":"string"},{"key":"DateRangeFrom","value":"","type":"string"},{"key":"DateRangeTo","value":"","type":"string"},{"key":"EndPartialAccountNumber","value":"","type":"string"},{"key":"EntryModeTransform","value":"","type":"string"},{"key":"ExcludePaymentMethod","value":"","type":"string"},{"key":"ExcludeResponseCode","value":"","type":"string"},{"key":"ExcludeTransResults","value":"","type":"string"},{"key":"ExcludeVoid","value":"","type":"string"},{"key":"ID","value":""},{"key":"InvoiceNumber","value":"","type":"string"},{"key":"IsProcessed","value":"","type":"string"},{"key":"MerchantAccountId","value":""},{"key":"MerchantID","value":""},{"key":"MethodIndicator","value":"","type":"string"},{"key":"OrderByList","value":"","type":"string"},{"key":"OrganizationId","value":"","type":"string"},{"key":"Password","value":""},{"key":"PaymentMethodID","value":"","type":"string"},{"key":"PaymentMethodTransform","value":"","type":"string"},{"key":"PurchaseOrderNumber","value":"","type":"string"},{"key":"ResellerID","value":"","type":"string"},{"key":"ResponseCode","value":"","type":"string"},{"key":"SettlementStatus","value":"","type":"string"},{"key":"Skip","value":"","type":"string"},{"key":"Take","value":"","type":"string"},{"key":"TransactionSourceIP","value":"","type":"string"},{"key":"TransactionStatus","value":"","type":"string"},{"key":"TransactionType","value":"","type":"string"},{"key":"TransactionTypeTransform","value":"","type":"string"},{"key":"TransResults","value":"","type":"string"},{"key":"UseMerchantTimeZone","value":"","type":"string"},{"key":"UserName","value":""}]}