diff --git a/src/test/cybersource-rest-qascripts-java/.classpath b/src/test/cybersource-rest-qascripts-java/.classpath new file mode 100644 index 000000000..c6eb3e9b2 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/.classpath @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/test/cybersource-rest-qascripts-java/.gitignore b/src/test/cybersource-rest-qascripts-java/.gitignore new file mode 100644 index 000000000..b83d22266 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/src/test/cybersource-rest-qascripts-java/.project b/src/test/cybersource-rest-qascripts-java/.project new file mode 100644 index 000000000..65d7674db --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/.project @@ -0,0 +1,23 @@ + + + SampleCode + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.jdt.core.javanature + org.eclipse.m2e.core.maven2Nature + + diff --git a/src/test/cybersource-rest-qascripts-java/.settings/org.eclipse.jdt.core.prefs b/src/test/cybersource-rest-qascripts-java/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 000000000..714351aec --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,5 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 +org.eclipse.jdt.core.compiler.compliance=1.8 +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.source=1.8 diff --git a/src/test/cybersource-rest-qascripts-java/.settings/org.eclipse.m2e.core.prefs b/src/test/cybersource-rest-qascripts-java/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 000000000..f897a7f1c --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/src/test/cybersource-rest-qascripts-java/README.md b/src/test/cybersource-rest-qascripts-java/README.md new file mode 100644 index 000000000..0adaf296c --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/README.md @@ -0,0 +1,84 @@ +# Java Sample Code for the CyberSource SDK + +This repository contains working code samples which demonstrate Java integration with the CyberSource REST APIs through the [CyberSource Java SDK](https://github.com/CyberSource/cybersource-rest-client-java). + +The samples are organized into categories and common usage examples. + +## Using the Sample Code + +The samples are all completely independent and self-contained. You can analyze them to get an understanding of how a particular method works, or you can use the snippets as a starting point for your own project. + +### Clone (or download) this repository: +``` + $ git clone https://github.com/CyberSource/cybersource-rest-samples-java +``` +### Running the Samples using IntelliJ IDE +* Open the project/folder (rather than import or new). + +* Build the project: + * From the Build menu, select Rebuild Project. + +* Run any sample: + * For example, select ProcessPayment class from the class Explorer + * Right-click and select Run ProcessPayment.Main() + +### Running the Samples using Eclipse IDE +* Import the project: + * From File menu,select Import. + * Expand Maven menu. + * And click Existing Maven Projects + * Click next and browse the location where you have the Maven project source code. + * Click next, Eclipse will recognize the Maven project and it will show you a list of all possible Maven projects located there. + * Just select the project and click next. + * Eclipse will show you a Maven Build message. Just click finish. + * The Maven project is successfully imported into Eclipse IDE. + +* Run the project: + * Right-click the project folder. + * Select Run as Maven Build. + * In the Goals field, enter "clean install" + * Select the JRE tab and make sure it is pointing at a JRE associated with a JDK. + * Click Run. + + +## Setting Your API Credentials + +To set your API credentials for an API request,Configure the following information in src/main/java/data/Configuration.java file: + + * Http Signature + +```java + authenticationType = http_Signature + merchantID = your_merchant_id + merchantKeyId = your_key_serial_number + merchantsecretKey = your_key_shared_secret +``` + * Jwt + +```java + authenticationType = Jwt + merchantID = your_merchant_id + keyAlias = your_merchant_id + keyPassword = your_merchant_id + keyFileName = your_merchant_id + keysDirectory = resources +``` + +## Switching between the sandbox environment and the production environment +CyberSource maintains a complete sandbox environment for testing and development purposes. This sandbox environment is an exact +duplicate of our production environment with the transaction authorization and settlement process simulated. By default, this SDK is +configured to communicate with the sandbox environment. To switch to the production environment, set the appropriate environment +constant in resources/cybersource.properties file. For example: + +```java +// For TESTING use + runEnvironment = CyberSource.Environment.SANDBOX +// For PRODUCTION use +// runEnvironment = CyberSource.Environment.PRODUCTION +``` + + +The [API Reference Guide](https://developer.cybersource.com/api/reference/api-reference.html) provides examples of what information is needed for a particular request and how that information would be formatted. Using those examples, you can easily determine what methods would be necessary to include that information in a request +using this SDK. + + diff --git a/src/test/cybersource-rest-qascripts-java/log/cybs.log b/src/test/cybersource-rest-qascripts-java/log/cybs.log new file mode 100644 index 000000000..b6eda9859 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/log/cybs.log @@ -0,0 +1,39483 @@ +2018-12-27 10:19:35.008 [main] INFO - KeyFile, Entered path/file name :: src/main/resources/testrest.p12 +2018-12-27 10:19:36.198 [main] INFO - Empty Cache :: Adding Data +2018-12-27 10:19:38.200 [main] INFO - KeyFile, Entered path/file name :: src/main/resources/testrest.p12 +2018-12-27 10:19:38.201 [main] INFO - Data present in Cache :: Extracting Data +2018-12-27 10:19:38.919 [main] INFO - KeyFile, Entered path/file name :: src/main/resources/testrest.p12 +2018-12-27 10:19:38.920 [main] INFO - Data present in Cache :: Extracting Data +2018-12-28 09:53:13.166 [main] INFO - KeyFile, Entered path/file name :: src/main/resources/testrest.p12 +2018-12-28 09:53:14.176 [main] INFO - Empty Cache :: Adding Data +2018-12-28 09:53:15.813 [main] INFO - KeyFile, Entered path/file name :: src/main/resources/testrest.p12 +2018-12-28 09:53:15.814 [main] INFO - Data present in Cache :: Extracting Data +2018-12-28 09:53:16.370 [main] INFO - KeyFile, Entered path/file name :: src/main/resources/testrest.p12 +2018-12-28 09:53:16.370 [main] INFO - Data present in Cache :: Extracting Data +2018-12-28 09:53:33.268 [main] ERROR - KeyAlias Empty/Null. Assigning merchantID value :: testrest +2018-12-28 09:53:33.293 [main] INFO - KeyFile, Entered path/file name :: src/main/resources/testrest.p12 +2018-12-28 09:53:34.192 [main] INFO - Empty Cache :: Adding Data +2018-12-28 09:53:35.790 [main] ERROR - KeyAlias Empty/Null. Assigning merchantID value :: testrest +2018-12-28 09:53:35.791 [main] INFO - KeyFile, Entered path/file name :: src/main/resources/testrest.p12 +2018-12-28 09:53:35.827 [main] INFO - Data present in Cache :: Extracting Data +2018-12-28 09:53:36.389 [main] ERROR - KeyAlias Empty/Null. Assigning merchantID value :: testrest +2018-12-28 09:53:36.390 [main] INFO - KeyFile, Entered path/file name :: src/main/resources/testrest.p12 +2018-12-28 09:53:36.391 [main] INFO - Data present in Cache :: Extracting Data +2019-01-30 12:32:39.199 [main] INFO - ********* START ********* +2019-01-30 12:32:39.199 [main] INFO - Authentication Type : http_signature +2019-01-30 12:32:39.199 [main] INFO - Request Type: POST +2019-01-30 12:32:39.237 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 12:32:39.237 [main] INFO - Digest: SHA-256=eZwzoAl/sMdtsRPvuzfCkz4b82P6e5yQ4XXDPqGZc9o= +2019-01-30 12:32:39.237 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:32:39.237 [main] INFO - Date: Wed, 30 Jan 2019 07:02:38 GMT +2019-01-30 12:32:39.237 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:32:39.237 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="RZnF9ke4AWbmlooyEtZISV5DhYrHvrN3ex2SlkHX8kw=" +2019-01-30 12:32:39.237 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:32:40.404 [main] INFO - Request Body: {"keyId":"07TXbxcs0qgk92CJywnuexGxQHFEFjVL","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 12:32:40.404 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [07TXbxcs0qgk92CJywnuexGxQHFEFjVL]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-01-30 12:32:40.404 [main] INFO - Response Code: 400 +2019-01-30 12:32:40.404 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=p4kYizQI9Rb/iXLCMg1tE3B3XRnRJycYlWSQMTbfmIU= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Wed, 30 Jan 2019 07:02:40 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 87b6251f-9720-4c03-a2e1-b9c84e4acb10 +OkHttp-Sent-Millis: 1548831760226 +OkHttp-Received-Millis: 1548831760389 + +2019-01-30 12:32:40.404 [main] INFO - ********* END *********: +2019-01-30 12:32:40.432 [main] INFO - ********* START ********* +2019-01-30 12:32:40.432 [main] INFO - Authentication Type : http_signature +2019-01-30 12:32:40.432 [main] INFO - Request Type: POST +2019-01-30 12:32:40.433 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 12:32:40.433 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-01-30 12:32:40.433 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:32:40.433 [main] INFO - Date: Wed, 30 Jan 2019 07:02:38 GMT +2019-01-30 12:32:40.433 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:32:40.433 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="zOJPNdTa0882Rbm+4S652kxNfj1rmtERa0wPeFZyWbE=" +2019-01-30 12:32:40.433 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:32:40.605 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 12:32:40.605 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [0023154mudgshfyrtdgfj456fhdggdg1]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-01-30 12:32:40.605 [main] INFO - Response Code: 400 +2019-01-30 12:32:40.605 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Wed, 30 Jan 2019 07:02:40 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6b19de7c-7135-40bd-b4e0-ad524007d666 +OkHttp-Sent-Millis: 1548831760449 +OkHttp-Received-Millis: 1548831760605 + +2019-01-30 12:32:40.605 [main] INFO - ********* END *********: +2019-01-30 12:35:03.096 [main] INFO - ********* START ********* +2019-01-30 12:35:03.112 [main] INFO - Authentication Type : http_signature +2019-01-30 12:35:03.112 [main] INFO - Request Type: POST +2019-01-30 12:35:03.112 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 12:35:03.112 [main] INFO - Digest: SHA-256=eZwzoAl/sMdtsRPvuzfCkz4b82P6e5yQ4XXDPqGZc9o= +2019-01-30 12:35:03.112 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:35:03.116 [main] INFO - Date: Wed, 30 Jan 2019 07:04:59 GMT +2019-01-30 12:35:03.117 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:35:03.117 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="dN970lZOq+D2KVekmwW3QOrv6OtY3yBHfMnxu2uvPyY=" +2019-01-30 12:35:03.117 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:35:05.846 [main] INFO - Request Body: {"keyId":"07TXbxcs0qgk92CJywnuexGxQHFEFjVL","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 12:35:05.846 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [07TXbxcs0qgk92CJywnuexGxQHFEFjVL]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-01-30 12:35:05.846 [main] INFO - Response Code: 400 +2019-01-30 12:35:05.846 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=p4kYizQI9Rb/iXLCMg1tE3B3XRnRJycYlWSQMTbfmIU= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Wed, 30 Jan 2019 07:05:05 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: dce4adf4-5fe6-4a0c-b653-114f78a12d58 +OkHttp-Sent-Millis: 1548831905630 +OkHttp-Received-Millis: 1548831905815 + +2019-01-30 12:35:05.846 [main] INFO - ********* END *********: +2019-01-30 12:37:33.995 [main] INFO - ********* START ********* +2019-01-30 12:37:33.995 [main] INFO - Authentication Type : http_signature +2019-01-30 12:37:33.995 [main] INFO - Request Type: POST +2019-01-30 12:37:33.995 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 12:37:33.995 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-01-30 12:37:33.995 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:37:33.995 [main] INFO - Date: Wed, 30 Jan 2019 07:04:59 GMT +2019-01-30 12:37:33.995 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:37:33.995 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="KBiwaLiw2/kk/JLcpZwvCkBiYvORWV4QN0xeDprRrEI=" +2019-01-30 12:37:33.995 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:37:34.155 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 12:37:34.155 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [0023154mudgshfyrtdgfj456fhdggdg1]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-01-30 12:37:34.155 [main] INFO - Response Code: 400 +2019-01-30 12:37:34.155 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Wed, 30 Jan 2019 07:07:34 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6300946b-7e5c-46df-85fd-4b93f969bf6f +OkHttp-Sent-Millis: 1548832054012 +OkHttp-Received-Millis: 1548832054155 + +2019-01-30 12:37:34.155 [main] INFO - ********* END *********: +2019-01-30 12:38:54.964 [main] INFO - ********* START ********* +2019-01-30 12:38:54.980 [main] INFO - Authentication Type : http_signature +2019-01-30 12:38:54.981 [main] INFO - Request Type: POST +2019-01-30 12:38:54.982 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 12:38:54.983 [main] INFO - Digest: SHA-256=eZwzoAl/sMdtsRPvuzfCkz4b82P6e5yQ4XXDPqGZc9o= +2019-01-30 12:38:54.984 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:38:54.984 [main] INFO - Date: Wed, 30 Jan 2019 07:08:51 GMT +2019-01-30 12:38:54.985 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:38:54.985 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="KUxWoF2CKFNiUcT24s7C/M5saBKqJkFCmJgjgXjnS4g=" +2019-01-30 12:38:54.986 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:40:10.331 [main] INFO - Request Body: {"keyId":"07TXbxcs0qgk92CJywnuexGxQHFEFjVL","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 12:40:10.332 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [07TXbxcs0qgk92CJywnuexGxQHFEFjVL]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-01-30 12:40:10.332 [main] INFO - Response Code: 400 +2019-01-30 12:40:10.332 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=p4kYizQI9Rb/iXLCMg1tE3B3XRnRJycYlWSQMTbfmIU= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Wed, 30 Jan 2019 07:09:14 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 9fb1258d-bdc9-47f2-aeb0-dc66ecfa9745 +OkHttp-Sent-Millis: 1548832154374 +OkHttp-Received-Millis: 1548832154559 + +2019-01-30 12:40:10.332 [main] INFO - ********* END *********: +2019-01-30 12:40:34.533 [main] INFO - ********* START ********* +2019-01-30 12:40:34.533 [main] INFO - Authentication Type : http_signature +2019-01-30 12:40:34.533 [main] INFO - Request Type: POST +2019-01-30 12:40:34.533 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 12:40:34.533 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-01-30 12:40:34.533 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:40:34.533 [main] INFO - Date: Wed, 30 Jan 2019 07:08:51 GMT +2019-01-30 12:40:34.537 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:40:34.537 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="+vOmvjxh69eaefmalGoG0+kMIKLlpOZ5se8KopxpsZk=" +2019-01-30 12:40:34.538 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:40:34.702 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 12:40:34.702 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [0023154mudgshfyrtdgfj456fhdggdg1]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-01-30 12:40:34.702 [main] INFO - Response Code: 400 +2019-01-30 12:40:34.702 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Wed, 30 Jan 2019 07:10:34 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: da8a9f3b-9b4c-48fc-bd7a-379b575c8e50 +OkHttp-Sent-Millis: 1548832234555 +OkHttp-Received-Millis: 1548832234702 + +2019-01-30 12:40:34.702 [main] INFO - ********* END *********: +2019-01-30 12:41:52.098 [main] INFO - ********* START ********* +2019-01-30 12:41:52.113 [main] INFO - Authentication Type : http_signature +2019-01-30 12:41:52.113 [main] INFO - Request Type: POST +2019-01-30 12:41:52.114 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-01-30 12:41:52.115 [main] INFO - Digest: SHA-256=bena9bhB3Jy4uPvfu1tAC0uN8AuzzM+xjqmDwR5//EA= +2019-01-30 12:41:52.116 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:41:52.116 [main] INFO - Date: Wed, 30 Jan 2019 07:11:48 GMT +2019-01-30 12:41:52.117 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:41:52.117 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="gIlqvdFDhMMtFWt/ic/9qsiKt7YAdu40LkRMVgSdDxk=" +2019-01-30 12:41:52.118 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:42:02.393 [main] INFO - Request Body: {"encryptionType":"None"} +2019-01-30 12:42:02.393 [main] INFO - Response Message: {"keyId":"07aCHjmT9nwSDTosS029nzm0XW5WULiC","der":{"format":"X.509","algorithm":"RSA","publicKey":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAssFX8NAplbkbOqm65NhJ3qwut4r9nQiiJFQ5Cx4qp2paecn3EbGXQTXWBYxoOb4i2sHoxO9sqHYI/CtDyBMporIMdrNUG7Mqwk46Xu8Qj7/tBqdn75Zhm8Lq4EU7k0XN7etGaWkXhja5ABerk5qvXz5rYlYBGx9slZPzcjfq84V/2CgCXME+O8x+DkgFiym4u5lmK5LM3DV8d5t4Nutw5wpvZJV86UuT6np1QFnnXACctt+OM2R+WralQQUInA6lyhetk1hVyLupJa3L2FO62QckFJcbcArCdYfAMYA1wZmcDgPzIpcC686fDzj1Y66r0i5/bX3sTRtPjbD244AJdQIDAQAB"},"jwk":null} +2019-01-30 12:42:02.394 [main] INFO - Response Code: 200 +2019-01-30 12:42:02.394 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=FFogPo/njSxOjeinLuP6FjC2S8qkQcVKPeQBLM1tYT4= +Content-Type: application/json;charset=UTF-8 +Content-Length: 505 +Date: Wed, 30 Jan 2019 07:11:56 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: bd727dd2-e474-4287-85ea-f5634359c522 +OkHttp-Sent-Millis: 1548832316802 +OkHttp-Received-Millis: 1548832317039 + +2019-01-30 12:42:02.395 [main] INFO - ********* END *********: +2019-01-30 12:42:02.466 [main] INFO - ********* START ********* +2019-01-30 12:42:02.467 [main] INFO - Authentication Type : http_signature +2019-01-30 12:42:02.467 [main] INFO - Request Type: POST +2019-01-30 12:42:02.467 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-01-30 12:42:02.468 [main] INFO - Digest: SHA-256=RGxc6GDM4hd0Lz1J24GEBLuX6JSK+r0fZi1/r0x/0Xo= +2019-01-30 12:42:02.468 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:42:02.468 [main] INFO - Date: Wed, 30 Jan 2019 07:11:48 GMT +2019-01-30 12:42:02.469 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:42:02.470 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="S0Qw0FFXMkzcq7spDqOLNkFuDUWAT8UKSmBZlHp1kLw=" +2019-01-30 12:42:02.470 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:42:02.677 [main] INFO - Request Body: {"encryptionType":"SDMP"} +2019-01-30 12:42:02.677 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-01-30 12:42:02.678 [main] INFO - Response Code: 400 +2019-01-30 12:42:02.678 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Wed, 30 Jan 2019 07:12:02 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: caf71569-f59f-42d9-8830-64b4570cbbe3 +OkHttp-Sent-Millis: 1548832322485 +OkHttp-Received-Millis: 1548832322675 + +2019-01-30 12:42:02.678 [main] INFO - ********* END *********: +2019-01-30 12:42:02.681 [main] INFO - ********* START ********* +2019-01-30 12:42:02.681 [main] INFO - Authentication Type : http_signature +2019-01-30 12:42:02.681 [main] INFO - Request Type: POST +2019-01-30 12:42:02.681 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 12:42:02.681 [main] INFO - Digest: SHA-256=R1CfPwpm3Dq+U244CSMYSySxji4PWGH01XPBiBFfnnk= +2019-01-30 12:42:02.681 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:42:02.681 [main] INFO - Date: Wed, 30 Jan 2019 07:11:48 GMT +2019-01-30 12:42:02.681 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:42:02.681 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="dzU1eUWOBJTCqUXKhpPOasjuqoaUoXSQhC4m3ZAWi4c=" +2019-01-30 12:42:02.681 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:42:03.260 [main] INFO - Request Body: {"keyId":"07aCHjmT9nwSDTosS029nzm0XW5WULiC","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 12:42:03.260 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-01-30 12:42:03.260 [main] INFO - Response Code: 200 +2019-01-30 12:42:03.260 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=D4io4Y3+XYGEX4d78y2X9sQSW9VfFdOtxU2i8FQGjRA= +Content-Type: application/json;charset=UTF-8 +Content-Length: 840 +Date: Wed, 30 Jan 2019 07:12:02 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 972d7ab6-c61c-4737-92ea-417dabe0b55a +OkHttp-Sent-Millis: 1548832322712 +OkHttp-Received-Millis: 1548832323260 + +2019-01-30 12:42:03.260 [main] INFO - ********* END *********: +2019-01-30 12:42:04.177 [main] INFO - ********* START ********* +2019-01-30 12:42:04.177 [main] INFO - Authentication Type : http_signature +2019-01-30 12:42:04.177 [main] INFO - Request Type: POST +2019-01-30 12:42:04.178 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-01-30 12:42:04.178 [main] INFO - Digest: SHA-256=bena9bhB3Jy4uPvfu1tAC0uN8AuzzM+xjqmDwR5//EA= +2019-01-30 12:42:04.178 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:42:04.179 [main] INFO - Date: Wed, 30 Jan 2019 07:11:48 GMT +2019-01-30 12:42:04.179 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:42:04.179 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="gIlqvdFDhMMtFWt/ic/9qsiKt7YAdu40LkRMVgSdDxk=" +2019-01-30 12:42:04.179 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:42:04.362 [main] INFO - Request Body: {"encryptionType":"None"} +2019-01-30 12:42:04.362 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-01-30 12:42:04.362 [main] INFO - Response Code: 200 +2019-01-30 12:42:04.362 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=pJQqy+yTCbVtS5SJfJ4qCHErbVnEoSWjNQYhfzSmvlw= +Content-Type: application/json;charset=UTF-8 +Content-Length: 505 +Date: Wed, 30 Jan 2019 07:12:04 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e01879c0-5aa9-4281-ae91-10845cec8f3d +OkHttp-Sent-Millis: 1548832324190 +OkHttp-Received-Millis: 1548832324362 + +2019-01-30 12:42:04.362 [main] INFO - ********* END *********: +2019-01-30 12:42:04.384 [main] INFO - ********* START ********* +2019-01-30 12:42:04.384 [main] INFO - Authentication Type : http_signature +2019-01-30 12:42:04.384 [main] INFO - Request Type: POST +2019-01-30 12:42:04.384 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-01-30 12:42:04.384 [main] INFO - Digest: SHA-256=RGxc6GDM4hd0Lz1J24GEBLuX6JSK+r0fZi1/r0x/0Xo= +2019-01-30 12:42:04.384 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:42:04.384 [main] INFO - Date: Wed, 30 Jan 2019 07:11:48 GMT +2019-01-30 12:42:04.400 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:42:04.400 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="S0Qw0FFXMkzcq7spDqOLNkFuDUWAT8UKSmBZlHp1kLw=" +2019-01-30 12:42:04.400 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:42:04.616 [main] INFO - Request Body: {"encryptionType":"SDMP"} +2019-01-30 12:42:04.616 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-01-30 12:42:04.616 [main] INFO - Response Code: 400 +2019-01-30 12:42:04.616 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Wed, 30 Jan 2019 07:12:04 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 25c6bc76-f9e6-4ff8-8e59-52f1b7d95b29 +OkHttp-Sent-Millis: 1548832324415 +OkHttp-Received-Millis: 1548832324600 + +2019-01-30 12:42:04.616 [main] INFO - ********* END *********: +2019-01-30 12:42:04.616 [main] INFO - ********* START ********* +2019-01-30 12:42:04.616 [main] INFO - Authentication Type : http_signature +2019-01-30 12:42:04.616 [main] INFO - Request Type: POST +2019-01-30 12:42:04.616 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 12:42:04.616 [main] INFO - Digest: SHA-256=cCXteAL6C90fRnEa20TUHf+3NuZJ4T6EHANQEsmaTf4= +2019-01-30 12:42:04.616 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:42:04.616 [main] INFO - Date: Wed, 30 Jan 2019 07:11:48 GMT +2019-01-30 12:42:04.616 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:42:04.616 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="98EckOp82V7G6HjcU7oPt+kdBsWf1V5AfQGAQkfZ8ZQ=" +2019-01-30 12:42:04.616 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:42:05.180 [main] INFO - Request Body: {"keyId":"07EyjrN4rRmLuPP6YJLEyGlA4gLm3hpR","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 12:42:05.181 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-01-30 12:42:05.181 [main] INFO - Response Code: 200 +2019-01-30 12:42:05.181 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=AjiBfk1Dj6GDYcmPWBzGwNL/gQ7U5MVDvb+YX9+yQNk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 840 +Date: Wed, 30 Jan 2019 07:12:05 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: aaa13e62-0d29-4fdf-9dca-a81acb39489a +OkHttp-Sent-Millis: 1548832324631 +OkHttp-Received-Millis: 1548832325180 + +2019-01-30 12:42:05.182 [main] INFO - ********* END *********: +2019-01-30 12:44:19.769 [main] INFO - ********* START ********* +2019-01-30 12:44:19.786 [main] INFO - Authentication Type : http_signature +2019-01-30 12:44:19.786 [main] INFO - Request Type: POST +2019-01-30 12:44:19.790 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 12:44:19.791 [main] INFO - Digest: SHA-256=E6K4D5t7SN4+7t1a70sbQrktGceH1MTS/HV58hudVo0= +2019-01-30 12:44:19.791 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:44:19.791 [main] INFO - Date: Wed, 30 Jan 2019 07:14:16 GMT +2019-01-30 12:44:19.791 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:44:19.791 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="RhBtjWlbojUvJOldBqGX9LBXECLgz5Z3hmndpkTB3iQ=" +2019-01-30 12:44:19.794 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:44:48.799 [main] INFO - Request Body: {"keyId":"07QXB4Oj7fWJz3jZCdgfUF5HnDj01ouL","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 12:44:48.799 [main] INFO - Response Message: {"keyId":"07QXB4Oj7fWJz3jZCdgfUF5HnDj01ouL","token":"80A89F1212CE69C6E05341588E0A8D52","maskedPan":"555555XXXXXX4444","cardType":"XXXXXXXXX","timestamp":1548832467210,"signedFields":"token,cardType,maskedPan,timestamp","signature":"ZgVnENK4xTZsLVZt1Uv1jl22CcNvlR5V9NFVoBfsSKvB0ysWHMn3bBMZaV9AC3toC5Z7m5OJStmen2VFLi3sHtm19gRhpY9aTtw7uVwb9Msy2b85KWcb/Ghv4u4KLFaFpMaFmSkbzrbEQUsBmtLg+GpJ+MAuu5e2tJ0Ra1my4HDFKY7MuZdjNVkzcE8ttZBp6LFevrm2yJ92A21yORdmhYuYOTrSRFhXQUDKj+8F111+RnrGbrWxpCo6Lr4Na91dtFVZf5b0Xq2DWMZEo3oFwY7UWIq1nZSavJmYBbViO8AU4dJWF62FII79oiTYN7pLc4QeSOHm19YlU1r5NKWWaw==","discoverableServices":{},"_embedded":{"icsReply":{"requestId":"5488324668406058803005","instrumentIdentifier":{"id":"7020000000002394444","new":"N","state":"ACTIVE"},"_links":{"self":{"href":"/cybersource/flex/search/v1/logs/tokenProvider/5488324668406058803005"}}}}} +2019-01-30 12:44:48.799 [main] INFO - Response Code: 200 +2019-01-30 12:44:48.799 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=gDh+Ztcui1yXZ1Edrpd3yxD6K9ltotEzXuxd1wB1qiM= +Content-Type: application/json;charset=UTF-8 +Content-Length: 840 +Date: Wed, 30 Jan 2019 07:14:27 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6919ec8d-cec3-4002-8413-97852e46d328 +OkHttp-Sent-Millis: 1548832466701 +OkHttp-Received-Millis: 1548832467301 + +2019-01-30 12:44:48.799 [main] INFO - ********* END *********: +2019-01-30 12:47:14.446 [main] INFO - ********* START ********* +2019-01-30 12:47:14.446 [main] INFO - Authentication Type : http_signature +2019-01-30 12:47:14.446 [main] INFO - Request Type: POST +2019-01-30 12:47:14.446 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-01-30 12:47:14.446 [main] INFO - Digest: SHA-256=bena9bhB3Jy4uPvfu1tAC0uN8AuzzM+xjqmDwR5//EA= +2019-01-30 12:47:14.446 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:47:14.446 [main] INFO - Date: Wed, 30 Jan 2019 07:14:16 GMT +2019-01-30 12:47:14.446 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:47:14.446 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="W5VMT/NAjZceaO5zQSCcbBbTpOpAKnZvrH5/HuUWlPw=" +2019-01-30 12:47:14.446 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:47:14.675 [main] INFO - Request Body: {"encryptionType":"None"} +2019-01-30 12:47:14.675 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-01-30 12:47:14.675 [main] INFO - Response Code: 200 +2019-01-30 12:47:14.675 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=iOPdPaZ6YERX5sXYS3REbv3Zc2PiF/Rwo16wkRgqhDE= +Content-Type: application/json;charset=UTF-8 +Content-Length: 505 +Date: Wed, 30 Jan 2019 07:17:14 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a688980d-fd0a-4490-90c3-03f41125de53 +OkHttp-Sent-Millis: 1548832634462 +OkHttp-Received-Millis: 1548832634675 + +2019-01-30 12:47:14.675 [main] INFO - ********* END *********: +2019-01-30 12:47:14.690 [main] INFO - ********* START ********* +2019-01-30 12:47:14.690 [main] INFO - Authentication Type : http_signature +2019-01-30 12:47:14.690 [main] INFO - Request Type: POST +2019-01-30 12:47:14.690 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-01-30 12:47:14.690 [main] INFO - Digest: SHA-256=RGxc6GDM4hd0Lz1J24GEBLuX6JSK+r0fZi1/r0x/0Xo= +2019-01-30 12:47:14.690 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:47:14.690 [main] INFO - Date: Wed, 30 Jan 2019 07:14:16 GMT +2019-01-30 12:47:14.690 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:47:14.690 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="gOwTDWmPjsqIA0xFQVURs7VTcdbaF+0QNVRn2dDd7kw=" +2019-01-30 12:47:14.706 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:47:14.913 [main] INFO - Request Body: {"encryptionType":"SDMP"} +2019-01-30 12:47:14.913 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-01-30 12:47:14.913 [main] INFO - Response Code: 400 +2019-01-30 12:47:14.913 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Wed, 30 Jan 2019 07:17:14 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 01805cac-cd2d-42e3-8dd0-a886365a5504 +OkHttp-Sent-Millis: 1548832634728 +OkHttp-Received-Millis: 1548832634912 + +2019-01-30 12:47:14.913 [main] INFO - ********* END *********: +2019-01-30 12:47:14.913 [main] INFO - ********* START ********* +2019-01-30 12:47:14.944 [main] INFO - Authentication Type : http_signature +2019-01-30 12:47:14.944 [main] INFO - Request Type: POST +2019-01-30 12:47:14.944 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 12:47:14.944 [main] INFO - Digest: SHA-256=E6K4D5t7SN4+7t1a70sbQrktGceH1MTS/HV58hudVo0= +2019-01-30 12:47:14.944 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:47:14.944 [main] INFO - Date: Wed, 30 Jan 2019 07:14:16 GMT +2019-01-30 12:47:14.944 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:47:14.944 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="RhBtjWlbojUvJOldBqGX9LBXECLgz5Z3hmndpkTB3iQ=" +2019-01-30 12:47:14.944 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:47:15.476 [main] INFO - Request Body: {"keyId":"07QXB4Oj7fWJz3jZCdgfUF5HnDj01ouL","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 12:47:15.476 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-01-30 12:47:15.476 [main] INFO - Response Code: 200 +2019-01-30 12:47:15.476 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=x9/fwhqgsM1rNvpp+Adl0yLBz7vy250g0QJo8ivMknQ= +Content-Type: application/json;charset=UTF-8 +Content-Length: 840 +Date: Wed, 30 Jan 2019 07:17:14 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 1f8e4d0c-5755-4158-bb80-1b476da7fa5e +OkHttp-Sent-Millis: 1548832634960 +OkHttp-Received-Millis: 1548832635476 + +2019-01-30 12:47:15.476 [main] INFO - ********* END *********: +2019-01-30 12:47:16.368 [main] INFO - ********* START ********* +2019-01-30 12:47:16.368 [main] INFO - Authentication Type : http_signature +2019-01-30 12:47:16.368 [main] INFO - Request Type: POST +2019-01-30 12:47:16.368 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-01-30 12:47:16.368 [main] INFO - Digest: SHA-256=bena9bhB3Jy4uPvfu1tAC0uN8AuzzM+xjqmDwR5//EA= +2019-01-30 12:47:16.368 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:47:16.368 [main] INFO - Date: Wed, 30 Jan 2019 07:14:16 GMT +2019-01-30 12:47:16.368 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:47:16.368 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="W5VMT/NAjZceaO5zQSCcbBbTpOpAKnZvrH5/HuUWlPw=" +2019-01-30 12:47:16.368 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:47:16.579 [main] INFO - Request Body: {"encryptionType":"None"} +2019-01-30 12:47:16.579 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-01-30 12:47:16.579 [main] INFO - Response Code: 200 +2019-01-30 12:47:16.595 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=juxwwus1vNYRRra76X3rVQVdGaR9EqsZkOhK4mTL4P8= +Content-Type: application/json;charset=UTF-8 +Content-Length: 505 +Date: Wed, 30 Jan 2019 07:17:16 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: fe136e2d-1006-4198-8c49-2f994ce8f107 +OkHttp-Sent-Millis: 1548832636383 +OkHttp-Received-Millis: 1548832636579 + +2019-01-30 12:47:16.595 [main] INFO - ********* END *********: +2019-01-30 12:47:16.610 [main] INFO - ********* START ********* +2019-01-30 12:47:16.611 [main] INFO - Authentication Type : http_signature +2019-01-30 12:47:16.611 [main] INFO - Request Type: POST +2019-01-30 12:47:16.611 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-01-30 12:47:16.611 [main] INFO - Digest: SHA-256=RGxc6GDM4hd0Lz1J24GEBLuX6JSK+r0fZi1/r0x/0Xo= +2019-01-30 12:47:16.612 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:47:16.612 [main] INFO - Date: Wed, 30 Jan 2019 07:14:16 GMT +2019-01-30 12:47:16.612 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:47:16.612 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="gOwTDWmPjsqIA0xFQVURs7VTcdbaF+0QNVRn2dDd7kw=" +2019-01-30 12:47:16.613 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:47:16.817 [main] INFO - Request Body: {"encryptionType":"SDMP"} +2019-01-30 12:47:16.817 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-01-30 12:47:16.817 [main] INFO - Response Code: 400 +2019-01-30 12:47:16.817 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Wed, 30 Jan 2019 07:17:16 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: cae7aa02-892f-47b5-a09d-cca4c5157403 +OkHttp-Sent-Millis: 1548832636632 +OkHttp-Received-Millis: 1548832636816 + +2019-01-30 12:47:16.817 [main] INFO - ********* END *********: +2019-01-30 12:47:16.832 [main] INFO - ********* START ********* +2019-01-30 12:47:16.832 [main] INFO - Authentication Type : http_signature +2019-01-30 12:47:16.832 [main] INFO - Request Type: POST +2019-01-30 12:47:16.832 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 12:47:16.832 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-01-30 12:47:16.832 [main] INFO - v-c-merchant-id: testrest +2019-01-30 12:47:16.832 [main] INFO - Date: Wed, 30 Jan 2019 07:14:16 GMT +2019-01-30 12:47:16.832 [main] INFO - Host: apitest.cybersource.com +2019-01-30 12:47:16.832 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="pU5rqMP/Quu9JLnzOuBpdr8u21xM0KsBv/nvaiIU+dg=" +2019-01-30 12:47:16.832 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 12:47:16.980 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 12:47:16.996 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-01-30 12:47:16.996 [main] INFO - Response Code: 400 +2019-01-30 12:47:16.996 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Wed, 30 Jan 2019 07:17:16 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: bbab2899-d8dd-47da-a019-3aadfe388053 +OkHttp-Sent-Millis: 1548832636848 +OkHttp-Received-Millis: 1548832636980 + +2019-01-30 12:47:16.996 [main] INFO - ********* END *********: +2019-01-30 15:31:57.745 [main] INFO - ********* START ********* +2019-01-30 15:31:57.761 [main] INFO - Authentication Type : http_signature +2019-01-30 15:31:57.761 [main] INFO - Request Type: POST +2019-01-30 15:31:57.761 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 15:31:57.761 [main] INFO - Digest: SHA-256=E6K4D5t7SN4+7t1a70sbQrktGceH1MTS/HV58hudVo0= +2019-01-30 15:31:57.761 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:31:57.761 [main] INFO - Date: Wed, 30 Jan 2019 10:01:56 GMT +2019-01-30 15:31:57.761 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:31:57.761 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="bkZlgDyfoCNX8xPCxtZyxgjF26TYvLf2NGV8K1byNkI=" +2019-01-30 15:31:57.761 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:31:59.010 [main] INFO - Request Body: {"keyId":"07QXB4Oj7fWJz3jZCdgfUF5HnDj01ouL","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 15:31:59.010 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [07QXB4Oj7fWJz3jZCdgfUF5HnDj01ouL]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-01-30 15:31:59.010 [main] INFO - Response Code: 400 +2019-01-30 15:31:59.010 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=6KuGYC4mkVzwVICanaj6BEPnaNo2uZbq9aJmGhfjldk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Wed, 30 Jan 2019 10:01:57 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ca89f75a-6657-4b3e-b702-fe8038e7fbff +OkHttp-Sent-Millis: 1548842518778 +OkHttp-Received-Millis: 1548842518978 + +2019-01-30 15:31:59.010 [main] INFO - ********* END *********: +2019-01-30 15:31:59.039 [main] INFO - ********* START ********* +2019-01-30 15:31:59.039 [main] INFO - Authentication Type : http_signature +2019-01-30 15:31:59.039 [main] INFO - Request Type: POST +2019-01-30 15:31:59.040 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 15:31:59.040 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-01-30 15:31:59.040 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:31:59.040 [main] INFO - Date: Wed, 30 Jan 2019 10:01:56 GMT +2019-01-30 15:31:59.040 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:31:59.040 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="RZ/ftHpfr5S+a7WVtLp9ou1EZAnvIUitNjAb8nZeqyg=" +2019-01-30 15:31:59.040 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:31:59.232 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 15:31:59.232 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [0023154mudgshfyrtdgfj456fhdggdg1]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-01-30 15:31:59.232 [main] INFO - Response Code: 400 +2019-01-30 15:31:59.232 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Wed, 30 Jan 2019 10:01:59 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 393fcc10-4d0a-483d-a547-a3edd95812be +OkHttp-Sent-Millis: 1548842519055 +OkHttp-Received-Millis: 1548842519232 + +2019-01-30 15:31:59.232 [main] INFO - ********* END *********: +2019-01-30 15:34:22.006 [main] INFO - ********* START ********* +2019-01-30 15:34:22.022 [main] INFO - Authentication Type : http_signature +2019-01-30 15:34:22.022 [main] INFO - Request Type: POST +2019-01-30 15:34:22.060 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 15:34:22.060 [main] INFO - Digest: SHA-256=8zL1lqVmciDMlRJ65kBq4AswyB8prLqLtjgbS7K6aqc= +2019-01-30 15:34:22.060 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:34:22.060 [main] INFO - Date: Wed, 30 Jan 2019 10:04:21 GMT +2019-01-30 15:34:22.060 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:34:22.060 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="DP5Rfm4xwoLjWTg0nqMmkYe72M5HYtco4D4aNtMVhus=" +2019-01-30 15:34:22.060 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:34:23.779 [main] INFO - Request Body: {"keyId":"07SUtHSfHdR9OsgvrxBSCmH6Bcs6hy86","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 15:34:23.779 [main] INFO - Response Message: {"keyId":"07SUtHSfHdR9OsgvrxBSCmH6Bcs6hy86","token":"80AB0734B2704375E05341588E0A1825","maskedPan":"555555XXXXXX4444","cardType":"XXXXXXXXX","timestamp":1548842663668,"signedFields":"token,cardType,maskedPan,timestamp","signature":"d2PNcxAFGQrJV/+Xgr4ygyWf33AS7f/U88yT8l6WAU/CJ57nf8ZHgK/Aq1+w0WeEdsZqSMknmYNyAGy48RnFfhik8vwhZx2DsI72sLw5mcUmZznhwKVzeOP7fCfps8J7oJS1coFtW/BNpg9LRBQY5yeQyD5kojWnBwgHjAwoxncMKdY6Rfrg69nUJCXNijZDzhcNohM7JTiaaKElZe/70q4Gs7gcy4qu5Xttj63DQ/+daqZVLiybmyuxBINaPRaRBXTB0VVIMKyS3sBjQMt9vCG9+Y2OkKSou3PxHsfgzBPGA01suyA6phC0KzaG4oUHVKBqO8UCumOlq8rkN3r2Nw==","discoverableServices":{},"_embedded":{"icsReply":{"requestId":"5488426631896643603003","instrumentIdentifier":{"id":"7020000000002394444","new":"N","state":"ACTIVE"},"_links":{"self":{"href":"/cybersource/flex/search/v1/logs/tokenProvider/5488426631896643603003"}}}}} +2019-01-30 15:34:23.779 [main] INFO - Response Code: 200 +2019-01-30 15:34:23.779 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=1edj+HdxrciA5PYXEm11nEsGgc8xc2f1ZRVT+bI/Sos= +Content-Type: application/json;charset=UTF-8 +Content-Length: 840 +Date: Wed, 30 Jan 2019 10:04:23 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 63c80ded-c6fb-42f4-b0ee-3c337b635af2 +OkHttp-Sent-Millis: 1548842663062 +OkHttp-Received-Millis: 1548842663764 + +2019-01-30 15:34:23.779 [main] INFO - ********* END *********: +2019-01-30 15:34:24.195 [main] INFO - ********* START ********* +2019-01-30 15:34:24.195 [main] INFO - Authentication Type : http_signature +2019-01-30 15:34:24.195 [main] INFO - Request Type: POST +2019-01-30 15:34:24.195 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 15:34:24.195 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-01-30 15:34:24.195 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:34:24.195 [main] INFO - Date: Wed, 30 Jan 2019 10:04:21 GMT +2019-01-30 15:34:24.195 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:34:24.195 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="DRVeXnt8eJDcuWjUCuARSpXTxSjITuL6NeXigZ/4PAo=" +2019-01-30 15:34:24.195 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:34:24.396 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 15:34:24.396 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-01-30 15:34:24.396 [main] INFO - Response Code: 400 +2019-01-30 15:34:24.396 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Wed, 30 Jan 2019 10:04:23 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6a37ced5-e2b7-4ae0-9953-05841a8ab1d0 +OkHttp-Sent-Millis: 1548842664211 +OkHttp-Received-Millis: 1548842664396 + +2019-01-30 15:34:24.396 [main] INFO - ********* END *********: +2019-01-30 15:42:22.348 [main] INFO - ********* START ********* +2019-01-30 15:42:22.362 [main] INFO - Authentication Type : http_signature +2019-01-30 15:42:22.362 [main] INFO - Request Type: POST +2019-01-30 15:42:22.378 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 15:42:22.393 [main] INFO - Digest: SHA-256=NTEzVYcZcvVKTljWImpKh21zRKbwCqQ28zYfzHWFIMA= +2019-01-30 15:42:22.394 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:42:22.394 [main] INFO - Date: Wed, 30 Jan 2019 10:12:22 GMT +2019-01-30 15:42:22.394 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:42:22.394 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="oI6ViLwqZSjTvJn71wtgyuYLZYhGLcghIlIDi1yZkE8=" +2019-01-30 15:42:22.395 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:42:24.100 [main] INFO - Request Body: {"keyId":"07zg4urJ9S3tjCDYKEI45yD2SzAhBPUr","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 15:42:24.100 [main] INFO - Response Message: {"keyId":"07zg4urJ9S3tjCDYKEI45yD2SzAhBPUr","token":"80AB0734B2D44375E05341588E0A1825","maskedPan":"555555XXXXXX4444","cardType":"XXXXXXXXX","timestamp":1548843143988,"signedFields":"token,cardType,maskedPan,timestamp","signature":"sD7BQGLJhrsDyhVdxAZepf6YSsLGFAZtNpzyJcp5LHe5mKi1oGhHUm6jmqx7QM8OyuZjpzeooPU3Al1g36+9tkJFaCF+Eo842s4riKkgqCOXDXYU8uujSmHrSJEjWYmPz3mfu/g+z0wOKXBWTNMHS62mCIClMz1FNVoTh0jCMwiduu7aG/O0jlv/hg+m7hErxv58tx5UDaIRpjoOseBfgUzeje/8GobE/9FtZ3vkfb2Zie0sjwxO/VZolzHzHkEHY+eWgj8MU4GAPE9LJbKj89vmeM4ZJavSGxHHBWPL1YUBSSPO9VVZ6zFbboEORa6q6mEfRe5rTprUCpMM4aRRMg==","discoverableServices":{},"_embedded":{"icsReply":{"requestId":"5488431435186161003005","instrumentIdentifier":{"id":"7020000000002394444","new":"N","state":"ACTIVE"},"_links":{"self":{"href":"/cybersource/flex/search/v1/logs/tokenProvider/5488431435186161003005"}}}}} +2019-01-30 15:42:24.116 [main] INFO - Response Code: 200 +2019-01-30 15:42:24.116 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=IU/MPQ+AkVqWLwmcmCIgVK1loGko9O04U52K4cT2vko= +Content-Type: application/json;charset=UTF-8 +Content-Length: 840 +Date: Wed, 30 Jan 2019 10:12:23 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: f627354c-d3c7-4750-a4ef-b1a63264dca2 +OkHttp-Sent-Millis: 1548843143368 +OkHttp-Received-Millis: 1548843144087 + +2019-01-30 15:42:24.116 [main] INFO - ********* END *********: +2019-01-30 15:42:24.512 [main] INFO - ********* START ********* +2019-01-30 15:42:24.512 [main] INFO - Authentication Type : http_signature +2019-01-30 15:42:24.512 [main] INFO - Request Type: POST +2019-01-30 15:42:24.512 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 15:42:24.512 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-01-30 15:42:24.512 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:42:24.512 [main] INFO - Date: Wed, 30 Jan 2019 10:12:22 GMT +2019-01-30 15:42:24.512 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:42:24.512 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="09KGihOSgmUHfjrj3TEq/WKlpaR6KN9Qfa+J2BQHEos=" +2019-01-30 15:42:24.512 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:42:24.715 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 15:42:24.715 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-01-30 15:42:24.716 [main] INFO - Response Code: 400 +2019-01-30 15:42:24.716 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Wed, 30 Jan 2019 10:12:23 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a7a75970-6035-46c4-ae90-6138e01655e3 +OkHttp-Sent-Millis: 1548843144528 +OkHttp-Received-Millis: 1548843144714 + +2019-01-30 15:42:24.716 [main] INFO - ********* END *********: +2019-01-30 15:43:09.683 [main] INFO - ********* START ********* +2019-01-30 15:43:09.683 [main] INFO - Authentication Type : http_signature +2019-01-30 15:43:09.683 [main] INFO - Request Type: POST +2019-01-30 15:43:09.720 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 15:43:09.720 [main] INFO - Digest: SHA-256=NTEzVYcZcvVKTljWImpKh21zRKbwCqQ28zYfzHWFIMA= +2019-01-30 15:43:09.720 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:43:09.720 [main] INFO - Date: Wed, 30 Jan 2019 10:13:09 GMT +2019-01-30 15:43:09.720 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:43:09.720 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="bxD53CCIl8Z/9tuVgOG7PadfEU1oRzT2ul4vHusjHMc=" +2019-01-30 15:43:09.720 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:43:11.504 [main] INFO - Request Body: {"keyId":"07zg4urJ9S3tjCDYKEI45yD2SzAhBPUr","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 15:43:11.504 [main] INFO - Response Message: {"keyId":"07zg4urJ9S3tjCDYKEI45yD2SzAhBPUr","token":"80AB0734B2D74375E05341588E0A1825","maskedPan":"555555XXXXXX4444","cardType":"XXXXXXXXX","timestamp":1548843191394,"signedFields":"token,cardType,maskedPan,timestamp","signature":"GGyGG7qZVciC4d/bqcm9vIPYcMn+1VsJf2aiG8iqd+TOGiwlzz4BsUg5w6vcNTS8yUayoi1H37/UZz1ULI+gn1+Fx6lq0xKYIlJ6deN2rtxysCIlrhvr8ShxxNGJyNK0WAwTf2imbYkGJWofEe6B1zkhlp4hHon0XJ1NGncCNkChLdxSVA9zkK6s9ZvmruG6nu7fm2Ppp7Ivojyt5K1tJa9LiupJUVZKVAwPcg6nmGWCp1510Y0uPqymmZCjyPhy7R8ZuT1x0STsdsFsXIVhO+v4ciAz9lBpP+A72y99FXMpySV3yzcSagMpnvJgBsAH66NzEFDbJZYA3zeaTkdOMQ==","discoverableServices":{},"_embedded":{"icsReply":{"requestId":"5488431909896420903006","instrumentIdentifier":{"id":"7020000000002394444","new":"N","state":"ACTIVE"},"_links":{"self":{"href":"/cybersource/flex/search/v1/logs/tokenProvider/5488431909896420903006"}}}}} +2019-01-30 15:43:11.504 [main] INFO - Response Code: 200 +2019-01-30 15:43:11.504 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=T82dnH1zRQMMwIMEurFmNbYCp9tF5Glug0f0/97T5xg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 840 +Date: Wed, 30 Jan 2019 10:13:11 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 31b09be5-cb2b-4a2d-9827-045f9ed485c0 +OkHttp-Sent-Millis: 1548843190872 +OkHttp-Received-Millis: 1548843191489 + +2019-01-30 15:43:11.504 [main] INFO - ********* END *********: +2019-01-30 15:43:11.922 [main] INFO - ********* START ********* +2019-01-30 15:43:11.922 [main] INFO - Authentication Type : http_signature +2019-01-30 15:43:11.922 [main] INFO - Request Type: POST +2019-01-30 15:43:11.923 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-01-30 15:43:11.923 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-01-30 15:43:11.923 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:43:11.924 [main] INFO - Date: Wed, 30 Jan 2019 10:13:09 GMT +2019-01-30 15:43:11.924 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:43:11.924 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="/fIctCWXl0onvGM/mDX/dJphGgo9pGwdH3myQLXZZdg=" +2019-01-30 15:43:11.924 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:43:12.127 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-01-30 15:43:12.127 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-01-30 15:43:12.127 [main] INFO - Response Code: 400 +2019-01-30 15:43:12.127 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Wed, 30 Jan 2019 10:13:11 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a4abbdc5-d9b1-4efd-92b9-69f77f60266a +OkHttp-Sent-Millis: 1548843191943 +OkHttp-Received-Millis: 1548843192127 + +2019-01-30 15:43:12.127 [main] INFO - ********* END *********: +2019-01-30 15:47:17.843 [main] INFO - ********* START ********* +2019-01-30 15:47:17.858 [main] INFO - Authentication Type : http_signature +2019-01-30 15:47:17.890 [main] INFO - Request Type: GET +2019-01-30 15:47:17.890 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testrest%20dec%20V70, requestType=GET} +2019-01-30 15:47:17.890 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:47:17.890 [main] INFO - Date: Wed, 30 Jan 2019 10:17:17 GMT +2019-01-30 15:47:17.890 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:47:17.890 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="pAR+SO3E20+xDn1OhhLi3itJ+dDoMkTnXM3nKMZa7/g=" +2019-01-30 15:47:17.890 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:47:19.782 [main] INFO - Request Body: null +2019-01-30 15:47:19.782 [main] INFO - Response Message: + + + + + + + + + + + + +2019-01-30 15:47:19.782 [main] INFO - Response Code: 200 +2019-01-30 15:47:19.782 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e36e57ce-d7af-4aa0-a059-2f7551d9622f +X-OPNET-Transaction-Trace: a2_76b8bd8c-bcbe-432f-9aa4-9c7b4ed2916d +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Wed, 30 Jan 2019 10:17:19 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Wed, 30 Jan 2019 10:17:19 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 64f0771a-6dc7-49af-aee6-b459ef27f462 +OkHttp-Sent-Millis: 1548843438876 +OkHttp-Received-Millis: 1548843439770 + +2019-01-30 15:47:19.782 [main] INFO - ********* END *********: +2019-01-30 15:47:19.823 [main] INFO - ********* START ********* +2019-01-30 15:47:19.824 [main] INFO - Authentication Type : http_signature +2019-01-30 15:47:19.824 [main] INFO - Request Type: GET +2019-01-30 15:47:19.824 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testre, requestType=GET} +2019-01-30 15:47:19.824 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:47:19.825 [main] INFO - Date: Wed, 30 Jan 2019 10:17:17 GMT +2019-01-30 15:47:19.825 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:47:19.825 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="7w3aLZTD/qboue9l3PYTIcEPY12hAgDVPxUXB5UGjPE=" +2019-01-30 15:47:19.825 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:47:20.667 [main] INFO - Request Body: null +2019-01-30 15:47:20.668 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-01-30 15:47:20.669 [main] INFO - Response Code: 404 +2019-01-30 15:47:20.669 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_419c7256-f229-42c1-b91c-9003856d5cd4 +X-OPNET-Transaction-Trace: a2_372296b6-157e-48bd-bf10-0e034b70c298 +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Wed, 30 Jan 2019 10:17:20 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Wed, 30 Jan 2019 10:17:19 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ef8ffac5-f2f3-4ad9-bb78-b9d3ab10bfd2 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1548843439827 +OkHttp-Received-Millis: 1548843440665 + +2019-01-30 15:47:20.669 [main] INFO - ********* END *********: +2019-01-30 15:47:20.685 [main] INFO - ********* START ********* +2019-01-30 15:47:20.685 [main] INFO - Authentication Type : http_signature +2019-01-30 15:47:20.685 [main] INFO - Request Type: GET +2019-01-30 15:47:20.686 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-08-02&reportName=testrest_v2, requestType=GET} +2019-01-30 15:47:20.686 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:47:20.686 [main] INFO - Date: Wed, 30 Jan 2019 10:17:17 GMT +2019-01-30 15:47:20.686 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:47:20.687 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="pRtdRSFQNkrGCebRXVPqLLWc0KRE3kQyMAugboWkCvo=" +2019-01-30 15:47:20.687 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:47:21.460 [main] INFO - Request Body: null +2019-01-30 15:47:21.460 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-01-30 15:47:21.460 [main] INFO - Response Code: 404 +2019-01-30 15:47:21.460 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_28a1412b-3e4a-4203-b203-5de713170ed8 +X-OPNET-Transaction-Trace: a2_eead93ee-140e-4115-bebd-cad7f7acc61e +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Wed, 30 Jan 2019 10:17:21 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Wed, 30 Jan 2019 10:17:20 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 37c7a3ce-67d6-45b9-ab57-e8165122dd88 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1548843440687 +OkHttp-Received-Millis: 1548843441460 + +2019-01-30 15:47:21.476 [main] INFO - ********* END *********: +2019-01-30 15:49:26.859 [main] INFO - ********* START ********* +2019-01-30 15:49:26.875 [main] INFO - Authentication Type : http_signature +2019-01-30 15:49:26.906 [main] INFO - Request Type: GET +2019-01-30 15:49:26.906 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testrest%20dec%20V70, requestType=GET} +2019-01-30 15:49:26.906 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:49:26.906 [main] INFO - Date: Wed, 30 Jan 2019 10:19:26 GMT +2019-01-30 15:49:26.906 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:49:26.906 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ya5CLdJCjb2Urhz/iTmJM4N/ivlbTkpZMj0ucRX//64=" +2019-01-30 15:49:26.906 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:49:28.901 [main] INFO - Request Body: null +2019-01-30 15:49:28.901 [main] INFO - Response Message: + + + + + + + + + + + + +2019-01-30 15:49:28.916 [main] INFO - Response Code: 200 +2019-01-30 15:49:28.916 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_7ba7b99b-1374-402b-8d41-4f5ad8cc9c32 +X-OPNET-Transaction-Trace: a2_f81d12ad-fb85-492f-b032-54e15b4e47b3 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Wed, 30 Jan 2019 10:19:28 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Wed, 30 Jan 2019 10:19:28 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 09c7cbe0-94a5-4595-aa6a-611d4c8800e4 +OkHttp-Sent-Millis: 1548843568045 +OkHttp-Received-Millis: 1548843568879 + +2019-01-30 15:49:28.916 [main] INFO - ********* END *********: +2019-01-30 15:49:28.934 [main] INFO - ********* START ********* +2019-01-30 15:49:28.934 [main] INFO - Authentication Type : http_signature +2019-01-30 15:49:28.949 [main] INFO - Request Type: GET +2019-01-30 15:49:28.949 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testre, requestType=GET} +2019-01-30 15:49:28.949 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:49:28.949 [main] INFO - Date: Wed, 30 Jan 2019 10:19:26 GMT +2019-01-30 15:49:28.949 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:49:28.949 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="YtOfr7zWZS8KsS8bIg+jWqLuLm1/hqkCLs8jeTkaEow=" +2019-01-30 15:49:28.949 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:49:29.748 [main] INFO - Request Body: null +2019-01-30 15:49:29.748 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-01-30 15:49:29.748 [main] INFO - Response Code: 404 +2019-01-30 15:49:29.748 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_0c97d1dc-4319-49d3-8d8b-f2816404cb23 +X-OPNET-Transaction-Trace: a2_13a21e62-d2bc-4b58-a426-e54d7a7d8007 +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Wed, 30 Jan 2019 10:19:29 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Wed, 30 Jan 2019 10:19:29 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6235cf04-5c7f-47f0-a653-74ffc20ca5b5 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1548843568949 +OkHttp-Received-Millis: 1548843569748 + +2019-01-30 15:49:29.748 [main] INFO - ********* END *********: +2019-01-30 15:49:29.779 [main] INFO - ********* START ********* +2019-01-30 15:49:29.779 [main] INFO - Authentication Type : http_signature +2019-01-30 15:49:29.779 [main] INFO - Request Type: GET +2019-01-30 15:49:29.779 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-08-02&reportName=testrest_v2, requestType=GET} +2019-01-30 15:49:29.779 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:49:29.779 [main] INFO - Date: Wed, 30 Jan 2019 10:19:26 GMT +2019-01-30 15:49:29.779 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:49:29.779 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="+UwR2ra1BlgmCfGpZjf6uIgwLg7MfBJhzLXs7f1WlnY=" +2019-01-30 15:49:29.779 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:49:30.552 [main] INFO - Request Body: null +2019-01-30 15:49:30.552 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-01-30 15:49:30.552 [main] INFO - Response Code: 404 +2019-01-30 15:49:30.552 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_c3d4583d-227a-4d84-884c-7b461b429a0f +X-OPNET-Transaction-Trace: a2_da339087-9b7f-42c8-a699-79e246281608 +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Wed, 30 Jan 2019 10:19:30 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Wed, 30 Jan 2019 10:19:29 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 5a321251-40f7-483f-b38a-4a53d39c4566 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1548843569779 +OkHttp-Received-Millis: 1548843570552 + +2019-01-30 15:49:30.552 [main] INFO - ********* END *********: +2019-01-30 15:55:00.204 [main] INFO - ********* START ********* +2019-01-30 15:55:00.210 [main] INFO - Authentication Type : http_signature +2019-01-30 15:55:00.241 [main] INFO - Request Type: GET +2019-01-30 15:55:00.241 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testrest%20dec%20V70, requestType=GET} +2019-01-30 15:55:00.241 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:55:00.241 [main] INFO - Date: Wed, 30 Jan 2019 10:24:59 GMT +2019-01-30 15:55:00.241 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:55:00.241 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="AI2b77z6eafAHCzqLYpi/63R3014bywOVq1gk2oELy8=" +2019-01-30 15:55:00.241 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:55:02.222 [main] INFO - Request Body: null +2019-01-30 15:55:02.223 [main] INFO - Response Message: + + + + + + + + + + + + +2019-01-30 15:55:02.224 [main] INFO - Response Code: 200 +2019-01-30 15:55:02.224 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_042b23cf-70b3-40ce-8341-9d4268bd244e +X-OPNET-Transaction-Trace: a2_8c5c9d63-9f7e-4331-99de-8cf4064cdb90 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Wed, 30 Jan 2019 10:25:02 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Wed, 30 Jan 2019 10:25:01 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c308c0f3-e590-40bc-b5f7-9f1599c93e12 +OkHttp-Sent-Millis: 1548843901391 +OkHttp-Received-Millis: 1548843902206 + +2019-01-30 15:55:02.224 [main] INFO - ********* END *********: +2019-01-30 15:55:02.244 [main] INFO - ********* START ********* +2019-01-30 15:55:02.244 [main] INFO - Authentication Type : http_signature +2019-01-30 15:55:02.244 [main] INFO - Request Type: GET +2019-01-30 15:55:02.244 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testre, requestType=GET} +2019-01-30 15:55:02.244 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:55:02.244 [main] INFO - Date: Wed, 30 Jan 2019 10:24:59 GMT +2019-01-30 15:55:02.244 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:55:02.244 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="F5J5OFQC3Xp91Cf9b+C3k6cQ+3OxOS5nttU01AOftt0=" +2019-01-30 15:55:02.244 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:55:03.061 [main] INFO - Request Body: null +2019-01-30 15:55:03.061 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-01-30 15:55:03.061 [main] INFO - Response Code: 404 +2019-01-30 15:55:03.061 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_48eee351-b8e2-4dc5-81db-4c384000727e +X-OPNET-Transaction-Trace: a2_9eac1307-9806-482c-b407-eaaa89d841da +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Wed, 30 Jan 2019 10:25:02 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Wed, 30 Jan 2019 10:25:02 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7b29ac5f-e88d-4f40-9f93-19b8c13c61d0 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1548843902260 +OkHttp-Received-Millis: 1548843903061 + +2019-01-30 15:55:03.061 [main] INFO - ********* END *********: +2019-01-30 15:55:03.077 [main] INFO - ********* START ********* +2019-01-30 15:55:03.077 [main] INFO - Authentication Type : http_signature +2019-01-30 15:55:03.077 [main] INFO - Request Type: GET +2019-01-30 15:55:03.077 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-08-02&reportName=testrest_v2, requestType=GET} +2019-01-30 15:55:03.077 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:55:03.077 [main] INFO - Date: Wed, 30 Jan 2019 10:24:59 GMT +2019-01-30 15:55:03.077 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:55:03.077 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="qGig/xCAIxk0Dc1XYNMCkYp9r2oX5ladF9WGFKYnaqU=" +2019-01-30 15:55:03.077 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:55:03.894 [main] INFO - Request Body: null +2019-01-30 15:55:03.894 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-01-30 15:55:03.894 [main] INFO - Response Code: 404 +2019-01-30 15:55:03.894 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_1d51e6b7-2af8-41a9-9ed3-b892562b3dca +X-OPNET-Transaction-Trace: a2_154aad0b-a5f3-4931-8856-f9632466280b +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Wed, 30 Jan 2019 10:25:03 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Wed, 30 Jan 2019 10:25:02 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d6ef1975-ffed-4e51-b282-f34d6174684d +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1548843903077 +OkHttp-Received-Millis: 1548843903894 + +2019-01-30 15:55:03.894 [main] INFO - ********* END *********: +2019-01-30 15:56:41.370 [main] INFO - ********* START ********* +2019-01-30 15:56:41.386 [main] INFO - Authentication Type : http_signature +2019-01-30 15:56:41.386 [main] INFO - Request Type: GET +2019-01-30 15:56:41.423 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA%3D%3D?organizationId=testrest, requestType=GET} +2019-01-30 15:56:41.423 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:56:41.423 [main] INFO - Date: Wed, 30 Jan 2019 10:26:41 GMT +2019-01-30 15:56:41.423 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:56:41.423 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="VbJpvFT9/jPBFkN+jC16IErulNC7b8vYoxlQfqSMTps=" +2019-01-30 15:56:41.423 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:56:43.196 [main] INFO - Request Body: null +2019-01-30 15:56:43.196 [main] INFO - Response Message: testrest,TRRReport,TransactionRequestReport,1.10,2018-10-19T16:00:00Z to 2018-10-20T16:00:00Z +RequestID,RequestDate,MerchantReferenceNumber,MerchantID +5399662771246550003001,2018-10-19T16:24:37Z,TC50171_3,testrest +5399664781416551403001,2018-10-19T16:27:58Z,TC50171_3,testrest +5399666196306552903001,2018-10-19T16:30:19Z,TC50171_3,testrest +5399666357576981903005,2018-10-19T16:30:35Z,TC50171_3,testrest +5399680347956058103004,2018-10-19T16:53:54Z,TC50171_3,testrest +5399680431216058303004,2018-10-19T16:54:03Z,TC50171_3,testrest +5399684302416000903005,2018-10-19T17:00:30Z,TC50171_3,testrest +5399684505506723403002,2018-10-19T17:00:50Z,TC50171_3,testrest +5399684781686729303003,2018-10-19T17:01:18Z,TC50171_3,testrest +5399742716346290903004,2018-10-19T18:37:51Z,TC50171_3,testrest +5399742808726291703004,2018-10-19T18:38:00Z,TC50171_3,testrest +5399743679866242703005,2018-10-19T18:39:28Z,TC50171_3,testrest +5399751921786020803003,2018-10-19T18:53:12Z,TC50171_3,testrest +5399761919726317303005,2018-10-19T19:09:52Z,TC50171_3,testrest +5399787878246907603001,2018-10-19T19:53:07Z,TC50171_3,testrest +5399793339576405603004,2018-10-19T20:02:14Z,405195660::1,testrest +5399807626196378603005,2018-10-19T20:26:02Z,405195660::1,testrest +5399810449296963303001,2018-10-19T20:30:45Z,33557799,testrest +5399829987226032203001,2018-10-19T21:03:18Z,1234567890,testrest +5399844740286070303001,2018-10-19T21:27:54Z,TC50171_3,testrest +5399845077266611803006,2018-10-19T21:28:27Z,TC50171_3,testrest +5399845139246229503002,2018-10-19T21:28:34Z,TC50171_3,testrest +5399889652786155003001,2018-10-19T22:42:45Z,TC50171_3,testrest +5399900584196720203006,2018-10-19T23:00:58Z,1234567890,testrest + +2019-01-30 15:56:43.196 [main] INFO - Response Code: 200 +2019-01-30 15:56:43.196 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_8e194938-a846-473f-85d2-fbbc71b429b6 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Wed, 30 Jan 2019 10:26:43 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Wed, 30 Jan 2019 10:26:43 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 8607bf3d-47a9-40e3-b238-808e9d63582e +OkHttp-Sent-Millis: 1548844002387 +OkHttp-Received-Millis: 1548844003180 + +2019-01-30 15:56:43.196 [main] INFO - ********* END *********: +2019-01-30 15:56:43.219 [main] INFO - ********* START ********* +2019-01-30 15:56:43.235 [main] INFO - Authentication Type : http_signature +2019-01-30 15:56:43.235 [main] INFO - Request Type: GET +2019-01-30 15:56:43.235 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0?organizationId=testrest, requestType=GET} +2019-01-30 15:56:43.236 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:56:43.236 [main] INFO - Date: Wed, 30 Jan 2019 10:26:41 GMT +2019-01-30 15:56:43.236 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:56:43.236 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="kabgsUvdOeMnLq+qJBTKRQbYDPjjNC0LteUcjtLlsVg=" +2019-01-30 15:56:43.236 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:56:44.028 [main] INFO - Request Body: null +2019-01-30 15:56:44.028 [main] INFO - Response Message: + + Field validation errors + cybsapi.validation.errors + VALIDATION_ERROR + + cybsapi.file.id.invalid + fileId + Invalid File ID + + + +2019-01-30 15:56:44.028 [main] INFO - Response Code: 400 +2019-01-30 15:56:44.028 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_31fac4b2-4124-486d-abf3-37c1f5fec70e +Cache-Control: no-cache, no-transform +ETag: "-807714005-gzip" +Expires: Wed, 30 Jan 2019 10:26:43 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Wed, 30 Jan 2019 10:26:43 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 947fa023-4d48-4cde-9334-6187d2ef5565 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1548844003238 +OkHttp-Received-Millis: 1548844004028 + +2019-01-30 15:56:44.028 [main] INFO - ********* END *********: +2019-01-30 15:57:12.313 [main] INFO - ********* START ********* +2019-01-30 15:57:12.323 [main] INFO - Authentication Type : http_signature +2019-01-30 15:57:12.323 [main] INFO - Request Type: GET +2019-01-30 15:57:12.354 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA%3D%3D?organizationId=testrest, requestType=GET} +2019-01-30 15:57:12.354 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:57:12.354 [main] INFO - Date: Wed, 30 Jan 2019 10:27:11 GMT +2019-01-30 15:57:12.354 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:57:12.354 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="y/DQnRFmR1tSf2sbYsF+pbGsyErNtKRW4Tx+OkTut2w=" +2019-01-30 15:57:12.354 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:57:14.209 [main] INFO - Request Body: null +2019-01-30 15:57:14.209 [main] INFO - Response Message: testrest,TRRReport,TransactionRequestReport,1.10,2018-10-19T16:00:00Z to 2018-10-20T16:00:00Z +RequestID,RequestDate,MerchantReferenceNumber,MerchantID +5399662771246550003001,2018-10-19T16:24:37Z,TC50171_3,testrest +5399664781416551403001,2018-10-19T16:27:58Z,TC50171_3,testrest +5399666196306552903001,2018-10-19T16:30:19Z,TC50171_3,testrest +5399666357576981903005,2018-10-19T16:30:35Z,TC50171_3,testrest +5399680347956058103004,2018-10-19T16:53:54Z,TC50171_3,testrest +5399680431216058303004,2018-10-19T16:54:03Z,TC50171_3,testrest +5399684302416000903005,2018-10-19T17:00:30Z,TC50171_3,testrest +5399684505506723403002,2018-10-19T17:00:50Z,TC50171_3,testrest +5399684781686729303003,2018-10-19T17:01:18Z,TC50171_3,testrest +5399742716346290903004,2018-10-19T18:37:51Z,TC50171_3,testrest +5399742808726291703004,2018-10-19T18:38:00Z,TC50171_3,testrest +5399743679866242703005,2018-10-19T18:39:28Z,TC50171_3,testrest +5399751921786020803003,2018-10-19T18:53:12Z,TC50171_3,testrest +5399761919726317303005,2018-10-19T19:09:52Z,TC50171_3,testrest +5399787878246907603001,2018-10-19T19:53:07Z,TC50171_3,testrest +5399793339576405603004,2018-10-19T20:02:14Z,405195660::1,testrest +5399807626196378603005,2018-10-19T20:26:02Z,405195660::1,testrest +5399810449296963303001,2018-10-19T20:30:45Z,33557799,testrest +5399829987226032203001,2018-10-19T21:03:18Z,1234567890,testrest +5399844740286070303001,2018-10-19T21:27:54Z,TC50171_3,testrest +5399845077266611803006,2018-10-19T21:28:27Z,TC50171_3,testrest +5399845139246229503002,2018-10-19T21:28:34Z,TC50171_3,testrest +5399889652786155003001,2018-10-19T22:42:45Z,TC50171_3,testrest +5399900584196720203006,2018-10-19T23:00:58Z,1234567890,testrest + +2019-01-30 15:57:14.209 [main] INFO - Response Code: 200 +2019-01-30 15:57:14.209 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_49afa945-76ee-486d-aa36-c5f42ac5f391 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Wed, 30 Jan 2019 10:27:14 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Wed, 30 Jan 2019 10:27:14 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c1bf9c14-a2df-4a52-b45d-91f63c3bd256 +OkHttp-Sent-Millis: 1548844033391 +OkHttp-Received-Millis: 1548844034194 + +2019-01-30 15:57:14.209 [main] INFO - ********* END *********: +2019-01-30 15:57:14.236 [main] INFO - ********* START ********* +2019-01-30 15:57:14.236 [main] INFO - Authentication Type : http_signature +2019-01-30 15:57:14.236 [main] INFO - Request Type: GET +2019-01-30 15:57:14.251 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0?organizationId=testrest, requestType=GET} +2019-01-30 15:57:14.251 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:57:14.251 [main] INFO - Date: Wed, 30 Jan 2019 10:27:11 GMT +2019-01-30 15:57:14.251 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:57:14.251 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="u0K4gseXruyTneD8sDle5Vl/oFk1EWX7YS7LfZEfeSI=" +2019-01-30 15:57:14.251 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:57:15.053 [main] INFO - Request Body: null +2019-01-30 15:57:15.053 [main] INFO - Response Message: + + Field validation errors + cybsapi.validation.errors + VALIDATION_ERROR + + cybsapi.file.id.invalid + fileId + Invalid File ID + + + +2019-01-30 15:57:15.053 [main] INFO - Response Code: 400 +2019-01-30 15:57:15.053 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_8e145bc6-65fd-457e-921d-5c77791fd017 +Cache-Control: no-cache, no-transform +ETag: "-807714005-gzip" +Expires: Wed, 30 Jan 2019 10:27:14 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Wed, 30 Jan 2019 10:27:14 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 076fb8c2-223f-40aa-b36c-ae1b1412d8dd +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1548844034251 +OkHttp-Received-Millis: 1548844035053 + +2019-01-30 15:57:15.053 [main] INFO - ********* END *********: +2019-01-30 15:58:40.500 [main] INFO - ********* START ********* +2019-01-30 15:58:40.516 [main] INFO - Authentication Type : http_signature +2019-01-30 15:58:40.516 [main] INFO - Request Type: GET +2019-01-30 15:58:40.547 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA%3D%3D?organizationId=testrest, requestType=GET} +2019-01-30 15:58:40.547 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:58:40.547 [main] INFO - Date: Wed, 30 Jan 2019 10:28:40 GMT +2019-01-30 15:58:40.547 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:58:40.547 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="za3NUTmHcrIbHBSP/EzKaIJe9Drl/BQd/j6jXQK99tk=" +2019-01-30 15:58:40.547 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:58:42.351 [main] INFO - Request Body: null +2019-01-30 15:58:42.351 [main] INFO - Response Message: testrest,TRRReport,TransactionRequestReport,1.10,2018-10-19T16:00:00Z to 2018-10-20T16:00:00Z +RequestID,RequestDate,MerchantReferenceNumber,MerchantID +5399662771246550003001,2018-10-19T16:24:37Z,TC50171_3,testrest +5399664781416551403001,2018-10-19T16:27:58Z,TC50171_3,testrest +5399666196306552903001,2018-10-19T16:30:19Z,TC50171_3,testrest +5399666357576981903005,2018-10-19T16:30:35Z,TC50171_3,testrest +5399680347956058103004,2018-10-19T16:53:54Z,TC50171_3,testrest +5399680431216058303004,2018-10-19T16:54:03Z,TC50171_3,testrest +5399684302416000903005,2018-10-19T17:00:30Z,TC50171_3,testrest +5399684505506723403002,2018-10-19T17:00:50Z,TC50171_3,testrest +5399684781686729303003,2018-10-19T17:01:18Z,TC50171_3,testrest +5399742716346290903004,2018-10-19T18:37:51Z,TC50171_3,testrest +5399742808726291703004,2018-10-19T18:38:00Z,TC50171_3,testrest +5399743679866242703005,2018-10-19T18:39:28Z,TC50171_3,testrest +5399751921786020803003,2018-10-19T18:53:12Z,TC50171_3,testrest +5399761919726317303005,2018-10-19T19:09:52Z,TC50171_3,testrest +5399787878246907603001,2018-10-19T19:53:07Z,TC50171_3,testrest +5399793339576405603004,2018-10-19T20:02:14Z,405195660::1,testrest +5399807626196378603005,2018-10-19T20:26:02Z,405195660::1,testrest +5399810449296963303001,2018-10-19T20:30:45Z,33557799,testrest +5399829987226032203001,2018-10-19T21:03:18Z,1234567890,testrest +5399844740286070303001,2018-10-19T21:27:54Z,TC50171_3,testrest +5399845077266611803006,2018-10-19T21:28:27Z,TC50171_3,testrest +5399845139246229503002,2018-10-19T21:28:34Z,TC50171_3,testrest +5399889652786155003001,2018-10-19T22:42:45Z,TC50171_3,testrest +5399900584196720203006,2018-10-19T23:00:58Z,1234567890,testrest + +2019-01-30 15:58:42.351 [main] INFO - Response Code: 200 +2019-01-30 15:58:42.351 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_4ed83e8e-a075-4c35-9842-aca125873de9 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Wed, 30 Jan 2019 10:28:42 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Wed, 30 Jan 2019 10:28:42 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: cda8de56-cc35-491f-9824-4521e9f8fe3b +OkHttp-Sent-Millis: 1548844121534 +OkHttp-Received-Millis: 1548844122335 + +2019-01-30 15:58:42.351 [main] INFO - ********* END *********: +2019-01-30 15:58:42.389 [main] INFO - ********* START ********* +2019-01-30 15:58:42.389 [main] INFO - Authentication Type : http_signature +2019-01-30 15:58:42.389 [main] INFO - Request Type: GET +2019-01-30 15:58:42.389 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0?organizationId=testrest, requestType=GET} +2019-01-30 15:58:42.389 [main] INFO - v-c-merchant-id: testrest +2019-01-30 15:58:42.389 [main] INFO - Date: Wed, 30 Jan 2019 10:28:40 GMT +2019-01-30 15:58:42.389 [main] INFO - Host: apitest.cybersource.com +2019-01-30 15:58:42.389 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="83sPFpoC/2egQVfcRtWIv23gxTyiiG0kLMtIvlyqkvA=" +2019-01-30 15:58:42.389 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 15:58:43.193 [main] INFO - Request Body: null +2019-01-30 15:58:43.193 [main] INFO - Response Message: + + Field validation errors + cybsapi.validation.errors + VALIDATION_ERROR + + cybsapi.file.id.invalid + fileId + Invalid File ID + + + +2019-01-30 15:58:43.194 [main] INFO - Response Code: 400 +2019-01-30 15:58:43.194 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_cbc08a4b-ada2-42c2-8c09-d60faf0effc7 +Cache-Control: no-cache, no-transform +ETag: "-807714005-gzip" +Expires: Wed, 30 Jan 2019 10:28:43 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Wed, 30 Jan 2019 10:28:43 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4fbaf16e-0d4d-4a65-80a3-fc5452b02c91 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1548844122389 +OkHttp-Received-Millis: 1548844123190 + +2019-01-30 15:58:43.194 [main] INFO - ********* END *********: +2019-01-30 16:00:12.836 [main] INFO - ********* START ********* +2019-01-30 16:00:12.846 [main] INFO - Authentication Type : http_signature +2019-01-30 16:00:12.847 [main] INFO - Request Type: GET +2019-01-30 16:00:12.876 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-01-30 16:00:12.877 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:00:12.877 [main] INFO - Date: Wed, 30 Jan 2019 10:30:12 GMT +2019-01-30 16:00:12.877 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:00:12.877 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="meSGKsaJuBnfH+YVQv9VesLZCSZeiRXCVE2e57MhFQE=" +2019-01-30 16:00:12.878 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:00:14.732 [main] INFO - Request Body: null +2019-01-30 16:00:14.732 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=0&limit=20"},"first":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=0&limit=20"},"next":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=20&limit=20"},"last":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=120&limit=20"}},"object":"collection","offset":0,"limit":20,"count":20,"total":132,"_embedded":{"paymentInstruments":[{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/798C4DC7AEE4D943E05340588D0A8A9E"}},"id":"798C4DC7AEE4D943E05340588D0A8A9E","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7987FB06ED048CC9E05340588D0A95BC"}},"id":"7987FB06ED048CC9E05340588D0A95BC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7986A6266E5D8728E05340588D0A082F"}},"id":"7986A6266E5D8728E05340588D0A082F","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79863A720BFB3614E05340588D0AC61D"}},"id":"79863A720BFB3614E05340588D0AC61D","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7986100CF0631311E05340588D0AC258"}},"id":"7986100CF0631311E05340588D0AC258","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79849FC7687CFF78E05340588D0A8D10"}},"id":"79849FC7687CFF78E05340588D0A8D10","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79276DA1D0233CA6E05340588D0ADD47"}},"id":"79276DA1D0233CA6E05340588D0ADD47","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79276DA1D01C3CA6E05340588D0ADD47"}},"id":"79276DA1D01C3CA6E05340588D0ADD47","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/790D20FA65E14107E05340588D0A56FC"}},"id":"790D20FA65E14107E05340588D0A56FC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/790B7C9B64C7062AE05340588D0A6BFC"}},"id":"790B7C9B64C7062AE05340588D0A6BFC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78FC4875384A727AE05340588D0A9FEB"}},"id":"78FC4875384A727AE05340588D0A9FEB","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78FC48753847727AE05340588D0A9FEB"}},"id":"78FC48753847727AE05340588D0A9FEB","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F9029E6777F865E05340588D0AD0EA"}},"id":"78F9029E6777F865E05340588D0AD0EA","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F906F76015F1BDE05340588D0AC573"}},"id":"78F906F76015F1BDE05340588D0AC573","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F72C08537094CAE05340588D0ACDD3"}},"id":"78F72C08537094CAE05340588D0ACDD3","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78E7CFD5C149EA3BE05340588D0AB20B"}},"id":"78E7CFD5C149EA3BE05340588D0AB20B","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78E7CFD5C144EA3BE05340588D0AB20B"}},"id":"78E7CFD5C144EA3BE05340588D0AB20B","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78DFC955E6E1B4A4E05340588D0ADD6A"}},"id":"78DFC955E6E1B4A4E05340588D0ADD6A","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78DFC955E6DCB4A4E05340588D0ADD6A"}},"id":"78DFC955E6DCB4A4E05340588D0ADD6A","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/787C21D78039BB12E05341588E0ABAF2"}},"id":"787C21D78039BB12E05341588E0ABAF2","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}}]}} +2019-01-30 16:00:14.732 [main] INFO - Response Code: 200 +2019-01-30 16:00:14.732 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_3390f9ab-f6d6-4b6b-b9dd-f132dab2f280 +uniqueTransactionID: 9a9e75d2-1871-4b95-b79d-e36d53cd8135 +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Wed, 30 Jan 2019 10:30:14 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 7f77a143-f1e8-45ac-ba81-13aa4fc44518 +OkHttp-Sent-Millis: 1548844213845 +OkHttp-Received-Millis: 1548844214563 + +2019-01-30 16:00:14.749 [main] INFO - ********* END *********: +2019-01-30 16:00:14.791 [main] INFO - ********* START ********* +2019-01-30 16:00:14.791 [main] INFO - Authentication Type : http_signature +2019-01-30 16:00:14.791 [main] INFO - Request Type: GET +2019-01-30 16:00:14.807 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-01-30 16:00:14.807 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:00:14.807 [main] INFO - Date: Wed, 30 Jan 2019 10:30:12 GMT +2019-01-30 16:00:14.807 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:00:14.807 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="rl1kgu/xcdPIchBILEx/fSHNv05dRlAEQVnTa4VwPDk=" +2019-01-30 16:00:14.807 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:00:15.063 [main] INFO - Request Body: null +2019-01-30 16:00:15.063 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-01-30 16:00:15.063 [main] INFO - Response Code: 404 +2019-01-30 16:00:15.063 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_8a218e39-22da-43f1-aa23-6ebf948e8ba0 +uniqueTransactionID: c86e8b2a-cacb-445a-8de7-7de1e8ba0b3b +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Wed, 30 Jan 2019 10:30:14 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 96cc9af0-4e3f-4d33-92c5-3bf0c3bf7e20 +OkHttp-Sent-Millis: 1548844214807 +OkHttp-Received-Millis: 1548844215063 + +2019-01-30 16:00:15.063 [main] INFO - ********* END *********: +2019-01-30 16:01:03.349 [main] INFO - ********* START ********* +2019-01-30 16:01:03.364 [main] INFO - Authentication Type : http_signature +2019-01-30 16:01:03.364 [main] INFO - Request Type: GET +2019-01-30 16:01:03.402 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-01-30 16:01:03.402 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:01:03.402 [main] INFO - Date: Wed, 30 Jan 2019 10:31:03 GMT +2019-01-30 16:01:03.402 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:01:03.402 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="aiRc1mEMEAsvYlv63+vB/I9JrSxZ7ZgKqZx41mEqT8A=" +2019-01-30 16:01:03.402 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:01:04.882 [main] INFO - Request Body: null +2019-01-30 16:01:04.882 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=0&limit=20"},"first":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=0&limit=20"},"next":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=20&limit=20"},"last":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=120&limit=20"}},"object":"collection","offset":0,"limit":20,"count":20,"total":132,"_embedded":{"paymentInstruments":[{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/798C4DC7AEE4D943E05340588D0A8A9E"}},"id":"798C4DC7AEE4D943E05340588D0A8A9E","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7987FB06ED048CC9E05340588D0A95BC"}},"id":"7987FB06ED048CC9E05340588D0A95BC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7986A6266E5D8728E05340588D0A082F"}},"id":"7986A6266E5D8728E05340588D0A082F","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79863A720BFB3614E05340588D0AC61D"}},"id":"79863A720BFB3614E05340588D0AC61D","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7986100CF0631311E05340588D0AC258"}},"id":"7986100CF0631311E05340588D0AC258","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79849FC7687CFF78E05340588D0A8D10"}},"id":"79849FC7687CFF78E05340588D0A8D10","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79276DA1D0233CA6E05340588D0ADD47"}},"id":"79276DA1D0233CA6E05340588D0ADD47","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79276DA1D01C3CA6E05340588D0ADD47"}},"id":"79276DA1D01C3CA6E05340588D0ADD47","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/790D20FA65E14107E05340588D0A56FC"}},"id":"790D20FA65E14107E05340588D0A56FC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/790B7C9B64C7062AE05340588D0A6BFC"}},"id":"790B7C9B64C7062AE05340588D0A6BFC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78FC4875384A727AE05340588D0A9FEB"}},"id":"78FC4875384A727AE05340588D0A9FEB","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78FC48753847727AE05340588D0A9FEB"}},"id":"78FC48753847727AE05340588D0A9FEB","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F9029E6777F865E05340588D0AD0EA"}},"id":"78F9029E6777F865E05340588D0AD0EA","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F906F76015F1BDE05340588D0AC573"}},"id":"78F906F76015F1BDE05340588D0AC573","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F72C08537094CAE05340588D0ACDD3"}},"id":"78F72C08537094CAE05340588D0ACDD3","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78E7CFD5C149EA3BE05340588D0AB20B"}},"id":"78E7CFD5C149EA3BE05340588D0AB20B","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78E7CFD5C144EA3BE05340588D0AB20B"}},"id":"78E7CFD5C144EA3BE05340588D0AB20B","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78DFC955E6E1B4A4E05340588D0ADD6A"}},"id":"78DFC955E6E1B4A4E05340588D0ADD6A","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78DFC955E6DCB4A4E05340588D0ADD6A"}},"id":"78DFC955E6DCB4A4E05340588D0ADD6A","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/787C21D78039BB12E05341588E0ABAF2"}},"id":"787C21D78039BB12E05341588E0ABAF2","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}}]}} +2019-01-30 16:01:04.882 [main] INFO - Response Code: 200 +2019-01-30 16:01:04.882 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_4c60f261-5f13-4f23-b540-414e9e375605 +uniqueTransactionID: 9f298dbd-fb30-49b8-8526-ca05e55c8b96 +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Wed, 30 Jan 2019 10:31:04 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 63f60e42-670e-4eb7-87a3-c1fd0fca7827 +OkHttp-Sent-Millis: 1548844264366 +OkHttp-Received-Millis: 1548844264704 + +2019-01-30 16:01:04.882 [main] INFO - ********* END *********: +2019-01-30 16:01:04.932 [main] INFO - ********* START ********* +2019-01-30 16:01:04.947 [main] INFO - Authentication Type : http_signature +2019-01-30 16:01:04.947 [main] INFO - Request Type: GET +2019-01-30 16:01:04.947 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-01-30 16:01:04.947 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:01:04.947 [main] INFO - Date: Wed, 30 Jan 2019 10:31:03 GMT +2019-01-30 16:01:04.947 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:01:04.947 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Yk8Bp+Ak7Be65LaF1ZC3BLzRrCPgyxGMpWqOusQonsk=" +2019-01-30 16:01:04.947 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:01:05.184 [main] INFO - Request Body: null +2019-01-30 16:01:05.184 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-01-30 16:01:05.184 [main] INFO - Response Code: 404 +2019-01-30 16:01:05.184 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_9985c199-b555-46b1-a627-2ffefd4a3a68 +uniqueTransactionID: b1c0644a-0e41-4f05-a435-4b47fe17b390 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Wed, 30 Jan 2019 10:31:04 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: fef20198-5445-4859-a497-0ab1804f6a52 +OkHttp-Sent-Millis: 1548844264947 +OkHttp-Received-Millis: 1548844265184 + +2019-01-30 16:01:05.184 [main] INFO - ********* END *********: +2019-01-30 16:01:31.926 [main] INFO - ********* START ********* +2019-01-30 16:01:31.941 [main] INFO - Authentication Type : http_signature +2019-01-30 16:01:31.941 [main] INFO - Request Type: GET +2019-01-30 16:01:31.974 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-01-30 16:01:31.974 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:01:31.974 [main] INFO - Date: Wed, 30 Jan 2019 10:31:31 GMT +2019-01-30 16:01:31.975 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:01:31.975 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="q5IfMmynAVcBwZER5j9w//nWhjqufdNlvbR/qBRODu8=" +2019-01-30 16:01:31.975 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:01:33.819 [main] INFO - Request Body: null +2019-01-30 16:01:33.819 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=0&limit=20"},"first":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=0&limit=20"},"next":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=20&limit=20"},"last":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=120&limit=20"}},"object":"collection","offset":0,"limit":20,"count":20,"total":132,"_embedded":{"paymentInstruments":[{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/798C4DC7AEE4D943E05340588D0A8A9E"}},"id":"798C4DC7AEE4D943E05340588D0A8A9E","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7987FB06ED048CC9E05340588D0A95BC"}},"id":"7987FB06ED048CC9E05340588D0A95BC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7986A6266E5D8728E05340588D0A082F"}},"id":"7986A6266E5D8728E05340588D0A082F","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79863A720BFB3614E05340588D0AC61D"}},"id":"79863A720BFB3614E05340588D0AC61D","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7986100CF0631311E05340588D0AC258"}},"id":"7986100CF0631311E05340588D0AC258","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79849FC7687CFF78E05340588D0A8D10"}},"id":"79849FC7687CFF78E05340588D0A8D10","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79276DA1D0233CA6E05340588D0ADD47"}},"id":"79276DA1D0233CA6E05340588D0ADD47","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79276DA1D01C3CA6E05340588D0ADD47"}},"id":"79276DA1D01C3CA6E05340588D0ADD47","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/790D20FA65E14107E05340588D0A56FC"}},"id":"790D20FA65E14107E05340588D0A56FC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/790B7C9B64C7062AE05340588D0A6BFC"}},"id":"790B7C9B64C7062AE05340588D0A6BFC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78FC4875384A727AE05340588D0A9FEB"}},"id":"78FC4875384A727AE05340588D0A9FEB","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78FC48753847727AE05340588D0A9FEB"}},"id":"78FC48753847727AE05340588D0A9FEB","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F9029E6777F865E05340588D0AD0EA"}},"id":"78F9029E6777F865E05340588D0AD0EA","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F906F76015F1BDE05340588D0AC573"}},"id":"78F906F76015F1BDE05340588D0AC573","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F72C08537094CAE05340588D0ACDD3"}},"id":"78F72C08537094CAE05340588D0ACDD3","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78E7CFD5C149EA3BE05340588D0AB20B"}},"id":"78E7CFD5C149EA3BE05340588D0AB20B","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78E7CFD5C144EA3BE05340588D0AB20B"}},"id":"78E7CFD5C144EA3BE05340588D0AB20B","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78DFC955E6E1B4A4E05340588D0ADD6A"}},"id":"78DFC955E6E1B4A4E05340588D0ADD6A","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78DFC955E6DCB4A4E05340588D0ADD6A"}},"id":"78DFC955E6DCB4A4E05340588D0ADD6A","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/787C21D78039BB12E05341588E0ABAF2"}},"id":"787C21D78039BB12E05341588E0ABAF2","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}}]}} +2019-01-30 16:01:33.819 [main] INFO - Response Code: 200 +2019-01-30 16:01:33.819 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_3ec62de2-3b7d-45ed-86ef-97524205c7cc +uniqueTransactionID: 0ec0ec46-57de-4521-b2c5-19f153f1e97d +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Wed, 30 Jan 2019 10:31:32 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 6764581d-4515-4a6c-81e0-4d6041cccfcc +OkHttp-Sent-Millis: 1548844292987 +OkHttp-Received-Millis: 1548844293651 + +2019-01-30 16:01:33.819 [main] INFO - ********* END *********: +2019-01-30 16:01:33.888 [main] INFO - ********* START ********* +2019-01-30 16:01:33.888 [main] INFO - Authentication Type : http_signature +2019-01-30 16:01:33.888 [main] INFO - Request Type: GET +2019-01-30 16:01:33.888 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-01-30 16:01:33.888 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:01:33.888 [main] INFO - Date: Wed, 30 Jan 2019 10:31:31 GMT +2019-01-30 16:01:33.888 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:01:33.888 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="luawcfMkGPVmQOmsawKAIYT9W508uCydlTJBJ0K3zew=" +2019-01-30 16:01:33.888 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:01:34.120 [main] INFO - Request Body: null +2019-01-30 16:01:34.120 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-01-30 16:01:34.120 [main] INFO - Response Code: 404 +2019-01-30 16:01:34.120 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_82f32690-5fb1-4911-9bb4-da04638084f8 +uniqueTransactionID: 08b6553c-83f8-41df-8bf7-4254c2ea2444 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Wed, 30 Jan 2019 10:31:34 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 2cfe50ca-ec4b-4043-860a-d5b2c8f82e02 +OkHttp-Sent-Millis: 1548844293888 +OkHttp-Received-Millis: 1548844294120 + +2019-01-30 16:01:34.120 [main] INFO - ********* END *********: +2019-01-30 16:03:25.029 [main] INFO - ********* START ********* +2019-01-30 16:03:25.044 [main] INFO - Authentication Type : http_signature +2019-01-30 16:03:25.044 [main] INFO - Request Type: GET +2019-01-30 16:03:25.060 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-01-30 16:03:25.075 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:03:25.075 [main] INFO - Date: Wed, 30 Jan 2019 10:33:24 GMT +2019-01-30 16:03:25.075 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:03:25.075 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="jfUsf+8Elkk0zFhsGnGr/DIzqfxJ8tKNAAPHjAzEoTs=" +2019-01-30 16:03:25.075 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:03:26.562 [main] INFO - Request Body: null +2019-01-30 16:03:26.562 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=0&limit=20"},"first":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=0&limit=20"},"next":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=20&limit=20"},"last":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=120&limit=20"}},"object":"collection","offset":0,"limit":20,"count":20,"total":132,"_embedded":{"paymentInstruments":[{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/798C4DC7AEE4D943E05340588D0A8A9E"}},"id":"798C4DC7AEE4D943E05340588D0A8A9E","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7987FB06ED048CC9E05340588D0A95BC"}},"id":"7987FB06ED048CC9E05340588D0A95BC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7986A6266E5D8728E05340588D0A082F"}},"id":"7986A6266E5D8728E05340588D0A082F","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79863A720BFB3614E05340588D0AC61D"}},"id":"79863A720BFB3614E05340588D0AC61D","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7986100CF0631311E05340588D0AC258"}},"id":"7986100CF0631311E05340588D0AC258","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79849FC7687CFF78E05340588D0A8D10"}},"id":"79849FC7687CFF78E05340588D0A8D10","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79276DA1D0233CA6E05340588D0ADD47"}},"id":"79276DA1D0233CA6E05340588D0ADD47","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79276DA1D01C3CA6E05340588D0ADD47"}},"id":"79276DA1D01C3CA6E05340588D0ADD47","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/790D20FA65E14107E05340588D0A56FC"}},"id":"790D20FA65E14107E05340588D0A56FC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/790B7C9B64C7062AE05340588D0A6BFC"}},"id":"790B7C9B64C7062AE05340588D0A6BFC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78FC4875384A727AE05340588D0A9FEB"}},"id":"78FC4875384A727AE05340588D0A9FEB","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78FC48753847727AE05340588D0A9FEB"}},"id":"78FC48753847727AE05340588D0A9FEB","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F9029E6777F865E05340588D0AD0EA"}},"id":"78F9029E6777F865E05340588D0AD0EA","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F906F76015F1BDE05340588D0AC573"}},"id":"78F906F76015F1BDE05340588D0AC573","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F72C08537094CAE05340588D0ACDD3"}},"id":"78F72C08537094CAE05340588D0ACDD3","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78E7CFD5C149EA3BE05340588D0AB20B"}},"id":"78E7CFD5C149EA3BE05340588D0AB20B","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78E7CFD5C144EA3BE05340588D0AB20B"}},"id":"78E7CFD5C144EA3BE05340588D0AB20B","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78DFC955E6E1B4A4E05340588D0ADD6A"}},"id":"78DFC955E6E1B4A4E05340588D0ADD6A","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78DFC955E6DCB4A4E05340588D0ADD6A"}},"id":"78DFC955E6DCB4A4E05340588D0ADD6A","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/787C21D78039BB12E05341588E0ABAF2"}},"id":"787C21D78039BB12E05341588E0ABAF2","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}}]}} +2019-01-30 16:03:26.562 [main] INFO - Response Code: 200 +2019-01-30 16:03:26.562 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_e7163f66-ca8f-462c-8e34-ad769f3a3e80 +uniqueTransactionID: 3ac3a6c6-e3fe-42a9-ae85-0552636a4712 +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Wed, 30 Jan 2019 10:33:26 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: c4a7a7b8-56a2-418a-8014-ceb16ce5e574 +OkHttp-Sent-Millis: 1548844406025 +OkHttp-Received-Millis: 1548844406393 + +2019-01-30 16:03:26.562 [main] INFO - ********* END *********: +2019-01-30 16:03:26.607 [main] INFO - ********* START ********* +2019-01-30 16:03:26.607 [main] INFO - Authentication Type : http_signature +2019-01-30 16:03:26.607 [main] INFO - Request Type: GET +2019-01-30 16:03:26.607 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-01-30 16:03:26.607 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:03:26.623 [main] INFO - Date: Wed, 30 Jan 2019 10:33:24 GMT +2019-01-30 16:03:26.623 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:03:26.623 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Aj/hvVr5RIMLCJyoF5fa3au72BmxClZqH60THh5G1rc=" +2019-01-30 16:03:26.623 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:03:26.847 [main] INFO - Request Body: null +2019-01-30 16:03:26.847 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-01-30 16:03:26.847 [main] INFO - Response Code: 404 +2019-01-30 16:03:26.847 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_34f4aac2-ddee-46cb-9c56-2ad5cef5f8c2 +uniqueTransactionID: 64ca6b62-e34f-48c9-a2c0-c781a2b33c3e +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Wed, 30 Jan 2019 10:33:26 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 7dffe2f4-517a-4412-a961-83b2a841eb87 +OkHttp-Sent-Millis: 1548844406625 +OkHttp-Received-Millis: 1548844406847 + +2019-01-30 16:03:26.847 [main] INFO - ********* END *********: +2019-01-30 16:05:53.815 [main] INFO - ********* START ********* +2019-01-30 16:05:53.831 [main] INFO - Authentication Type : http_signature +2019-01-30 16:05:53.831 [main] INFO - Request Type: POST +2019-01-30 16:05:53.862 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5486528792326216604003/voids, requestType=POST} +2019-01-30 16:05:53.862 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 16:05:53.862 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:05:53.862 [main] INFO - Date: Wed, 30 Jan 2019 10:35:53 GMT +2019-01-30 16:05:53.862 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:05:53.862 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Uuz4Bpl7zv/+IuMptEF49djvCVqVB8re7XhV+OM1Xwc=" +2019-01-30 16:05:53.862 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:05:55.803 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-30 16:05:55.804 [main] INFO - Response Message: {"submitTimeUtc":"2019-01-30T10:35:55Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-01-30 16:05:55.804 [main] INFO - Response Code: 400 +2019-01-30 16:05:55.804 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 688ms +v-c-correlation-id: 026b023d-97ed-44a8-8abd-07a361d8482e +OkHttp-Sent-Millis: 1548844554866 +OkHttp-Received-Millis: 1548844555789 + +2019-01-30 16:05:55.804 [main] INFO - ********* END *********: +2019-01-30 16:05:55.824 [main] INFO - ********* START ********* +2019-01-30 16:05:55.824 [main] INFO - Authentication Type : http_signature +2019-01-30 16:05:55.824 [main] INFO - Request Type: POST +2019-01-30 16:05:55.824 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-30 16:05:55.825 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 16:05:55.825 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:05:55.825 [main] INFO - Date: Wed, 30 Jan 2019 10:35:53 GMT +2019-01-30 16:05:55.826 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:05:55.826 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="kBLCkzd1yCinY0oknh4DY4M1hv0zueVFIWFK8z6bKrw=" +2019-01-30 16:05:55.826 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:07:08.021 [main] INFO - ********* START ********* +2019-01-30 16:07:08.021 [main] INFO - Authentication Type : http_signature +2019-01-30 16:07:08.021 [main] INFO - Request Type: POST +2019-01-30 16:07:08.052 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-01-30 16:07:08.052 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-01-30 16:07:08.052 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:07:08.052 [main] INFO - Date: Wed, 30 Jan 2019 10:37:07 GMT +2019-01-30 16:07:08.052 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:07:08.052 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="7YQEE6czOyI/Tb+U1nh53ePgZU0W71E2UvxdIKw92lE=" +2019-01-30 16:07:08.052 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:07:09.769 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-01-30 16:07:09.769 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_capture"},"id":"5488446292436661903003","orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"reconciliationId":"74506714GRHKT5RC","status":"PENDING","submitTimeUtc":"2019-01-30T10:37:09Z","_links":{"self":{"href":"/pts/v2/captures/5488446292436661903003","method":"GET"},"refund":{"href":"/pts/v2/captures/5488446292436661903003/refunds","method":"POST"},"void":{"href":"/pts/v2/captures/5488446292436661903003/voids","method":"POST"}}} +2019-01-30 16:07:09.769 [main] INFO - Response Code: 201 +2019-01-30 16:07:09.769 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 467ms +v-c-correlation-id: 15b991d0-11a5-41bf-8605-887b4b54ca54 +OkHttp-Sent-Millis: 1548844629053 +OkHttp-Received-Millis: 1548844629754 + +2019-01-30 16:07:09.769 [main] INFO - ********* END *********: +2019-01-30 16:07:09.806 [main] INFO - ********* START ********* +2019-01-30 16:07:09.806 [main] INFO - Authentication Type : http_signature +2019-01-30 16:07:09.806 [main] INFO - Request Type: POST +2019-01-30 16:07:09.806 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-01-30 16:07:09.806 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-01-30 16:07:09.806 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:07:09.806 [main] INFO - Date: Wed, 30 Jan 2019 10:37:07 GMT +2019-01-30 16:07:09.806 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:07:09.806 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="VuMOSxMiO1CE+Il8jDQfKLKj6HxOINXiZkKz9ySLP2U=" +2019-01-30 16:07:09.806 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:07:10.525 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-01-30 16:07:10.526 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207982366112103002/captures} +2019-01-30 16:07:10.526 [main] INFO - Response Code: 201 +2019-01-30 16:07:10.526 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 475ms +v-c-correlation-id: 53800f8a-65ff-42e5-9748-134af329c10d +OkHttp-Sent-Millis: 1548844629822 +OkHttp-Received-Millis: 1548844630524 + +2019-01-30 16:07:10.526 [main] INFO - ********* END *********: +2019-01-30 16:07:10.546 [main] INFO - ********* START ********* +2019-01-30 16:07:10.546 [main] INFO - Authentication Type : http_signature +2019-01-30 16:07:10.546 [main] INFO - Request Type: POST +2019-01-30 16:07:10.546 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-01-30 16:07:10.546 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-01-30 16:07:10.546 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:07:10.546 [main] INFO - Date: Wed, 30 Jan 2019 10:37:07 GMT +2019-01-30 16:07:10.546 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:07:10.546 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="hoWtdAML3vkVTeFAOQNzNgwg9ffx0h+ddCnzVaZCIpE=" +2019-01-30 16:07:10.546 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:07:11.271 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-01-30 16:07:11.271 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-01-30 16:07:11.271 [main] INFO - Response Code: 400 +2019-01-30 16:07:11.271 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 484ms +v-c-correlation-id: dc2bb141-02c6-449b-abed-bc89ac976de1 +OkHttp-Sent-Millis: 1548844630562 +OkHttp-Received-Millis: 1548844631256 + +2019-01-30 16:07:11.271 [main] INFO - ********* END *********: +2019-01-30 16:09:03.744 [main] INFO - ********* START ********* +2019-01-30 16:09:03.760 [main] INFO - Authentication Type : http_signature +2019-01-30 16:09:03.761 [main] INFO - Request Type: POST +2019-01-30 16:09:03.762 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5488446299926433603006/voids, requestType=POST} +2019-01-30 16:09:03.763 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 16:09:03.764 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:09:03.764 [main] INFO - Date: Wed, 30 Jan 2019 10:39:00 GMT +2019-01-30 16:09:03.765 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:09:03.765 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="AERQmuVj8XB8+RwEMmZqfZAbIxDkxhwdSZ5OLKH8ZUQ=" +2019-01-30 16:09:03.766 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:10:27.900 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-30 16:10:28.514 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_payment_void"},"id":"5488447833056174403005","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"status":"VOIDED","submitTimeUtc":"2019-01-30T10:39:43Z","voidAmountDetails":{"currency":"XXXXXXXXX","voidAmount":"200.00"},"_links":{"self":{"href":"/pts/v2/voids/5488447833056174403005","method":"GET"}}} +2019-01-30 16:10:29.132 [main] INFO - Response Code: 201 +2019-01-30 16:10:29.832 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 344 +X-Cnection: close +x-response-time: 465ms +v-c-correlation-id: b8b12f05-1831-4ca8-9394-7a0a431ec935 +OkHttp-Sent-Millis: 1548844783125 +OkHttp-Received-Millis: 1548844783829 + +2019-01-30 16:10:30.486 [main] INFO - ********* END *********: +2019-01-30 16:12:43.549 [main] INFO - ********* START ********* +2019-01-30 16:12:43.549 [main] INFO - Authentication Type : http_signature +2019-01-30 16:12:43.549 [main] INFO - Request Type: POST +2019-01-30 16:12:43.549 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-30 16:12:43.549 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 16:12:43.549 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:12:43.549 [main] INFO - Date: Wed, 30 Jan 2019 10:39:00 GMT +2019-01-30 16:12:43.565 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:12:43.565 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Y4yjoz51WpSD2ayX7JrBLNZByVkDzfgD2yTorjpxkp4=" +2019-01-30 16:12:43.566 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:17:00.780 [main] INFO - ********* START ********* +2019-01-30 16:17:00.791 [main] INFO - Authentication Type : http_signature +2019-01-30 16:17:00.791 [main] INFO - Request Type: POST +2019-01-30 16:17:00.820 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5488446299926433603006/voids, requestType=POST} +2019-01-30 16:17:00.821 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 16:17:00.821 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:17:00.821 [main] INFO - Date: Wed, 30 Jan 2019 10:47:00 GMT +2019-01-30 16:17:00.821 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:17:00.822 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="8/Q1rqDlwFB6kMWGBc+/TgU4K5KzUXplkhpFO2NquZk=" +2019-01-30 16:17:00.822 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:17:02.166 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-30 16:17:02.166 [main] INFO - Response Message: {"submitTimeUtc":"2019-01-30T10:47:02.051Z","status":"DECLINED","errorInformation":{"reason":"INVALID_DATA","message":"Invalid Json Request"}} +2019-01-30 16:17:02.167 [main] INFO - Response Code: 400 +2019-01-30 16:17:02.167 [main] INFO - Response Headers: v-c-correlation-id: 351fd399-399d-4962-914b-526912a3f29f +Content-Type: application/json +Content-Length: 142 +OkHttp-Sent-Millis: 1548845221977 +OkHttp-Received-Millis: 1548845222148 + +2019-01-30 16:17:02.167 [main] INFO - ********* END *********: +2019-01-30 16:17:02.189 [main] INFO - ********* START ********* +2019-01-30 16:17:02.190 [main] INFO - Authentication Type : http_signature +2019-01-30 16:17:02.190 [main] INFO - Request Type: POST +2019-01-30 16:17:02.191 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-30 16:17:02.191 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 16:17:02.191 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:17:02.193 [main] INFO - Date: Wed, 30 Jan 2019 10:47:00 GMT +2019-01-30 16:17:02.193 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:17:02.193 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="WgfCbUQLN9E+WrPcKSH5YafXqVr/v1sWgBrCJpqM+KM=" +2019-01-30 16:17:02.194 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:17:25.246 [main] INFO - ********* START ********* +2019-01-30 16:17:25.257 [main] INFO - Authentication Type : http_signature +2019-01-30 16:17:25.258 [main] INFO - Request Type: POST +2019-01-30 16:17:25.287 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5488446299926433603006/voids, requestType=POST} +2019-01-30 16:17:25.288 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 16:17:25.288 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:17:25.288 [main] INFO - Date: Wed, 30 Jan 2019 10:47:24 GMT +2019-01-30 16:17:25.288 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:17:25.289 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="nYHePoMaj02UZ+jmYaX8g0WwwColCQaC7y0ytF6CMR8=" +2019-01-30 16:17:25.289 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:17:32.915 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-30 16:17:32.915 [main] INFO - Response Message: {"submitTimeUtc":"2019-01-30T10:47:30Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-01-30 16:17:32.916 [main] INFO - Response Code: 400 +2019-01-30 16:17:32.916 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 476ms +v-c-correlation-id: e5b5ea98-2da5-4a03-9c0e-503f82b1a298 +OkHttp-Sent-Millis: 1548845249843 +OkHttp-Received-Millis: 1548845250559 + +2019-01-30 16:17:32.916 [main] INFO - ********* END *********: +2019-01-30 16:19:02.945 [main] INFO - ********* START ********* +2019-01-30 16:19:02.946 [main] INFO - Authentication Type : http_signature +2019-01-30 16:19:02.946 [main] INFO - Request Type: POST +2019-01-30 16:19:02.946 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-30 16:19:02.947 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 16:19:02.947 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:19:02.947 [main] INFO - Date: Wed, 30 Jan 2019 10:47:24 GMT +2019-01-30 16:19:02.947 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:19:02.948 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="URAEzLmitF6kXx//VOknxtu4awURk3vr/mdLQogV4n4=" +2019-01-30 16:19:02.948 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:19:23.540 [main] INFO - ********* START ********* +2019-01-30 16:19:23.551 [main] INFO - Authentication Type : http_signature +2019-01-30 16:19:23.551 [main] INFO - Request Type: POST +2019-01-30 16:19:23.583 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5488446299926433603006/voids, requestType=POST} +2019-01-30 16:19:23.584 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 16:19:23.584 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:19:23.584 [main] INFO - Date: Wed, 30 Jan 2019 10:49:23 GMT +2019-01-30 16:19:23.584 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:19:23.585 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ac7BQA/6BxNooY00ynFdqEq7FEotIoNa72sZuQh+sy4=" +2019-01-30 16:19:23.585 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:19:29.951 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-30 16:19:29.952 [main] INFO - Response Message: {"submitTimeUtc":"2019-01-30T10:49:27Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-01-30 16:19:29.952 [main] INFO - Response Code: 400 +2019-01-30 16:19:29.953 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 462ms +v-c-correlation-id: 88489753-cc18-4b04-99e2-6b7499de2d26 +OkHttp-Sent-Millis: 1548845367067 +OkHttp-Received-Millis: 1548845367779 + +2019-01-30 16:19:29.953 [main] INFO - ********* END *********: +2019-01-30 16:20:23.483 [main] INFO - ********* START ********* +2019-01-30 16:20:23.496 [main] INFO - Authentication Type : http_signature +2019-01-30 16:20:23.496 [main] INFO - Request Type: POST +2019-01-30 16:20:23.526 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5488446299926433603006/voids, requestType=POST} +2019-01-30 16:20:23.526 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 16:20:23.527 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:20:23.527 [main] INFO - Date: Wed, 30 Jan 2019 10:50:23 GMT +2019-01-30 16:20:23.527 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:20:23.527 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="vp8r/3kHcoJHOA+T0LoChymk9Xb5eyX6ccROuoGWu1M=" +2019-01-30 16:20:23.528 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:21:19.511 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-30 16:21:19.760 [main] INFO - Response Message: {"submitTimeUtc":"2019-01-30T10:50:32Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-01-30 16:21:19.984 [main] INFO - Response Code: 400 +2019-01-30 16:21:20.776 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 486ms +v-c-correlation-id: f36b1a69-9168-482e-9cca-d33854f95df1 +OkHttp-Sent-Millis: 1548845431765 +OkHttp-Received-Millis: 1548845432501 + +2019-01-30 16:21:22.247 [main] INFO - ********* END *********: +2019-01-30 16:21:49.858 [main] INFO - ********* START ********* +2019-01-30 16:21:49.858 [main] INFO - Authentication Type : http_signature +2019-01-30 16:21:49.858 [main] INFO - Request Type: POST +2019-01-30 16:21:49.859 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-30 16:21:49.859 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 16:21:49.859 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:21:49.859 [main] INFO - Date: Wed, 30 Jan 2019 10:50:23 GMT +2019-01-30 16:21:49.860 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:21:49.860 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="4AbtY8RIYeeJPtGQX5pWNJ+SGsIR/TAXzeRPfvtJm+M=" +2019-01-30 16:21:49.860 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:22:27.124 [main] INFO - ********* START ********* +2019-01-30 16:22:27.135 [main] INFO - Authentication Type : http_signature +2019-01-30 16:22:27.135 [main] INFO - Request Type: POST +2019-01-30 16:22:27.165 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5488446299926433603006/voids, requestType=POST} +2019-01-30 16:22:27.166 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 16:22:27.166 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:22:27.166 [main] INFO - Date: Wed, 30 Jan 2019 10:52:26 GMT +2019-01-30 16:22:27.166 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:22:27.167 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="weU4q1fyPMtaNERL8QtdI8pAGEfIdSwhmuU45jJTO7c=" +2019-01-30 16:22:27.167 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:22:43.832 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-30 16:22:43.892 [main] INFO - Response Message: {"submitTimeUtc":"2019-01-30T10:52:33Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-01-30 16:22:43.920 [main] INFO - Response Code: 400 +2019-01-30 16:22:44.153 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 597ms +v-c-correlation-id: ecb45c4c-244c-4c7a-a263-67d88998642d +OkHttp-Sent-Millis: 1548845552997 +OkHttp-Received-Millis: 1548845553856 + +2019-01-30 16:22:44.423 [main] INFO - ********* END *********: +2019-01-30 16:24:35.766 [main] INFO - ********* START ********* +2019-01-30 16:24:35.766 [main] INFO - Authentication Type : http_signature +2019-01-30 16:24:35.768 [main] INFO - Request Type: POST +2019-01-30 16:24:35.769 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-30 16:24:35.769 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 16:24:35.769 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:24:35.769 [main] INFO - Date: Wed, 30 Jan 2019 10:52:26 GMT +2019-01-30 16:24:35.770 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:24:35.770 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="QNpX0T2VmqcFW+jjkjRS3QjsILkyT4ov3RvtgSUb8gY=" +2019-01-30 16:24:35.771 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:28:42.610 [main] INFO - ********* START ********* +2019-01-30 16:28:42.621 [main] INFO - Authentication Type : http_signature +2019-01-30 16:28:42.622 [main] INFO - Request Type: POST +2019-01-30 16:28:42.654 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5488446299926433603006/voids, requestType=POST} +2019-01-30 16:28:42.654 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 16:28:42.654 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:28:42.654 [main] INFO - Date: Wed, 30 Jan 2019 10:58:42 GMT +2019-01-30 16:28:42.655 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:28:42.655 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="7QSYAz06JFL4HqdWbc+jTNfWztmeJ5EdsCsExjZbiD0=" +2019-01-30 16:28:42.655 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:28:44.150 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-30 16:28:44.150 [main] INFO - Response Message: {"submitTimeUtc":"2019-01-30T10:58:44Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-01-30 16:28:44.151 [main] INFO - Response Code: 400 +2019-01-30 16:28:44.151 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 462ms +v-c-correlation-id: 3f7ac849-aaed-408e-8b32-a4c40f3d7d5b +OkHttp-Sent-Millis: 1548845923488 +OkHttp-Received-Millis: 1548845924133 + +2019-01-30 16:28:44.151 [main] INFO - ********* END *********: +2019-01-30 16:28:44.171 [main] INFO - ********* START ********* +2019-01-30 16:28:44.171 [main] INFO - Authentication Type : http_signature +2019-01-30 16:28:44.171 [main] INFO - Request Type: POST +2019-01-30 16:28:44.172 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-30 16:28:44.172 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 16:28:44.172 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:28:44.172 [main] INFO - Date: Wed, 30 Jan 2019 10:58:42 GMT +2019-01-30 16:28:44.173 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:28:44.173 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="51J/YTZSB06OENwbeQNCqgG0q4P9L7hpyfp6Ng9LoK4=" +2019-01-30 16:28:44.173 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:29:32.125 [main] INFO - ********* START ********* +2019-01-30 16:29:32.141 [main] INFO - Authentication Type : http_signature +2019-01-30 16:29:32.142 [main] INFO - Request Type: POST +2019-01-30 16:29:32.143 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5488446299926433603006/voids, requestType=POST} +2019-01-30 16:29:32.144 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 16:29:32.145 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:29:32.145 [main] INFO - Date: Wed, 30 Jan 2019 10:59:28 GMT +2019-01-30 16:29:32.146 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:29:32.146 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="0HNi5SKnPHw/V82YKv/Y7AvXUQg+6WcioEG1ycZz7Gg=" +2019-01-30 16:29:32.147 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:29:51.354 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-30 16:29:51.944 [main] INFO - Response Message: {"submitTimeUtc":"2019-01-30T10:59:40Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-01-30 16:29:51.945 [main] INFO - Response Code: 400 +2019-01-30 16:29:51.946 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 466ms +v-c-correlation-id: bc73a98a-5336-43ff-b5c7-c70b4e9e9c2d +OkHttp-Sent-Millis: 1548845979731 +OkHttp-Received-Millis: 1548845980409 + +2019-01-30 16:29:51.946 [main] INFO - ********* END *********: +2019-01-30 16:31:50.500 [main] INFO - ********* START ********* +2019-01-30 16:31:50.501 [main] INFO - Authentication Type : http_signature +2019-01-30 16:31:50.501 [main] INFO - Request Type: POST +2019-01-30 16:31:50.502 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-30 16:31:50.502 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 16:31:50.503 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:31:50.503 [main] INFO - Date: Wed, 30 Jan 2019 10:59:28 GMT +2019-01-30 16:31:50.503 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:31:50.503 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="N5ADXkoNI0zkW6jKzm5Mt5mrF5GkZZsDCpkXKhAZ2R4=" +2019-01-30 16:31:50.504 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:52:07.316 [main] INFO - ********* START ********* +2019-01-30 16:52:07.327 [main] INFO - Authentication Type : http_signature +2019-01-30 16:52:07.327 [main] INFO - Request Type: POST +2019-01-30 16:52:07.357 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-01-30 16:52:07.357 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-01-30 16:52:07.357 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:52:07.358 [main] INFO - Date: Wed, 30 Jan 2019 11:22:06 GMT +2019-01-30 16:52:07.358 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:52:07.358 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="jw6Q+BWoFCTnAv7hxEor4Zd48sXYr27LA7+atVUyDgA=" +2019-01-30 16:52:07.359 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:52:08.782 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-01-30 16:52:08.783 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_payment"},"id":"5488473283766189603005","orderInformation":{"amountDetails":{"authorizedAmount":"100.00","currency":"XXXXXXXXX"}},"processorInformation":{"approvalCode":"888888","avs":{"code":"X","codeRaw":"I1"},"responseCode":"100"},"reconciliationId":"746696337RHKF27T","status":"AUTHORIZED","submitTimeUtc":"2019-01-30T11:22:08Z","_links":{"self":{"href":"/pts/v2/payments/5488473283766189603005","method":"GET"},"authReversal":{"href":"/pts/v2/payments/5488473283766189603005/reversals","method":"POST"},"capture":{"href":"/pts/v2/payments/5488473283766189603005/captures","method":"POST"},"refund":{"href":"/pts/v2/payments/5488473283766189603005/refunds","method":"POST"},"void":{"href":"/pts/v2/payments/5488473283766189603005/voids","method":"POST"}}} +2019-01-30 16:52:08.783 [main] INFO - Response Code: 201 +2019-01-30 16:52:08.784 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 364ms +v-c-correlation-id: f7214fc0-d640-440e-bbe8-03403a358227 +OkHttp-Sent-Millis: 1548847328180 +OkHttp-Received-Millis: 1548847328766 + +2019-01-30 16:52:08.784 [main] INFO - ********* END *********: +2019-01-30 16:52:08.857 [main] INFO - ********* START ********* +2019-01-30 16:52:08.857 [main] INFO - Authentication Type : http_signature +2019-01-30 16:52:08.857 [main] INFO - Request Type: POST +2019-01-30 16:52:08.857 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-01-30 16:52:08.858 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-01-30 16:52:08.858 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:52:08.858 [main] INFO - Date: Wed, 30 Jan 2019 11:22:06 GMT +2019-01-30 16:52:08.858 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:52:08.859 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="FIaqUuN+r1h3t/suHKxWdq3yGQFYQJEyEFGC+3/94eA=" +2019-01-30 16:52:08.859 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:52:09.422 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-01-30 16:52:09.422 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-01-30 16:52:09.422 [main] INFO - Response Code: 201 +2019-01-30 16:52:09.423 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 377ms +v-c-correlation-id: 1e0a0add-6b7a-46a5-a767-164e725dbe2e +OkHttp-Sent-Millis: 1548847328864 +OkHttp-Received-Millis: 1548847329421 + +2019-01-30 16:52:09.423 [main] INFO - ********* END *********: +2019-01-30 16:52:09.437 [main] INFO - ********* START ********* +2019-01-30 16:52:09.438 [main] INFO - Authentication Type : http_signature +2019-01-30 16:52:09.438 [main] INFO - Request Type: POST +2019-01-30 16:52:09.438 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-01-30 16:52:09.439 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-01-30 16:52:09.439 [main] INFO - v-c-merchant-id: testrest +2019-01-30 16:52:09.439 [main] INFO - Date: Wed, 30 Jan 2019 11:22:06 GMT +2019-01-30 16:52:09.440 [main] INFO - Host: apitest.cybersource.com +2019-01-30 16:52:09.440 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="VWZPDQBWUfL1Neh/nLdnHVWsO9Kvgx7JPD96IyIWL+w=" +2019-01-30 16:52:09.440 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 16:52:09.983 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-01-30 16:52:09.984 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-01-30 16:52:09.984 [main] INFO - Response Code: 400 +2019-01-30 16:52:09.984 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 318ms +v-c-correlation-id: 3bdaa119-c56f-411b-b916-a0f03cd53f84 +OkHttp-Sent-Millis: 1548847329443 +OkHttp-Received-Millis: 1548847329982 + +2019-01-30 16:52:09.985 [main] INFO - ********* END *********: +2019-01-30 17:38:12.693 [main] INFO - ********* START ********* +2019-01-30 17:38:12.705 [main] INFO - Authentication Type : http_signature +2019-01-30 17:38:12.706 [main] INFO - Request Type: POST +2019-01-30 17:38:12.736 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5488446299926433603006/voids, requestType=POST} +2019-01-30 17:38:12.736 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 17:38:12.737 [main] INFO - v-c-merchant-id: testrest +2019-01-30 17:38:12.737 [main] INFO - Date: Wed, 30 Jan 2019 12:08:12 GMT +2019-01-30 17:38:12.737 [main] INFO - Host: apitest.cybersource.com +2019-01-30 17:38:12.737 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="czHIKx3V794v8yDfN9WVQYo6pP9P5u2QyM3z1lybDCo=" +2019-01-30 17:38:12.738 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 17:38:14.217 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-30 17:38:14.218 [main] INFO - Response Message: {"submitTimeUtc":"2019-01-30T12:08:14Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-01-30 17:38:14.219 [main] INFO - Response Code: 400 +2019-01-30 17:38:14.219 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 359ms +v-c-correlation-id: 55afa734-4464-4bb4-bc52-4b945c73a7a7 +OkHttp-Sent-Millis: 1548850093646 +OkHttp-Received-Millis: 1548850094193 + +2019-01-30 17:38:14.219 [main] INFO - ********* END *********: +2019-01-30 17:38:14.239 [main] INFO - ********* START ********* +2019-01-30 17:38:14.239 [main] INFO - Authentication Type : http_signature +2019-01-30 17:38:14.240 [main] INFO - Request Type: POST +2019-01-30 17:38:14.240 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-30 17:38:14.240 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 17:38:14.240 [main] INFO - v-c-merchant-id: testrest +2019-01-30 17:38:14.241 [main] INFO - Date: Wed, 30 Jan 2019 12:08:12 GMT +2019-01-30 17:38:14.241 [main] INFO - Host: apitest.cybersource.com +2019-01-30 17:38:14.241 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="PR1pOk2OFqW1gHQkKfl+V8anvytmFxfpLOPsKYl37YI=" +2019-01-30 17:38:14.241 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 17:38:41.783 [main] INFO - ********* START ********* +2019-01-30 17:38:41.795 [main] INFO - Authentication Type : http_signature +2019-01-30 17:38:41.795 [main] INFO - Request Type: POST +2019-01-30 17:38:41.825 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5488446299926433603006/voids, requestType=POST} +2019-01-30 17:38:41.826 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 17:38:41.826 [main] INFO - v-c-merchant-id: testrest +2019-01-30 17:38:41.826 [main] INFO - Date: Wed, 30 Jan 2019 12:08:41 GMT +2019-01-30 17:38:41.826 [main] INFO - Host: apitest.cybersource.com +2019-01-30 17:38:41.827 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="3EB6sInFUGM2pF2SDdZwwLn9okQ2Jb6bq9YOHVmezk4=" +2019-01-30 17:38:41.827 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 17:38:46.916 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-30 17:38:46.916 [main] INFO - Response Message: {"submitTimeUtc":"2019-01-30T12:08:45Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-01-30 17:38:46.917 [main] INFO - Response Code: 400 +2019-01-30 17:38:46.917 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 515ms +v-c-correlation-id: 85a60a8c-de0f-4c7f-83fd-83b3233367e3 +OkHttp-Sent-Millis: 1548850125096 +OkHttp-Received-Millis: 1548850125805 + +2019-01-30 17:38:46.917 [main] INFO - ********* END *********: +2019-01-30 17:39:21.792 [main] INFO - ********* START ********* +2019-01-30 17:39:21.803 [main] INFO - Authentication Type : http_signature +2019-01-30 17:39:21.803 [main] INFO - Request Type: POST +2019-01-30 17:39:21.833 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5488446299926433603006/voids, requestType=POST} +2019-01-30 17:39:21.833 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 17:39:21.834 [main] INFO - v-c-merchant-id: testrest +2019-01-30 17:39:21.834 [main] INFO - Date: Wed, 30 Jan 2019 12:09:21 GMT +2019-01-30 17:39:21.834 [main] INFO - Host: apitest.cybersource.com +2019-01-30 17:39:21.834 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Jn9m8G3pgCIEtUrL0ORRKhrfzczwsHk0d7JPRCcFaww=" +2019-01-30 17:39:21.835 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 17:39:27.573 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-30 17:39:27.574 [main] INFO - Response Message: {"submitTimeUtc":"2019-01-30T12:09:25Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-01-30 17:39:27.574 [main] INFO - Response Code: 400 +2019-01-30 17:39:27.574 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 317ms +v-c-correlation-id: 8bdc19e0-6e84-4e22-86c4-916b67fc2f82 +OkHttp-Sent-Millis: 1548850165069 +OkHttp-Received-Millis: 1548850165572 + +2019-01-30 17:39:27.575 [main] INFO - ********* END *********: +2019-01-30 17:40:01.523 [main] INFO - ********* START ********* +2019-01-30 17:40:01.523 [main] INFO - Authentication Type : http_signature +2019-01-30 17:40:01.523 [main] INFO - Request Type: POST +2019-01-30 17:40:01.524 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-30 17:40:01.524 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 17:40:01.524 [main] INFO - v-c-merchant-id: testrest +2019-01-30 17:40:01.524 [main] INFO - Date: Wed, 30 Jan 2019 12:09:21 GMT +2019-01-30 17:40:01.525 [main] INFO - Host: apitest.cybersource.com +2019-01-30 17:40:01.525 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="SC0iPGk48hs25jr4oR2h4p8ZNFGDxVDTzeHjG1LZE6E=" +2019-01-30 17:40:01.525 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 17:40:26.391 [main] INFO - ********* START ********* +2019-01-30 17:40:26.402 [main] INFO - Authentication Type : http_signature +2019-01-30 17:40:26.402 [main] INFO - Request Type: POST +2019-01-30 17:40:26.432 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5488446299926433603006/voids, requestType=POST} +2019-01-30 17:40:26.432 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 17:40:26.432 [main] INFO - v-c-merchant-id: testrest +2019-01-30 17:40:26.433 [main] INFO - Date: Wed, 30 Jan 2019 12:10:26 GMT +2019-01-30 17:40:26.433 [main] INFO - Host: apitest.cybersource.com +2019-01-30 17:40:26.433 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="+/AarlfqyjUvaypy6IQYE4hrAFHPlZ9RDnO2DMiZd5A=" +2019-01-30 17:40:26.433 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 17:40:39.381 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-30 17:40:39.415 [main] INFO - Response Message: {"submitTimeUtc":"2019-01-30T12:10:31Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-01-30 17:40:39.492 [main] INFO - Response Code: 400 +2019-01-30 17:40:39.545 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 501ms +v-c-correlation-id: ff53c8a6-d205-48c8-98aa-9f18b67f261f +OkHttp-Sent-Millis: 1548850231016 +OkHttp-Received-Millis: 1548850231721 + +2019-01-30 17:40:39.584 [main] INFO - ********* END *********: +2019-01-30 17:41:08.408 [main] INFO - ********* START ********* +2019-01-30 17:41:08.408 [main] INFO - Authentication Type : http_signature +2019-01-30 17:41:08.408 [main] INFO - Request Type: POST +2019-01-30 17:41:08.409 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5488446299926433603006/voids, requestType=POST} +2019-01-30 17:41:08.409 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 17:41:08.409 [main] INFO - v-c-merchant-id: testrest +2019-01-30 17:41:08.409 [main] INFO - Date: Wed, 30 Jan 2019 12:10:26 GMT +2019-01-30 17:41:08.410 [main] INFO - Host: apitest.cybersource.com +2019-01-30 17:41:08.410 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="+/AarlfqyjUvaypy6IQYE4hrAFHPlZ9RDnO2DMiZd5A=" +2019-01-30 17:41:08.411 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 17:41:08.978 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-30 17:41:08.978 [main] INFO - Response Message: {"submitTimeUtc":"2019-01-30T12:11:08Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-01-30 17:41:08.979 [main] INFO - Response Code: 400 +2019-01-30 17:41:08.979 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 378ms +v-c-correlation-id: 6d61e9bf-c4bb-4891-9a4f-3f67fb8c70a5 +OkHttp-Sent-Millis: 1548850268414 +OkHttp-Received-Millis: 1548850268977 + +2019-01-30 17:41:08.979 [main] INFO - ********* END *********: +2019-01-30 17:41:09.001 [main] INFO - ********* START ********* +2019-01-30 17:41:09.001 [main] INFO - Authentication Type : http_signature +2019-01-30 17:41:09.001 [main] INFO - Request Type: POST +2019-01-30 17:41:09.001 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-30 17:41:09.001 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 17:41:09.002 [main] INFO - v-c-merchant-id: testrest +2019-01-30 17:41:09.002 [main] INFO - Date: Wed, 30 Jan 2019 12:10:26 GMT +2019-01-30 17:41:09.002 [main] INFO - Host: apitest.cybersource.com +2019-01-30 17:41:09.003 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ft8DvJTgHGdJn5JKhyay8hQveTRk1gXdxywffNTmJNY=" +2019-01-30 17:41:09.003 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 17:41:21.110 [main] INFO - ********* START ********* +2019-01-30 17:41:21.121 [main] INFO - Authentication Type : http_signature +2019-01-30 17:41:21.121 [main] INFO - Request Type: POST +2019-01-30 17:41:21.150 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5488446299926433603006/voids, requestType=POST} +2019-01-30 17:41:21.150 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 17:41:21.150 [main] INFO - v-c-merchant-id: testrest +2019-01-30 17:41:21.150 [main] INFO - Date: Wed, 30 Jan 2019 12:11:20 GMT +2019-01-30 17:41:21.150 [main] INFO - Host: apitest.cybersource.com +2019-01-30 17:41:21.150 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="A0Zk9eClk8L0qlMaOmr/XevJDL5cUoRlf2i6RuCm3qM=" +2019-01-30 17:41:21.150 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 17:41:22.869 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-30 17:41:22.870 [main] INFO - Response Message: {"submitTimeUtc":"2019-01-30T12:11:22Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-01-30 17:41:22.870 [main] INFO - Response Code: 400 +2019-01-30 17:41:22.870 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 579ms +v-c-correlation-id: e5a62b33-2673-46b6-88e6-73047531ac2c +OkHttp-Sent-Millis: 1548850282093 +OkHttp-Received-Millis: 1548850282854 + +2019-01-30 17:41:22.870 [main] INFO - ********* END *********: +2019-01-30 17:41:22.890 [main] INFO - ********* START ********* +2019-01-30 17:41:22.891 [main] INFO - Authentication Type : http_signature +2019-01-30 17:41:22.891 [main] INFO - Request Type: POST +2019-01-30 17:41:22.891 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-30 17:41:22.892 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 17:41:22.892 [main] INFO - v-c-merchant-id: testrest +2019-01-30 17:41:22.892 [main] INFO - Date: Wed, 30 Jan 2019 12:11:20 GMT +2019-01-30 17:41:22.892 [main] INFO - Host: apitest.cybersource.com +2019-01-30 17:41:22.893 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="u3XHh7IYMiMfGcvdEhcGl39taOux+s6eUdzzaCuKSjM=" +2019-01-30 17:41:22.893 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 17:43:25.623 [main] INFO - ********* START ********* +2019-01-30 17:43:25.634 [main] INFO - Authentication Type : http_signature +2019-01-30 17:43:25.634 [main] INFO - Request Type: POST +2019-01-30 17:43:25.664 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5488503405856033504005/voids, requestType=POST} +2019-01-30 17:43:25.664 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 17:43:25.664 [main] INFO - v-c-merchant-id: testrest +2019-01-30 17:43:25.665 [main] INFO - Date: Wed, 30 Jan 2019 12:13:25 GMT +2019-01-30 17:43:25.665 [main] INFO - Host: apitest.cybersource.com +2019-01-30 17:43:25.665 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="cY5axlv1tSh/Py6aArv3hFpn2mqZgvSoQdJE7g3M7wY=" +2019-01-30 17:43:25.666 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 17:43:27.024 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-30 17:43:27.025 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_payment_void"},"id":"5488504066506204203005","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"status":"VOIDED","submitTimeUtc":"2019-01-30T12:13:26Z","voidAmountDetails":{"currency":"XXXXXXXXX","voidAmount":"10.00"},"_links":{"self":{"href":"/pts/v2/voids/5488504066506204203005","method":"GET"}}} +2019-01-30 17:43:27.025 [main] INFO - Response Code: 201 +2019-01-30 17:43:27.025 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 343 +X-Cnection: close +x-response-time: 335ms +v-c-correlation-id: b9166dcb-b2b7-4849-96c4-662b84102d92 +OkHttp-Sent-Millis: 1548850406487 +OkHttp-Received-Millis: 1548850407008 + +2019-01-30 17:43:27.025 [main] INFO - ********* END *********: +2019-01-30 17:43:27.059 [main] INFO - ********* START ********* +2019-01-30 17:43:27.059 [main] INFO - Authentication Type : http_signature +2019-01-30 17:43:27.059 [main] INFO - Request Type: POST +2019-01-30 17:43:27.060 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-30 17:43:27.060 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 17:43:27.060 [main] INFO - v-c-merchant-id: testrest +2019-01-30 17:43:27.061 [main] INFO - Date: Wed, 30 Jan 2019 12:13:25 GMT +2019-01-30 17:43:27.061 [main] INFO - Host: apitest.cybersource.com +2019-01-30 17:43:27.061 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="X2VqgtYheCfojarJXAmEJbJ7h8h2CMPJQzu5aZhVsxo=" +2019-01-30 17:43:27.062 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 17:59:21.167 [main] INFO - ********* START ********* +2019-01-30 17:59:21.178 [main] INFO - Authentication Type : http_signature +2019-01-30 17:59:21.178 [main] INFO - Request Type: POST +2019-01-30 17:59:21.208 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5488503405856033504005/voids, requestType=POST} +2019-01-30 17:59:21.208 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 17:59:21.208 [main] INFO - v-c-merchant-id: testrest +2019-01-30 17:59:21.209 [main] INFO - Date: Wed, 30 Jan 2019 12:29:20 GMT +2019-01-30 17:59:21.209 [main] INFO - Host: apitest.cybersource.com +2019-01-30 17:59:21.209 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="4FeD36YAoCbSyKUqbIJZsznVmHOErbQ0swqwLTHSZLs=" +2019-01-30 17:59:21.209 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 17:59:22.867 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-30 17:59:22.867 [main] INFO - Response Message: {"submitTimeUtc":"2019-01-30T12:29:22Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-01-30 17:59:22.867 [main] INFO - Response Code: 400 +2019-01-30 17:59:22.868 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 480ms +v-c-correlation-id: 2154f2eb-a48a-4bdf-8e95-72c5460e2587 +OkHttp-Sent-Millis: 1548851362135 +OkHttp-Received-Millis: 1548851362852 + +2019-01-30 17:59:22.868 [main] INFO - ********* END *********: +2019-01-30 17:59:22.886 [main] INFO - ********* START ********* +2019-01-30 17:59:22.887 [main] INFO - Authentication Type : http_signature +2019-01-30 17:59:22.887 [main] INFO - Request Type: POST +2019-01-30 17:59:22.887 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-30 17:59:22.887 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 17:59:22.888 [main] INFO - v-c-merchant-id: testrest +2019-01-30 17:59:22.888 [main] INFO - Date: Wed, 30 Jan 2019 12:29:20 GMT +2019-01-30 17:59:22.888 [main] INFO - Host: apitest.cybersource.com +2019-01-30 17:59:22.889 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="S/oOI6Rt3dd17E8/Tv4O75iAHcC4BqBlSCHT2I8igFM=" +2019-01-30 17:59:22.889 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 18:00:42.223 [main] INFO - ********* START ********* +2019-01-30 18:00:42.233 [main] INFO - Authentication Type : http_signature +2019-01-30 18:00:42.233 [main] INFO - Request Type: POST +2019-01-30 18:00:42.263 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5488514144556496704006/voids, requestType=POST} +2019-01-30 18:00:42.263 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 18:00:42.263 [main] INFO - v-c-merchant-id: testrest +2019-01-30 18:00:42.264 [main] INFO - Date: Wed, 30 Jan 2019 12:30:41 GMT +2019-01-30 18:00:42.264 [main] INFO - Host: apitest.cybersource.com +2019-01-30 18:00:42.264 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="C3uiF2hrS936uiwZ6eaqhV+X0fQ/WoQKkeITB+4XfUQ=" +2019-01-30 18:00:42.264 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-30 18:00:43.914 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-30 18:00:43.914 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_payment_void"},"id":"5488514433736724903004","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"status":"VOIDED","submitTimeUtc":"2019-01-30T12:30:43Z","voidAmountDetails":{"currency":"XXXXXXXXX","voidAmount":"10.00"},"_links":{"self":{"href":"/pts/v2/voids/5488514433736724903004","method":"GET"}}} +2019-01-30 18:00:43.915 [main] INFO - Response Code: 201 +2019-01-30 18:00:43.916 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 343 +X-Cnection: close +x-response-time: 503ms +v-c-correlation-id: d730ee45-e53e-40ba-a948-bc8718744a5b +OkHttp-Sent-Millis: 1548851443158 +OkHttp-Received-Millis: 1548851443895 + +2019-01-30 18:00:43.916 [main] INFO - ********* END *********: +2019-01-30 18:00:43.950 [main] INFO - ********* START ********* +2019-01-30 18:00:43.951 [main] INFO - Authentication Type : http_signature +2019-01-30 18:00:43.952 [main] INFO - Request Type: POST +2019-01-30 18:00:43.953 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-30 18:00:43.953 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-30 18:00:43.953 [main] INFO - v-c-merchant-id: testrest +2019-01-30 18:00:43.953 [main] INFO - Date: Wed, 30 Jan 2019 12:30:41 GMT +2019-01-30 18:00:43.955 [main] INFO - Host: apitest.cybersource.com +2019-01-30 18:00:43.955 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="CE7xsns8S/eDZ5+VM2iSnf9B0U+ChTCgeAYnHL8PffQ=" +2019-01-30 18:00:43.955 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:37:36.327 [main] INFO - ********* START ********* +2019-01-31 14:37:36.346 [main] INFO - Authentication Type : http_signature +2019-01-31 14:37:36.347 [main] INFO - Request Type: POST +2019-01-31 14:37:36.348 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-01-31 14:37:36.349 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-01-31 14:37:36.414 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:37:36.414 [main] INFO - Date: Thu, 31 Jan 2019 09:07:35 GMT +2019-01-31 14:37:36.415 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:37:36.415 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="qafEpZAd37tWn6cYEVEGAASTQ4y6FirPAe3m7fPDA4A=" +2019-01-31 14:37:36.416 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:37:41.327 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-01-31 14:37:41.328 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_capture"},"id":"5489256609066209503005","orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"reconciliationId":"74769409GRHKSD6F","status":"PENDING","submitTimeUtc":"2019-01-31T09:07:41Z","_links":{"self":{"href":"/pts/v2/captures/5489256609066209503005","method":"GET"},"refund":{"href":"/pts/v2/captures/5489256609066209503005/refunds","method":"POST"},"void":{"href":"/pts/v2/captures/5489256609066209503005/voids","method":"POST"}}} +2019-01-31 14:37:41.328 [main] INFO - Response Code: 201 +2019-01-31 14:37:41.329 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 367ms +v-c-correlation-id: 2b7d0ebd-ec05-4f4a-8fe8-216cbab1a751 +OkHttp-Sent-Millis: 1548925660735 +OkHttp-Received-Millis: 1548925661299 + +2019-01-31 14:37:41.330 [main] INFO - ********* END *********: +2019-01-31 14:37:41.479 [main] INFO - ********* START ********* +2019-01-31 14:37:41.480 [main] INFO - Authentication Type : http_signature +2019-01-31 14:37:41.480 [main] INFO - Request Type: POST +2019-01-31 14:37:41.480 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-01-31 14:37:41.481 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-01-31 14:37:41.481 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:37:41.481 [main] INFO - Date: Thu, 31 Jan 2019 09:07:35 GMT +2019-01-31 14:37:41.482 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:37:41.482 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="hwCqWfd/bSooIiHf6T7Ow9GvIAWQ58mRh7UhN/32GmA=" +2019-01-31 14:37:41.483 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:37:42.069 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-01-31 14:37:42.070 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207982366112103002/captures} +2019-01-31 14:37:42.071 [main] INFO - Response Code: 201 +2019-01-31 14:37:42.072 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 326ms +v-c-correlation-id: ff44ecea-5dfb-4476-ba70-9aef2a313ba1 +OkHttp-Sent-Millis: 1548925661529 +OkHttp-Received-Millis: 1548925662066 + +2019-01-31 14:37:42.072 [main] INFO - ********* END *********: +2019-01-31 14:37:42.097 [main] INFO - ********* START ********* +2019-01-31 14:37:42.098 [main] INFO - Authentication Type : http_signature +2019-01-31 14:37:42.098 [main] INFO - Request Type: POST +2019-01-31 14:37:42.099 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-01-31 14:37:42.099 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-01-31 14:37:42.100 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:37:42.100 [main] INFO - Date: Thu, 31 Jan 2019 09:07:35 GMT +2019-01-31 14:37:42.101 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:37:42.101 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="W0eMWU1EpF3PQuL85UFDLXNnIL3QMruPmic8gezFadY=" +2019-01-31 14:37:42.103 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:37:42.708 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-01-31 14:37:42.709 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-01-31 14:37:42.709 [main] INFO - Response Code: 400 +2019-01-31 14:37:42.709 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 408ms +v-c-correlation-id: d2622adc-1975-4063-86e5-daee96d50598 +OkHttp-Sent-Millis: 1548925662107 +OkHttp-Received-Millis: 1548925662706 + +2019-01-31 14:37:42.710 [main] INFO - ********* END *********: +2019-01-31 14:39:24.280 [main] INFO - ********* START ********* +2019-01-31 14:39:24.298 [main] INFO - Authentication Type : http_signature +2019-01-31 14:39:24.299 [main] INFO - Request Type: POST +2019-01-31 14:39:24.299 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/voids, requestType=POST} +2019-01-31 14:39:24.300 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-31 14:39:24.347 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:39:24.347 [main] INFO - Date: Thu, 31 Jan 2019 09:09:23 GMT +2019-01-31 14:39:24.348 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:39:24.349 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="b6IM5It1AxxSP3BZPHT+o7KP0kpjphro7HmqI1fjejs=" +2019-01-31 14:39:24.349 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:39:25.971 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-31 14:39:25.972 [main] INFO - Response Message: {"submitTimeUtc":"2019-01-31T09:09:25Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-01-31 14:39:25.972 [main] INFO - Response Code: 400 +2019-01-31 14:39:25.973 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 360ms +v-c-correlation-id: 90f72732-63de-4cc7-81df-b19f14ddf336 +OkHttp-Sent-Millis: 1548925765354 +OkHttp-Received-Millis: 1548925765942 + +2019-01-31 14:39:25.973 [main] INFO - ********* END *********: +2019-01-31 14:39:25.995 [main] INFO - ********* START ********* +2019-01-31 14:39:25.996 [main] INFO - Authentication Type : http_signature +2019-01-31 14:39:25.996 [main] INFO - Request Type: POST +2019-01-31 14:39:25.996 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-31 14:39:25.996 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-31 14:39:25.996 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:39:25.998 [main] INFO - Date: Thu, 31 Jan 2019 09:09:23 GMT +2019-01-31 14:39:25.998 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:39:25.999 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="xJtu8fzVUYyBYkQBEtIJZp/qMnWST18WQ84T6/zxfPA=" +2019-01-31 14:39:25.999 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:41:17.704 [main] INFO - ********* START ********* +2019-01-31 14:41:17.717 [main] INFO - Authentication Type : http_signature +2019-01-31 14:41:17.718 [main] INFO - Request Type: POST +2019-01-31 14:41:17.718 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-01-31 14:41:17.718 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-01-31 14:41:17.765 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:41:17.765 [main] INFO - Date: Thu, 31 Jan 2019 09:11:17 GMT +2019-01-31 14:41:17.765 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:41:17.766 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="y7cpNuW3S2ELBEWoyNZVh7ALQRGNTeA6Dbrl5ndygMk=" +2019-01-31 14:41:17.766 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:41:19.361 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-01-31 14:41:19.362 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_capture"},"id":"5489258789436888403003","orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"reconciliationId":"74769410GRHKSD95","status":"PENDING","submitTimeUtc":"2019-01-31T09:11:19Z","_links":{"self":{"href":"/pts/v2/captures/5489258789436888403003","method":"GET"},"refund":{"href":"/pts/v2/captures/5489258789436888403003/refunds","method":"POST"},"void":{"href":"/pts/v2/captures/5489258789436888403003/voids","method":"POST"}}} +2019-01-31 14:41:19.363 [main] INFO - Response Code: 201 +2019-01-31 14:41:19.363 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 361ms +v-c-correlation-id: e0bdc28b-0ebd-48c1-95c2-017ee2ed5a62 +OkHttp-Sent-Millis: 1548925878783 +OkHttp-Received-Millis: 1548925879338 + +2019-01-31 14:41:19.364 [main] INFO - ********* END *********: +2019-01-31 14:41:19.414 [main] INFO - ********* START ********* +2019-01-31 14:41:19.415 [main] INFO - Authentication Type : http_signature +2019-01-31 14:41:19.415 [main] INFO - Request Type: POST +2019-01-31 14:41:19.416 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-01-31 14:41:19.416 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-01-31 14:41:19.416 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:41:19.417 [main] INFO - Date: Thu, 31 Jan 2019 09:11:17 GMT +2019-01-31 14:41:19.417 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:41:19.417 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="LVylWUcgngA03xZx5SPhWppsBfEgb1A/KeamwiUlBvA=" +2019-01-31 14:41:19.418 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:41:20.041 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-01-31 14:41:20.041 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207982366112103002/captures} +2019-01-31 14:41:20.042 [main] INFO - Response Code: 201 +2019-01-31 14:41:20.042 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 426ms +v-c-correlation-id: 2dcbb5d5-9803-4980-a0e1-cc6339b5b4bc +OkHttp-Sent-Millis: 1548925879422 +OkHttp-Received-Millis: 1548925880039 + +2019-01-31 14:41:20.042 [main] INFO - ********* END *********: +2019-01-31 14:41:20.062 [main] INFO - ********* START ********* +2019-01-31 14:41:20.063 [main] INFO - Authentication Type : http_signature +2019-01-31 14:41:20.063 [main] INFO - Request Type: POST +2019-01-31 14:41:20.063 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-01-31 14:41:20.064 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-01-31 14:41:20.064 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:41:20.064 [main] INFO - Date: Thu, 31 Jan 2019 09:11:17 GMT +2019-01-31 14:41:20.065 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:41:20.065 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="pVlfd+WRv1er94mYsF166WWd2RtlnABcn/JglrY/X4I=" +2019-01-31 14:41:20.066 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:41:20.593 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-01-31 14:41:20.593 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-01-31 14:41:20.594 [main] INFO - Response Code: 400 +2019-01-31 14:41:20.594 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 337ms +v-c-correlation-id: 1c7f1ebe-81bd-4873-91d4-91ff34deb18b +OkHttp-Sent-Millis: 1548925880068 +OkHttp-Received-Millis: 1548925880592 + +2019-01-31 14:41:20.594 [main] INFO - ********* END *********: +2019-01-31 14:42:03.052 [main] INFO - ********* START ********* +2019-01-31 14:42:03.067 [main] INFO - Authentication Type : http_signature +2019-01-31 14:42:03.068 [main] INFO - Request Type: POST +2019-01-31 14:42:03.069 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5489258795816634003006/voids, requestType=POST} +2019-01-31 14:42:03.069 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-31 14:42:03.116 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:42:03.116 [main] INFO - Date: Thu, 31 Jan 2019 09:12:02 GMT +2019-01-31 14:42:03.117 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:42:03.117 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Le0q1sRdZ20euSHKk/MgFdO754V2AiBCYzHHsPJnKWA=" +2019-01-31 14:42:03.117 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:42:04.897 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-31 14:42:04.898 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_payment_void"},"id":"5489259244196796703002","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"status":"VOIDED","submitTimeUtc":"2019-01-31T09:12:04Z","voidAmountDetails":{"currency":"XXXXXXXXX","voidAmount":"200.00"},"_links":{"self":{"href":"/pts/v2/voids/5489259244196796703002","method":"GET"}}} +2019-01-31 14:42:04.898 [main] INFO - Response Code: 201 +2019-01-31 14:42:04.899 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 344 +X-Cnection: close +x-response-time: 405ms +v-c-correlation-id: 4e5b9aaa-af46-4e23-9a5e-26964246bf04 +OkHttp-Sent-Millis: 1548925924233 +OkHttp-Received-Millis: 1548925924866 + +2019-01-31 14:42:04.899 [main] INFO - ********* END *********: +2019-01-31 14:42:04.988 [main] INFO - ********* START ********* +2019-01-31 14:42:04.989 [main] INFO - Authentication Type : http_signature +2019-01-31 14:42:04.990 [main] INFO - Request Type: POST +2019-01-31 14:42:04.990 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-31 14:42:04.991 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-31 14:42:04.991 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:42:04.991 [main] INFO - Date: Thu, 31 Jan 2019 09:12:02 GMT +2019-01-31 14:42:04.992 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:42:04.992 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="W+DMwFunfLb8Y4YXGi9EamO+kLkcMNHPix1fIUk5n5U=" +2019-01-31 14:42:04.993 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:44:14.075 [main] INFO - ********* START ********* +2019-01-31 14:44:14.088 [main] INFO - Authentication Type : http_signature +2019-01-31 14:44:14.088 [main] INFO - Request Type: POST +2019-01-31 14:44:14.089 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-01-31 14:44:14.089 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-01-31 14:44:14.131 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:44:14.131 [main] INFO - Date: Thu, 31 Jan 2019 09:14:13 GMT +2019-01-31 14:44:14.131 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:44:14.132 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="QZR9xVObjWorR7hhS8vsNo5lvjhmZrPIkT3EKuJS9MI=" +2019-01-31 14:44:14.132 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:44:15.696 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-01-31 14:44:15.696 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_capture"},"id":"5489260553046635603006","orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"reconciliationId":"74683617GRHKTULP","status":"PENDING","submitTimeUtc":"2019-01-31T09:14:15Z","_links":{"self":{"href":"/pts/v2/captures/5489260553046635603006","method":"GET"},"refund":{"href":"/pts/v2/captures/5489260553046635603006/refunds","method":"POST"},"void":{"href":"/pts/v2/captures/5489260553046635603006/voids","method":"POST"}}} +2019-01-31 14:44:15.697 [main] INFO - Response Code: 201 +2019-01-31 14:44:15.697 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 345ms +v-c-correlation-id: bd929bd9-ad06-4471-b016-1a2c8684679e +OkHttp-Sent-Millis: 1548926055140 +OkHttp-Received-Millis: 1548926055677 + +2019-01-31 14:44:15.698 [main] INFO - ********* END *********: +2019-01-31 14:44:15.750 [main] INFO - ********* START ********* +2019-01-31 14:44:15.751 [main] INFO - Authentication Type : http_signature +2019-01-31 14:44:15.751 [main] INFO - Request Type: POST +2019-01-31 14:44:15.752 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-01-31 14:44:15.752 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-01-31 14:44:15.752 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:44:15.753 [main] INFO - Date: Thu, 31 Jan 2019 09:14:13 GMT +2019-01-31 14:44:15.753 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:44:15.754 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="hqmo3wUXymrxFys7RxPsOz7eKVXqsUyHIwivreFTjP0=" +2019-01-31 14:44:15.754 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:44:16.238 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-01-31 14:44:16.239 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207982366112103002/captures} +2019-01-31 14:44:16.239 [main] INFO - Response Code: 201 +2019-01-31 14:44:16.240 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 304ms +v-c-correlation-id: 9f3a450e-40ed-4cff-8227-cc13e812f03c +OkHttp-Sent-Millis: 1548926055758 +OkHttp-Received-Millis: 1548926056237 + +2019-01-31 14:44:16.240 [main] INFO - ********* END *********: +2019-01-31 14:44:16.258 [main] INFO - ********* START ********* +2019-01-31 14:44:16.260 [main] INFO - Authentication Type : http_signature +2019-01-31 14:44:16.260 [main] INFO - Request Type: POST +2019-01-31 14:44:16.260 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-01-31 14:44:16.261 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-01-31 14:44:16.261 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:44:16.261 [main] INFO - Date: Thu, 31 Jan 2019 09:14:13 GMT +2019-01-31 14:44:16.262 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:44:16.262 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="j1iVkPryGdIW8XGcWCSpj1m5ocwfDGpiPTyj8nPIE9w=" +2019-01-31 14:44:16.262 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:44:16.740 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-01-31 14:44:16.740 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-01-31 14:44:16.741 [main] INFO - Response Code: 400 +2019-01-31 14:44:16.741 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 301ms +v-c-correlation-id: 7fa8c55d-0143-4048-8839-af9413a5bbca +OkHttp-Sent-Millis: 1548926056265 +OkHttp-Received-Millis: 1548926056739 + +2019-01-31 14:44:16.741 [main] INFO - ********* END *********: +2019-01-31 14:44:59.541 [main] INFO - ********* START ********* +2019-01-31 14:44:59.554 [main] INFO - Authentication Type : http_signature +2019-01-31 14:44:59.555 [main] INFO - Request Type: POST +2019-01-31 14:44:59.557 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5489260559056889703003/voids, requestType=POST} +2019-01-31 14:44:59.558 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-31 14:44:59.596 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:44:59.596 [main] INFO - Date: Thu, 31 Jan 2019 09:14:59 GMT +2019-01-31 14:44:59.596 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:44:59.597 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="d+rW5pgSdXrZPqF+nOPVpxETiRblnv7EGk6R1PNKvpE=" +2019-01-31 14:44:59.597 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:45:01.286 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-31 14:45:01.287 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_payment_void"},"id":"5489261007976912103004","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"status":"VOIDED","submitTimeUtc":"2019-01-31T09:15:01Z","voidAmountDetails":{"currency":"XXXXXXXXX","voidAmount":"200.00"},"_links":{"self":{"href":"/pts/v2/voids/5489261007976912103004","method":"GET"}}} +2019-01-31 14:45:01.287 [main] INFO - Response Code: 201 +2019-01-31 14:45:01.288 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 344 +X-Cnection: close +x-response-time: 421ms +v-c-correlation-id: fa06fca6-a23e-41d9-899a-e141ba969504 +OkHttp-Sent-Millis: 1548926100630 +OkHttp-Received-Millis: 1548926101260 + +2019-01-31 14:45:01.288 [main] INFO - ********* END *********: +2019-01-31 14:45:46.013 [main] INFO - ********* START ********* +2019-01-31 14:45:46.014 [main] INFO - Authentication Type : http_signature +2019-01-31 14:45:46.015 [main] INFO - Request Type: POST +2019-01-31 14:45:46.016 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-31 14:45:46.017 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-31 14:45:46.018 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:45:46.019 [main] INFO - Date: Thu, 31 Jan 2019 09:14:59 GMT +2019-01-31 14:45:46.019 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:45:46.020 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="tHwGVQ9jD6Fmzh7C9TL3Yv69iZRwUrZd5dofQHx6d54=" +2019-01-31 14:45:46.021 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:49:35.682 [main] INFO - ********* START ********* +2019-01-31 14:49:35.707 [main] INFO - Authentication Type : http_signature +2019-01-31 14:49:35.708 [main] INFO - Request Type: POST +2019-01-31 14:49:35.709 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-01-31 14:49:35.710 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-01-31 14:49:35.763 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:49:35.764 [main] INFO - Date: Thu, 31 Jan 2019 09:19:35 GMT +2019-01-31 14:49:35.764 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:49:35.765 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="OjLDpydPbnMFyFvbf97b1HiTaXkkpgiXQqcUwrHQwxo=" +2019-01-31 14:49:35.766 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:49:37.445 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-01-31 14:49:37.446 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_capture"},"id":"5489263770626914303004","orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"reconciliationId":"74683618GRHKTUPT","status":"PENDING","submitTimeUtc":"2019-01-31T09:19:37Z","_links":{"self":{"href":"/pts/v2/captures/5489263770626914303004","method":"GET"},"refund":{"href":"/pts/v2/captures/5489263770626914303004/refunds","method":"POST"},"void":{"href":"/pts/v2/captures/5489263770626914303004/voids","method":"POST"}}} +2019-01-31 14:49:37.447 [main] INFO - Response Code: 201 +2019-01-31 14:49:37.447 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 336ms +v-c-correlation-id: b88658ce-1745-436c-882d-6c409c9c3bb3 +OkHttp-Sent-Millis: 1548926376898 +OkHttp-Received-Millis: 1548926377426 + +2019-01-31 14:49:37.447 [main] INFO - ********* END *********: +2019-01-31 14:49:37.496 [main] INFO - ********* START ********* +2019-01-31 14:49:37.497 [main] INFO - Authentication Type : http_signature +2019-01-31 14:49:37.498 [main] INFO - Request Type: POST +2019-01-31 14:49:37.498 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-01-31 14:49:37.499 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-01-31 14:49:37.500 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:49:37.500 [main] INFO - Date: Thu, 31 Jan 2019 09:19:35 GMT +2019-01-31 14:49:37.500 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:49:37.500 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ivDrh1nCU9sXAyThi7zYtXCqeUQxqJjt4F81CGrPgC8=" +2019-01-31 14:49:37.501 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:49:38.059 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-01-31 14:49:38.059 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207982366112103002/captures} +2019-01-31 14:49:38.060 [main] INFO - Response Code: 201 +2019-01-31 14:49:38.060 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 376ms +v-c-correlation-id: 366ca631-e7f6-4f83-8d80-f0972857f39c +OkHttp-Sent-Millis: 1548926377504 +OkHttp-Received-Millis: 1548926378058 + +2019-01-31 14:49:38.061 [main] INFO - ********* END *********: +2019-01-31 14:49:38.085 [main] INFO - ********* START ********* +2019-01-31 14:49:38.085 [main] INFO - Authentication Type : http_signature +2019-01-31 14:49:38.086 [main] INFO - Request Type: POST +2019-01-31 14:49:38.086 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-01-31 14:49:38.087 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-01-31 14:49:38.087 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:49:38.088 [main] INFO - Date: Thu, 31 Jan 2019 09:19:35 GMT +2019-01-31 14:49:38.088 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:49:38.089 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="4KY5qAIJJRJVwFYEoKtBxeNWcaR5ELPZqqn88gOLQb8=" +2019-01-31 14:49:38.089 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:49:39.691 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-01-31 14:49:39.692 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-01-31 14:49:39.694 [main] INFO - Response Code: 400 +2019-01-31 14:49:39.695 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 420ms +v-c-correlation-id: 181737d9-3222-4d5f-bc62-94f6b6958295 +OkHttp-Sent-Millis: 1548926378096 +OkHttp-Received-Millis: 1548926379689 + +2019-01-31 14:49:39.695 [main] INFO - ********* END *********: +2019-01-31 14:51:13.184 [main] INFO - ********* START ********* +2019-01-31 14:51:13.207 [main] INFO - Authentication Type : http_signature +2019-01-31 14:51:13.208 [main] INFO - Request Type: POST +2019-01-31 14:51:13.210 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5489263776586914403004/voids, requestType=POST} +2019-01-31 14:51:13.211 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-31 14:51:13.212 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:51:13.212 [main] INFO - Date: Thu, 31 Jan 2019 09:21:08 GMT +2019-01-31 14:51:13.213 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:51:13.214 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="w70Zci06yhzOJTeMT9mrw4bMWw2mQRqKh68DV+LPTu4=" +2019-01-31 14:51:13.214 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:51:54.309 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-01-31 14:51:54.312 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_payment_void"},"id":"5489264842356639903006","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"status":"VOIDED","submitTimeUtc":"2019-01-31T09:21:24Z","voidAmountDetails":{"currency":"XXXXXXXXX","voidAmount":"200.00"},"_links":{"self":{"href":"/pts/v2/voids/5489264842356639903006","method":"GET"}}} +2019-01-31 14:51:54.313 [main] INFO - Response Code: 201 +2019-01-31 14:51:54.314 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 344 +X-Cnection: close +x-response-time: 498ms +v-c-correlation-id: 126d9afc-8a58-4346-90b7-294f432552d7 +OkHttp-Sent-Millis: 1548926484063 +OkHttp-Received-Millis: 1548926484777 + +2019-01-31 14:51:54.316 [main] INFO - ********* END *********: +2019-01-31 14:53:03.444 [main] INFO - ********* START ********* +2019-01-31 14:53:03.445 [main] INFO - Authentication Type : http_signature +2019-01-31 14:53:03.445 [main] INFO - Request Type: POST +2019-01-31 14:53:03.447 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-31 14:53:03.448 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-31 14:53:03.449 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:53:03.449 [main] INFO - Date: Thu, 31 Jan 2019 09:21:08 GMT +2019-01-31 14:53:03.450 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:53:03.451 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="L7pbI1K+f1qfAm7+E+D1x5XxrzMi2lvBkYLlMZi6jVE=" +2019-01-31 14:53:03.452 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:56:19.824 [main] INFO - ********* START ********* +2019-01-31 14:56:19.840 [main] INFO - Authentication Type : http_signature +2019-01-31 14:56:19.841 [main] INFO - Request Type: POST +2019-01-31 14:56:19.842 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-01-31 14:56:19.843 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-01-31 14:56:19.882 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:56:19.882 [main] INFO - Date: Thu, 31 Jan 2019 09:26:19 GMT +2019-01-31 14:56:19.883 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:56:19.883 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="CfQUVaPFXWc56k0oVcHo56kwgDKyooMJrffiK0BPKr0=" +2019-01-31 14:56:19.884 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:56:21.482 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-01-31 14:56:21.482 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_capture"},"id":"5489267811036918303004","orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"reconciliationId":"74816401LRHKRECH","status":"PENDING","submitTimeUtc":"2019-01-31T09:26:21Z","_links":{"self":{"href":"/pts/v2/captures/5489267811036918303004","method":"GET"},"refund":{"href":"/pts/v2/captures/5489267811036918303004/refunds","method":"POST"},"void":{"href":"/pts/v2/captures/5489267811036918303004/voids","method":"POST"}}} +2019-01-31 14:56:21.482 [main] INFO - Response Code: 201 +2019-01-31 14:56:21.482 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 340ms +v-c-correlation-id: d35322f3-f1e6-4ce9-a93e-7b29b8d98eee +OkHttp-Sent-Millis: 1548926780914 +OkHttp-Received-Millis: 1548926781468 + +2019-01-31 14:56:21.482 [main] INFO - ********* END *********: +2019-01-31 14:56:21.533 [main] INFO - ********* START ********* +2019-01-31 14:56:21.533 [main] INFO - Authentication Type : http_signature +2019-01-31 14:56:21.534 [main] INFO - Request Type: POST +2019-01-31 14:56:21.534 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-01-31 14:56:21.534 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-01-31 14:56:21.535 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:56:21.535 [main] INFO - Date: Thu, 31 Jan 2019 09:26:19 GMT +2019-01-31 14:56:21.535 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:56:21.536 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="imelfeEBpOZDsbWnhQs81R7FArXDLOXwjppGaDY7saI=" +2019-01-31 14:56:21.536 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:56:22.047 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-01-31 14:56:22.048 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207982366112103002/captures} +2019-01-31 14:56:22.048 [main] INFO - Response Code: 201 +2019-01-31 14:56:22.049 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 303ms +v-c-correlation-id: c869c023-54bc-4983-93ce-904cbc7f041c +OkHttp-Sent-Millis: 1548926781540 +OkHttp-Received-Millis: 1548926782046 + +2019-01-31 14:56:22.049 [main] INFO - ********* END *********: +2019-01-31 14:56:22.068 [main] INFO - ********* START ********* +2019-01-31 14:56:22.068 [main] INFO - Authentication Type : http_signature +2019-01-31 14:56:22.069 [main] INFO - Request Type: POST +2019-01-31 14:56:22.069 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-01-31 14:56:22.070 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-01-31 14:56:22.070 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:56:22.071 [main] INFO - Date: Thu, 31 Jan 2019 09:26:19 GMT +2019-01-31 14:56:22.071 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:56:22.072 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="+mtd9GQdHAv/NpLzfrGV9xKMP6Q4U/fHWI/krdRFuJ0=" +2019-01-31 14:56:22.072 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 14:56:22.624 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-01-31 14:56:22.625 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-01-31 14:56:22.625 [main] INFO - Response Code: 400 +2019-01-31 14:56:22.626 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 324ms +v-c-correlation-id: d7891a11-16d0-4489-89fb-c790a37fc014 +OkHttp-Sent-Millis: 1548926782075 +OkHttp-Received-Millis: 1548926782622 + +2019-01-31 14:56:22.627 [main] INFO - ********* END *********: +2019-01-31 14:57:08.297 [main] INFO - ********* START ********* +2019-01-31 14:57:08.314 [main] INFO - Authentication Type : http_signature +2019-01-31 14:57:08.315 [main] INFO - Request Type: POST +2019-01-31 14:57:08.316 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-31 14:57:08.316 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-31 14:57:08.316 [main] INFO - v-c-merchant-id: testrest +2019-01-31 14:57:08.316 [main] INFO - Date: Thu, 31 Jan 2019 09:27:07 GMT +2019-01-31 14:57:08.316 [main] INFO - Host: apitest.cybersource.com +2019-01-31 14:57:08.316 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="A+3pFUvaOjMHWkAO6iWF/58/czXap2pIrV0RF4C9p3E=" +2019-01-31 14:57:08.316 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 16:34:40.510 [main] INFO - ********* START ********* +2019-01-31 16:34:40.526 [main] INFO - Authentication Type : http_signature +2019-01-31 16:34:40.526 [main] INFO - Request Type: POST +2019-01-31 16:34:40.528 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-31 16:34:40.528 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-31 16:34:40.573 [main] INFO - v-c-merchant-id: testrest +2019-01-31 16:34:40.574 [main] INFO - Date: Thu, 31 Jan 2019 11:04:40 GMT +2019-01-31 16:34:40.574 [main] INFO - Host: apitest.cybersource.com +2019-01-31 16:34:40.574 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="maFMPiAgjEM9YGDJDztDb5USPrrXUtz8+3PdgMckNdo=" +2019-01-31 16:34:40.575 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 16:43:40.194 [main] INFO - ********* START ********* +2019-01-31 16:43:40.210 [main] INFO - Authentication Type : http_signature +2019-01-31 16:43:40.211 [main] INFO - Request Type: POST +2019-01-31 16:43:40.212 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-31 16:43:40.213 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-31 16:43:40.254 [main] INFO - v-c-merchant-id: testrest +2019-01-31 16:43:40.255 [main] INFO - Date: Thu, 31 Jan 2019 11:13:39 GMT +2019-01-31 16:43:40.255 [main] INFO - Host: apitest.cybersource.com +2019-01-31 16:43:40.255 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="hm0hcKzwxCHNm+GUWouujsioPgP9Iep4iEHxoFEjnjA=" +2019-01-31 16:43:40.256 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 17:02:16.314 [main] INFO - ********* START ********* +2019-01-31 17:02:16.327 [main] INFO - Authentication Type : http_signature +2019-01-31 17:02:16.327 [main] INFO - Request Type: POST +2019-01-31 17:02:16.328 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-31 17:02:16.328 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-31 17:02:16.328 [main] INFO - v-c-merchant-id: testrest +2019-01-31 17:02:16.329 [main] INFO - Date: Thu, 31 Jan 2019 11:32:15 GMT +2019-01-31 17:02:16.329 [main] INFO - Host: apitest.cybersource.com +2019-01-31 17:02:16.329 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="XFWhHPUMWuGOI0WHf+dn3QYx3WC2wFPa9gdBUmYea7c=" +2019-01-31 17:02:16.330 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 17:02:35.057 [main] INFO - ********* START ********* +2019-01-31 17:02:35.072 [main] INFO - Authentication Type : http_signature +2019-01-31 17:02:35.073 [main] INFO - Request Type: POST +2019-01-31 17:02:35.074 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-31 17:02:35.074 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-31 17:02:35.115 [main] INFO - v-c-merchant-id: testrest +2019-01-31 17:02:35.116 [main] INFO - Date: Thu, 31 Jan 2019 11:32:34 GMT +2019-01-31 17:02:35.116 [main] INFO - Host: apitest.cybersource.com +2019-01-31 17:02:35.116 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="yrBcGAjSeSgk+Zz4ipD4+dX5pw4WxvWFXcl9LfzCBvI=" +2019-01-31 17:02:35.117 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 17:03:30.679 [main] INFO - ********* START ********* +2019-01-31 17:03:30.693 [main] INFO - Authentication Type : http_signature +2019-01-31 17:03:30.694 [main] INFO - Request Type: POST +2019-01-31 17:03:30.694 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-31 17:03:30.695 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-31 17:03:30.749 [main] INFO - v-c-merchant-id: testrest +2019-01-31 17:03:30.750 [main] INFO - Date: Thu, 31 Jan 2019 11:33:30 GMT +2019-01-31 17:03:30.751 [main] INFO - Host: apitest.cybersource.com +2019-01-31 17:03:30.751 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="pdK721nTUarvMiaOOJwTxBY4gCC0zNEPla2LJrg3puQ=" +2019-01-31 17:03:30.752 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 17:10:31.891 [main] INFO - ********* START ********* +2019-01-31 17:10:31.904 [main] INFO - Authentication Type : http_signature +2019-01-31 17:10:31.905 [main] INFO - Request Type: POST +2019-01-31 17:10:31.906 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-01-31 17:10:31.906 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-01-31 17:10:31.948 [main] INFO - v-c-merchant-id: testrest +2019-01-31 17:10:31.948 [main] INFO - Date: Thu, 31 Jan 2019 11:40:31 GMT +2019-01-31 17:10:31.949 [main] INFO - Host: apitest.cybersource.com +2019-01-31 17:10:31.949 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Nm3X4vq/8IiJMpVsyv7nxXuc4+PPqmgyHzHRiyL7HvY=" +2019-01-31 17:10:31.949 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 17:10:33.469 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-01-31 17:10:33.469 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-01-31 17:10:33.470 [main] INFO - Response Code: 201 +2019-01-31 17:10:33.470 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 384ms +v-c-correlation-id: 8c4447f6-312e-4446-88ee-6ca73a70c026 +OkHttp-Sent-Millis: 1548934832872 +OkHttp-Received-Millis: 1548934833450 + +2019-01-31 17:10:33.470 [main] INFO - ********* END *********: +2019-01-31 17:10:33.558 [main] INFO - ********* START ********* +2019-01-31 17:10:33.558 [main] INFO - Authentication Type : http_signature +2019-01-31 17:10:33.558 [main] INFO - Request Type: POST +2019-01-31 17:10:33.558 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-01-31 17:10:33.558 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-01-31 17:10:33.558 [main] INFO - v-c-merchant-id: testrest +2019-01-31 17:10:33.558 [main] INFO - Date: Thu, 31 Jan 2019 11:40:31 GMT +2019-01-31 17:10:33.558 [main] INFO - Host: apitest.cybersource.com +2019-01-31 17:10:33.558 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="4wSALGChd55FiMMuYemwtEgVhOs8b3CkYM5EC2qqhb4=" +2019-01-31 17:10:33.558 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 17:10:34.094 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-01-31 17:10:34.095 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-01-31 17:10:34.095 [main] INFO - Response Code: 201 +2019-01-31 17:10:34.096 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 339ms +v-c-correlation-id: c3949309-b3f8-4fbb-8e79-9acc7d78bc88 +OkHttp-Sent-Millis: 1548934833570 +OkHttp-Received-Millis: 1548934834092 + +2019-01-31 17:10:34.096 [main] INFO - ********* END *********: +2019-01-31 17:10:34.120 [main] INFO - ********* START ********* +2019-01-31 17:10:34.121 [main] INFO - Authentication Type : http_signature +2019-01-31 17:10:34.121 [main] INFO - Request Type: POST +2019-01-31 17:10:34.122 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-01-31 17:10:34.122 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-01-31 17:10:34.123 [main] INFO - v-c-merchant-id: testrest +2019-01-31 17:10:34.123 [main] INFO - Date: Thu, 31 Jan 2019 11:40:31 GMT +2019-01-31 17:10:34.123 [main] INFO - Host: apitest.cybersource.com +2019-01-31 17:10:34.124 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="iSh6JuLyM0/HTCIVAyM4jhtAcO1W40MfPW4dYSBlsXE=" +2019-01-31 17:10:34.124 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 17:10:34.689 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-01-31 17:10:34.690 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-01-31 17:10:34.690 [main] INFO - Response Code: 400 +2019-01-31 17:10:34.691 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 339ms +v-c-correlation-id: 87220899-a423-4ff6-a85a-a26f9ebcf312 +OkHttp-Sent-Millis: 1548934834127 +OkHttp-Received-Millis: 1548934834688 + +2019-01-31 17:10:34.691 [main] INFO - ********* END *********: +2019-01-31 17:12:08.838 [main] INFO - ********* START ********* +2019-01-31 17:12:08.853 [main] INFO - Authentication Type : http_signature +2019-01-31 17:12:08.853 [main] INFO - Request Type: POST +2019-01-31 17:12:08.854 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-01-31 17:12:08.854 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-01-31 17:12:08.899 [main] INFO - v-c-merchant-id: testrest +2019-01-31 17:12:08.899 [main] INFO - Date: Thu, 31 Jan 2019 11:42:08 GMT +2019-01-31 17:12:08.899 [main] INFO - Host: apitest.cybersource.com +2019-01-31 17:12:08.899 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="W+e5QPqqJSuIICZV59vDMWgCFnZyd5r/tbE1EimZiyw=" +2019-01-31 17:12:08.899 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 17:12:10.406 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-01-31 17:12:10.407 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-01-31 17:12:10.407 [main] INFO - Response Code: 201 +2019-01-31 17:12:10.408 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 359ms +v-c-correlation-id: 0a048f2a-550d-4bb4-ba15-b0c5a16d6250 +OkHttp-Sent-Millis: 1548934929841 +OkHttp-Received-Millis: 1548934930385 + +2019-01-31 17:12:10.408 [main] INFO - ********* END *********: +2019-01-31 17:12:10.519 [main] INFO - ********* START ********* +2019-01-31 17:12:10.519 [main] INFO - Authentication Type : http_signature +2019-01-31 17:12:10.520 [main] INFO - Request Type: POST +2019-01-31 17:12:10.520 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-01-31 17:12:10.520 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-01-31 17:12:10.521 [main] INFO - v-c-merchant-id: testrest +2019-01-31 17:12:10.521 [main] INFO - Date: Thu, 31 Jan 2019 11:42:08 GMT +2019-01-31 17:12:10.521 [main] INFO - Host: apitest.cybersource.com +2019-01-31 17:12:10.522 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="TbetKP/tDvE35oXU2XtIwkVZTism2b8i9BFDzweReEU=" +2019-01-31 17:12:10.522 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 17:12:11.026 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-01-31 17:12:11.027 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-01-31 17:12:11.028 [main] INFO - Response Code: 201 +2019-01-31 17:12:11.028 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 308ms +v-c-correlation-id: 59aa3dfd-477d-483c-b389-eea262f0f52e +OkHttp-Sent-Millis: 1548934930526 +OkHttp-Received-Millis: 1548934931025 + +2019-01-31 17:12:11.028 [main] INFO - ********* END *********: +2019-01-31 17:12:11.050 [main] INFO - ********* START ********* +2019-01-31 17:12:11.050 [main] INFO - Authentication Type : http_signature +2019-01-31 17:12:11.051 [main] INFO - Request Type: POST +2019-01-31 17:12:11.051 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-01-31 17:12:11.051 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-01-31 17:12:11.052 [main] INFO - v-c-merchant-id: testrest +2019-01-31 17:12:11.052 [main] INFO - Date: Thu, 31 Jan 2019 11:42:08 GMT +2019-01-31 17:12:11.052 [main] INFO - Host: apitest.cybersource.com +2019-01-31 17:12:11.053 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="dxnZFYwR8KMvjVPkMvTg1hFn3daAZfSuxGNaPNlNqF8=" +2019-01-31 17:12:11.053 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 17:12:11.553 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-01-31 17:12:11.554 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-01-31 17:12:11.554 [main] INFO - Response Code: 400 +2019-01-31 17:12:11.555 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 325ms +v-c-correlation-id: 5839f7af-7ab0-4ba5-9e8c-8568fbd19fa8 +OkHttp-Sent-Millis: 1548934931055 +OkHttp-Received-Millis: 1548934931552 + +2019-01-31 17:12:11.555 [main] INFO - ********* END *********: +2019-01-31 17:13:35.126 [main] INFO - ********* START ********* +2019-01-31 17:13:35.139 [main] INFO - Authentication Type : http_signature +2019-01-31 17:13:35.139 [main] INFO - Request Type: POST +2019-01-31 17:13:35.140 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-01-31 17:13:35.141 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-01-31 17:13:35.141 [main] INFO - v-c-merchant-id: testrest +2019-01-31 17:13:35.141 [main] INFO - Date: Thu, 31 Jan 2019 11:43:34 GMT +2019-01-31 17:13:35.142 [main] INFO - Host: apitest.cybersource.com +2019-01-31 17:13:35.142 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="k3OoFxPcalBf7oKhhweB5PXDk2VjxxeSfjmsdNRavzY=" +2019-01-31 17:13:35.142 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 17:13:36.705 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-01-31 17:13:36.705 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-01-31 17:13:36.706 [main] INFO - Response Code: 201 +2019-01-31 17:13:36.706 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 405ms +v-c-correlation-id: adaea94b-580c-466c-86c3-f598f24fc549 +OkHttp-Sent-Millis: 1548935016079 +OkHttp-Received-Millis: 1548935016683 + +2019-01-31 17:13:36.707 [main] INFO - ********* END *********: +2019-01-31 17:13:36.804 [main] INFO - ********* START ********* +2019-01-31 17:13:36.804 [main] INFO - Authentication Type : http_signature +2019-01-31 17:13:36.805 [main] INFO - Request Type: POST +2019-01-31 17:13:36.805 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-01-31 17:13:36.805 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-01-31 17:13:36.806 [main] INFO - v-c-merchant-id: testrest +2019-01-31 17:13:36.806 [main] INFO - Date: Thu, 31 Jan 2019 11:43:34 GMT +2019-01-31 17:13:36.806 [main] INFO - Host: apitest.cybersource.com +2019-01-31 17:13:36.807 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="QtHbFBikWC+kRuiCEMouP8OL1Q0U64je6m8kom0GeGg=" +2019-01-31 17:13:36.807 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 17:13:37.327 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-01-31 17:13:37.328 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-01-31 17:13:37.328 [main] INFO - Response Code: 201 +2019-01-31 17:13:37.329 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 329ms +v-c-correlation-id: 984fea43-696d-40a2-822d-f84be3c25c6a +OkHttp-Sent-Millis: 1548935016812 +OkHttp-Received-Millis: 1548935017325 + +2019-01-31 17:13:37.329 [main] INFO - ********* END *********: +2019-01-31 17:13:37.354 [main] INFO - ********* START ********* +2019-01-31 17:13:37.354 [main] INFO - Authentication Type : http_signature +2019-01-31 17:13:37.354 [main] INFO - Request Type: POST +2019-01-31 17:13:37.355 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-01-31 17:13:37.355 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-01-31 17:13:37.356 [main] INFO - v-c-merchant-id: testrest +2019-01-31 17:13:37.356 [main] INFO - Date: Thu, 31 Jan 2019 11:43:34 GMT +2019-01-31 17:13:37.357 [main] INFO - Host: apitest.cybersource.com +2019-01-31 17:13:37.357 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="bqtJGklA4Hvil/xUr+SyXHDrCEYSaKLgYYJ2RH0RRAM=" +2019-01-31 17:13:37.357 [main] INFO - User-Agent: Mozilla/5.0 +2019-01-31 17:13:37.893 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-01-31 17:13:37.894 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-01-31 17:13:37.897 [main] INFO - Response Code: 400 +2019-01-31 17:13:37.898 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 342ms +v-c-correlation-id: 05b3725a-ec66-4f30-8420-6d17813406e8 +OkHttp-Sent-Millis: 1548935017360 +OkHttp-Received-Millis: 1548935017890 + +2019-01-31 17:13:37.898 [main] INFO - ********* END *********: +2019-01-31 17:41:11.738 [main] INFO - ********* START ********* +2019-01-31 17:41:11.765 [main] INFO - Authentication Type : http_signature +2019-01-31 17:41:11.765 [main] INFO - Request Type: POST +2019-01-31 17:41:11.767 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-01-31 17:41:11.768 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-01-31 17:41:11.769 [main] INFO - v-c-merchant-id: testrest +2019-01-31 17:41:11.770 [main] INFO - Date: Thu, 31 Jan 2019 12:11:07 GMT +2019-01-31 17:41:11.770 [main] INFO - Host: apitest.cybersource.com +2019-01-31 17:41:11.772 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="43RV0KCkQS/Bj5+a6FGDeqsVOG+E3t9cpywr3ZBagT4=" +2019-01-31 17:41:11.774 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:51:30.640 [main] INFO - ********* START ********* +2019-02-01 10:51:30.652 [main] INFO - Authentication Type : http_signature +2019-02-01 10:51:30.652 [main] INFO - Request Type: POST +2019-02-01 10:51:30.652 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 10:51:30.652 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-01 10:51:30.652 [main] INFO - v-c-merchant-id: testrest +2019-02-01 10:51:30.652 [main] INFO - Date: Fri, 1 Feb 2019 05:21:30 GMT +2019-02-01 10:51:30.652 [main] INFO - Host: apitest.cybersource.com +2019-02-01 10:51:30.652 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="lQFMOHRNgxFlXIDZfOg+GVlVxUgYgFhxQY3fv4YQbKI=" +2019-02-01 10:51:30.656 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:51:32.382 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 10:51:32.382 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 10:51:32.382 [main] INFO - Response Code: 201 +2019-02-01 10:51:32.382 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 397ms +v-c-correlation-id: d26ba6a5-bf84-43db-b959-f942a3a8e1aa +OkHttp-Sent-Millis: 1548998491671 +OkHttp-Received-Millis: 1548998492358 + +2019-02-01 10:51:32.385 [main] INFO - ********* END *********: +2019-02-01 10:51:32.519 [main] INFO - ********* START ********* +2019-02-01 10:51:32.520 [main] INFO - Authentication Type : http_signature +2019-02-01 10:51:32.520 [main] INFO - Request Type: POST +2019-02-01 10:51:32.520 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 10:51:32.521 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-01 10:51:32.521 [main] INFO - v-c-merchant-id: testrest +2019-02-01 10:51:32.522 [main] INFO - Date: Fri, 1 Feb 2019 05:21:30 GMT +2019-02-01 10:51:32.522 [main] INFO - Host: apitest.cybersource.com +2019-02-01 10:51:32.522 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ZxEq1JzcTYVR6qOxSUq3/V94oth8CzcPK29SXJW5810=" +2019-02-01 10:51:32.523 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:51:33.105 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 10:51:33.105 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 10:51:33.106 [main] INFO - Response Code: 201 +2019-02-01 10:51:33.106 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 376ms +v-c-correlation-id: 7eaead2f-17f6-48e5-8c82-27b11855fe1f +OkHttp-Sent-Millis: 1548998492533 +OkHttp-Received-Millis: 1548998493103 + +2019-02-01 10:51:33.106 [main] INFO - ********* END *********: +2019-02-01 10:51:33.126 [main] INFO - ********* START ********* +2019-02-01 10:51:33.127 [main] INFO - Authentication Type : http_signature +2019-02-01 10:51:33.127 [main] INFO - Request Type: POST +2019-02-01 10:51:33.128 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 10:51:33.128 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-01 10:51:33.128 [main] INFO - v-c-merchant-id: testrest +2019-02-01 10:51:33.129 [main] INFO - Date: Fri, 1 Feb 2019 05:21:30 GMT +2019-02-01 10:51:33.129 [main] INFO - Host: apitest.cybersource.com +2019-02-01 10:51:33.129 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="7rz8qw5JoTddeJaMPOnTiSlYi67YJNoTstbu0eGY+ps=" +2019-02-01 10:51:33.130 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:51:33.667 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 10:51:33.667 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 10:51:33.667 [main] INFO - Response Code: 400 +2019-02-01 10:51:33.668 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 324ms +v-c-correlation-id: 34f327de-f8f4-4b7a-845f-28fec78a2ecb +OkHttp-Sent-Millis: 1548998493133 +OkHttp-Received-Millis: 1548998493666 + +2019-02-01 10:51:33.668 [main] INFO - ********* END *********: +2019-02-01 10:52:52.602 [main] INFO - ********* START ********* +2019-02-01 10:52:52.616 [main] INFO - Authentication Type : http_signature +2019-02-01 10:52:52.617 [main] INFO - Request Type: POST +2019-02-01 10:52:52.618 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 10:52:52.618 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-01 10:52:52.618 [main] INFO - v-c-merchant-id: testrest +2019-02-01 10:52:52.619 [main] INFO - Date: Fri, 1 Feb 2019 05:22:52 GMT +2019-02-01 10:52:52.619 [main] INFO - Host: apitest.cybersource.com +2019-02-01 10:52:52.619 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="CPAfR+5fPme6/D5GQKbvAa/g6D9DhA8tTAtkp+JvtH8=" +2019-02-01 10:52:52.620 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:53:14.427 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 10:53:14.428 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 10:53:14.429 [main] INFO - Response Code: 201 +2019-02-01 10:53:14.430 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 366ms +v-c-correlation-id: 60d9d5ee-d41d-4b58-8278-6af82954a4d9 +OkHttp-Sent-Millis: 1548998588124 +OkHttp-Received-Millis: 1548998588732 + +2019-02-01 10:53:14.430 [main] INFO - ********* END *********: +2019-02-01 10:53:14.554 [main] INFO - ********* START ********* +2019-02-01 10:53:14.554 [main] INFO - Authentication Type : http_signature +2019-02-01 10:53:14.554 [main] INFO - Request Type: POST +2019-02-01 10:53:14.555 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 10:53:14.556 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-01 10:53:14.556 [main] INFO - v-c-merchant-id: testrest +2019-02-01 10:53:14.556 [main] INFO - Date: Fri, 1 Feb 2019 05:22:52 GMT +2019-02-01 10:53:14.557 [main] INFO - Host: apitest.cybersource.com +2019-02-01 10:53:14.557 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="lhANqihi9rrFlF13+L5wyB2gZIFZZRCN+pELmXcPJ/M=" +2019-02-01 10:53:14.557 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:53:21.326 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 10:53:21.327 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 10:53:21.327 [main] INFO - Response Code: 201 +2019-02-01 10:53:21.328 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 414ms +v-c-correlation-id: d6eac248-7670-47a2-b73d-19b08a4aeec7 +OkHttp-Sent-Millis: 1548998597252 +OkHttp-Received-Millis: 1548998597870 + +2019-02-01 10:53:21.328 [main] INFO - ********* END *********: +2019-02-01 10:53:21.353 [main] INFO - ********* START ********* +2019-02-01 10:53:21.353 [main] INFO - Authentication Type : http_signature +2019-02-01 10:53:21.354 [main] INFO - Request Type: POST +2019-02-01 10:53:21.354 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 10:53:21.354 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-01 10:53:21.355 [main] INFO - v-c-merchant-id: testrest +2019-02-01 10:53:21.355 [main] INFO - Date: Fri, 1 Feb 2019 05:22:52 GMT +2019-02-01 10:53:21.355 [main] INFO - Host: apitest.cybersource.com +2019-02-01 10:53:21.356 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="UtV/nCsTOE1jFG+JW01SactSp+1HHldmWKANMEt8m88=" +2019-02-01 10:53:21.356 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:53:30.749 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 10:53:30.749 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 10:53:30.749 [main] INFO - Response Code: 400 +2019-02-01 10:53:30.750 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 325ms +v-c-correlation-id: 486fa4a3-ad45-4a87-bb11-e9f20473cce3 +OkHttp-Sent-Millis: 1548998603268 +OkHttp-Received-Millis: 1548998603803 + +2019-02-01 10:53:30.750 [main] INFO - ********* END *********: +2019-02-01 10:54:53.027 [main] INFO - ********* START ********* +2019-02-01 10:54:53.027 [main] INFO - Authentication Type : http_signature +2019-02-01 10:54:53.028 [main] INFO - Request Type: POST +2019-02-01 10:54:53.028 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 10:54:53.029 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-01 10:54:53.074 [main] INFO - v-c-merchant-id: testrest +2019-02-01 10:54:53.074 [main] INFO - Date: Fri, 1 Feb 2019 05:22:52 GMT +2019-02-01 10:54:53.075 [main] INFO - Host: apitest.cybersource.com +2019-02-01 10:54:53.075 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="CPAfR+5fPme6/D5GQKbvAa/g6D9DhA8tTAtkp+JvtH8=" +2019-02-01 10:54:53.076 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:54:53.715 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 10:54:53.715 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 10:54:53.716 [main] INFO - Response Code: 201 +2019-02-01 10:54:53.716 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 442ms +v-c-correlation-id: 73dc18ed-a6ef-47a5-9956-2368300fefda +OkHttp-Sent-Millis: 1548998693080 +OkHttp-Received-Millis: 1548998693714 + +2019-02-01 10:54:53.716 [main] INFO - ********* END *********: +2019-02-01 10:54:53.740 [main] INFO - ********* START ********* +2019-02-01 10:54:53.740 [main] INFO - Authentication Type : http_signature +2019-02-01 10:54:53.740 [main] INFO - Request Type: POST +2019-02-01 10:54:53.741 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 10:54:53.742 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-01 10:54:53.742 [main] INFO - v-c-merchant-id: testrest +2019-02-01 10:54:53.743 [main] INFO - Date: Fri, 1 Feb 2019 05:22:52 GMT +2019-02-01 10:54:53.743 [main] INFO - Host: apitest.cybersource.com +2019-02-01 10:54:53.743 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="lhANqihi9rrFlF13+L5wyB2gZIFZZRCN+pELmXcPJ/M=" +2019-02-01 10:54:53.744 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:54:54.330 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 10:54:54.331 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 10:54:54.331 [main] INFO - Response Code: 201 +2019-02-01 10:54:54.331 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 391ms +v-c-correlation-id: 3d667e6a-beee-4ccd-91b9-aa39fd3fcbad +OkHttp-Sent-Millis: 1548998693750 +OkHttp-Received-Millis: 1548998694329 + +2019-02-01 10:54:54.332 [main] INFO - ********* END *********: +2019-02-01 10:54:54.350 [main] INFO - ********* START ********* +2019-02-01 10:54:54.350 [main] INFO - Authentication Type : http_signature +2019-02-01 10:54:54.350 [main] INFO - Request Type: POST +2019-02-01 10:54:54.351 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 10:54:54.351 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-01 10:54:54.351 [main] INFO - v-c-merchant-id: testrest +2019-02-01 10:54:54.352 [main] INFO - Date: Fri, 1 Feb 2019 05:22:52 GMT +2019-02-01 10:54:54.352 [main] INFO - Host: apitest.cybersource.com +2019-02-01 10:54:54.352 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="UtV/nCsTOE1jFG+JW01SactSp+1HHldmWKANMEt8m88=" +2019-02-01 10:54:54.353 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:54:54.918 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 10:54:54.919 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 10:54:54.919 [main] INFO - Response Code: 400 +2019-02-01 10:54:54.920 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 375ms +v-c-correlation-id: dc307032-59eb-4a50-9455-d78a1e8f16ad +OkHttp-Sent-Millis: 1548998694354 +OkHttp-Received-Millis: 1548998694917 + +2019-02-01 10:54:54.920 [main] INFO - ********* END *********: +2019-02-01 10:55:19.650 [main] INFO - ********* START ********* +2019-02-01 10:55:19.666 [main] INFO - Authentication Type : http_signature +2019-02-01 10:55:19.667 [main] INFO - Request Type: POST +2019-02-01 10:55:19.668 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 10:55:19.668 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-01 10:55:19.714 [main] INFO - v-c-merchant-id: testrest +2019-02-01 10:55:19.714 [main] INFO - Date: Fri, 1 Feb 2019 05:25:19 GMT +2019-02-01 10:55:19.715 [main] INFO - Host: apitest.cybersource.com +2019-02-01 10:55:19.715 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="GpDykSfsQBb+MlWn9Q3/qTTpBSovAJQEfTAmdkn712Y=" +2019-02-01 10:55:19.716 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:55:21.376 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 10:55:21.379 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 10:55:21.379 [main] INFO - Response Code: 201 +2019-02-01 10:55:21.379 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 378ms +v-c-correlation-id: 3b5461c4-0bf9-454c-abd1-40910fafba88 +OkHttp-Sent-Millis: 1548998720724 +OkHttp-Received-Millis: 1548998721353 + +2019-02-01 10:55:21.380 [main] INFO - ********* END *********: +2019-02-01 10:55:21.486 [main] INFO - ********* START ********* +2019-02-01 10:55:21.487 [main] INFO - Authentication Type : http_signature +2019-02-01 10:55:21.487 [main] INFO - Request Type: POST +2019-02-01 10:55:21.487 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 10:55:21.488 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-01 10:55:21.489 [main] INFO - v-c-merchant-id: testrest +2019-02-01 10:55:21.489 [main] INFO - Date: Fri, 1 Feb 2019 05:25:19 GMT +2019-02-01 10:55:21.489 [main] INFO - Host: apitest.cybersource.com +2019-02-01 10:55:21.489 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Ko0JmukHGP+ko/4YYulscYLg4kqIiD4h06GYxbVfVEg=" +2019-02-01 10:55:21.490 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:55:22.054 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 10:55:22.055 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 10:55:22.055 [main] INFO - Response Code: 201 +2019-02-01 10:55:22.056 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 366ms +v-c-correlation-id: 77c555f8-63e9-4be2-8a01-e08feb21a9dd +OkHttp-Sent-Millis: 1548998721495 +OkHttp-Received-Millis: 1548998722053 + +2019-02-01 10:55:22.056 [main] INFO - ********* END *********: +2019-02-01 10:55:22.077 [main] INFO - ********* START ********* +2019-02-01 10:55:22.078 [main] INFO - Authentication Type : http_signature +2019-02-01 10:55:22.078 [main] INFO - Request Type: POST +2019-02-01 10:55:22.079 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 10:55:22.079 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-01 10:55:22.079 [main] INFO - v-c-merchant-id: testrest +2019-02-01 10:55:22.080 [main] INFO - Date: Fri, 1 Feb 2019 05:25:19 GMT +2019-02-01 10:55:22.080 [main] INFO - Host: apitest.cybersource.com +2019-02-01 10:55:22.081 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Co/Qb3M6kg2aTdPTIX8BPiG4w7LrdjDqya0WGmmpIL8=" +2019-02-01 10:55:22.081 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:55:22.605 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 10:55:22.605 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 10:55:22.605 [main] INFO - Response Code: 400 +2019-02-01 10:55:22.606 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 324ms +v-c-correlation-id: d10b00b2-3f5e-4f2b-ba68-1f823358c88f +OkHttp-Sent-Millis: 1548998722084 +OkHttp-Received-Millis: 1548998722603 + +2019-02-01 10:55:22.606 [main] INFO - ********* END *********: +2019-02-01 10:55:46.452 [main] INFO - ********* START ********* +2019-02-01 10:55:46.467 [main] INFO - Authentication Type : http_signature +2019-02-01 10:55:46.468 [main] INFO - Request Type: POST +2019-02-01 10:55:46.469 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 10:55:46.470 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-01 10:55:46.526 [main] INFO - v-c-merchant-id: testrest +2019-02-01 10:55:46.527 [main] INFO - Date: Fri, 1 Feb 2019 05:25:46 GMT +2019-02-01 10:55:46.527 [main] INFO - Host: apitest.cybersource.com +2019-02-01 10:55:46.527 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="mPfcjApyNyXJyoAq0RsTzX8sD5C7AfKFh1hWEPuf/kM=" +2019-02-01 10:55:46.528 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:55:48.089 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 10:55:48.089 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 10:55:48.089 [main] INFO - Response Code: 201 +2019-02-01 10:55:48.090 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 367ms +v-c-correlation-id: 383d4786-3ec4-4c07-9f59-c09c56ef2cff +OkHttp-Sent-Millis: 1548998747476 +OkHttp-Received-Millis: 1548998748064 + +2019-02-01 10:55:48.090 [main] INFO - ********* END *********: +2019-02-01 10:55:48.178 [main] INFO - ********* START ********* +2019-02-01 10:55:48.179 [main] INFO - Authentication Type : http_signature +2019-02-01 10:55:48.179 [main] INFO - Request Type: POST +2019-02-01 10:55:48.180 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 10:55:48.181 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-01 10:55:48.181 [main] INFO - v-c-merchant-id: testrest +2019-02-01 10:55:48.181 [main] INFO - Date: Fri, 1 Feb 2019 05:25:46 GMT +2019-02-01 10:55:48.182 [main] INFO - Host: apitest.cybersource.com +2019-02-01 10:55:48.182 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="otwN/4vV1Bx0b2cSfI2Lw9DeDU05g/8lrQX4t3eRLFQ=" +2019-02-01 10:55:48.183 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:55:48.757 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 10:55:48.758 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 10:55:48.758 [main] INFO - Response Code: 201 +2019-02-01 10:55:48.759 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 350ms +v-c-correlation-id: b1f3e65a-2daf-4fe7-8317-dca85ce86d28 +OkHttp-Sent-Millis: 1548998748187 +OkHttp-Received-Millis: 1548998748756 + +2019-02-01 10:55:48.759 [main] INFO - ********* END *********: +2019-02-01 10:55:48.777 [main] INFO - ********* START ********* +2019-02-01 10:55:48.778 [main] INFO - Authentication Type : http_signature +2019-02-01 10:55:48.778 [main] INFO - Request Type: POST +2019-02-01 10:55:48.778 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 10:55:48.779 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-01 10:55:48.779 [main] INFO - v-c-merchant-id: testrest +2019-02-01 10:55:48.779 [main] INFO - Date: Fri, 1 Feb 2019 05:25:46 GMT +2019-02-01 10:55:48.780 [main] INFO - Host: apitest.cybersource.com +2019-02-01 10:55:48.780 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="mnNypPL5eNzJIeyzvY6RbxAvricwmfdF1j5muh9oakw=" +2019-02-01 10:55:48.780 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:55:49.285 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 10:55:49.286 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 10:55:49.288 [main] INFO - Response Code: 400 +2019-02-01 10:55:49.289 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 295ms +v-c-correlation-id: 1d667b67-2192-4a66-91e3-74678ba38171 +OkHttp-Sent-Millis: 1548998748782 +OkHttp-Received-Millis: 1548998749268 + +2019-02-01 10:55:49.290 [main] INFO - ********* END *********: +2019-02-01 10:56:35.304 [main] INFO - ********* START ********* +2019-02-01 10:56:35.316 [main] INFO - Authentication Type : http_signature +2019-02-01 10:56:35.317 [main] INFO - Request Type: POST +2019-02-01 10:56:35.318 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 10:56:35.319 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-01 10:56:35.372 [main] INFO - v-c-merchant-id: testrest +2019-02-01 10:56:35.373 [main] INFO - Date: Fri, 1 Feb 2019 05:26:34 GMT +2019-02-01 10:56:35.373 [main] INFO - Host: apitest.cybersource.com +2019-02-01 10:56:35.373 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="QIHZAW7xXW2I4InNafyHNXYVj/rNEz5gCMwA00r6TfY=" +2019-02-01 10:56:35.374 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:56:36.935 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 10:56:36.935 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 10:56:36.936 [main] INFO - Response Code: 201 +2019-02-01 10:56:36.936 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 378ms +v-c-correlation-id: 1bd89673-c0bb-417b-9256-9dcf9789b399 +OkHttp-Sent-Millis: 1548998796348 +OkHttp-Received-Millis: 1548998796914 + +2019-02-01 10:56:36.936 [main] INFO - ********* END *********: +2019-02-01 10:56:37.034 [main] INFO - ********* START ********* +2019-02-01 10:56:37.035 [main] INFO - Authentication Type : http_signature +2019-02-01 10:56:37.035 [main] INFO - Request Type: POST +2019-02-01 10:56:37.036 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 10:56:37.036 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-01 10:56:37.036 [main] INFO - v-c-merchant-id: testrest +2019-02-01 10:56:37.037 [main] INFO - Date: Fri, 1 Feb 2019 05:26:34 GMT +2019-02-01 10:56:37.037 [main] INFO - Host: apitest.cybersource.com +2019-02-01 10:56:37.037 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="QtEhS59EcJHwaZ+Q8mFXvy9HxEamjlIecaf3XSpIUZM=" +2019-02-01 10:56:37.038 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:56:37.569 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 10:56:37.570 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 10:56:37.571 [main] INFO - Response Code: 201 +2019-02-01 10:56:37.571 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 346ms +v-c-correlation-id: 3f9485b7-4933-4474-8e06-58675fc329b8 +OkHttp-Sent-Millis: 1548998797041 +OkHttp-Received-Millis: 1548998797567 + +2019-02-01 10:56:37.571 [main] INFO - ********* END *********: +2019-02-01 10:56:37.591 [main] INFO - ********* START ********* +2019-02-01 10:56:37.591 [main] INFO - Authentication Type : http_signature +2019-02-01 10:56:37.591 [main] INFO - Request Type: POST +2019-02-01 10:56:37.592 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 10:56:37.592 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-01 10:56:37.592 [main] INFO - v-c-merchant-id: testrest +2019-02-01 10:56:37.593 [main] INFO - Date: Fri, 1 Feb 2019 05:26:34 GMT +2019-02-01 10:56:37.593 [main] INFO - Host: apitest.cybersource.com +2019-02-01 10:56:37.593 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="XqjPAISJiI23MauC6nrWMofafsBV/WbdkEKvFfXHLcQ=" +2019-02-01 10:56:37.594 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 10:56:38.058 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 10:56:38.060 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 10:56:38.061 [main] INFO - Response Code: 400 +2019-02-01 10:56:38.062 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 265ms +v-c-correlation-id: 158f7568-6594-4e30-9c3b-02bff2a4612a +OkHttp-Sent-Millis: 1548998797596 +OkHttp-Received-Millis: 1548998798033 + +2019-02-01 10:56:38.062 [main] INFO - ********* END *********: +2019-02-01 11:51:52.810 [main] INFO - ********* START ********* +2019-02-01 11:51:52.824 [main] INFO - Authentication Type : http_signature +2019-02-01 11:51:52.824 [main] INFO - Request Type: POST +2019-02-01 11:51:52.825 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-01 11:51:52.825 [main] INFO - Digest: SHA-256=YljtibTei+du4xVIDxMr3HBsyLAEDuiYaag9TcU9jHA= +2019-02-01 11:51:52.865 [main] INFO - v-c-merchant-id: testrest +2019-02-01 11:51:52.866 [main] INFO - Date: Fri, 1 Feb 2019 06:21:52 GMT +2019-02-01 11:51:52.866 [main] INFO - Host: apitest.cybersource.com +2019-02-01 11:51:52.866 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="41B3HleIH12Z6UnmhnBn7+6EkDeLnupU29bLdJbLmEk=" +2019-02-01 11:51:52.866 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 11:51:54.216 [main] INFO - Request Body: {"encryptionType":"RsaOaep256"} +2019-02-01 11:51:54.217 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-01 11:51:54.218 [main] INFO - Response Code: 200 +2019-02-01 11:51:54.218 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=qZ61Y0CFmk8n/lSTutcsKMHZQU2BzWLplSnoEuQrRCg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 927 +Date: Fri, 01 Feb 2019 06:21:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: f36343a6-1f47-45a5-a1f6-4fdb78491500 +OkHttp-Sent-Millis: 1549002113915 +OkHttp-Received-Millis: 1549002114194 + +2019-02-01 11:51:54.218 [main] INFO - ********* END *********: +2019-02-01 11:51:54.266 [main] INFO - ********* START ********* +2019-02-01 11:51:54.266 [main] INFO - Authentication Type : http_signature +2019-02-01 11:51:54.266 [main] INFO - Request Type: POST +2019-02-01 11:51:54.267 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-01 11:51:54.267 [main] INFO - Digest: SHA-256=gEZo4PozZVgCrpNd3JKwGruwMOoyFI70wP0aDjupsBk= +2019-02-01 11:51:54.267 [main] INFO - v-c-merchant-id: testrest +2019-02-01 11:51:54.268 [main] INFO - Date: Fri, 1 Feb 2019 06:21:52 GMT +2019-02-01 11:51:54.268 [main] INFO - Host: apitest.cybersource.com +2019-02-01 11:51:54.268 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="TUkR+uad6cZ1Sy+UGH0JXT6b728Bd+kMLyHtnw7ExtQ=" +2019-02-01 11:51:54.269 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 11:51:54.472 [main] INFO - Request Body: {"encryptionType":"PqaPabc255"} +2019-02-01 11:51:54.473 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-01 11:51:54.473 [main] INFO - Response Code: 400 +2019-02-01 11:51:54.473 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Fri, 01 Feb 2019 06:21:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: f5e2ea34-9991-49db-a3b1-c5ed758d29d4 +OkHttp-Sent-Millis: 1549002114274 +OkHttp-Received-Millis: 1549002114471 + +2019-02-01 11:51:54.474 [main] INFO - ********* END *********: +2019-02-01 11:53:26.444 [main] INFO - ********* START ********* +2019-02-01 11:53:26.459 [main] INFO - Authentication Type : http_signature +2019-02-01 11:53:26.460 [main] INFO - Request Type: POST +2019-02-01 11:53:26.461 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-01 11:53:26.461 [main] INFO - Digest: SHA-256=YljtibTei+du4xVIDxMr3HBsyLAEDuiYaag9TcU9jHA= +2019-02-01 11:53:26.505 [main] INFO - v-c-merchant-id: testrest +2019-02-01 11:53:26.505 [main] INFO - Date: Fri, 1 Feb 2019 06:23:26 GMT +2019-02-01 11:53:26.506 [main] INFO - Host: apitest.cybersource.com +2019-02-01 11:53:26.506 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="7A9XpYuF1iKa3YZuoJWS5nKVkVW5W9nzADeOdhUW1L4=" +2019-02-01 11:53:26.507 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 11:53:27.786 [main] INFO - Request Body: {"encryptionType":"RsaOaep256"} +2019-02-01 11:53:27.786 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-01 11:53:27.787 [main] INFO - Response Code: 200 +2019-02-01 11:53:27.787 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hTSEtiDFbd2+XVfiw7J/YU7xg9xklpphf7P/P/yL9Uw= +Content-Type: application/json;charset=UTF-8 +Content-Length: 927 +Date: Fri, 01 Feb 2019 06:23:27 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 47fd8323-bdf2-484b-8bb6-61f38f8942ef +OkHttp-Sent-Millis: 1549002207527 +OkHttp-Received-Millis: 1549002207767 + +2019-02-01 11:53:27.787 [main] INFO - ********* END *********: +2019-02-01 11:53:27.830 [main] INFO - ********* START ********* +2019-02-01 11:53:27.831 [main] INFO - Authentication Type : http_signature +2019-02-01 11:53:27.832 [main] INFO - Request Type: POST +2019-02-01 11:53:27.833 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-01 11:53:27.833 [main] INFO - Digest: SHA-256=gEZo4PozZVgCrpNd3JKwGruwMOoyFI70wP0aDjupsBk= +2019-02-01 11:53:27.834 [main] INFO - v-c-merchant-id: testrest +2019-02-01 11:53:27.834 [main] INFO - Date: Fri, 1 Feb 2019 06:23:26 GMT +2019-02-01 11:53:27.835 [main] INFO - Host: apitest.cybersource.com +2019-02-01 11:53:27.835 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="JHHOWrvMGUlfqrMJinf1pJmdFwZgHOMKHcM64Kc5pKM=" +2019-02-01 11:53:27.836 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 11:53:28.017 [main] INFO - Request Body: {"encryptionType":"PqaPabc255"} +2019-02-01 11:53:28.018 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-01 11:53:28.018 [main] INFO - Response Code: 400 +2019-02-01 11:53:28.019 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Fri, 01 Feb 2019 06:23:27 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: fe959d56-7a47-434e-a7d3-87d369c528da +OkHttp-Sent-Millis: 1549002207841 +OkHttp-Received-Millis: 1549002208015 + +2019-02-01 11:53:28.020 [main] INFO - ********* END *********: +2019-02-01 11:55:01.693 [main] INFO - ********* START ********* +2019-02-01 11:55:01.706 [main] INFO - Authentication Type : http_signature +2019-02-01 11:55:01.706 [main] INFO - Request Type: POST +2019-02-01 11:55:01.707 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-01 11:55:01.708 [main] INFO - Digest: SHA-256=YljtibTei+du4xVIDxMr3HBsyLAEDuiYaag9TcU9jHA= +2019-02-01 11:55:01.751 [main] INFO - v-c-merchant-id: testrest +2019-02-01 11:55:01.751 [main] INFO - Date: Fri, 1 Feb 2019 06:25:01 GMT +2019-02-01 11:55:01.752 [main] INFO - Host: apitest.cybersource.com +2019-02-01 11:55:01.753 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ogXY7f0MiVFbKfm7Eivw3u3aBjSPxilXvcAPnXXsjWw=" +2019-02-01 11:55:01.753 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 11:55:03.052 [main] INFO - Request Body: {"encryptionType":"RsaOaep256"} +2019-02-01 11:55:03.052 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-01 11:55:03.053 [main] INFO - Response Code: 200 +2019-02-01 11:55:03.054 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=QFWk4bO97baoHW1myb/g4UJFcuZ+Iik5g5H90LjtueY= +Content-Type: application/json;charset=UTF-8 +Content-Length: 927 +Date: Fri, 01 Feb 2019 06:25:02 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 42bd1c49-0784-422c-b17f-0da2a1bced94 +OkHttp-Sent-Millis: 1549002302780 +OkHttp-Received-Millis: 1549002303031 + +2019-02-01 11:55:03.054 [main] INFO - ********* END *********: +2019-02-01 11:55:03.086 [main] INFO - ********* START ********* +2019-02-01 11:55:03.086 [main] INFO - Authentication Type : http_signature +2019-02-01 11:55:03.086 [main] INFO - Request Type: POST +2019-02-01 11:55:03.087 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-01 11:55:03.087 [main] INFO - Digest: SHA-256=gEZo4PozZVgCrpNd3JKwGruwMOoyFI70wP0aDjupsBk= +2019-02-01 11:55:03.087 [main] INFO - v-c-merchant-id: testrest +2019-02-01 11:55:03.088 [main] INFO - Date: Fri, 1 Feb 2019 06:25:01 GMT +2019-02-01 11:55:03.088 [main] INFO - Host: apitest.cybersource.com +2019-02-01 11:55:03.088 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="WTAOAtM5wz7lvPcLML/Mv5YpI/RwrnBdDY6rP8eN9Mg=" +2019-02-01 11:55:03.089 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 11:55:03.281 [main] INFO - Request Body: {"encryptionType":"PqaPabc255"} +2019-02-01 11:55:03.282 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-01 11:55:03.282 [main] INFO - Response Code: 400 +2019-02-01 11:55:03.283 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Fri, 01 Feb 2019 06:25:02 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ec07928e-9811-426b-b255-615c2aeff316 +OkHttp-Sent-Millis: 1549002303093 +OkHttp-Received-Millis: 1549002303278 + +2019-02-01 11:55:03.283 [main] INFO - ********* END *********: +2019-02-01 11:58:53.917 [main] INFO - ********* START ********* +2019-02-01 11:58:53.929 [main] INFO - Authentication Type : http_signature +2019-02-01 11:58:53.929 [main] INFO - Request Type: POST +2019-02-01 11:58:53.930 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-01 11:58:53.931 [main] INFO - Digest: SHA-256=NTEzVYcZcvVKTljWImpKh21zRKbwCqQ28zYfzHWFIMA= +2019-02-01 11:58:53.972 [main] INFO - v-c-merchant-id: testrest +2019-02-01 11:58:53.972 [main] INFO - Date: Fri, 1 Feb 2019 06:28:53 GMT +2019-02-01 11:58:53.973 [main] INFO - Host: apitest.cybersource.com +2019-02-01 11:58:53.973 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="EP2Bb3DqdGe3Llsq6Rn/sF+qNDDvq91a4E4EUIdsvSg=" +2019-02-01 11:58:53.973 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 11:58:55.076 [main] INFO - Request Body: {"keyId":"07zg4urJ9S3tjCDYKEI45yD2SzAhBPUr","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-01 11:58:55.076 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [07zg4urJ9S3tjCDYKEI45yD2SzAhBPUr]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-01 11:58:55.077 [main] INFO - Response Code: 400 +2019-02-01 11:58:55.077 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=UVh8U7Nq5SMM5sfTct9inttUzzmwJScKroibD00djC8= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Fri, 01 Feb 2019 06:28:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 51d6455e-ca5f-4a93-9222-767bd78ae2af +OkHttp-Sent-Millis: 1549002534885 +OkHttp-Received-Millis: 1549002535055 + +2019-02-01 11:58:55.078 [main] INFO - ********* END *********: +2019-02-01 11:58:55.104 [main] INFO - ********* START ********* +2019-02-01 11:58:55.104 [main] INFO - Authentication Type : http_signature +2019-02-01 11:58:55.105 [main] INFO - Request Type: POST +2019-02-01 11:58:55.105 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-01 11:58:55.105 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-02-01 11:58:55.106 [main] INFO - v-c-merchant-id: testrest +2019-02-01 11:58:55.106 [main] INFO - Date: Fri, 1 Feb 2019 06:28:53 GMT +2019-02-01 11:58:55.106 [main] INFO - Host: apitest.cybersource.com +2019-02-01 11:58:55.107 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="W5X0bEOXujLgZGSXJ9BsXy+0F9uovBNKCgM6AbH/aTo=" +2019-02-01 11:58:55.107 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 11:58:55.279 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-01 11:58:55.279 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-02-01 11:58:55.279 [main] INFO - Response Code: 400 +2019-02-01 11:58:55.280 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Fri, 01 Feb 2019 06:28:55 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 96629d20-363e-468c-8461-edb281dcfdeb +OkHttp-Sent-Millis: 1549002535111 +OkHttp-Received-Millis: 1549002535278 + +2019-02-01 11:58:55.280 [main] INFO - ********* END *********: +2019-02-01 12:04:26.720 [main] INFO - ********* START ********* +2019-02-01 12:04:26.736 [main] INFO - Authentication Type : http_signature +2019-02-01 12:04:26.737 [main] INFO - Request Type: POST +2019-02-01 12:04:26.737 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-01 12:04:26.737 [main] INFO - Digest: SHA-256=3bOpdX6uUPEVablJrWeJqPg6cnRHcOGfhA57MuoEQas= +2019-02-01 12:04:26.738 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:04:26.739 [main] INFO - Date: Fri, 1 Feb 2019 06:34:26 GMT +2019-02-01 12:04:26.739 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:04:26.740 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="kIae2IA/awbQDcoMESB0DNXfzuDIBNf1QOO8dMLflYY=" +2019-02-01 12:04:26.740 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:04:28.205 [main] INFO - Request Body: {"keyId":"0761jLr3eSSc0ZKWMY6YR73NqjSwqxi4","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-01 12:04:28.205 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-02-01 12:04:28.206 [main] INFO - Response Code: 200 +2019-02-01 12:04:28.206 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=JkYWjPneVVKVtJb4Yktr0pYAq2xL1Rlc5PWjL1MKwv4= +Content-Type: application/json;charset=UTF-8 +Content-Length: 840 +Date: Fri, 01 Feb 2019 06:34:28 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 02948726-033b-45b5-8b33-c5ad9480a63f +OkHttp-Sent-Millis: 1549002867662 +OkHttp-Received-Millis: 1549002868180 + +2019-02-01 12:04:28.207 [main] INFO - ********* END *********: +2019-02-01 12:04:29.010 [main] INFO - ********* START ********* +2019-02-01 12:04:29.011 [main] INFO - Authentication Type : http_signature +2019-02-01 12:04:29.011 [main] INFO - Request Type: POST +2019-02-01 12:04:29.011 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-01 12:04:29.012 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-02-01 12:04:29.012 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:04:29.012 [main] INFO - Date: Fri, 1 Feb 2019 06:34:26 GMT +2019-02-01 12:04:29.012 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:04:29.012 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="YHwfrglDb5JGmXSleUmAacoFVC/JXPWFCz/r3Mg9+vU=" +2019-02-01 12:04:29.014 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:04:29.155 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-01 12:04:29.155 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-02-01 12:04:29.155 [main] INFO - Response Code: 400 +2019-02-01 12:04:29.155 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Fri, 01 Feb 2019 06:34:29 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 1d776619-c2e1-4964-bce6-ec77912e6416 +OkHttp-Sent-Millis: 1549002869017 +OkHttp-Received-Millis: 1549002869154 + +2019-02-01 12:04:29.155 [main] INFO - ********* END *********: +2019-02-01 12:05:49.991 [main] INFO - ********* START ********* +2019-02-01 12:05:50.003 [main] INFO - Authentication Type : http_signature +2019-02-01 12:05:50.004 [main] INFO - Request Type: POST +2019-02-01 12:05:50.005 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-01 12:05:50.005 [main] INFO - Digest: SHA-256=3bOpdX6uUPEVablJrWeJqPg6cnRHcOGfhA57MuoEQas= +2019-02-01 12:05:50.006 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:05:50.006 [main] INFO - Date: Fri, 1 Feb 2019 06:35:49 GMT +2019-02-01 12:05:50.006 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:05:50.006 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="AjTcaxBt+eWEFN487yCNTrUZD2IYhHj59jmuVLtvQEY=" +2019-02-01 12:05:50.007 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:05:51.322 [main] INFO - Request Body: {"keyId":"0761jLr3eSSc0ZKWMY6YR73NqjSwqxi4","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-01 12:05:51.323 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-02-01 12:05:51.323 [main] INFO - Response Code: 200 +2019-02-01 12:05:51.324 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=PHJTebKnvHiwjHRqXTr5b8nPqduGR19oG35TleknO5c= +Content-Type: application/json;charset=UTF-8 +Content-Length: 840 +Date: Fri, 01 Feb 2019 06:35:51 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 93d566f5-8002-43b6-a1ee-5fe2e0f55898 +OkHttp-Sent-Millis: 1549002950842 +OkHttp-Received-Millis: 1549002951304 + +2019-02-01 12:05:51.324 [main] INFO - ********* END *********: +2019-02-01 12:05:51.852 [main] INFO - ********* START ********* +2019-02-01 12:05:51.852 [main] INFO - Authentication Type : http_signature +2019-02-01 12:05:51.853 [main] INFO - Request Type: POST +2019-02-01 12:05:51.853 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-01 12:05:51.853 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-02-01 12:05:51.854 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:05:51.854 [main] INFO - Date: Fri, 1 Feb 2019 06:35:49 GMT +2019-02-01 12:05:51.855 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:05:51.855 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="fMI7gz8j6bBMtRwaoZBiASKsWGk/8zWMnyUZ+iH8U48=" +2019-02-01 12:05:51.855 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:05:52.004 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-01 12:05:52.005 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-02-01 12:05:52.005 [main] INFO - Response Code: 400 +2019-02-01 12:05:52.006 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Fri, 01 Feb 2019 06:35:51 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7578d92f-0a59-4ccf-af77-164dba6ab654 +OkHttp-Sent-Millis: 1549002951859 +OkHttp-Received-Millis: 1549002952003 + +2019-02-01 12:05:52.007 [main] INFO - ********* END *********: +2019-02-01 12:08:27.839 [main] INFO - ********* START ********* +2019-02-01 12:08:27.852 [main] INFO - Authentication Type : http_signature +2019-02-01 12:08:27.852 [main] INFO - Request Type: POST +2019-02-01 12:08:27.852 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-01 12:08:27.855 [main] INFO - Digest: SHA-256=bena9bhB3Jy4uPvfu1tAC0uN8AuzzM+xjqmDwR5//EA= +2019-02-01 12:08:27.894 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:08:27.894 [main] INFO - Date: Fri, 1 Feb 2019 06:38:27 GMT +2019-02-01 12:08:27.895 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:08:27.895 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="qk/i4HSDyT9VpmVkh7LGpybCyHfj1QTawKNx/4E2Mjc=" +2019-02-01 12:08:27.895 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:08:28.996 [main] INFO - Request Body: {"encryptionType":"None"} +2019-02-01 12:08:28.997 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-01 12:08:28.997 [main] INFO - Response Code: 200 +2019-02-01 12:08:28.997 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=yxhBgHZor8CgAL/gsxs4PDmrdr4Lq5NV3VTpecFTH/4= +Content-Type: application/json;charset=UTF-8 +Content-Length: 505 +Date: Fri, 01 Feb 2019 06:38:28 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7f93ecf9-7b75-4703-9ddf-d6ee73d0c8fa +OkHttp-Sent-Millis: 1549003108762 +OkHttp-Received-Millis: 1549003108975 + +2019-02-01 12:08:28.998 [main] INFO - ********* END *********: +2019-02-01 12:08:29.031 [main] INFO - ********* START ********* +2019-02-01 12:08:29.031 [main] INFO - Authentication Type : http_signature +2019-02-01 12:08:29.032 [main] INFO - Request Type: POST +2019-02-01 12:08:29.033 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-01 12:08:29.034 [main] INFO - Digest: SHA-256=RGxc6GDM4hd0Lz1J24GEBLuX6JSK+r0fZi1/r0x/0Xo= +2019-02-01 12:08:29.034 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:08:29.034 [main] INFO - Date: Fri, 1 Feb 2019 06:38:27 GMT +2019-02-01 12:08:29.035 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:08:29.035 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="hbgwzbKHPeSbxUHhA8fJyM1O6o9iS7mBlaaywkcccwE=" +2019-02-01 12:08:29.036 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:08:29.260 [main] INFO - Request Body: {"encryptionType":"SDMP"} +2019-02-01 12:08:29.261 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-01 12:08:29.261 [main] INFO - Response Code: 400 +2019-02-01 12:08:29.261 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Fri, 01 Feb 2019 06:38:28 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a2d6ef25-14d0-4cde-9e9b-81240f709c17 +OkHttp-Sent-Millis: 1549003109040 +OkHttp-Received-Millis: 1549003109259 + +2019-02-01 12:08:29.262 [main] INFO - ********* END *********: +2019-02-01 12:11:26.944 [main] INFO - ********* START ********* +2019-02-01 12:11:26.956 [main] INFO - Authentication Type : http_signature +2019-02-01 12:11:26.956 [main] INFO - Request Type: POST +2019-02-01 12:11:26.957 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-02-01 12:11:26.957 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-02-01 12:11:27.001 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:11:27.001 [main] INFO - Date: Fri, 1 Feb 2019 06:41:26 GMT +2019-02-01 12:11:27.002 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:11:27.002 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="yFW5zuEqhxruYtsYMR74Uts6SVEgc7D3peFnIVH7Xhs=" +2019-02-01 12:11:27.003 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:11:28.438 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-01 12:11:28.439 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207982366112103002/captures} +2019-02-01 12:11:28.440 [main] INFO - Response Code: 201 +2019-02-01 12:11:28.440 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 332ms +v-c-correlation-id: 36e42b7f-910a-4c2c-a483-3d3936444838 +OkHttp-Sent-Millis: 1549003287890 +OkHttp-Received-Millis: 1549003288418 + +2019-02-01 12:11:28.441 [main] INFO - ********* END *********: +2019-02-01 12:11:28.495 [main] INFO - ********* START ********* +2019-02-01 12:11:28.495 [main] INFO - Authentication Type : http_signature +2019-02-01 12:11:28.495 [main] INFO - Request Type: POST +2019-02-01 12:11:28.496 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-02-01 12:11:28.496 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-02-01 12:11:28.496 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:11:28.497 [main] INFO - Date: Fri, 1 Feb 2019 06:41:26 GMT +2019-02-01 12:11:28.497 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:11:28.497 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="kYp3LO3a7KkxssI9mNVfVAo/CuhjvWSoH9VduVvQ1xQ=" +2019-02-01 12:11:28.498 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:11:28.993 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-01 12:11:28.994 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-01 12:11:28.994 [main] INFO - Response Code: 201 +2019-02-01 12:11:28.995 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 301ms +v-c-correlation-id: e9610c4a-35a7-461f-bc2d-264abc5305a4 +OkHttp-Sent-Millis: 1549003288501 +OkHttp-Received-Millis: 1549003288992 + +2019-02-01 12:11:28.995 [main] INFO - ********* END *********: +2019-02-01 12:11:29.015 [main] INFO - ********* START ********* +2019-02-01 12:11:29.016 [main] INFO - Authentication Type : http_signature +2019-02-01 12:11:29.016 [main] INFO - Request Type: POST +2019-02-01 12:11:29.016 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-02-01 12:11:29.017 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-02-01 12:11:29.017 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:11:29.017 [main] INFO - Date: Fri, 1 Feb 2019 06:41:26 GMT +2019-02-01 12:11:29.018 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:11:29.018 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="MJe+Ax73DLuYcCA5k/klKZEd3YJPGXRZrbb2zykA/ew=" +2019-02-01 12:11:29.018 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:11:29.506 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-01 12:11:29.507 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-01 12:11:29.507 [main] INFO - Response Code: 400 +2019-02-01 12:11:29.507 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 314ms +v-c-correlation-id: 133876e5-92d9-4eee-827c-31dd27407b53 +OkHttp-Sent-Millis: 1549003289021 +OkHttp-Received-Millis: 1549003289505 + +2019-02-01 12:11:29.508 [main] INFO - ********* END *********: +2019-02-01 12:16:44.337 [main] INFO - ********* START ********* +2019-02-01 12:16:44.353 [main] INFO - Authentication Type : http_signature +2019-02-01 12:16:44.354 [main] INFO - Request Type: POST +2019-02-01 12:16:44.355 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-02-01 12:16:44.356 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-02-01 12:16:44.396 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:16:44.397 [main] INFO - Date: Fri, 1 Feb 2019 06:46:44 GMT +2019-02-01 12:16:44.397 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:16:44.398 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="8ouZ/OsjWSKwzSCOpy7rjDf1HWnALhjy8qLhfByWl9g=" +2019-02-01 12:16:44.398 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:16:45.768 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-01 12:16:45.769 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207982366112103002/captures} +2019-02-01 12:16:45.769 [main] INFO - Response Code: 201 +2019-02-01 12:16:45.769 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 317ms +v-c-correlation-id: cb3f10eb-a332-40cf-8068-a86fa58c08dd +OkHttp-Sent-Millis: 1549003605236 +OkHttp-Received-Millis: 1549003605749 + +2019-02-01 12:16:45.770 [main] INFO - ********* END *********: +2019-02-01 12:16:45.812 [main] INFO - ********* START ********* +2019-02-01 12:16:45.813 [main] INFO - Authentication Type : http_signature +2019-02-01 12:16:45.813 [main] INFO - Request Type: POST +2019-02-01 12:16:45.814 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-02-01 12:16:45.814 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-02-01 12:16:45.814 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:16:45.814 [main] INFO - Date: Fri, 1 Feb 2019 06:46:44 GMT +2019-02-01 12:16:45.815 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:16:45.815 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="xJI6nRmoPMoKCYThKHz4Hx0aFGICDiXkJDy3hghb7n0=" +2019-02-01 12:16:45.815 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:16:46.329 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-01 12:16:46.329 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-01 12:16:46.330 [main] INFO - Response Code: 201 +2019-02-01 12:16:46.330 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 330ms +v-c-correlation-id: 3a7388c5-10a2-45fa-b40a-79cb17834514 +OkHttp-Sent-Millis: 1549003605820 +OkHttp-Received-Millis: 1549003606328 + +2019-02-01 12:16:46.330 [main] INFO - ********* END *********: +2019-02-01 12:16:46.349 [main] INFO - ********* START ********* +2019-02-01 12:16:46.350 [main] INFO - Authentication Type : http_signature +2019-02-01 12:16:46.350 [main] INFO - Request Type: POST +2019-02-01 12:16:46.350 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-02-01 12:16:46.351 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-02-01 12:16:46.351 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:16:46.352 [main] INFO - Date: Fri, 1 Feb 2019 06:46:44 GMT +2019-02-01 12:16:46.352 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:16:46.353 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ixhS22IJA34KvGeXzOBvIwQIrrENFeFgeLYgSPbSi/I=" +2019-02-01 12:16:46.353 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:16:46.901 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-01 12:16:46.904 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-01 12:16:46.905 [main] INFO - Response Code: 400 +2019-02-01 12:16:46.905 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 317ms +v-c-correlation-id: d20b9a3e-eb04-41cd-8d60-8a78d5ea394f +OkHttp-Sent-Millis: 1549003606355 +OkHttp-Received-Millis: 1549003606901 + +2019-02-01 12:16:46.905 [main] INFO - ********* END *********: +2019-02-01 12:19:58.724 [main] INFO - ********* START ********* +2019-02-01 12:19:58.737 [main] INFO - Authentication Type : http_signature +2019-02-01 12:19:58.738 [main] INFO - Request Type: POST +2019-02-01 12:19:58.738 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5486512513856241203003/reversals, requestType=POST} +2019-02-01 12:19:58.739 [main] INFO - Digest: SHA-256=+nVNWFcK5wejoED726n/0CNM4MAETj2u1DH6s02VUIk= +2019-02-01 12:19:58.790 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:19:58.790 [main] INFO - Date: Fri, 1 Feb 2019 06:49:58 GMT +2019-02-01 12:19:58.791 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:19:58.791 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Llr7qfhcnfDSm2G+uNVp2bpYnUJOKeP7KYAZFRASvsg=" +2019-02-01 12:19:58.792 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:20:00.758 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"100.00"},"reason":"testing"}} +2019-02-01 12:20:00.758 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-01T06:50:00Z","status":"INVALID_REQUEST","reason":"TRANSACTION_ALREADY_REVERSED_OR_SETTLED","message":"Decline - The transaction has already been settled or reversed."} +2019-02-01 12:20:00.759 [main] INFO - Response Code: 400 +2019-02-01 12:20:00.759 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 194 +X-Cnection: close +x-response-time: 486ms +v-c-correlation-id: d107c130-9bce-494c-b0ca-c6d567892da9 +OkHttp-Sent-Millis: 1549003800032 +OkHttp-Received-Millis: 1549003800738 + +2019-02-01 12:20:00.759 [main] INFO - ********* END *********: +2019-02-01 12:20:00.783 [main] INFO - ********* START ********* +2019-02-01 12:20:00.783 [main] INFO - Authentication Type : http_signature +2019-02-01 12:20:00.783 [main] INFO - Request Type: POST +2019-02-01 12:20:00.784 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5486512520486638403005/reversals, requestType=POST} +2019-02-01 12:20:00.784 [main] INFO - Digest: SHA-256=pAGeIXg2n5jV3A6rwpZbKaLbAzo/U73Yk5w2Zu0QX4M= +2019-02-01 12:20:00.784 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:20:00.785 [main] INFO - Date: Fri, 1 Feb 2019 06:49:58 GMT +2019-02-01 12:20:00.785 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:20:00.785 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="M/7saDqJecSkIYiDc5j7/1FRBQPKTDuomOjqq4A3kbc=" +2019-02-01 12:20:00.786 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:20:01.409 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"200"},"reason":"testing"}} +2019-02-01 12:20:01.410 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5486512513856241203003/reversals} +2019-02-01 12:20:01.411 [main] INFO - Response Code: 400 +2019-02-01 12:20:01.411 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 194 +X-Cnection: close +x-response-time: 422ms +v-c-correlation-id: b22a70bf-fc98-4974-bb25-a270c91d71b5 +OkHttp-Sent-Millis: 1549003800790 +OkHttp-Received-Millis: 1549003801409 + +2019-02-01 12:20:01.412 [main] INFO - ********* END *********: +2019-02-01 12:20:01.431 [main] INFO - ********* START ********* +2019-02-01 12:20:01.432 [main] INFO - Authentication Type : http_signature +2019-02-01 12:20:01.432 [main] INFO - Request Type: POST +2019-02-01 12:20:01.433 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/reversals, requestType=POST} +2019-02-01 12:20:01.433 [main] INFO - Digest: SHA-256=EmbUNBQ6YMXxCj2Ldp/J/yZkqbcqi/7w3Qh/cGHWZ54= +2019-02-01 12:20:01.434 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:20:01.434 [main] INFO - Date: Fri, 1 Feb 2019 06:49:58 GMT +2019-02-01 12:20:01.434 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:20:01.435 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="D0FeHKfjw/avebc+fPuhpblhEWGfwXIRSocVi3eS3FA=" +2019-02-01 12:20:01.435 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:20:01.944 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"102.21"},"reason":"testing"}} +2019-02-01 12:20:01.945 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5486512520486638403005/reversals} +2019-02-01 12:20:01.945 [main] INFO - Response Code: 400 +2019-02-01 12:20:01.945 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 303ms +v-c-correlation-id: 2a0fb52c-43bd-46d8-a061-2edab681090e +OkHttp-Sent-Millis: 1549003801439 +OkHttp-Received-Millis: 1549003801943 + +2019-02-01 12:20:01.946 [main] INFO - ********* END *********: +2019-02-01 12:23:07.257 [main] INFO - ********* START ********* +2019-02-01 12:23:07.271 [main] INFO - Authentication Type : http_signature +2019-02-01 12:23:07.271 [main] INFO - Request Type: POST +2019-02-01 12:23:07.272 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490039252706934603003/reversals, requestType=POST} +2019-02-01 12:23:07.272 [main] INFO - Digest: SHA-256=+nVNWFcK5wejoED726n/0CNM4MAETj2u1DH6s02VUIk= +2019-02-01 12:23:07.273 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:23:07.273 [main] INFO - Date: Fri, 1 Feb 2019 06:53:06 GMT +2019-02-01 12:23:07.273 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:23:07.274 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="J4i9K+ltEsUrq0GjtuZZZ+Q8tSwfl/fACX3TqOY42vo=" +2019-02-01 12:23:07.274 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:23:08.964 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"100.00"},"reason":"testing"}} +2019-02-01 12:23:08.964 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-01T06:53:08Z","status":"INVALID_REQUEST","reason":"TRANSACTION_ALREADY_REVERSED_OR_SETTLED","message":"Decline - The transaction has already been settled or reversed."} +2019-02-01 12:23:08.964 [main] INFO - Response Code: 400 +2019-02-01 12:23:08.964 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 194 +X-Cnection: close +x-response-time: 373ms +v-c-correlation-id: 7d3ac3b7-18b7-4224-80c0-4dfd8d320434 +OkHttp-Sent-Millis: 1549003988367 +OkHttp-Received-Millis: 1549003988945 + +2019-02-01 12:23:08.964 [main] INFO - ********* END *********: +2019-02-01 12:23:08.993 [main] INFO - ********* START ********* +2019-02-01 12:23:08.994 [main] INFO - Authentication Type : http_signature +2019-02-01 12:23:08.995 [main] INFO - Request Type: POST +2019-02-01 12:23:08.995 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490039252706934603003/reversals, requestType=POST} +2019-02-01 12:23:08.996 [main] INFO - Digest: SHA-256=pAGeIXg2n5jV3A6rwpZbKaLbAzo/U73Yk5w2Zu0QX4M= +2019-02-01 12:23:08.996 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:23:08.997 [main] INFO - Date: Fri, 1 Feb 2019 06:53:06 GMT +2019-02-01 12:23:08.997 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:23:08.997 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="EtKJZ37ZDH0/HYJuhcVUHFSekHDGCp1LhYcBTrhvekU=" +2019-02-01 12:23:08.998 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:23:09.520 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"200"},"reason":"testing"}} +2019-02-01 12:23:09.520 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490039252706934603003/reversals} +2019-02-01 12:23:09.521 [main] INFO - Response Code: 400 +2019-02-01 12:23:09.521 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 264 +X-Cnection: close +x-response-time: 331ms +v-c-correlation-id: 842b9e2b-9225-4790-aac8-a13c031207bd +OkHttp-Sent-Millis: 1549003989002 +OkHttp-Received-Millis: 1549003989518 + +2019-02-01 12:23:09.521 [main] INFO - ********* END *********: +2019-02-01 12:23:09.539 [main] INFO - ********* START ********* +2019-02-01 12:23:09.540 [main] INFO - Authentication Type : http_signature +2019-02-01 12:23:09.540 [main] INFO - Request Type: POST +2019-02-01 12:23:09.540 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/reversals, requestType=POST} +2019-02-01 12:23:09.541 [main] INFO - Digest: SHA-256=EmbUNBQ6YMXxCj2Ldp/J/yZkqbcqi/7w3Qh/cGHWZ54= +2019-02-01 12:23:09.541 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:23:09.542 [main] INFO - Date: Fri, 1 Feb 2019 06:53:06 GMT +2019-02-01 12:23:09.542 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:23:09.542 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="mXlvW8fTftD5MLZqFeYHlzazKGawd6BhS2isWUYnrcE=" +2019-02-01 12:23:09.543 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:23:10.095 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"102.21"},"reason":"testing"}} +2019-02-01 12:23:10.095 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490039252706934603003/reversals} +2019-02-01 12:23:10.095 [main] INFO - Response Code: 400 +2019-02-01 12:23:10.096 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 327ms +v-c-correlation-id: 6462c83c-1a19-4890-b986-3d1fa797bf89 +OkHttp-Sent-Millis: 1549003989545 +OkHttp-Received-Millis: 1549003990094 + +2019-02-01 12:23:10.097 [main] INFO - ********* END *********: +2019-02-01 12:24:57.783 [main] INFO - ********* START ********* +2019-02-01 12:24:57.801 [main] INFO - Authentication Type : http_signature +2019-02-01 12:24:57.802 [main] INFO - Request Type: POST +2019-02-01 12:24:57.804 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490039252706934603003/reversals, requestType=POST} +2019-02-01 12:24:57.805 [main] INFO - Digest: SHA-256=+nVNWFcK5wejoED726n/0CNM4MAETj2u1DH6s02VUIk= +2019-02-01 12:24:57.806 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:24:57.806 [main] INFO - Date: Fri, 1 Feb 2019 06:54:53 GMT +2019-02-01 12:24:57.808 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:24:57.808 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Ayi3I2BFy6Dg9h1UXAjxfwrySvsTPvtHQ9DZvsIB4ZI=" +2019-02-01 12:24:57.809 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:25:34.488 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"100.00"},"reason":"testing"}} +2019-02-01 12:25:34.490 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-01T06:55:14Z","status":"INVALID_REQUEST","reason":"TRANSACTION_ALREADY_REVERSED_OR_SETTLED","message":"Decline - The transaction has already been settled or reversed."} +2019-02-01 12:25:34.491 [main] INFO - Response Code: 400 +2019-02-01 12:25:34.492 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 194 +X-Cnection: close +x-response-time: 384ms +v-c-correlation-id: 04b079ed-92fa-4eba-b037-d1ab9334b76d +OkHttp-Sent-Millis: 1549004113555 +OkHttp-Received-Millis: 1549004114168 + +2019-02-01 12:25:34.493 [main] INFO - ********* END *********: +2019-02-01 12:25:34.520 [main] INFO - ********* START ********* +2019-02-01 12:25:34.520 [main] INFO - Authentication Type : http_signature +2019-02-01 12:25:34.521 [main] INFO - Request Type: POST +2019-02-01 12:25:34.521 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490039252706934603003/reversals, requestType=POST} +2019-02-01 12:25:34.522 [main] INFO - Digest: SHA-256=pAGeIXg2n5jV3A6rwpZbKaLbAzo/U73Yk5w2Zu0QX4M= +2019-02-01 12:25:34.522 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:25:34.523 [main] INFO - Date: Fri, 1 Feb 2019 06:54:53 GMT +2019-02-01 12:25:34.523 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:25:34.523 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="RQ+1BmHIJx6P8Zqtegy0oIoMO1mzktPAW6iGmWo2n60=" +2019-02-01 12:25:34.524 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:25:35.160 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"200"},"reason":"testing"}} +2019-02-01 12:25:35.161 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490039252706934603003/reversals} +2019-02-01 12:25:35.161 [main] INFO - Response Code: 400 +2019-02-01 12:25:35.162 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 264 +X-Cnection: close +x-response-time: 420ms +v-c-correlation-id: 30b09492-3f90-4df4-a7e7-c4211d7cd1d8 +OkHttp-Sent-Millis: 1549004134527 +OkHttp-Received-Millis: 1549004135158 + +2019-02-01 12:25:35.162 [main] INFO - ********* END *********: +2019-02-01 12:25:35.180 [main] INFO - ********* START ********* +2019-02-01 12:25:35.181 [main] INFO - Authentication Type : http_signature +2019-02-01 12:25:35.181 [main] INFO - Request Type: POST +2019-02-01 12:25:35.182 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/reversals, requestType=POST} +2019-02-01 12:25:35.182 [main] INFO - Digest: SHA-256=EmbUNBQ6YMXxCj2Ldp/J/yZkqbcqi/7w3Qh/cGHWZ54= +2019-02-01 12:25:35.182 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:25:35.183 [main] INFO - Date: Fri, 1 Feb 2019 06:54:53 GMT +2019-02-01 12:25:35.183 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:25:35.183 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="zL1RKqktb60fDXeEpkTtePMHmdlzm9nUkUlkMR5cHZk=" +2019-02-01 12:25:35.184 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:25:35.680 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"102.21"},"reason":"testing"}} +2019-02-01 12:25:35.681 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490039252706934603003/reversals} +2019-02-01 12:25:35.681 [main] INFO - Response Code: 400 +2019-02-01 12:25:35.681 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 298ms +v-c-correlation-id: 9571d069-428b-4a0c-9429-eaec499e945a +OkHttp-Sent-Millis: 1549004135186 +OkHttp-Received-Millis: 1549004135680 + +2019-02-01 12:25:35.682 [main] INFO - ********* END *********: +2019-02-01 12:28:02.543 [main] INFO - ********* START ********* +2019-02-01 12:28:02.558 [main] INFO - Authentication Type : http_signature +2019-02-01 12:28:02.559 [main] INFO - Request Type: POST +2019-02-01 12:28:02.560 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490042042466283603005/reversals, requestType=POST} +2019-02-01 12:28:02.560 [main] INFO - Digest: SHA-256=+nVNWFcK5wejoED726n/0CNM4MAETj2u1DH6s02VUIk= +2019-02-01 12:28:02.561 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:28:02.561 [main] INFO - Date: Fri, 1 Feb 2019 06:58:02 GMT +2019-02-01 12:28:02.562 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:28:02.562 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="LzktmY3tUjqSl5OKzXql18YkY1IsC8ZqZ6FW7BqVMvM=" +2019-02-01 12:28:02.562 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:28:04.071 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"100.00"},"reason":"testing"}} +2019-02-01 12:28:04.071 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490042042466283603005/reversals} +2019-02-01 12:28:04.072 [main] INFO - Response Code: 201 +2019-02-01 12:28:04.072 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 400 +X-Cnection: close +x-response-time: 362ms +v-c-correlation-id: 695089d0-987e-4a69-87ab-e9290a35d412 +OkHttp-Sent-Millis: 1549004283476 +OkHttp-Received-Millis: 1549004284053 + +2019-02-01 12:28:04.072 [main] INFO - ********* END *********: +2019-02-01 12:28:04.122 [main] INFO - ********* START ********* +2019-02-01 12:28:04.124 [main] INFO - Authentication Type : http_signature +2019-02-01 12:28:04.124 [main] INFO - Request Type: POST +2019-02-01 12:28:04.125 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490042042466283603005/reversals, requestType=POST} +2019-02-01 12:28:04.125 [main] INFO - Digest: SHA-256=pAGeIXg2n5jV3A6rwpZbKaLbAzo/U73Yk5w2Zu0QX4M= +2019-02-01 12:28:04.126 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:28:04.126 [main] INFO - Date: Fri, 1 Feb 2019 06:58:02 GMT +2019-02-01 12:28:04.127 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:28:04.127 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ksunG6djB4O6nDxuIZUiUkYTVzThzPE6gzZ8yrQzCZI=" +2019-02-01 12:28:04.127 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:28:04.745 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"200"},"reason":"testing"}} +2019-02-01 12:28:04.745 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490042042466283603005/reversals} +2019-02-01 12:28:04.746 [main] INFO - Response Code: 400 +2019-02-01 12:28:04.747 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 264 +X-Cnection: close +x-response-time: 423ms +v-c-correlation-id: 36105820-3318-4f89-bd34-a6b48a01ef5e +OkHttp-Sent-Millis: 1549004284133 +OkHttp-Received-Millis: 1549004284743 + +2019-02-01 12:28:04.747 [main] INFO - ********* END *********: +2019-02-01 12:28:04.766 [main] INFO - ********* START ********* +2019-02-01 12:28:04.766 [main] INFO - Authentication Type : http_signature +2019-02-01 12:28:04.766 [main] INFO - Request Type: POST +2019-02-01 12:28:04.767 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/reversals, requestType=POST} +2019-02-01 12:28:04.767 [main] INFO - Digest: SHA-256=EmbUNBQ6YMXxCj2Ldp/J/yZkqbcqi/7w3Qh/cGHWZ54= +2019-02-01 12:28:04.768 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:28:04.768 [main] INFO - Date: Fri, 1 Feb 2019 06:58:02 GMT +2019-02-01 12:28:04.768 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:28:04.769 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="XzUOjRn/GNNpjnEn3YTN0uq28BkwfW6xlwUGo5FnEfs=" +2019-02-01 12:28:04.769 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:28:05.274 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"102.21"},"reason":"testing"}} +2019-02-01 12:28:05.275 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490042042466283603005/reversals} +2019-02-01 12:28:05.276 [main] INFO - Response Code: 400 +2019-02-01 12:28:05.277 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 298ms +v-c-correlation-id: df28a59f-2735-4636-8b3f-ac3347386515 +OkHttp-Sent-Millis: 1549004284771 +OkHttp-Received-Millis: 1549004285272 + +2019-02-01 12:28:05.277 [main] INFO - ********* END *********: +2019-02-01 12:30:16.101 [main] INFO - ********* START ********* +2019-02-01 12:30:16.114 [main] INFO - Authentication Type : http_signature +2019-02-01 12:30:16.116 [main] INFO - Request Type: POST +2019-02-01 12:30:16.117 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-01 12:30:16.118 [main] INFO - Digest: SHA-256=zxGx3jITWtX9QIzslmEjtRBRSY1fB9P+o4iF5tlE4Oo= +2019-02-01 12:30:16.118 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:30:16.119 [main] INFO - Date: Fri, 1 Feb 2019 07:00:15 GMT +2019-02-01 12:30:16.119 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:30:16.119 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="hahNT/xdh7fWZxzUdklboKGZlSTCJp2vzVTsm9n9qA0=" +2019-02-01 12:30:16.120 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:30:17.718 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-01 12:30:17.719 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/credits/} +2019-02-01 12:30:17.720 [main] INFO - Response Code: 201 +2019-02-01 12:30:17.720 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 463 +X-Cnection: close +x-response-time: 348ms +v-c-correlation-id: 33eab707-0b44-4b98-bb4e-019869c0434c +OkHttp-Sent-Millis: 1549004417146 +OkHttp-Received-Millis: 1549004417694 + +2019-02-01 12:30:17.720 [main] INFO - ********* END *********: +2019-02-01 12:30:17.770 [main] INFO - ********* START ********* +2019-02-01 12:30:17.770 [main] INFO - Authentication Type : http_signature +2019-02-01 12:30:17.770 [main] INFO - Request Type: POST +2019-02-01 12:30:17.771 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-01 12:30:17.771 [main] INFO - Digest: SHA-256=uT4XJKlq0xIzVkS9dGPs0tcDwyAp7ONh+358ol986cw= +2019-02-01 12:30:17.771 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:30:17.772 [main] INFO - Date: Fri, 1 Feb 2019 07:00:15 GMT +2019-02-01 12:30:17.772 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:30:17.772 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="NYmDf31NbLj/bvAY+9wzxCsLJbca7N+7Nkk2/EOnyAU=" +2019-02-01 12:30:17.773 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:30:18.311 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-01 12:30:18.312 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/credits/} +2019-02-01 12:30:18.312 [main] INFO - Response Code: 201 +2019-02-01 12:30:18.312 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 463 +X-Cnection: close +x-response-time: 335ms +v-c-correlation-id: e3db4e41-c8d5-4466-bf4e-c6bcf8bb6d0c +OkHttp-Sent-Millis: 1549004417777 +OkHttp-Received-Millis: 1549004418310 + +2019-02-01 12:30:18.313 [main] INFO - ********* END *********: +2019-02-01 12:30:18.346 [main] INFO - ********* START ********* +2019-02-01 12:30:18.346 [main] INFO - Authentication Type : http_signature +2019-02-01 12:30:18.346 [main] INFO - Request Type: POST +2019-02-01 12:30:18.347 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-01 12:30:18.347 [main] INFO - Digest: SHA-256=4d6LdcAephqc3ZxTiCs5DRzvla4hZ9OijS7F7lbH+MA= +2019-02-01 12:30:18.347 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:30:18.348 [main] INFO - Date: Fri, 1 Feb 2019 07:00:15 GMT +2019-02-01 12:30:18.348 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:30:18.348 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="kPwXjn/QjIH7EFJZ/U1lGbgICsaZDNyHJ8HwT88J5JA=" +2019-02-01 12:30:18.349 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:30:18.837 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"GHTR25","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-01 12:30:18.838 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/credits/} +2019-02-01 12:30:18.838 [main] INFO - Response Code: 400 +2019-02-01 12:30:18.839 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 292ms +v-c-correlation-id: de1df3d3-2137-4249-8d86-cb59127235bc +OkHttp-Sent-Millis: 1549004418351 +OkHttp-Received-Millis: 1549004418836 + +2019-02-01 12:30:18.839 [main] INFO - ********* END *********: +2019-02-01 12:34:57.912 [main] INFO - ********* START ********* +2019-02-01 12:34:57.925 [main] INFO - Authentication Type : http_signature +2019-02-01 12:34:57.926 [main] INFO - Request Type: POST +2019-02-01 12:34:57.926 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 12:34:57.926 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-01 12:34:57.926 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:34:57.926 [main] INFO - Date: Fri, 1 Feb 2019 07:04:57 GMT +2019-02-01 12:34:57.926 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:34:57.926 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="V0QZq2U2blOfaGbmeVOR1Dmx7uWlo9uCKH4SVJufyK0=" +2019-02-01 12:34:57.926 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:34:59.630 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 12:34:59.631 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 12:34:59.632 [main] INFO - Response Code: 201 +2019-02-01 12:34:59.632 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 387ms +v-c-correlation-id: b9a7dbca-3df7-4c86-9b91-5fd018b6fa16 +OkHttp-Sent-Millis: 1549004698993 +OkHttp-Received-Millis: 1549004699610 + +2019-02-01 12:34:59.632 [main] INFO - ********* END *********: +2019-02-01 12:34:59.724 [main] INFO - ********* START ********* +2019-02-01 12:34:59.725 [main] INFO - Authentication Type : http_signature +2019-02-01 12:34:59.725 [main] INFO - Request Type: POST +2019-02-01 12:34:59.725 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 12:34:59.726 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-01 12:34:59.726 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:34:59.726 [main] INFO - Date: Fri, 1 Feb 2019 07:04:57 GMT +2019-02-01 12:34:59.727 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:34:59.727 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="F4DDAtgsGWuRWt6ZhhEuO35l8e+lKIHDyob8gG13Mw8=" +2019-02-01 12:34:59.727 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:35:00.310 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 12:35:00.311 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 12:35:00.312 [main] INFO - Response Code: 201 +2019-02-01 12:35:00.312 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 378ms +v-c-correlation-id: 0b7b1c99-6964-4cf1-91f0-c53b1913916d +OkHttp-Sent-Millis: 1549004699730 +OkHttp-Received-Millis: 1549004700308 + +2019-02-01 12:35:00.313 [main] INFO - ********* END *********: +2019-02-01 12:35:00.350 [main] INFO - ********* START ********* +2019-02-01 12:35:00.350 [main] INFO - Authentication Type : http_signature +2019-02-01 12:35:00.350 [main] INFO - Request Type: POST +2019-02-01 12:35:00.351 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 12:35:00.351 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-01 12:35:00.352 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:35:00.352 [main] INFO - Date: Fri, 1 Feb 2019 07:04:57 GMT +2019-02-01 12:35:00.352 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:35:00.353 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="oJxc5RsTdtLD8sgWocwm/1TFMyz9JLNSXWtB2VXPXtA=" +2019-02-01 12:35:00.353 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:35:00.936 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 12:35:00.937 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 12:35:00.938 [main] INFO - Response Code: 400 +2019-02-01 12:35:00.938 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 377ms +v-c-correlation-id: d477023c-03e3-40c7-b8fd-e556774193f7 +OkHttp-Sent-Millis: 1549004700356 +OkHttp-Received-Millis: 1549004700933 + +2019-02-01 12:35:00.939 [main] INFO - ********* END *********: +2019-02-01 12:36:16.130 [main] INFO - ********* START ********* +2019-02-01 12:36:16.142 [main] INFO - Authentication Type : http_signature +2019-02-01 12:36:16.143 [main] INFO - Request Type: POST +2019-02-01 12:36:16.144 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 12:36:16.144 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-01 12:36:16.183 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:36:16.184 [main] INFO - Date: Fri, 1 Feb 2019 07:06:15 GMT +2019-02-01 12:36:16.185 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:36:16.185 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="CB6/XMrLMsy+75CPzkvqIqew/V5uz9DyjjSvyT8BciE=" +2019-02-01 12:36:16.186 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:36:17.761 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 12:36:17.762 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 12:36:17.762 [main] INFO - Response Code: 201 +2019-02-01 12:36:17.763 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 358ms +v-c-correlation-id: dabdf48e-a8e8-4d1f-9bb5-acd2e5a296f8 +OkHttp-Sent-Millis: 1549004777183 +OkHttp-Received-Millis: 1549004777739 + +2019-02-01 12:36:17.763 [main] INFO - ********* END *********: +2019-02-01 12:36:17.875 [main] INFO - ********* START ********* +2019-02-01 12:36:17.876 [main] INFO - Authentication Type : http_signature +2019-02-01 12:36:17.876 [main] INFO - Request Type: POST +2019-02-01 12:36:17.877 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 12:36:17.878 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-01 12:36:17.879 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:36:17.879 [main] INFO - Date: Fri, 1 Feb 2019 07:06:15 GMT +2019-02-01 12:36:17.880 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:36:17.880 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="tQN9U7IgW9zvnReCxBgjY2q+JiYYLyLbX9huvsYxJqE=" +2019-02-01 12:36:17.882 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:36:18.503 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 12:36:18.504 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 12:36:18.504 [main] INFO - Response Code: 201 +2019-02-01 12:36:18.505 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 381ms +v-c-correlation-id: fa505ea8-5946-432c-a280-e9636f2ce2dd +OkHttp-Sent-Millis: 1549004777897 +OkHttp-Received-Millis: 1549004778502 + +2019-02-01 12:36:18.505 [main] INFO - ********* END *********: +2019-02-01 12:36:18.529 [main] INFO - ********* START ********* +2019-02-01 12:36:18.529 [main] INFO - Authentication Type : http_signature +2019-02-01 12:36:18.530 [main] INFO - Request Type: POST +2019-02-01 12:36:18.530 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-01 12:36:18.531 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-01 12:36:18.531 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:36:18.532 [main] INFO - Date: Fri, 1 Feb 2019 07:06:15 GMT +2019-02-01 12:36:18.532 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:36:18.533 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="W1g93kGNbcqsu7JQb8/um0H9IxJoPcqihYP8du6DTUQ=" +2019-02-01 12:36:18.533 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:36:19.025 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-01 12:36:19.026 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-01 12:36:19.027 [main] INFO - Response Code: 400 +2019-02-01 12:36:19.027 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 310ms +v-c-correlation-id: d54f17e9-5958-4625-8dd8-bbe9ca17138a +OkHttp-Sent-Millis: 1549004778537 +OkHttp-Received-Millis: 1549004779022 + +2019-02-01 12:36:19.028 [main] INFO - ********* END *********: +2019-02-01 12:39:04.784 [main] INFO - ********* START ********* +2019-02-01 12:39:04.797 [main] INFO - Authentication Type : http_signature +2019-02-01 12:39:04.797 [main] INFO - Request Type: POST +2019-02-01 12:39:04.798 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490048369806834703002/refunds, requestType=POST} +2019-02-01 12:39:04.798 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-01 12:39:04.840 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:39:04.840 [main] INFO - Date: Fri, 1 Feb 2019 07:09:04 GMT +2019-02-01 12:39:04.840 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:39:04.841 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="oKAGAkTcYa2V1B/sVb4Xes6QOP/Fds/53KUXE/tCWlk=" +2019-02-01 12:39:04.841 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:39:06.327 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-01 12:39:06.327 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/5490048369806834703002/refunds} +2019-02-01 12:39:06.328 [main] INFO - Response Code: 201 +2019-02-01 12:39:06.328 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 361ms +v-c-correlation-id: f57d0e1e-f8f5-4017-899d-e19d2733eb79 +OkHttp-Sent-Millis: 1549004945746 +OkHttp-Received-Millis: 1549004946301 + +2019-02-01 12:39:06.329 [main] INFO - ********* END *********: +2019-02-01 12:39:06.386 [main] INFO - ********* START ********* +2019-02-01 12:39:06.386 [main] INFO - Authentication Type : http_signature +2019-02-01 12:39:06.387 [main] INFO - Request Type: POST +2019-02-01 12:39:06.387 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490048369806834703002/refunds, requestType=POST} +2019-02-01 12:39:06.387 [main] INFO - Digest: SHA-256=wpSGzbtW0BUOhzWs7lfUWgOPwslWGPDCGWzRLNsbsWk= +2019-02-01 12:39:06.388 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:39:06.388 [main] INFO - Date: Fri, 1 Feb 2019 07:09:04 GMT +2019-02-01 12:39:06.388 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:39:06.388 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="xPTZYwWxCV+QGu8rzB2Z/CwZgBI6Qp93sOk7DeCn3c0=" +2019-02-01 12:39:06.389 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:39:06.923 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-01 12:39:06.924 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/5490048369806834703002/refunds} +2019-02-01 12:39:06.924 [main] INFO - Response Code: 201 +2019-02-01 12:39:06.924 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 343ms +v-c-correlation-id: cac1d64a-1fce-4aef-924b-51f3658a714c +OkHttp-Sent-Millis: 1549004946395 +OkHttp-Received-Millis: 1549004946922 + +2019-02-01 12:39:06.925 [main] INFO - ********* END *********: +2019-02-01 12:39:06.943 [main] INFO - ********* START ********* +2019-02-01 12:39:06.944 [main] INFO - Authentication Type : http_signature +2019-02-01 12:39:06.944 [main] INFO - Request Type: POST +2019-02-01 12:39:06.944 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/1234567898745632145698/refunds, requestType=POST} +2019-02-01 12:39:06.945 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-01 12:39:06.945 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:39:06.946 [main] INFO - Date: Fri, 1 Feb 2019 07:09:04 GMT +2019-02-01 12:39:06.946 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:39:06.946 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="jjLBB14eDwnIt8GkfNhWxRck8l3XkUgs4TARUKqotlA=" +2019-02-01 12:39:06.947 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:39:07.414 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-01 12:39:07.415 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/5490048369806834703002/refunds} +2019-02-01 12:39:07.415 [main] INFO - Response Code: 400 +2019-02-01 12:39:07.416 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 289ms +v-c-correlation-id: 4e05b8de-9af8-43b7-9a19-3928a68f7728 +OkHttp-Sent-Millis: 1549004946950 +OkHttp-Received-Millis: 1549004947413 + +2019-02-01 12:39:07.416 [main] INFO - ********* END *********: +2019-02-01 12:44:32.927 [main] INFO - ********* START ********* +2019-02-01 12:44:32.942 [main] INFO - Authentication Type : http_signature +2019-02-01 12:44:32.942 [main] INFO - Request Type: POST +2019-02-01 12:44:32.943 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490042042466283603005/reversals, requestType=POST} +2019-02-01 12:44:32.944 [main] INFO - Digest: SHA-256=+nVNWFcK5wejoED726n/0CNM4MAETj2u1DH6s02VUIk= +2019-02-01 12:44:32.991 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:44:32.991 [main] INFO - Date: Fri, 1 Feb 2019 07:14:32 GMT +2019-02-01 12:44:32.991 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:44:32.992 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="zVMCoMgnRYQUOyutKqbKd+bZB4xtmcQA2/mCF6bNYRE=" +2019-02-01 12:44:32.992 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:44:34.462 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"100.00"},"reason":"testing"}} +2019-02-01 12:44:34.462 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-01T07:14:34Z","status":"INVALID_REQUEST","reason":"TRANSACTION_ALREADY_REVERSED_OR_SETTLED","message":"Decline - The transaction has already been settled or reversed."} +2019-02-01 12:44:34.462 [main] INFO - Response Code: 400 +2019-02-01 12:44:34.463 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 194 +X-Cnection: close +x-response-time: 347ms +v-c-correlation-id: 28eedefd-1811-4e28-9436-531a2b6f9aee +OkHttp-Sent-Millis: 1549005273891 +OkHttp-Received-Millis: 1549005274442 + +2019-02-01 12:44:34.463 [main] INFO - ********* END *********: +2019-02-01 12:44:34.488 [main] INFO - ********* START ********* +2019-02-01 12:44:34.489 [main] INFO - Authentication Type : http_signature +2019-02-01 12:44:34.489 [main] INFO - Request Type: POST +2019-02-01 12:44:34.490 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490042042466283603005/reversals, requestType=POST} +2019-02-01 12:44:34.491 [main] INFO - Digest: SHA-256=pAGeIXg2n5jV3A6rwpZbKaLbAzo/U73Yk5w2Zu0QX4M= +2019-02-01 12:44:34.491 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:44:34.492 [main] INFO - Date: Fri, 1 Feb 2019 07:14:32 GMT +2019-02-01 12:44:34.492 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:44:34.492 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="eUyTZSRBfjEBDwuckxps/uybWRTRHI54pMeP6t1LmQw=" +2019-02-01 12:44:34.493 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:44:34.998 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"200"},"reason":"testing"}} +2019-02-01 12:44:34.999 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490042042466283603005/reversals} +2019-02-01 12:44:34.999 [main] INFO - Response Code: 400 +2019-02-01 12:44:34.999 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 264 +X-Cnection: close +x-response-time: 329ms +v-c-correlation-id: 0aa9794e-4da2-4fd3-bd3d-5b30d132d46e +OkHttp-Sent-Millis: 1549005274497 +OkHttp-Received-Millis: 1549005274996 + +2019-02-01 12:44:35.000 [main] INFO - ********* END *********: +2019-02-01 12:44:35.023 [main] INFO - ********* START ********* +2019-02-01 12:44:35.024 [main] INFO - Authentication Type : http_signature +2019-02-01 12:44:35.024 [main] INFO - Request Type: POST +2019-02-01 12:44:35.024 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/reversals, requestType=POST} +2019-02-01 12:44:35.025 [main] INFO - Digest: SHA-256=EmbUNBQ6YMXxCj2Ldp/J/yZkqbcqi/7w3Qh/cGHWZ54= +2019-02-01 12:44:35.025 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:44:35.025 [main] INFO - Date: Fri, 1 Feb 2019 07:14:32 GMT +2019-02-01 12:44:35.026 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:44:35.026 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="B9KZIx0K6IYROzOvA9LFa0Ti8JC9YlPiczx2445Ee2w=" +2019-02-01 12:44:35.026 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:44:35.528 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"102.21"},"reason":"testing"}} +2019-02-01 12:44:35.529 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490042042466283603005/reversals} +2019-02-01 12:44:35.530 [main] INFO - Response Code: 400 +2019-02-01 12:44:35.530 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 321ms +v-c-correlation-id: ecebee97-6ed1-4643-9261-39e32d308997 +OkHttp-Sent-Millis: 1549005275029 +OkHttp-Received-Millis: 1549005275528 + +2019-02-01 12:44:35.530 [main] INFO - ********* END *********: +2019-02-01 12:46:39.865 [main] INFO - ********* START ********* +2019-02-01 12:46:39.878 [main] INFO - Authentication Type : http_signature +2019-02-01 12:46:39.879 [main] INFO - Request Type: POST +2019-02-01 12:46:39.879 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490048369806834703002/refunds, requestType=POST} +2019-02-01 12:46:39.880 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-01 12:46:39.880 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:46:39.881 [main] INFO - Date: Fri, 1 Feb 2019 07:16:39 GMT +2019-02-01 12:46:39.882 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:46:39.882 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="bH9AVQM7m1eC6iUINc15FK95G+VLxE0Pr29Ig2iex9U=" +2019-02-01 12:46:39.883 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:46:41.485 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-01 12:46:41.486 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/5490048369806834703002/refunds} +2019-02-01 12:46:41.486 [main] INFO - Response Code: 201 +2019-02-01 12:46:41.487 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 357ms +v-c-correlation-id: 140e1872-dcfb-459c-b581-5662453d6f74 +OkHttp-Sent-Millis: 1549005400915 +OkHttp-Received-Millis: 1549005401466 + +2019-02-01 12:46:41.487 [main] INFO - ********* END *********: +2019-02-01 12:46:41.532 [main] INFO - ********* START ********* +2019-02-01 12:46:41.533 [main] INFO - Authentication Type : http_signature +2019-02-01 12:46:41.533 [main] INFO - Request Type: POST +2019-02-01 12:46:41.534 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490048369806834703002/refunds, requestType=POST} +2019-02-01 12:46:41.535 [main] INFO - Digest: SHA-256=wpSGzbtW0BUOhzWs7lfUWgOPwslWGPDCGWzRLNsbsWk= +2019-02-01 12:46:41.535 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:46:41.536 [main] INFO - Date: Fri, 1 Feb 2019 07:16:39 GMT +2019-02-01 12:46:41.536 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:46:41.537 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="8IYfSMaqAZwtQwtxodRoTsDFMKfTaPAO0Bz1oD7MKKM=" +2019-02-01 12:46:41.537 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:46:42.046 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-01 12:46:42.047 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/5490048369806834703002/refunds} +2019-02-01 12:46:42.048 [main] INFO - Response Code: 201 +2019-02-01 12:46:42.048 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 309ms +v-c-correlation-id: 92b9117d-7d67-4fcd-94ad-a1d639df417c +OkHttp-Sent-Millis: 1549005401541 +OkHttp-Received-Millis: 1549005402044 + +2019-02-01 12:46:42.049 [main] INFO - ********* END *********: +2019-02-01 12:46:42.069 [main] INFO - ********* START ********* +2019-02-01 12:46:42.069 [main] INFO - Authentication Type : http_signature +2019-02-01 12:46:42.070 [main] INFO - Request Type: POST +2019-02-01 12:46:42.070 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/1234567898745632145698/refunds, requestType=POST} +2019-02-01 12:46:42.071 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-01 12:46:42.071 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:46:42.071 [main] INFO - Date: Fri, 1 Feb 2019 07:16:39 GMT +2019-02-01 12:46:42.072 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:46:42.072 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="vrRYqaUqgJoQ7dqrHSfsTEKIL/gncTYUE1E6md0xLYw=" +2019-02-01 12:46:42.072 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:46:42.620 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-01 12:46:42.621 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/5490048369806834703002/refunds} +2019-02-01 12:46:42.622 [main] INFO - Response Code: 400 +2019-02-01 12:46:42.623 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 338ms +v-c-correlation-id: 758c5ebd-fbd5-4536-8802-f35dd6ccb6b3 +OkHttp-Sent-Millis: 1549005402075 +OkHttp-Received-Millis: 1549005402618 + +2019-02-01 12:46:42.623 [main] INFO - ********* END *********: +2019-02-01 12:47:29.300 [main] INFO - ********* START ********* +2019-02-01 12:47:29.316 [main] INFO - Authentication Type : http_signature +2019-02-01 12:47:29.317 [main] INFO - Request Type: POST +2019-02-01 12:47:29.318 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490050773946690403006/refunds, requestType=POST} +2019-02-01 12:47:29.318 [main] INFO - Digest: SHA-256=I+1qD0zhOoAiatjE27A6YBxkUKBTRSBoS6VKc2mS8Bc= +2019-02-01 12:47:29.357 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:47:29.358 [main] INFO - Date: Fri, 1 Feb 2019 07:17:28 GMT +2019-02-01 12:47:29.358 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:47:29.359 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="usaaSDXsbm0Zfgtq1QqbVSnx307L2juV3bKFyGXLCGg=" +2019-02-01 12:47:29.359 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:47:30.789 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}}} +2019-02-01 12:47:30.790 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-01T07:17:30Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data"} +2019-02-01 12:47:30.790 [main] INFO - Response Code: 400 +2019-02-01 12:47:30.791 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 170 +X-Cnection: close +x-response-time: 343ms +v-c-correlation-id: bbafddf7-7365-4a10-9f33-4f8e6b4bd946 +OkHttp-Sent-Millis: 1549005450231 +OkHttp-Received-Millis: 1549005450763 + +2019-02-01 12:47:30.791 [main] INFO - ********* END *********: +2019-02-01 12:47:30.814 [main] INFO - ********* START ********* +2019-02-01 12:47:30.814 [main] INFO - Authentication Type : http_signature +2019-02-01 12:47:30.814 [main] INFO - Request Type: POST +2019-02-01 12:47:30.815 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490050773946690403006/refunds, requestType=POST} +2019-02-01 12:47:30.815 [main] INFO - Digest: SHA-256=k43sFGLkconY+lZ+qk3SH20ZjY4hdnzlhh7bkAtP+34= +2019-02-01 12:47:30.815 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:47:30.816 [main] INFO - Date: Fri, 1 Feb 2019 07:17:28 GMT +2019-02-01 12:47:30.816 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:47:30.816 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="EDKH6Ljekv85IKpjqpMZdFxcC7/wegViSQDswNOFPvo=" +2019-02-01 12:47:30.817 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:47:31.383 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}}} +2019-02-01 12:47:31.383 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490050773946690403006/refunds} +2019-02-01 12:47:31.384 [main] INFO - Response Code: 400 +2019-02-01 12:47:31.384 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 170 +X-Cnection: close +x-response-time: 383ms +v-c-correlation-id: b7273dc2-1aa0-4b5c-bdd1-dea0fe7b30fe +OkHttp-Sent-Millis: 1549005450820 +OkHttp-Received-Millis: 1549005451382 + +2019-02-01 12:47:31.384 [main] INFO - ********* END *********: +2019-02-01 12:47:31.403 [main] INFO - ********* START ********* +2019-02-01 12:47:31.403 [main] INFO - Authentication Type : http_signature +2019-02-01 12:47:31.403 [main] INFO - Request Type: POST +2019-02-01 12:47:31.404 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567890123456789123/refunds, requestType=POST} +2019-02-01 12:47:31.404 [main] INFO - Digest: SHA-256=3OkTv9EQccMckYHiNHUzAweMWa91L1CQXTmCvjjQHoU= +2019-02-01 12:47:31.405 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:47:31.405 [main] INFO - Date: Fri, 1 Feb 2019 07:17:28 GMT +2019-02-01 12:47:31.405 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:47:31.406 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="4jtNtprTQhNv1XreEU2oA64Lhsk/kWOUKfzsx3cn1Oc=" +2019-02-01 12:47:31.406 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:48:50.870 [main] INFO - ********* START ********* +2019-02-01 12:48:50.883 [main] INFO - Authentication Type : http_signature +2019-02-01 12:48:50.883 [main] INFO - Request Type: POST +2019-02-01 12:48:50.884 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490054831146935303004/refunds, requestType=POST} +2019-02-01 12:48:50.884 [main] INFO - Digest: SHA-256=I+1qD0zhOoAiatjE27A6YBxkUKBTRSBoS6VKc2mS8Bc= +2019-02-01 12:48:50.923 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:48:50.923 [main] INFO - Date: Fri, 1 Feb 2019 07:18:50 GMT +2019-02-01 12:48:50.923 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:48:50.923 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="wx6k60kAfK5pIgiEMXXedy7zqLcdbe4H3TEA+CLkuAo=" +2019-02-01 12:48:50.923 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:48:52.425 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}}} +2019-02-01 12:48:52.425 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-01T07:18:52Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data"} +2019-02-01 12:48:52.426 [main] INFO - Response Code: 400 +2019-02-01 12:48:52.426 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 170 +X-Cnection: close +x-response-time: 339ms +v-c-correlation-id: 75b9dd32-051c-4638-956e-8a9ff849298e +OkHttp-Sent-Millis: 1549005531861 +OkHttp-Received-Millis: 1549005532403 + +2019-02-01 12:48:52.426 [main] INFO - ********* END *********: +2019-02-01 12:48:52.449 [main] INFO - ********* START ********* +2019-02-01 12:48:52.449 [main] INFO - Authentication Type : http_signature +2019-02-01 12:48:52.450 [main] INFO - Request Type: POST +2019-02-01 12:48:52.450 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490054831146935303004/refunds, requestType=POST} +2019-02-01 12:48:52.450 [main] INFO - Digest: SHA-256=k43sFGLkconY+lZ+qk3SH20ZjY4hdnzlhh7bkAtP+34= +2019-02-01 12:48:52.451 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:48:52.451 [main] INFO - Date: Fri, 1 Feb 2019 07:18:50 GMT +2019-02-01 12:48:52.451 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:48:52.452 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="zAoI1TAkB5D179AsetRTUi1mdQzsOMbb+GLfCdJXSKc=" +2019-02-01 12:48:52.452 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:48:53.316 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}}} +2019-02-01 12:48:53.316 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490054831146935303004/refunds} +2019-02-01 12:48:53.317 [main] INFO - Response Code: 400 +2019-02-01 12:48:53.317 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 170 +X-Cnection: close +x-response-time: 660ms +v-c-correlation-id: bd3c2473-fa8a-4a81-892f-f25c18eef3dd +OkHttp-Sent-Millis: 1549005532457 +OkHttp-Received-Millis: 1549005533315 + +2019-02-01 12:48:53.318 [main] INFO - ********* END *********: +2019-02-01 12:48:53.336 [main] INFO - ********* START ********* +2019-02-01 12:48:53.336 [main] INFO - Authentication Type : http_signature +2019-02-01 12:48:53.336 [main] INFO - Request Type: POST +2019-02-01 12:48:53.337 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567890123456789123/refunds, requestType=POST} +2019-02-01 12:48:53.337 [main] INFO - Digest: SHA-256=3OkTv9EQccMckYHiNHUzAweMWa91L1CQXTmCvjjQHoU= +2019-02-01 12:48:53.337 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:48:53.338 [main] INFO - Date: Fri, 1 Feb 2019 07:18:50 GMT +2019-02-01 12:48:53.338 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:48:53.338 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="IU9BJBnKG05PsQHbLwlpdF8bQe4z2a4X/qRPaq3GQvs=" +2019-02-01 12:48:53.339 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:49:38.277 [main] INFO - ********* START ********* +2019-02-01 12:49:38.291 [main] INFO - Authentication Type : http_signature +2019-02-01 12:49:38.291 [main] INFO - Request Type: POST +2019-02-01 12:49:38.292 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490054831146935303004/refunds, requestType=POST} +2019-02-01 12:49:38.292 [main] INFO - Digest: SHA-256=I+1qD0zhOoAiatjE27A6YBxkUKBTRSBoS6VKc2mS8Bc= +2019-02-01 12:49:38.330 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:49:38.331 [main] INFO - Date: Fri, 1 Feb 2019 07:19:37 GMT +2019-02-01 12:49:38.332 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:49:38.332 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="J1mJlo24Mc9/iAc+hn59IUVRBMYHRP9keuZ95CR9tRE=" +2019-02-01 12:49:38.333 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:49:39.944 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}}} +2019-02-01 12:49:39.944 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-01T07:19:39Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data"} +2019-02-01 12:49:39.944 [main] INFO - Response Code: 400 +2019-02-01 12:49:39.946 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 170 +X-Cnection: close +x-response-time: 381ms +v-c-correlation-id: f468af5f-e1d6-4590-b434-1e70e20e96af +OkHttp-Sent-Millis: 1549005579360 +OkHttp-Received-Millis: 1549005579926 + +2019-02-01 12:49:39.946 [main] INFO - ********* END *********: +2019-02-01 12:49:39.973 [main] INFO - ********* START ********* +2019-02-01 12:49:39.974 [main] INFO - Authentication Type : http_signature +2019-02-01 12:49:39.974 [main] INFO - Request Type: POST +2019-02-01 12:49:39.974 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490054831146935303004/refunds, requestType=POST} +2019-02-01 12:49:39.975 [main] INFO - Digest: SHA-256=k43sFGLkconY+lZ+qk3SH20ZjY4hdnzlhh7bkAtP+34= +2019-02-01 12:49:39.975 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:49:39.976 [main] INFO - Date: Fri, 1 Feb 2019 07:19:37 GMT +2019-02-01 12:49:39.976 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:49:39.976 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="hIBQyCuueWjLLA6842yMMHnOQq3r3n0lKmUxARDy/Zo=" +2019-02-01 12:49:39.976 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:49:40.749 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}}} +2019-02-01 12:49:40.749 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490054831146935303004/refunds} +2019-02-01 12:49:40.750 [main] INFO - Response Code: 400 +2019-02-01 12:49:40.750 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 170 +X-Cnection: close +x-response-time: 584ms +v-c-correlation-id: 71cce6ef-3143-4235-8d40-411f04d6c63f +OkHttp-Sent-Millis: 1549005579981 +OkHttp-Received-Millis: 1549005580748 + +2019-02-01 12:49:40.751 [main] INFO - ********* END *********: +2019-02-01 12:49:40.769 [main] INFO - ********* START ********* +2019-02-01 12:49:40.770 [main] INFO - Authentication Type : http_signature +2019-02-01 12:49:40.770 [main] INFO - Request Type: POST +2019-02-01 12:49:40.771 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567890123456789123/refunds, requestType=POST} +2019-02-01 12:49:40.771 [main] INFO - Digest: SHA-256=3OkTv9EQccMckYHiNHUzAweMWa91L1CQXTmCvjjQHoU= +2019-02-01 12:49:40.771 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:49:40.772 [main] INFO - Date: Fri, 1 Feb 2019 07:19:37 GMT +2019-02-01 12:49:40.772 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:49:40.772 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="0ztfhZScQ11I8psZH3PEN5g+7gMj9ludptDIQGx4H9o=" +2019-02-01 12:49:40.773 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:51:04.757 [main] INFO - ********* START ********* +2019-02-01 12:51:04.775 [main] INFO - Authentication Type : http_signature +2019-02-01 12:51:04.776 [main] INFO - Request Type: POST +2019-02-01 12:51:04.777 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490056228246693603006/refunds, requestType=POST} +2019-02-01 12:51:04.778 [main] INFO - Digest: SHA-256=I+1qD0zhOoAiatjE27A6YBxkUKBTRSBoS6VKc2mS8Bc= +2019-02-01 12:51:04.826 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:51:04.826 [main] INFO - Date: Fri, 1 Feb 2019 07:21:04 GMT +2019-02-01 12:51:04.827 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:51:04.827 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="WfqGi/BafQ5Y/FEBx8OWWqDi5Xe8mvhXPUVVKo9WxHE=" +2019-02-01 12:51:04.828 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:51:06.543 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}}} +2019-02-01 12:51:06.543 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-01T07:21:06Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data"} +2019-02-01 12:51:06.544 [main] INFO - Response Code: 400 +2019-02-01 12:51:06.544 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 170 +X-Cnection: close +x-response-time: 350ms +v-c-correlation-id: df27fd99-549c-45f5-880e-8fde67d29826 +OkHttp-Sent-Millis: 1549005665965 +OkHttp-Received-Millis: 1549005666522 + +2019-02-01 12:51:06.545 [main] INFO - ********* END *********: +2019-02-01 12:51:06.568 [main] INFO - ********* START ********* +2019-02-01 12:51:06.569 [main] INFO - Authentication Type : http_signature +2019-02-01 12:51:06.569 [main] INFO - Request Type: POST +2019-02-01 12:51:06.569 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490056228246693603006/refunds, requestType=POST} +2019-02-01 12:51:06.570 [main] INFO - Digest: SHA-256=k43sFGLkconY+lZ+qk3SH20ZjY4hdnzlhh7bkAtP+34= +2019-02-01 12:51:06.570 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:51:06.570 [main] INFO - Date: Fri, 1 Feb 2019 07:21:04 GMT +2019-02-01 12:51:06.571 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:51:06.571 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="tSSJjgFiZKL/wUSqBIlO8B31NKgoOD9LKi7IxbaOXkY=" +2019-02-01 12:51:06.571 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 12:51:07.111 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}}} +2019-02-01 12:51:07.112 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490056228246693603006/refunds} +2019-02-01 12:51:07.113 [main] INFO - Response Code: 400 +2019-02-01 12:51:07.114 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 170 +X-Cnection: close +x-response-time: 345ms +v-c-correlation-id: e565f26c-6c5e-4c24-9e62-4811877c2fc9 +OkHttp-Sent-Millis: 1549005666576 +OkHttp-Received-Millis: 1549005667111 + +2019-02-01 12:51:07.115 [main] INFO - ********* END *********: +2019-02-01 12:51:07.134 [main] INFO - ********* START ********* +2019-02-01 12:51:07.135 [main] INFO - Authentication Type : http_signature +2019-02-01 12:51:07.135 [main] INFO - Request Type: POST +2019-02-01 12:51:07.135 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567890123456789123/refunds, requestType=POST} +2019-02-01 12:51:07.136 [main] INFO - Digest: SHA-256=3OkTv9EQccMckYHiNHUzAweMWa91L1CQXTmCvjjQHoU= +2019-02-01 12:51:07.137 [main] INFO - v-c-merchant-id: testrest +2019-02-01 12:51:07.137 [main] INFO - Date: Fri, 1 Feb 2019 07:21:04 GMT +2019-02-01 12:51:07.137 [main] INFO - Host: apitest.cybersource.com +2019-02-01 12:51:07.139 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Wdr2u5li/RauLdBkbs7TQFe/+h/a8Ls5zNB+uFJtxD4=" +2019-02-01 12:51:07.139 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 16:00:55.094 [main] INFO - ********* START ********* +2019-02-01 16:00:55.110 [main] INFO - Authentication Type : http_signature +2019-02-01 16:00:55.110 [main] INFO - Request Type: POST +2019-02-01 16:00:55.111 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490170100516352303005/voids, requestType=POST} +2019-02-01 16:00:55.111 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-01 16:00:55.154 [main] INFO - v-c-merchant-id: testrest +2019-02-01 16:00:55.155 [main] INFO - Date: Fri, 1 Feb 2019 10:30:54 GMT +2019-02-01 16:00:55.155 [main] INFO - Host: apitest.cybersource.com +2019-02-01 16:00:55.155 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ip4Zh5ZSwQRgxH11o29Uqnjkt7jjbrALGcGG8t2MToM=" +2019-02-01 16:00:55.156 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 16:00:56.811 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture_void"}} +2019-02-01 16:00:56.812 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/5490170100516352303005/voids} +2019-02-01 16:00:56.812 [main] INFO - Response Code: 201 +2019-02-01 16:00:56.812 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 344 +X-Cnection: close +x-response-time: 482ms +v-c-correlation-id: aaafbd71-27de-44c6-8756-8c59dd750257 +OkHttp-Sent-Millis: 1549017056108 +OkHttp-Received-Millis: 1549017056791 + +2019-02-01 16:00:56.813 [main] INFO - ********* END *********: +2019-02-01 16:00:56.857 [main] INFO - ********* START ********* +2019-02-01 16:00:56.857 [main] INFO - Authentication Type : http_signature +2019-02-01 16:00:56.858 [main] INFO - Request Type: POST +2019-02-01 16:00:56.858 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/8964213433126812344644/voids, requestType=POST} +2019-02-01 16:00:56.859 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-01 16:00:56.859 [main] INFO - v-c-merchant-id: testrest +2019-02-01 16:00:56.859 [main] INFO - Date: Fri, 1 Feb 2019 10:30:54 GMT +2019-02-01 16:00:56.860 [main] INFO - Host: apitest.cybersource.com +2019-02-01 16:00:56.860 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Rp3idxZ1GCtGrl4RAsy7Dceltv8JMBLgsLC4yiSOrNg=" +2019-02-01 16:00:56.860 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 16:02:55.838 [main] INFO - ********* START ********* +2019-02-01 16:02:55.851 [main] INFO - Authentication Type : http_signature +2019-02-01 16:02:55.852 [main] INFO - Request Type: POST +2019-02-01 16:02:55.853 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490170100516352303005/voids, requestType=POST} +2019-02-01 16:02:55.853 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-01 16:02:55.892 [main] INFO - v-c-merchant-id: testrest +2019-02-01 16:02:55.892 [main] INFO - Date: Fri, 1 Feb 2019 10:32:55 GMT +2019-02-01 16:02:55.892 [main] INFO - Host: apitest.cybersource.com +2019-02-01 16:02:55.893 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="uDiNWJZnYLTQ+iNDeRc8QTWKwZwSNFYOppnSF7qZdlM=" +2019-02-01 16:02:55.893 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 16:03:00.092 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture_void"}} +2019-02-01 16:03:00.093 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-01T10:32:59Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-01 16:03:00.093 [main] INFO - Response Code: 400 +2019-02-01 16:03:00.094 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 322ms +v-c-correlation-id: 0dfb30f3-d398-4456-9af7-601e2188bd99 +OkHttp-Sent-Millis: 1549017179556 +OkHttp-Received-Millis: 1549017180065 + +2019-02-01 16:03:00.095 [main] INFO - ********* END *********: +2019-02-01 16:03:00.136 [main] INFO - ********* START ********* +2019-02-01 16:03:00.137 [main] INFO - Authentication Type : http_signature +2019-02-01 16:03:00.137 [main] INFO - Request Type: POST +2019-02-01 16:03:00.138 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/8964213433126812344644/voids, requestType=POST} +2019-02-01 16:03:00.138 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-01 16:03:00.139 [main] INFO - v-c-merchant-id: testrest +2019-02-01 16:03:00.139 [main] INFO - Date: Fri, 1 Feb 2019 10:32:55 GMT +2019-02-01 16:03:00.139 [main] INFO - Host: apitest.cybersource.com +2019-02-01 16:03:00.140 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="SmjdHN0RTi9n+kWrgQ+7PR8XhaLxSsbdVtRMeX8UxO8=" +2019-02-01 16:03:00.140 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 16:03:40.897 [main] INFO - ********* START ********* +2019-02-01 16:03:40.909 [main] INFO - Authentication Type : http_signature +2019-02-01 16:03:40.909 [main] INFO - Request Type: POST +2019-02-01 16:03:40.913 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490170100516352303005/voids, requestType=POST} +2019-02-01 16:03:40.913 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-01 16:03:40.955 [main] INFO - v-c-merchant-id: testrest +2019-02-01 16:03:40.956 [main] INFO - Date: Fri, 1 Feb 2019 10:33:40 GMT +2019-02-01 16:03:40.956 [main] INFO - Host: apitest.cybersource.com +2019-02-01 16:03:40.957 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="GsGOGEWlGBQeroHt3g/2NjrnzWvt2XaFz7rt8FWAer0=" +2019-02-01 16:03:40.957 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 16:05:04.738 [main] INFO - ********* START ********* +2019-02-01 16:05:04.752 [main] INFO - Authentication Type : http_signature +2019-02-01 16:05:04.753 [main] INFO - Request Type: POST +2019-02-01 16:05:04.754 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490170100516352303005/voids, requestType=POST} +2019-02-01 16:05:04.754 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-01 16:05:04.796 [main] INFO - v-c-merchant-id: testrest +2019-02-01 16:05:04.796 [main] INFO - Date: Fri, 1 Feb 2019 10:35:04 GMT +2019-02-01 16:05:04.797 [main] INFO - Host: apitest.cybersource.com +2019-02-01 16:05:04.797 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="8M6me0LCf7oORTE129lf0BoRIPx7b5T/ZXryqxJJCEI=" +2019-02-01 16:05:04.797 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 16:05:06.314 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture_void"}} +2019-02-01 16:05:06.314 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-01T10:35:06Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-01 16:05:06.317 [main] INFO - Response Code: 400 +2019-02-01 16:05:06.317 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 353ms +v-c-correlation-id: 25194dc6-b7ec-4796-a352-ab6909d77fc8 +OkHttp-Sent-Millis: 1549017305713 +OkHttp-Received-Millis: 1549017306293 + +2019-02-01 16:05:06.317 [main] INFO - ********* END *********: +2019-02-01 16:05:06.355 [main] INFO - ********* START ********* +2019-02-01 16:05:06.356 [main] INFO - Authentication Type : http_signature +2019-02-01 16:05:06.357 [main] INFO - Request Type: POST +2019-02-01 16:05:06.358 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/8964213433126812344644/voids, requestType=POST} +2019-02-01 16:05:06.358 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-01 16:05:06.359 [main] INFO - v-c-merchant-id: testrest +2019-02-01 16:05:06.359 [main] INFO - Date: Fri, 1 Feb 2019 10:35:04 GMT +2019-02-01 16:05:06.359 [main] INFO - Host: apitest.cybersource.com +2019-02-01 16:05:06.360 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="b0FmRNt77kEGc3ivlvH2X3YLhMhUPlq0IeNQ7cxw/FA=" +2019-02-01 16:05:06.360 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 16:06:13.805 [main] INFO - ********* START ********* +2019-02-01 16:06:13.819 [main] INFO - Authentication Type : http_signature +2019-02-01 16:06:13.820 [main] INFO - Request Type: POST +2019-02-01 16:06:13.821 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490173455496897903002/voids, requestType=POST} +2019-02-01 16:06:13.822 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-01 16:06:13.822 [main] INFO - v-c-merchant-id: testrest +2019-02-01 16:06:13.822 [main] INFO - Date: Fri, 1 Feb 2019 10:36:13 GMT +2019-02-01 16:06:13.823 [main] INFO - Host: apitest.cybersource.com +2019-02-01 16:06:13.823 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="L6W4+Bjt8H2zlCi1Y4HIPXN8792/9V1XxX87Wr2yON4=" +2019-02-01 16:06:13.824 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 16:06:15.321 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture_void"}} +2019-02-01 16:06:15.321 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/5490173455496897903002/voids} +2019-02-01 16:06:15.321 [main] INFO - Response Code: 201 +2019-02-01 16:06:15.322 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 344 +X-Cnection: close +x-response-time: 363ms +v-c-correlation-id: db88c84a-0c8f-476d-aa13-4e10ee708348 +OkHttp-Sent-Millis: 1549017374701 +OkHttp-Received-Millis: 1549017375301 + +2019-02-01 16:06:15.322 [main] INFO - ********* END *********: +2019-02-01 16:06:15.360 [main] INFO - ********* START ********* +2019-02-01 16:06:15.360 [main] INFO - Authentication Type : http_signature +2019-02-01 16:06:15.360 [main] INFO - Request Type: POST +2019-02-01 16:06:15.361 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/8964213433126812344644/voids, requestType=POST} +2019-02-01 16:06:15.361 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-01 16:06:15.362 [main] INFO - v-c-merchant-id: testrest +2019-02-01 16:06:15.362 [main] INFO - Date: Fri, 1 Feb 2019 10:36:13 GMT +2019-02-01 16:06:15.363 [main] INFO - Host: apitest.cybersource.com +2019-02-01 16:06:15.363 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="YDh6sjfBP+x1KIqcONaD9OAil3dv4LacRiZICCJuVB8=" +2019-02-01 16:06:15.364 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 16:39:11.902 [main] INFO - ********* START ********* +2019-02-01 16:39:11.917 [main] INFO - Authentication Type : http_signature +2019-02-01 16:39:11.918 [main] INFO - Request Type: POST +2019-02-01 16:39:11.919 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/5486532795076322704004/voids, requestType=POST} +2019-02-01 16:39:11.919 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-01 16:39:11.957 [main] INFO - v-c-merchant-id: testrest +2019-02-01 16:39:11.958 [main] INFO - Date: Fri, 1 Feb 2019 11:09:11 GMT +2019-02-01 16:39:11.958 [main] INFO - Host: apitest.cybersource.com +2019-02-01 16:39:11.959 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="cQCFOgJlYc98LXPLcib4eH2MYQs5lTns62A+FyQzUJU=" +2019-02-01 16:39:11.959 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 16:39:13.584 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credit_void"}} +2019-02-01 16:39:13.584 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-01T11:09:13Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-01 16:39:13.584 [main] INFO - Response Code: 400 +2019-02-01 16:39:13.592 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 413ms +v-c-correlation-id: 22204586-7ce4-4689-a755-2db64bd19e20 +OkHttp-Sent-Millis: 1549019352907 +OkHttp-Received-Millis: 1549019353572 + +2019-02-01 16:39:13.592 [main] INFO - ********* END *********: +2019-02-01 16:39:13.618 [main] INFO - ********* START ********* +2019-02-01 16:39:13.619 [main] INFO - Authentication Type : http_signature +2019-02-01 16:39:13.619 [main] INFO - Request Type: POST +2019-02-01 16:39:13.619 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/8964213433846812344644/voids, requestType=POST} +2019-02-01 16:39:13.620 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-01 16:39:13.620 [main] INFO - v-c-merchant-id: testrest +2019-02-01 16:39:13.620 [main] INFO - Date: Fri, 1 Feb 2019 11:09:11 GMT +2019-02-01 16:39:13.621 [main] INFO - Host: apitest.cybersource.com +2019-02-01 16:39:13.621 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="VyjZq0hOmremHWnO8hDUDci1lieMPvgqtNNIlA96+vw=" +2019-02-01 16:39:13.621 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 16:41:08.857 [main] INFO - ********* START ********* +2019-02-01 16:41:08.869 [main] INFO - Authentication Type : http_signature +2019-02-01 16:41:08.870 [main] INFO - Request Type: POST +2019-02-01 16:41:08.871 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/5486532795076322704004/voids, requestType=POST} +2019-02-01 16:41:08.871 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-01 16:41:08.909 [main] INFO - v-c-merchant-id: testrest +2019-02-01 16:41:08.909 [main] INFO - Date: Fri, 1 Feb 2019 11:11:08 GMT +2019-02-01 16:41:08.910 [main] INFO - Host: apitest.cybersource.com +2019-02-01 16:41:08.910 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="9hY8s8Agea3O7RF7mjBx72NqtiDnlKBLayp9/1nF61g=" +2019-02-01 16:41:08.910 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 16:41:10.447 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credit_void"}} +2019-02-01 16:41:10.448 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-01T11:11:10Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-01 16:41:10.448 [main] INFO - Response Code: 400 +2019-02-01 16:41:10.449 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 325ms +v-c-correlation-id: 71529925-4aaf-44c1-bea7-104a3b38bc91 +OkHttp-Sent-Millis: 1549019469859 +OkHttp-Received-Millis: 1549019470425 + +2019-02-01 16:41:10.449 [main] INFO - ********* END *********: +2019-02-01 16:41:10.481 [main] INFO - ********* START ********* +2019-02-01 16:41:10.482 [main] INFO - Authentication Type : http_signature +2019-02-01 16:41:10.482 [main] INFO - Request Type: POST +2019-02-01 16:41:10.483 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/8964213433846812344644/voids, requestType=POST} +2019-02-01 16:41:10.483 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-01 16:41:10.483 [main] INFO - v-c-merchant-id: testrest +2019-02-01 16:41:10.484 [main] INFO - Date: Fri, 1 Feb 2019 11:11:08 GMT +2019-02-01 16:41:10.484 [main] INFO - Host: apitest.cybersource.com +2019-02-01 16:41:10.485 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="qrsmHK38pGCPJuE4LPR4+Y8WKvczhMPaD+J6ykTUDyw=" +2019-02-01 16:41:10.486 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-01 16:41:10.612 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credit_void"}} +2019-02-01 16:41:10.612 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/credits/5486532795076322704004/voids} +2019-02-01 16:41:10.613 [main] INFO - Response Code: 400 +2019-02-01 16:41:10.613 [main] INFO - Response Headers: v-c-correlation-id: 67799a9b-5347-4428-8527-e54ba3b0e2c0 +Content-Type: application/json +Content-Length: 142 +OkHttp-Sent-Millis: 1549019470490 +OkHttp-Received-Millis: 1549019470611 + +2019-02-01 16:41:10.614 [main] INFO - ********* END *********: +2019-02-04 11:47:47.211 [main] INFO - ********* START ********* +2019-02-04 11:47:47.230 [main] INFO - Authentication Type : http_signature +2019-02-04 11:47:47.230 [main] INFO - Request Type: POST +2019-02-04 11:47:47.231 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/5486532795076322704004/voids, requestType=POST} +2019-02-04 11:47:47.232 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-04 11:47:47.233 [main] INFO - v-c-merchant-id: testrest +2019-02-04 11:47:47.233 [main] INFO - Date: Mon, 4 Feb 2019 06:17:46 GMT +2019-02-04 11:47:47.234 [main] INFO - Host: apitest.cybersource.com +2019-02-04 11:47:47.234 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="VPrk2t7BdZMSeInHD1kbSFcomhFYiQUloj9Oy8u0IMk=" +2019-02-04 11:47:47.235 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 11:47:49.101 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credit_void"}} +2019-02-04 11:47:49.101 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-04T06:17:48Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-04 11:47:49.102 [main] INFO - Response Code: 400 +2019-02-04 11:47:49.102 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 246ms +v-c-correlation-id: 7e4f6b27-8446-4c0a-9a19-4773a6fffd08 +OkHttp-Sent-Millis: 1549261068555 +OkHttp-Received-Millis: 1549261069082 + +2019-02-04 11:47:49.102 [main] INFO - ********* END *********: +2019-02-04 11:47:49.123 [main] INFO - ********* START ********* +2019-02-04 11:47:49.124 [main] INFO - Authentication Type : http_signature +2019-02-04 11:47:49.124 [main] INFO - Request Type: POST +2019-02-04 11:47:49.124 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/8964213433846812344644/voids, requestType=POST} +2019-02-04 11:47:49.125 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-04 11:47:49.125 [main] INFO - v-c-merchant-id: testrest +2019-02-04 11:47:49.125 [main] INFO - Date: Mon, 4 Feb 2019 06:17:46 GMT +2019-02-04 11:47:49.126 [main] INFO - Host: apitest.cybersource.com +2019-02-04 11:47:49.126 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="qIx4vl0buwE5qg4vAApvym1V7Ia0dZw4pZaYzAcjVDo=" +2019-02-04 11:47:49.126 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 11:48:18.927 [main] INFO - ********* START ********* +2019-02-04 11:48:18.939 [main] INFO - Authentication Type : http_signature +2019-02-04 11:48:18.939 [main] INFO - Request Type: POST +2019-02-04 11:48:18.940 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/5486532795076322704004/voids, requestType=POST} +2019-02-04 11:48:18.941 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-04 11:48:18.979 [main] INFO - v-c-merchant-id: testrest +2019-02-04 11:48:18.980 [main] INFO - Date: Mon, 4 Feb 2019 06:18:18 GMT +2019-02-04 11:48:18.980 [main] INFO - Host: apitest.cybersource.com +2019-02-04 11:48:18.980 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="6kmLTviZ18FnootJO49prGPGrBi6N+ZYhp3Bu9GobYc=" +2019-02-04 11:48:18.981 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 11:48:20.581 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credit_void"}} +2019-02-04 11:48:20.581 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-04T06:18:20Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-04 11:48:20.582 [main] INFO - Response Code: 400 +2019-02-04 11:48:20.582 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 198ms +v-c-correlation-id: 1882925b-9c79-452d-92a8-0d720ad1090d +OkHttp-Sent-Millis: 1549261100123 +OkHttp-Received-Millis: 1549261100564 + +2019-02-04 11:48:20.583 [main] INFO - ********* END *********: +2019-02-04 11:48:20.605 [main] INFO - ********* START ********* +2019-02-04 11:48:20.605 [main] INFO - Authentication Type : http_signature +2019-02-04 11:48:20.606 [main] INFO - Request Type: POST +2019-02-04 11:48:20.606 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/8964213433846812344644/voids, requestType=POST} +2019-02-04 11:48:20.607 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-04 11:48:20.607 [main] INFO - v-c-merchant-id: testrest +2019-02-04 11:48:20.607 [main] INFO - Date: Mon, 4 Feb 2019 06:18:18 GMT +2019-02-04 11:48:20.607 [main] INFO - Host: apitest.cybersource.com +2019-02-04 11:48:20.608 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="x7r1RAXHFsLvQFz9osdyuYxPNl26orMwx/gC668uV5M=" +2019-02-04 11:48:20.608 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 11:53:48.828 [main] INFO - ********* START ********* +2019-02-04 11:53:48.849 [main] INFO - Authentication Type : http_signature +2019-02-04 11:53:48.850 [main] INFO - Request Type: POST +2019-02-04 11:53:48.851 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/5492613606146059404002/voids, requestType=POST} +2019-02-04 11:53:48.852 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-04 11:53:48.852 [main] INFO - v-c-merchant-id: testrest +2019-02-04 11:53:48.853 [main] INFO - Date: Mon, 4 Feb 2019 06:23:48 GMT +2019-02-04 11:53:48.853 [main] INFO - Host: apitest.cybersource.com +2019-02-04 11:53:48.855 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="QDE23MGrQHiJw8RV0UQqIJGPXqVqRi8z89vIjNP31sE=" +2019-02-04 11:53:48.855 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 11:53:50.528 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credit_void"}} +2019-02-04 11:53:50.529 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/credits/5492613606146059404002/voids} +2019-02-04 11:53:50.529 [main] INFO - Response Code: 201 +2019-02-04 11:53:50.529 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 343 +X-Cnection: close +x-response-time: 186ms +v-c-correlation-id: f0bcdb5b-1eaa-4058-b7d2-f32841baca5e +OkHttp-Sent-Millis: 1549261430082 +OkHttp-Received-Millis: 1549261430510 + +2019-02-04 11:53:50.530 [main] INFO - ********* END *********: +2019-02-04 11:53:50.572 [main] INFO - ********* START ********* +2019-02-04 11:53:50.572 [main] INFO - Authentication Type : http_signature +2019-02-04 11:53:50.572 [main] INFO - Request Type: POST +2019-02-04 11:53:50.572 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/8964213433846812344644/voids, requestType=POST} +2019-02-04 11:53:50.575 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-04 11:53:50.575 [main] INFO - v-c-merchant-id: testrest +2019-02-04 11:53:50.575 [main] INFO - Date: Mon, 4 Feb 2019 06:23:48 GMT +2019-02-04 11:53:50.576 [main] INFO - Host: apitest.cybersource.com +2019-02-04 11:53:50.576 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ybHcgHEPV8vmkH2q+MmlH40auMDqK4/V7fuxFV8tfBc=" +2019-02-04 11:53:50.576 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 11:56:53.981 [main] INFO - ********* START ********* +2019-02-04 11:56:53.993 [main] INFO - Authentication Type : http_signature +2019-02-04 11:56:53.993 [main] INFO - Request Type: POST +2019-02-04 11:56:53.994 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/5492615205756316904001/voids, requestType=POST} +2019-02-04 11:56:53.995 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-04 11:56:54.031 [main] INFO - v-c-merchant-id: testrest +2019-02-04 11:56:54.032 [main] INFO - Date: Mon, 4 Feb 2019 06:26:53 GMT +2019-02-04 11:56:54.032 [main] INFO - Host: apitest.cybersource.com +2019-02-04 11:56:54.032 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="fXS4XIpXJ/tX4gy9bHDVjE5LnIgwSqQD8zZQNBfxbeU=" +2019-02-04 11:56:54.033 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 11:57:08.436 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credit_void"}} +2019-02-04 11:57:08.436 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/credits/5492615205756316904001/voids} +2019-02-04 11:57:08.437 [main] INFO - Response Code: 201 +2019-02-04 11:57:08.437 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 343 +X-Cnection: close +x-response-time: 187ms +v-c-correlation-id: b0539b9d-ebde-4ae5-814d-4673da313660 +OkHttp-Sent-Millis: 1549261627996 +OkHttp-Received-Millis: 1549261628403 + +2019-02-04 11:57:08.437 [main] INFO - ********* END *********: +2019-02-04 11:57:08.479 [main] INFO - ********* START ********* +2019-02-04 11:57:08.480 [main] INFO - Authentication Type : http_signature +2019-02-04 11:57:08.480 [main] INFO - Request Type: POST +2019-02-04 11:57:08.480 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/8964213433846812344644/voids, requestType=POST} +2019-02-04 11:57:08.481 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-04 11:57:08.481 [main] INFO - v-c-merchant-id: testrest +2019-02-04 11:57:08.481 [main] INFO - Date: Mon, 4 Feb 2019 06:26:53 GMT +2019-02-04 11:57:08.482 [main] INFO - Host: apitest.cybersource.com +2019-02-04 11:57:08.482 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="kX/KihiNV0puBoZScSRpexydT6McZ5vd8zdPiyVXx9Q=" +2019-02-04 11:57:08.482 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 11:59:46.998 [main] INFO - ********* START ********* +2019-02-04 11:59:47.011 [main] INFO - Authentication Type : http_signature +2019-02-04 11:59:47.012 [main] INFO - Request Type: POST +2019-02-04 11:59:47.013 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/5492617586786422504006/voids, requestType=POST} +2019-02-04 11:59:47.013 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-04 11:59:47.061 [main] INFO - v-c-merchant-id: testrest +2019-02-04 11:59:47.062 [main] INFO - Date: Mon, 4 Feb 2019 06:29:46 GMT +2019-02-04 11:59:47.062 [main] INFO - Host: apitest.cybersource.com +2019-02-04 11:59:47.063 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="8eVPD44yhcfqP6N89/w6cBa4hV8M/CpxrH7dfOcgPVc=" +2019-02-04 11:59:47.063 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 11:59:48.853 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credit_void"}} +2019-02-04 11:59:48.854 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/credits/5492617586786422504006/voids} +2019-02-04 11:59:48.854 [main] INFO - Response Code: 201 +2019-02-04 11:59:48.854 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 343 +X-Cnection: close +x-response-time: 324ms +v-c-correlation-id: dab76727-7e00-426b-aaa5-225fc82eeb9e +OkHttp-Sent-Millis: 1549261788255 +OkHttp-Received-Millis: 1549261788837 + +2019-02-04 11:59:48.855 [main] INFO - ********* END *********: +2019-02-04 11:59:48.897 [main] INFO - ********* START ********* +2019-02-04 11:59:48.897 [main] INFO - Authentication Type : http_signature +2019-02-04 11:59:48.898 [main] INFO - Request Type: POST +2019-02-04 11:59:48.898 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/8964213433846812344644/voids, requestType=POST} +2019-02-04 11:59:48.898 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-04 11:59:48.899 [main] INFO - v-c-merchant-id: testrest +2019-02-04 11:59:48.899 [main] INFO - Date: Mon, 4 Feb 2019 06:29:46 GMT +2019-02-04 11:59:48.899 [main] INFO - Host: apitest.cybersource.com +2019-02-04 11:59:48.900 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="cNHT6tVmNr6N16BESBKmRtY5H4B6Q1FYog0T7MEKvUA=" +2019-02-04 11:59:48.900 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:02:50.332 [main] INFO - ********* START ********* +2019-02-04 12:02:50.352 [main] INFO - Authentication Type : http_signature +2019-02-04 12:02:50.352 [main] INFO - Request Type: POST +2019-02-04 12:02:50.354 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5492618756736995104005/voids, requestType=POST} +2019-02-04 12:02:50.355 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-04 12:02:50.411 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:02:50.411 [main] INFO - Date: Mon, 4 Feb 2019 06:32:49 GMT +2019-02-04 12:02:50.411 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:02:50.412 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Rcgk6WPtFFrFv1C1qVfOD+tKzyVUL1k0VQHMOdta6wE=" +2019-02-04 12:02:50.412 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:02:52.185 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-02-04 12:02:52.185 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-04T06:32:52Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-04 12:02:52.186 [main] INFO - Response Code: 400 +2019-02-04 12:02:52.186 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 296ms +v-c-correlation-id: c2f5d7ee-80f5-48ca-abbd-f242290e051f +OkHttp-Sent-Millis: 1549261971647 +OkHttp-Received-Millis: 1549261972163 + +2019-02-04 12:02:52.186 [main] INFO - ********* END *********: +2019-02-04 12:02:52.212 [main] INFO - ********* START ********* +2019-02-04 12:02:52.213 [main] INFO - Authentication Type : http_signature +2019-02-04 12:02:52.213 [main] INFO - Request Type: POST +2019-02-04 12:02:52.213 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-02-04 12:02:52.214 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-04 12:02:52.214 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:02:52.214 [main] INFO - Date: Mon, 4 Feb 2019 06:32:49 GMT +2019-02-04 12:02:52.215 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:02:52.215 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="3EY84UekxhQuJX3Pm2Jrv82dNmkIlgiOtmLOFzz2ndY=" +2019-02-04 12:02:52.216 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:05:14.583 [main] INFO - ********* START ********* +2019-02-04 12:05:14.597 [main] INFO - Authentication Type : http_signature +2019-02-04 12:05:14.597 [main] INFO - Request Type: POST +2019-02-04 12:05:14.598 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5492618756736995104005/voids, requestType=POST} +2019-02-04 12:05:14.598 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-04 12:05:14.599 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:05:14.599 [main] INFO - Date: Mon, 4 Feb 2019 06:35:14 GMT +2019-02-04 12:05:14.599 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:05:14.599 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ok77QRsM4J8+rgpsH+dSuuj2cpqiD0XIs9JxE8ky5Eg=" +2019-02-04 12:05:14.604 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:05:15.916 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-02-04 12:05:15.917 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-04T06:35:15.796Z","status":"DECLINED","errorInformation":{"reason":"INVALID_DATA","message":"Invalid Json Request"}} +2019-02-04 12:05:15.917 [main] INFO - Response Code: 400 +2019-02-04 12:05:15.918 [main] INFO - Response Headers: v-c-correlation-id: 40d18a69-195a-4fe9-bf0b-7c06a690c78c +Content-Type: application/json +Content-Length: 142 +OkHttp-Sent-Millis: 1549262115735 +OkHttp-Received-Millis: 1549262115898 + +2019-02-04 12:05:15.918 [main] INFO - ********* END *********: +2019-02-04 12:05:15.942 [main] INFO - ********* START ********* +2019-02-04 12:05:15.942 [main] INFO - Authentication Type : http_signature +2019-02-04 12:05:15.943 [main] INFO - Request Type: POST +2019-02-04 12:05:15.943 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-02-04 12:05:15.943 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-04 12:05:15.944 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:05:15.944 [main] INFO - Date: Mon, 4 Feb 2019 06:35:14 GMT +2019-02-04 12:05:15.945 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:05:15.946 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="6bqg95F/H3vwRJFI7nD0vWeftyyIOO4PBhSzLoSKJRw=" +2019-02-04 12:05:15.947 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:06:38.725 [main] INFO - ********* START ********* +2019-02-04 12:06:38.740 [main] INFO - Authentication Type : http_signature +2019-02-04 12:06:38.741 [main] INFO - Request Type: POST +2019-02-04 12:06:38.741 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5492620832556049904004/voids, requestType=POST} +2019-02-04 12:06:38.742 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-04 12:06:38.786 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:06:38.787 [main] INFO - Date: Mon, 4 Feb 2019 06:36:38 GMT +2019-02-04 12:06:38.787 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:06:38.788 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="adwi3MCZYRSO66BN8zzewnFk5ZQ50wLxyEY/vHfBurw=" +2019-02-04 12:06:38.788 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:06:40.626 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-02-04 12:06:40.626 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5492620832556049904004/voids} +2019-02-04 12:06:40.627 [main] INFO - Response Code: 201 +2019-02-04 12:06:40.627 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 344 +X-Cnection: close +x-response-time: 460ms +v-c-correlation-id: 4866d24c-f7bf-4720-8728-00fa623e679e +OkHttp-Sent-Millis: 1549262199916 +OkHttp-Received-Millis: 1549262200609 + +2019-02-04 12:06:40.627 [main] INFO - ********* END *********: +2019-02-04 12:06:40.681 [main] INFO - ********* START ********* +2019-02-04 12:06:40.681 [main] INFO - Authentication Type : http_signature +2019-02-04 12:06:40.681 [main] INFO - Request Type: POST +2019-02-04 12:06:40.682 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-02-04 12:06:40.682 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-04 12:06:40.683 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:06:40.683 [main] INFO - Date: Mon, 4 Feb 2019 06:36:38 GMT +2019-02-04 12:06:40.683 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:06:40.684 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="p5qBDaen5EgcG0sUvcWMFF9XN8HE3cc0R3VH3s9lm1Y=" +2019-02-04 12:06:40.684 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:08:46.819 [main] INFO - ********* START ********* +2019-02-04 12:08:46.840 [main] INFO - Authentication Type : http_signature +2019-02-04 12:08:46.841 [main] INFO - Request Type: POST +2019-02-04 12:08:46.842 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/5492622711336544104006/voids, requestType=POST} +2019-02-04 12:08:46.843 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-04 12:08:46.844 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:08:46.844 [main] INFO - Date: Mon, 4 Feb 2019 06:38:46 GMT +2019-02-04 12:08:46.845 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:08:46.845 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ACAK+Pc9KqBVnBBnYehfTsB9WLbg7x37S/bJKYfKQJA=" +2019-02-04 12:08:46.846 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:08:48.492 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_void"}} +2019-02-04 12:08:48.493 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-04T06:38:48Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-04 12:08:48.494 [main] INFO - Response Code: 400 +2019-02-04 12:08:48.494 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 212ms +v-c-correlation-id: df8ce8e5-3102-460d-b747-038788c916c5 +OkHttp-Sent-Millis: 1549262328020 +OkHttp-Received-Millis: 1549262328472 + +2019-02-04 12:08:48.495 [main] INFO - ********* END *********: +2019-02-04 12:08:48.523 [main] INFO - ********* START ********* +2019-02-04 12:08:48.524 [main] INFO - Authentication Type : http_signature +2019-02-04 12:08:48.524 [main] INFO - Request Type: POST +2019-02-04 12:08:48.525 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/8964213433846812344644/voids, requestType=POST} +2019-02-04 12:08:48.525 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-04 12:08:48.526 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:08:48.526 [main] INFO - Date: Mon, 4 Feb 2019 06:38:46 GMT +2019-02-04 12:08:48.527 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:08:48.527 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="N4EmQIDE2HqjeT60TkZFD+xIgsz6evnxe8fdsbIylkU=" +2019-02-04 12:08:48.528 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:11:02.489 [main] INFO - ********* START ********* +2019-02-04 12:11:02.502 [main] INFO - Authentication Type : http_signature +2019-02-04 12:11:02.503 [main] INFO - Request Type: POST +2019-02-04 12:11:02.504 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/5492624390506057904003/voids, requestType=POST} +2019-02-04 12:11:02.504 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-04 12:11:02.543 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:11:02.543 [main] INFO - Date: Mon, 4 Feb 2019 06:41:02 GMT +2019-02-04 12:11:02.543 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:11:02.544 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="W6+fWwGVGwqHWMitoDsQh9YPsZgh+z6CyVzA2h9HbDA=" +2019-02-04 12:11:02.544 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:11:04.221 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_void"}} +2019-02-04 12:11:04.221 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/refunds/5492624390506057904003/voids} +2019-02-04 12:11:04.222 [main] INFO - Response Code: 201 +2019-02-04 12:11:04.222 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 343 +X-Cnection: close +x-response-time: 335ms +v-c-correlation-id: 0f410d4a-3dda-4c6d-ae07-ff51b001e4b2 +OkHttp-Sent-Millis: 1549262463644 +OkHttp-Received-Millis: 1549262464204 + +2019-02-04 12:11:04.222 [main] INFO - ********* END *********: +2019-02-04 12:11:04.264 [main] INFO - ********* START ********* +2019-02-04 12:11:04.265 [main] INFO - Authentication Type : http_signature +2019-02-04 12:11:04.265 [main] INFO - Request Type: POST +2019-02-04 12:11:04.265 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/8964213433846812344644/voids, requestType=POST} +2019-02-04 12:11:04.266 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-04 12:11:04.266 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:11:04.266 [main] INFO - Date: Mon, 4 Feb 2019 06:41:02 GMT +2019-02-04 12:11:04.267 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:11:04.267 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="aTGxbQwklcZoYsBPkcY1YhO/xhFEExUi7dPZEJajLp4=" +2019-02-04 12:11:04.267 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:13:22.720 [main] INFO - ********* START ********* +2019-02-04 12:13:22.732 [main] INFO - Authentication Type : http_signature +2019-02-04 12:13:22.733 [main] INFO - Request Type: POST +2019-02-04 12:13:22.733 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/5492624390506057904003/voids, requestType=POST} +2019-02-04 12:13:22.734 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-04 12:13:22.734 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:13:22.734 [main] INFO - Date: Mon, 4 Feb 2019 06:43:22 GMT +2019-02-04 12:13:22.735 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:13:22.735 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="GZLulnsBQKCsOBXRA444YRlsMgRQoKpajmX8NVAoFjo=" +2019-02-04 12:13:22.736 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:13:24.645 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_void"}} +2019-02-04 12:13:24.646 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-04T06:43:24Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-04 12:13:24.646 [main] INFO - Response Code: 400 +2019-02-04 12:13:24.647 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 403ms +v-c-correlation-id: 9c40a8e4-af93-4338-92d2-c5eb4b7223db +OkHttp-Sent-Millis: 1549262603974 +OkHttp-Received-Millis: 1549262604627 + +2019-02-04 12:13:24.647 [main] INFO - ********* END *********: +2019-02-04 12:13:24.672 [main] INFO - ********* START ********* +2019-02-04 12:13:24.672 [main] INFO - Authentication Type : http_signature +2019-02-04 12:13:24.673 [main] INFO - Request Type: POST +2019-02-04 12:13:24.673 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/8964213433846812344644/voids, requestType=POST} +2019-02-04 12:13:24.676 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-04 12:13:24.676 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:13:24.677 [main] INFO - Date: Mon, 4 Feb 2019 06:43:22 GMT +2019-02-04 12:13:24.677 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:13:24.678 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="b0PXlYZteUNJvyy9h/kcJvyWXyUvlOhNmwSKfNXYr44=" +2019-02-04 12:13:24.679 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:13:50.256 [main] INFO - ********* START ********* +2019-02-04 12:13:50.268 [main] INFO - Authentication Type : http_signature +2019-02-04 12:13:50.269 [main] INFO - Request Type: POST +2019-02-04 12:13:50.270 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-04 12:13:50.270 [main] INFO - Digest: SHA-256=rp59HYGOOXP6bWKiVpWMNgj4QjYai6gMk27yt69dPh8= +2019-02-04 12:13:50.271 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:13:50.271 [main] INFO - Date: Mon, 4 Feb 2019 06:43:49 GMT +2019-02-04 12:13:50.272 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:13:50.272 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="DPyI2/x5+HFGy2Wiw/MUrXZqAunlMdA+skrMnbGFcdY=" +2019-02-04 12:13:50.272 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:13:52.157 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"33557799"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"FD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-04 12:13:52.158 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-04 12:13:52.158 [main] INFO - Response Code: 201 +2019-02-04 12:13:52.159 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 493 +X-Cnection: close +x-response-time: 370ms +v-c-correlation-id: 77ef0f2c-db4e-4567-acea-668a7c5ca2e0 +OkHttp-Sent-Millis: 1549262631513 +OkHttp-Received-Millis: 1549262632138 + +2019-02-04 12:13:52.159 [main] INFO - ********* END *********: +2019-02-04 12:13:52.194 [main] INFO - ********* START ********* +2019-02-04 12:13:52.194 [main] INFO - Authentication Type : http_signature +2019-02-04 12:13:52.195 [main] INFO - Request Type: POST +2019-02-04 12:13:52.195 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-04 12:13:52.195 [main] INFO - Digest: SHA-256=WV4kmV6NZQKID4sN4WMbFxFXqbg/hn8kxL7FOS4jQXk= +2019-02-04 12:13:52.196 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:13:52.196 [main] INFO - Date: Mon, 4 Feb 2019 06:43:49 GMT +2019-02-04 12:13:52.197 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:13:52.197 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="VEttDD2+gTSJmQ53+DPNGegFPZx3LbS+1iB91t2Pz7E=" +2019-02-04 12:13:52.198 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:13:52.901 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"12345"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"GD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-04 12:13:52.902 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-04 12:13:52.902 [main] INFO - Response Code: 201 +2019-02-04 12:13:52.903 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 490 +X-Cnection: close +x-response-time: 470ms +v-c-correlation-id: e42186a1-0701-4db7-9cc9-c60ed92b6c47 +OkHttp-Sent-Millis: 1549262632201 +OkHttp-Received-Millis: 1549262632900 + +2019-02-04 12:13:52.903 [main] INFO - ********* END *********: +2019-02-04 12:13:52.921 [main] INFO - ********* START ********* +2019-02-04 12:13:52.921 [main] INFO - Authentication Type : http_signature +2019-02-04 12:13:52.922 [main] INFO - Request Type: POST +2019-02-04 12:13:52.922 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-04 12:13:52.923 [main] INFO - Digest: SHA-256=w9ZjmtCKOCPKH6OZhKI9VKNlfIK5wZLl6ZxwHbxFJsQ= +2019-02-04 12:13:52.923 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:13:52.924 [main] INFO - Date: Mon, 4 Feb 2019 06:43:49 GMT +2019-02-04 12:13:52.924 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:13:52.924 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="yat2JwmnnE+BBEPLKxsrqwCuDUrk7cTvFoNYbpOLTg0=" +2019-02-04 12:13:52.925 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:13:53.423 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"6789"},"orderInformation":{"amountDetails":{"totalAmount":"DSWAZ1","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"MD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-04 12:13:53.424 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-04 12:13:53.424 [main] INFO - Response Code: 400 +2019-02-04 12:13:53.424 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 250ms +v-c-correlation-id: cbbd28f4-680c-4ef0-8f49-fcecb1cf95fc +OkHttp-Sent-Millis: 1549262632927 +OkHttp-Received-Millis: 1549262633421 + +2019-02-04 12:13:53.425 [main] INFO - ********* END *********: +2019-02-04 12:21:27.691 [main] INFO - ********* START ********* +2019-02-04 12:21:27.704 [main] INFO - Authentication Type : http_signature +2019-02-04 12:21:27.704 [main] INFO - Request Type: POST +2019-02-04 12:21:27.705 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-04 12:21:27.744 [main] INFO - Digest: SHA-256=QLjlubCB2wV5ABMcerPzLZvIj3qnkzq1gCRH+2FvO+4= +2019-02-04 12:21:27.745 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:21:27.746 [main] INFO - Date: Mon, 4 Feb 2019 06:51:27 GMT +2019-02-04 12:21:27.746 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:21:27.746 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="7h0kKne8eihifacyGl+vEvRR79Yguj0YieNSWthenwU=" +2019-02-04 12:21:27.747 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:21:29.584 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v501","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-04 12:21:29.585 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"8049a159-84a9-1b65-e053-a2588e0a06e9","message":"Task already exists with same report name ","localizationKey":"cybsapi.task.name.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-04 12:21:29.585 [main] INFO - Response Code: 400 +2019-02-04 12:21:29.586 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_46daf0c1-eb5c-433e-9bb7-9994b00736b0 +X-OPNET-Transaction-Trace: a2_80762192-3c78-46cf-8906-4ca4094a7130 +Cache-Control: no-cache, no-transform +ETag: "-1732156575-gzip" +Expires: Mon, 04 Feb 2019 06:51:29 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 06:51:29 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 85c40d3e-5d49-4c80-864b-89f2f954941c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549263088990 +OkHttp-Received-Millis: 1549263089553 + +2019-02-04 12:21:29.587 [main] INFO - ********* END *********: +2019-02-04 12:21:29.610 [main] INFO - ********* START ********* +2019-02-04 12:21:29.611 [main] INFO - Authentication Type : http_signature +2019-02-04 12:21:29.611 [main] INFO - Request Type: POST +2019-02-04 12:21:29.612 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-04 12:21:29.612 [main] INFO - Digest: SHA-256=WRIH+BI7wCOOoyM2il5xk/FPn4NdlvPoyhCGODb0BzU= +2019-02-04 12:21:29.612 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:21:29.613 [main] INFO - Date: Mon, 4 Feb 2019 06:51:27 GMT +2019-02-04 12:21:29.613 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:21:29.613 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="E8GX622HTL+IfOPvVurVHeqNjRVpsXR7VsFii0duD0E=" +2019-02-04 12:21:29.614 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:21:29.920 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequ","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v2","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-04 12:21:29.921 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest} +2019-02-04 12:21:29.922 [main] INFO - Response Code: 400 +2019-02-04 12:21:29.922 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_579eb66c-f9b4-4258-8dd1-9b594e236521 +X-OPNET-Transaction-Trace: a2_dcb42f9a-9bbb-45d6-b94d-ef89c5d9ae7b +Cache-Control: no-cache, no-transform +ETag: "-393622008-gzip" +Expires: Mon, 04 Feb 2019 06:51:29 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 06:51:29 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: af631503-e7b0-489a-9dd6-74efb3362ae6 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549263089618 +OkHttp-Received-Millis: 1549263089919 + +2019-02-04 12:21:29.922 [main] INFO - ********* END *********: +2019-02-04 12:21:58.543 [main] INFO - ********* START ********* +2019-02-04 12:21:58.556 [main] INFO - Authentication Type : http_signature +2019-02-04 12:21:58.556 [main] INFO - Request Type: POST +2019-02-04 12:21:58.557 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-04 12:21:58.594 [main] INFO - Digest: SHA-256=QLjlubCB2wV5ABMcerPzLZvIj3qnkzq1gCRH+2FvO+4= +2019-02-04 12:21:58.594 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:21:58.595 [main] INFO - Date: Mon, 4 Feb 2019 06:51:58 GMT +2019-02-04 12:21:58.595 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:21:58.595 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="oQcmo7O8Wj1BwkMD5diH4tlD75aq0Kmv9UJxBmPY8PA=" +2019-02-04 12:21:58.596 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:22:00.294 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v501","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-04 12:22:00.295 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"8049a159-84a9-1b65-e053-a2588e0a06e9","message":"Task already exists with same report name ","localizationKey":"cybsapi.task.name.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-04 12:22:00.296 [main] INFO - Response Code: 400 +2019-02-04 12:22:00.296 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_b771440c-ac51-41ab-9733-5c11fc4d9e2d +X-OPNET-Transaction-Trace: a2_9409e978-5c9d-4e16-8019-66e41e469abc +Cache-Control: no-cache, no-transform +ETag: "-1732156575-gzip" +Expires: Mon, 04 Feb 2019 06:52:00 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 06:52:00 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: de13881f-dc4b-4340-8a20-a05bbe70b405 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549263119744 +OkHttp-Received-Millis: 1549263120268 + +2019-02-04 12:22:00.297 [main] INFO - ********* END *********: +2019-02-04 12:22:00.325 [main] INFO - ********* START ********* +2019-02-04 12:22:00.326 [main] INFO - Authentication Type : http_signature +2019-02-04 12:22:00.326 [main] INFO - Request Type: POST +2019-02-04 12:22:00.327 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-04 12:22:00.327 [main] INFO - Digest: SHA-256=WRIH+BI7wCOOoyM2il5xk/FPn4NdlvPoyhCGODb0BzU= +2019-02-04 12:22:00.327 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:22:00.328 [main] INFO - Date: Mon, 4 Feb 2019 06:51:58 GMT +2019-02-04 12:22:00.328 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:22:00.328 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Xu3+24eNT2Xz3pL+OuSSzSPOLRUSNF3u0XArsx5WQAY=" +2019-02-04 12:22:00.329 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:22:00.618 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequ","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v2","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-04 12:22:00.619 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest} +2019-02-04 12:22:00.619 [main] INFO - Response Code: 400 +2019-02-04 12:22:00.619 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_606bf9e6-f09f-4389-8b5c-b22561c86798 +X-OPNET-Transaction-Trace: a2_3676c244-bada-4066-bb2e-2c367b8fc5e9 +Cache-Control: no-cache, no-transform +ETag: "-393622008-gzip" +Expires: Mon, 04 Feb 2019 06:52:00 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 06:52:00 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 229424ad-fc46-4d37-bea5-21bb00e88c5e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549263120333 +OkHttp-Received-Millis: 1549263120616 + +2019-02-04 12:22:00.620 [main] INFO - ********* END *********: +2019-02-04 12:23:57.280 [main] INFO - ********* START ********* +2019-02-04 12:23:57.295 [main] INFO - Authentication Type : http_signature +2019-02-04 12:23:57.295 [main] INFO - Request Type: POST +2019-02-04 12:23:57.296 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-04 12:23:57.335 [main] INFO - Digest: SHA-256=QLjlubCB2wV5ABMcerPzLZvIj3qnkzq1gCRH+2FvO+4= +2019-02-04 12:23:57.335 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:23:57.336 [main] INFO - Date: Mon, 4 Feb 2019 06:53:56 GMT +2019-02-04 12:23:57.336 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:23:57.337 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="hrxXxX27NepkPbiQtsWaByiw0xdwMughfXvcYmu2J2Y=" +2019-02-04 12:23:57.337 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:24:20.626 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v501","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-04 12:24:20.628 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"8049a159-84a9-1b65-e053-a2588e0a06e9","message":"Task already exists with same report name ","localizationKey":"cybsapi.task.name.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-04 12:24:20.629 [main] INFO - Response Code: 400 +2019-02-04 12:24:20.630 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_94297b06-61a9-4271-be8c-2a28071c1680 +X-OPNET-Transaction-Trace: a2_70ea8a6c-5b99-44e8-8da6-38de14a973a5 +Cache-Control: no-cache, no-transform +ETag: "-1732156575-gzip" +Expires: Mon, 04 Feb 2019 06:54:13 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 06:54:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7316f1fd-f23d-438e-b648-23d3edcaab34 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549263252896 +OkHttp-Received-Millis: 1549263253408 + +2019-02-04 12:24:20.631 [main] INFO - ********* END *********: +2019-02-04 12:24:55.427 [main] INFO - ********* START ********* +2019-02-04 12:24:55.427 [main] INFO - Authentication Type : http_signature +2019-02-04 12:24:55.428 [main] INFO - Request Type: POST +2019-02-04 12:24:55.428 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-04 12:24:55.428 [main] INFO - Digest: SHA-256=WRIH+BI7wCOOoyM2il5xk/FPn4NdlvPoyhCGODb0BzU= +2019-02-04 12:24:55.429 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:24:55.429 [main] INFO - Date: Mon, 4 Feb 2019 06:53:56 GMT +2019-02-04 12:24:55.429 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:24:55.430 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="K6g3KvZhafiaQDacWbx/YKIAhNgLC44qDZdkJJ9zmhk=" +2019-02-04 12:24:55.430 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:24:55.684 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequ","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v2","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-04 12:24:55.684 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest} +2019-02-04 12:24:55.685 [main] INFO - Response Code: 400 +2019-02-04 12:24:55.685 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_4e1f35ba-f967-4d18-8a64-dd0f65e6aafd +X-OPNET-Transaction-Trace: a2_56c97f4c-d574-4a68-a58f-e0679bfdd3b0 +Cache-Control: no-cache, no-transform +ETag: "-393622008-gzip" +Expires: Mon, 04 Feb 2019 06:54:55 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 06:54:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 37d5d580-80c2-45ba-9028-75157d8573ac +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549263295436 +OkHttp-Received-Millis: 1549263295681 + +2019-02-04 12:24:55.686 [main] INFO - ********* END *********: +2019-02-04 12:25:51.285 [main] INFO - ********* START ********* +2019-02-04 12:25:51.305 [main] INFO - Authentication Type : http_signature +2019-02-04 12:25:51.306 [main] INFO - Request Type: POST +2019-02-04 12:25:51.307 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-04 12:25:51.350 [main] INFO - Digest: SHA-256=QLjlubCB2wV5ABMcerPzLZvIj3qnkzq1gCRH+2FvO+4= +2019-02-04 12:25:51.350 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:25:51.350 [main] INFO - Date: Mon, 4 Feb 2019 06:55:50 GMT +2019-02-04 12:25:51.351 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:25:51.351 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="VWK12sYGDrmY6wO/M8xzRiG4YR2nXEBN4TB9b3CJvOQ=" +2019-02-04 12:25:51.352 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:25:53.231 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v501","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-04 12:25:53.233 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"8049a159-84a9-1b65-e053-a2588e0a06e9","message":"Task already exists with same report name ","localizationKey":"cybsapi.task.name.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-04 12:25:53.233 [main] INFO - Response Code: 400 +2019-02-04 12:25:53.233 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_7dafa7bc-59a7-4568-abe1-abd61c9d52f9 +X-OPNET-Transaction-Trace: a2_168a271d-cfab-4a95-8de5-3ce2a72745a0 +Cache-Control: no-cache, no-transform +ETag: "-1732156575-gzip" +Expires: Mon, 04 Feb 2019 06:55:53 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 06:55:52 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6d8f1920-c3fe-45c5-9d54-2733868dfa90 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549263352655 +OkHttp-Received-Millis: 1549263353208 + +2019-02-04 12:25:53.234 [main] INFO - ********* END *********: +2019-02-04 12:25:53.258 [main] INFO - ********* START ********* +2019-02-04 12:25:53.258 [main] INFO - Authentication Type : http_signature +2019-02-04 12:25:53.259 [main] INFO - Request Type: POST +2019-02-04 12:25:53.259 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-04 12:25:53.259 [main] INFO - Digest: SHA-256=WRIH+BI7wCOOoyM2il5xk/FPn4NdlvPoyhCGODb0BzU= +2019-02-04 12:25:53.260 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:25:53.260 [main] INFO - Date: Mon, 4 Feb 2019 06:55:50 GMT +2019-02-04 12:25:53.260 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:25:53.261 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="OJjf+QXoPP9i41mw0dwN847LR5A0MyGeF+DHgKb7Exc=" +2019-02-04 12:25:53.261 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:25:53.546 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequ","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v2","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-04 12:25:53.547 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest} +2019-02-04 12:25:53.547 [main] INFO - Response Code: 400 +2019-02-04 12:25:53.547 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_d77d12dd-1d65-46a4-82e6-642664719959 +X-OPNET-Transaction-Trace: a2_e88aac9f-19dd-49ed-80f3-91034c49cc00 +Cache-Control: no-cache, no-transform +ETag: "-393622008-gzip" +Expires: Mon, 04 Feb 2019 06:55:53 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 06:55:53 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: cafab09c-db6d-4bcf-894f-739b6cb1ff64 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549263353266 +OkHttp-Received-Millis: 1549263353542 + +2019-02-04 12:25:53.548 [main] INFO - ********* END *********: +2019-02-04 12:26:49.586 [main] INFO - ********* START ********* +2019-02-04 12:26:49.598 [main] INFO - Authentication Type : http_signature +2019-02-04 12:26:49.598 [main] INFO - Request Type: POST +2019-02-04 12:26:49.599 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-04 12:26:49.635 [main] INFO - Digest: SHA-256=GLs9/lPci3Kn2aJ+VWwmBOkX+cUYwdSs8cCRmdf/Bmk= +2019-02-04 12:26:49.636 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:26:49.636 [main] INFO - Date: Mon, 4 Feb 2019 06:56:49 GMT +2019-02-04 12:26:49.636 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:26:49.637 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="j7Ul+QM6uSqT4u+uHhr1x0BrHyuV+dcD8ZodQ3KxHUs=" +2019-02-04 12:26:49.637 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:26:51.445 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v601","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-04 12:26:51.446 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest} +2019-02-04 12:26:51.446 [main] INFO - Response Code: 200 +2019-02-04 12:26:51.446 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_4ad3b158-5ee0-47ef-b02f-8dd93dfe1384 +X-OPNET-Transaction-Trace: a2_75ab6918-d8f2-4a78-a0bd-446366bde66e +Cache-Control: no-cache, no-transform +ETag: "1877106787-gzip" +Expires: Mon, 04 Feb 2019 06:56:51 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 06:56:51 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 44a1bbc1-f8fd-48a7-b2a3-04e6289956c4 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549263410880 +OkHttp-Received-Millis: 1549263411424 + +2019-02-04 12:26:51.447 [main] INFO - ********* END *********: +2019-02-04 12:26:51.460 [main] INFO - ********* START ********* +2019-02-04 12:26:51.461 [main] INFO - Authentication Type : http_signature +2019-02-04 12:26:51.461 [main] INFO - Request Type: POST +2019-02-04 12:26:51.462 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-04 12:26:51.462 [main] INFO - Digest: SHA-256=WRIH+BI7wCOOoyM2il5xk/FPn4NdlvPoyhCGODb0BzU= +2019-02-04 12:26:51.463 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:26:51.463 [main] INFO - Date: Mon, 4 Feb 2019 06:56:49 GMT +2019-02-04 12:26:51.463 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:26:51.464 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="bANiJ5/UY5LYoZFvsuwlPzBKkj64R/5NCVZ9vwHydHE=" +2019-02-04 12:26:51.464 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:26:51.735 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequ","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v2","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-04 12:26:51.736 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest} +2019-02-04 12:26:51.736 [main] INFO - Response Code: 400 +2019-02-04 12:26:51.736 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_0b8670ea-557e-4cd0-ab80-dcf5620930fa +X-OPNET-Transaction-Trace: a2_2152b52c-8ab9-420c-8e32-bd280817ca47 +Cache-Control: no-cache, no-transform +ETag: "-393622008-gzip" +Expires: Mon, 04 Feb 2019 06:56:51 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 06:56:51 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: cf214c29-393a-4d9c-9b28-f146e0306ca2 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549263411467 +OkHttp-Received-Millis: 1549263411732 + +2019-02-04 12:26:51.737 [main] INFO - ********* END *********: +2019-02-04 12:28:19.308 [main] INFO - ********* START ********* +2019-02-04 12:28:19.320 [main] INFO - Authentication Type : http_signature +2019-02-04 12:28:19.321 [main] INFO - Request Type: POST +2019-02-04 12:28:19.321 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-04 12:28:19.367 [main] INFO - Digest: SHA-256=BNAu/LarnPdqY1I7Q1MHlF2gg/uxxRjMiPSaiZCV5ZQ= +2019-02-04 12:28:19.367 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:28:19.368 [main] INFO - Date: Mon, 4 Feb 2019 06:58:18 GMT +2019-02-04 12:28:19.368 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:28:19.368 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="dbuq4a6lPZ2CvZLS2+9FfxnZ78yfL0vVuNpcyoRV2n4=" +2019-02-04 12:28:19.369 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:28:21.072 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v602","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-04 12:28:21.073 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest} +2019-02-04 12:28:21.073 [main] INFO - Response Code: 200 +2019-02-04 12:28:21.073 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_e88b8ec8-155b-463c-990e-584f81d05e77 +X-OPNET-Transaction-Trace: a2_db38c001-5b5a-4e68-8dd2-9e88a441183d +Cache-Control: no-cache, no-transform +ETag: "1877106787-gzip" +Expires: Mon, 04 Feb 2019 06:58:20 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 06:58:20 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4aed2e03-e615-4f9a-8baf-e9ac5aed2f17 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549263500538 +OkHttp-Received-Millis: 1549263501052 + +2019-02-04 12:28:21.074 [main] INFO - ********* END *********: +2019-02-04 12:28:21.084 [main] INFO - ********* START ********* +2019-02-04 12:28:21.084 [main] INFO - Authentication Type : http_signature +2019-02-04 12:28:21.084 [main] INFO - Request Type: POST +2019-02-04 12:28:21.085 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-04 12:28:21.085 [main] INFO - Digest: SHA-256=WRIH+BI7wCOOoyM2il5xk/FPn4NdlvPoyhCGODb0BzU= +2019-02-04 12:28:21.085 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:28:21.086 [main] INFO - Date: Mon, 4 Feb 2019 06:58:18 GMT +2019-02-04 12:28:21.086 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:28:21.086 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="+t1pRMkPnteoSrThGL7zu6OnS79YNcM1OSPJ3E9udQ0=" +2019-02-04 12:28:21.087 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:28:21.354 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequ","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v2","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-04 12:28:21.355 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest} +2019-02-04 12:28:21.355 [main] INFO - Response Code: 400 +2019-02-04 12:28:21.355 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_a78c4879-89fe-4466-8352-f9aee84f78d3 +X-OPNET-Transaction-Trace: a2_261737f9-1066-4bb4-a975-72431de98f37 +Cache-Control: no-cache, no-transform +ETag: "-393622008-gzip" +Expires: Mon, 04 Feb 2019 06:58:21 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 06:58:21 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: b3ab466f-95c0-4b75-9a64-0c899d5b1551 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549263501090 +OkHttp-Received-Millis: 1549263501352 + +2019-02-04 12:28:21.356 [main] INFO - ********* END *********: +2019-02-04 12:29:44.354 [main] INFO - ********* START ********* +2019-02-04 12:29:44.367 [main] INFO - Authentication Type : http_signature +2019-02-04 12:29:44.368 [main] INFO - Request Type: POST +2019-02-04 12:29:44.368 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-04 12:29:44.412 [main] INFO - Digest: SHA-256=a1C92gyYT++CqVJI/Sd1xCsxIxISiGe98pAlYF15D+A= +2019-02-04 12:29:44.413 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:29:44.413 [main] INFO - Date: Mon, 4 Feb 2019 06:59:43 GMT +2019-02-04 12:29:44.413 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:29:44.414 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="7pNuuvxSLYhV6INVLflqsXOZYIVoIBfjcDi94EtbR4s=" +2019-02-04 12:29:44.414 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:29:49.621 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v603","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-04 12:29:49.621 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest} +2019-02-04 12:29:49.622 [main] INFO - Response Code: 200 +2019-02-04 12:29:49.622 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_dc3de303-9ae1-4448-a8fe-a1f8898b2185 +X-OPNET-Transaction-Trace: a2_6cfa10c6-97e7-46ad-b07d-29db14d953d9 +Cache-Control: no-cache, no-transform +ETag: "1877106787-gzip" +Expires: Mon, 04 Feb 2019 06:59:49 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 06:59:49 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 77d6ecfe-b82e-440e-8f74-bf1e52f8db68 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549263589042 +OkHttp-Received-Millis: 1549263589596 + +2019-02-04 12:29:49.622 [main] INFO - ********* END *********: +2019-02-04 12:31:13.098 [main] INFO - ********* START ********* +2019-02-04 12:31:13.110 [main] INFO - Authentication Type : http_signature +2019-02-04 12:31:13.110 [main] INFO - Request Type: POST +2019-02-04 12:31:13.111 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-04 12:31:13.150 [main] INFO - Digest: SHA-256=56te2rZ4obeu27jjIHlnbLo8mq/x90zGxSd4tAFSD3E= +2019-02-04 12:31:13.150 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:31:13.150 [main] INFO - Date: Mon, 4 Feb 2019 07:01:12 GMT +2019-02-04 12:31:13.151 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:31:13.151 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="grYpY4LKc0JsmPqAIj25nYoBX3pX5lyjqX89IpEY3ew=" +2019-02-04 12:31:13.151 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:31:14.733 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v604","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-04 12:31:14.734 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest} +2019-02-04 12:31:14.734 [main] INFO - Response Code: 200 +2019-02-04 12:31:14.735 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_765995af-d15b-4549-803f-eb82c4fba1d2 +X-OPNET-Transaction-Trace: a2_34737157-857f-4594-bc70-0e23ef19cfa3 +Cache-Control: no-cache, no-transform +ETag: "1877106787-gzip" +Expires: Mon, 04 Feb 2019 07:01:14 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:01:14 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a7e8e56a-c71c-4722-bf04-19a03163ac06 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549263674231 +OkHttp-Received-Millis: 1549263674712 + +2019-02-04 12:31:14.735 [main] INFO - ********* END *********: +2019-02-04 12:31:14.757 [main] INFO - ********* START ********* +2019-02-04 12:31:14.758 [main] INFO - Authentication Type : http_signature +2019-02-04 12:31:14.758 [main] INFO - Request Type: POST +2019-02-04 12:31:14.758 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-04 12:31:14.758 [main] INFO - Digest: SHA-256=WRIH+BI7wCOOoyM2il5xk/FPn4NdlvPoyhCGODb0BzU= +2019-02-04 12:31:14.758 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:31:14.758 [main] INFO - Date: Mon, 4 Feb 2019 07:01:12 GMT +2019-02-04 12:31:14.758 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:31:14.758 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="9g6299kjKOw9O7VfH1qhuPse94cjNHH5r+Qn5ugR/mI=" +2019-02-04 12:31:14.760 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:31:15.019 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequ","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v2","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-04 12:31:15.020 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest} +2019-02-04 12:31:15.020 [main] INFO - Response Code: 400 +2019-02-04 12:31:15.020 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_c71ab657-1808-4f32-b428-22326c58f06b +X-OPNET-Transaction-Trace: a2_73beb3ac-1ab8-4c4a-8b21-c764224456d0 +Cache-Control: no-cache, no-transform +ETag: "-393622008-gzip" +Expires: Mon, 04 Feb 2019 07:01:14 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:01:14 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: f573d33a-b3e9-47d4-ab88-c309849b874e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549263674763 +OkHttp-Received-Millis: 1549263675017 + +2019-02-04 12:31:15.021 [main] INFO - ********* END *********: +2019-02-04 12:33:14.023 [main] INFO - ********* START ********* +2019-02-04 12:33:14.039 [main] INFO - Authentication Type : http_signature +2019-02-04 12:33:14.054 [main] INFO - Request Type: PUT +2019-02-04 12:33:14.054 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-04 12:33:14.054 [main] INFO - Digest: SHA-256=B/CNo4vGf0K3COzdmREEjeuLmdsPOBHwwJmY0FsUW1I= +2019-02-04 12:33:14.086 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:33:14.086 [main] INFO - Date: Mon, 4 Feb 2019 07:03:13 GMT +2019-02-04 12:33:14.101 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:33:14.101 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="lr9F/QD/Jjzcx/w+8LrBzYT6sZ+3zgrVPYIksVhy+8Q=" +2019-02-04 12:33:14.101 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:33:15.882 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testrest_v604","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-04 12:33:15.882 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-04 12:33:15.882 [main] INFO - Response Code: 201 +2019-02-04 12:33:15.882 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_ec78759f-b308-48eb-9b03-5af7203f1634 +X-OPNET-Transaction-Trace: a2_87ad0f04-e551-423b-beae-adfc48bac561 +Cache-Control: no-cache, no-transform +ETag: "689991228-gzip" +Expires: Mon, 04 Feb 2019 07:03:15 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:03:15 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d7bb297d-495e-484a-a352-2f2dd4a08714 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549263795320 +OkHttp-Received-Millis: 1549263795851 + +2019-02-04 12:33:15.882 [main] INFO - ********* END *********: +2019-02-04 12:33:15.916 [main] INFO - ********* START ********* +2019-02-04 12:33:15.916 [main] INFO - Authentication Type : http_signature +2019-02-04 12:33:15.916 [main] INFO - Request Type: PUT +2019-02-04 12:33:15.916 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-04 12:33:15.916 [main] INFO - Digest: SHA-256=obbqGQ7vcDgZ90wEsXruRpyQJFe9W4E+z7Ervkj3v7c= +2019-02-04 12:33:15.916 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:33:15.916 [main] INFO - Date: Mon, 4 Feb 2019 07:03:13 GMT +2019-02-04 12:33:15.916 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:33:15.916 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="TqbGV10VqIQ6bbGLz/Qq3RS+QSADfstlJy322J8fFRw=" +2019-02-04 12:33:15.916 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:33:16.229 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-04 12:33:16.229 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-04 12:33:16.229 [main] INFO - Response Code: 400 +2019-02-04 12:33:16.245 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_08adaf74-e89c-41b6-bc69-b953e862e1c5 +X-OPNET-Transaction-Trace: a2_10e8b7e2-40dc-4a9d-8d39-dbcd12c5f830 +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Mon, 04 Feb 2019 07:03:16 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:03:16 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 1b35d918-0d1f-425f-a63e-600b2467e017 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549263795932 +OkHttp-Received-Millis: 1549263796229 + +2019-02-04 12:33:16.245 [main] INFO - ********* END *********: +2019-02-04 12:36:38.896 [main] INFO - ********* START ********* +2019-02-04 12:36:38.896 [main] INFO - Authentication Type : http_signature +2019-02-04 12:36:38.912 [main] INFO - Request Type: DELETE +2019-02-04 12:36:38.912 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/testrest_v604, requestType=DELETE} +2019-02-04 12:36:38.912 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:36:38.943 [main] INFO - Date: Mon, 4 Feb 2019 07:06:38 GMT +2019-02-04 12:36:38.943 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:36:38.943 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ZR1yuUmqBoWynOFk58oeVUb6j9pJwMirwXRLwjfKahU=" +2019-02-04 12:36:38.943 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:36:40.302 [main] INFO - Request Body: null +2019-02-04 12:36:40.302 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604} +2019-02-04 12:36:40.302 [main] INFO - Response Code: 200 +2019-02-04 12:36:40.302 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b4114cde-a931-4c48-a05e-7929fd4d06b7 +X-OPNET-Transaction-Trace: a2_63120336-f9bc-49a8-aa45-62f480ebcfa3 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 04 Feb 2019 07:06:40 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:06:40 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 813908a5-29b4-4c13-bc9f-b9316bcf9a68 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549264000005 +OkHttp-Received-Millis: 1549264000287 + +2019-02-04 12:36:40.302 [main] INFO - ********* END *********: +2019-02-04 12:36:40.332 [main] INFO - ********* START ********* +2019-02-04 12:36:40.332 [main] INFO - Authentication Type : http_signature +2019-02-04 12:36:40.332 [main] INFO - Request Type: DELETE +2019-02-04 12:36:40.332 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/ghsrrawasbhfhcb, requestType=DELETE} +2019-02-04 12:36:40.332 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:36:40.332 [main] INFO - Date: Mon, 4 Feb 2019 07:06:38 GMT +2019-02-04 12:36:40.332 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:36:40.332 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="TesaTHch5Dk3e9k6GTXdvZLlc3JS7O0H/RC5zlx4EY8=" +2019-02-04 12:36:40.332 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:36:40.596 [main] INFO - Request Body: null +2019-02-04 12:36:40.596 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604} +2019-02-04 12:36:40.596 [main] INFO - Response Code: 404 +2019-02-04 12:36:40.596 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_89340905-24ac-445d-acce-e18bf1bed05c +X-OPNET-Transaction-Trace: a2_92007fd1-7208-4df5-a24a-33cec5e670f5 +Cache-Control: no-cache, no-transform +ETag: "860016692-gzip" +Expires: Mon, 04 Feb 2019 07:06:40 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:06:40 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 17dbe4a6-4a86-442e-9b48-8261b95dcce6 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549264000362 +OkHttp-Received-Millis: 1549264000581 + +2019-02-04 12:36:40.596 [main] INFO - ********* END *********: +2019-02-04 12:44:02.589 [main] INFO - ********* START ********* +2019-02-04 12:44:02.589 [main] INFO - Authentication Type : http_signature +2019-02-04 12:44:02.589 [main] INFO - Request Type: GET +2019-02-04 12:44:02.604 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testrest%20dec%20V70, requestType=GET} +2019-02-04 12:44:02.636 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:44:02.636 [main] INFO - Date: Mon, 4 Feb 2019 07:14:02 GMT +2019-02-04 12:44:02.651 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:44:02.651 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="x+43SB/gMqUGak5wmgLqbhTPfWAzzQ3u8XDnwzkLJBY=" +2019-02-04 12:44:02.651 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:44:06.839 [main] INFO - Request Body: null +2019-02-04 12:44:06.854 [main] INFO - Response Message: + + + + + + + + + + + + +2019-02-04 12:44:06.854 [main] INFO - Response Code: 200 +2019-02-04 12:44:06.854 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_492743c8-e45d-4d69-be5c-52e2e6c8cfc9 +X-OPNET-Transaction-Trace: a2_8e652b97-b44f-4b27-92ef-17bc8b1c1a64 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 04 Feb 2019 07:14:06 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 04 Feb 2019 07:14:06 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 156a2e85-7958-41d6-aa38-3adeedeba494 +OkHttp-Sent-Millis: 1549264443870 +OkHttp-Received-Millis: 1549264446823 + +2019-02-04 12:44:06.854 [main] INFO - ********* END *********: +2019-02-04 12:44:06.891 [main] INFO - ********* START ********* +2019-02-04 12:44:06.891 [main] INFO - Authentication Type : http_signature +2019-02-04 12:44:06.891 [main] INFO - Request Type: GET +2019-02-04 12:44:06.891 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testre, requestType=GET} +2019-02-04 12:44:06.891 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:44:06.891 [main] INFO - Date: Mon, 4 Feb 2019 07:14:02 GMT +2019-02-04 12:44:06.891 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:44:06.891 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="0CejVpmqRFjLem2w1ulJJ50uj6/jcHhbpIIOnWZI1+o=" +2019-02-04 12:44:06.891 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:44:07.266 [main] INFO - Request Body: null +2019-02-04 12:44:07.266 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-04 12:44:07.266 [main] INFO - Response Code: 404 +2019-02-04 12:44:07.266 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b613cc14-1641-4441-ae10-a2aecad38160 +X-OPNET-Transaction-Trace: a2_7a269808-da4f-47d9-ace3-a7334b072c64 +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Mon, 04 Feb 2019 07:14:07 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 04 Feb 2019 07:14:06 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: b22be5b9-4b0d-4ba7-ab22-ffb897fe3f18 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549264446891 +OkHttp-Received-Millis: 1549264447266 + +2019-02-04 12:44:07.266 [main] INFO - ********* END *********: +2019-02-04 12:44:07.281 [main] INFO - ********* START ********* +2019-02-04 12:44:07.281 [main] INFO - Authentication Type : http_signature +2019-02-04 12:44:07.281 [main] INFO - Request Type: GET +2019-02-04 12:44:07.281 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-08-02&reportName=testrest_v2, requestType=GET} +2019-02-04 12:44:07.281 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:44:07.281 [main] INFO - Date: Mon, 4 Feb 2019 07:14:02 GMT +2019-02-04 12:44:07.281 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:44:07.281 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="rr6tG5sGuUbt2x2MdRd953h3LmKnXlhPNjKXq0kqLKE=" +2019-02-04 12:44:07.281 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:44:07.625 [main] INFO - Request Body: null +2019-02-04 12:44:07.625 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-04 12:44:07.625 [main] INFO - Response Code: 404 +2019-02-04 12:44:07.625 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_c892e300-4e75-48b0-8349-5656ac09cd85 +X-OPNET-Transaction-Trace: a2_b88f3f56-7e9d-4692-8143-5d86fc626040 +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Mon, 04 Feb 2019 07:14:07 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 04 Feb 2019 07:14:06 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e94782f6-4eef-4c07-a3ce-8c3955cbdbd5 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549264447281 +OkHttp-Received-Millis: 1549264447625 + +2019-02-04 12:44:07.625 [main] INFO - ********* END *********: +2019-02-04 12:47:48.370 [main] INFO - ********* START ********* +2019-02-04 12:47:48.370 [main] INFO - Authentication Type : http_signature +2019-02-04 12:47:48.370 [main] INFO - Request Type: GET +2019-02-04 12:47:48.370 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=GET} +2019-02-04 12:47:48.370 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:47:48.416 [main] INFO - Date: Mon, 4 Feb 2019 07:17:48 GMT +2019-02-04 12:47:48.416 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:47:48.416 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="lliS5ENh37s1ktE3ILPKrbQJUrUpRlau+IrrUufkWdk=" +2019-02-04 12:47:48.416 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:47:50.073 [main] INFO - Request Body: null +2019-02-04 12:47:50.073 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-04 12:47:50.073 [main] INFO - Response Code: 200 +2019-02-04 12:47:50.073 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_014d9633-ba1d-4dcb-aba2-d34dc12a728f +X-OPNET-Transaction-Trace: a2_f2db8285-d9f9-44ad-9624-8bca0de54fdc +Cache-Control: no-cache, no-transform +ETag: "2061875623-gzip" +Expires: Mon, 04 Feb 2019 07:17:49 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:17:49 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 559493a4-d7d2-41c0-bcd4-7c26dc89debb +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549264669588 +OkHttp-Received-Millis: 1549264670041 + +2019-02-04 12:47:50.073 [main] INFO - ********* END *********: +2019-02-04 12:49:56.745 [main] INFO - ********* START ********* +2019-02-04 12:49:56.745 [main] INFO - Authentication Type : http_signature +2019-02-04 12:49:56.761 [main] INFO - Request Type: GET +2019-02-04 12:49:56.761 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-05-30T12%3A00%3A00.000-05%3A00, requestType=GET} +2019-02-04 12:49:56.792 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:49:56.792 [main] INFO - Date: Mon, 4 Feb 2019 07:19:56 GMT +2019-02-04 12:49:56.792 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:49:56.792 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="y/3h2FlXbt6n4L18xseVNqBIuj6/rQSWVBwrsM/DTB0=" +2019-02-04 12:49:56.792 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:49:58.277 [main] INFO - Request Body: null +2019-02-04 12:49:58.277 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-05-30T12%3A00%3A00.000-05%3A00"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-04 12:49:58.277 [main] INFO - Response Code: 400 +2019-02-04 12:49:58.277 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_3abb7e9d-c382-4dd7-9423-c55bc5ac1231 +X-OPNET-Transaction-Trace: a2_d6407c08-a767-48f8-8fba-0d3c2ab4f733 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:19:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 99095c4f-233b-449b-9e1c-e46a32deb17e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549264797980 +OkHttp-Received-Millis: 1549264798261 + +2019-02-04 12:49:58.277 [main] INFO - ********* END *********: +2019-02-04 12:49:58.308 [main] INFO - ********* START ********* +2019-02-04 12:49:58.308 [main] INFO - Authentication Type : http_signature +2019-02-04 12:49:58.308 [main] INFO - Request Type: GET +2019-02-04 12:49:58.308 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/notification-of-changes?startTime=2019-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-05-30T12%3A00%3A00.000-05%3A00, requestType=GET} +2019-02-04 12:49:58.308 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:49:58.308 [main] INFO - Date: Mon, 4 Feb 2019 07:19:56 GMT +2019-02-04 12:49:58.308 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:49:58.308 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="nCipG2Zy0KGWhZa8dSDIva1/vkqLiLcFQsuDMzCe/9Q=" +2019-02-04 12:49:58.308 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:49:58.590 [main] INFO - Request Body: null +2019-02-04 12:49:58.590 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-05-30T12%3A00%3A00.000-05%3A00} +2019-02-04 12:49:58.590 [main] INFO - Response Code: 400 +2019-02-04 12:49:58.590 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_20793332-f756-4719-859e-e40203501c7b +X-OPNET-Transaction-Trace: a2_d92e3f1e-f218-4ff1-8d2e-598e87821c60 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:19:57 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 2477d550-a216-44b9-9416-0f57639d4d3b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549264798308 +OkHttp-Received-Millis: 1549264798590 + +2019-02-04 12:49:58.590 [main] INFO - ********* END *********: +2019-02-04 12:59:03.429 [main] INFO - ********* START ********* +2019-02-04 12:59:03.445 [main] INFO - Authentication Type : http_signature +2019-02-04 12:59:03.445 [main] INFO - Request Type: GET +2019-02-04 12:59:03.445 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-04 12:59:03.476 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:59:03.476 [main] INFO - Date: Mon, 4 Feb 2019 07:29:03 GMT +2019-02-04 12:59:03.476 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:59:03.476 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="QLg5AbjnVOyyOLVDh01GAA3FXruNUD939WlIYpkotWA=" +2019-02-04 12:59:03.476 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:59:04.960 [main] INFO - Request Body: null +2019-02-04 12:59:04.960 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/purchase-refund-details"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-04 12:59:04.960 [main] INFO - Response Code: 400 +2019-02-04 12:59:04.960 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_9cbf3882-2b8e-42dc-a8db-004665a0256f +X-OPNET-Transaction-Trace: a2_4306f07e-ea56-43a3-8dea-8125922194f9 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:29:04 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 62fdf081-bfbe-4cba-a6ea-92276fd8540b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265344648 +OkHttp-Received-Millis: 1549265344929 + +2019-02-04 12:59:04.960 [main] INFO - ********* END *********: +2019-02-04 12:59:04.987 [main] INFO - ********* START ********* +2019-02-04 12:59:04.987 [main] INFO - Authentication Type : http_signature +2019-02-04 12:59:04.987 [main] INFO - Request Type: GET +2019-02-04 12:59:04.987 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2019-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-04 12:59:04.987 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:59:04.987 [main] INFO - Date: Mon, 4 Feb 2019 07:29:03 GMT +2019-02-04 12:59:04.987 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:59:04.987 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="2nPEdmdTcmY8BRSsrdRjUT1dtEkM0mRANRxdWEjrzyA=" +2019-02-04 12:59:04.987 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:59:05.393 [main] INFO - Request Body: null +2019-02-04 12:59:05.393 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000} +2019-02-04 12:59:05.393 [main] INFO - Response Code: 400 +2019-02-04 12:59:05.393 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_97269198-0195-4ba1-bb18-4d94a404a96b +X-OPNET-Transaction-Trace: a2_9695fc04-a0a1-4f39-9f22-f575442f6ce0 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:29:05 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ab251478-eeaf-4003-865a-16c9e0152844 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265344987 +OkHttp-Received-Millis: 1549265345393 + +2019-02-04 12:59:05.393 [main] INFO - ********* END *********: +2019-02-04 12:59:05.425 [main] INFO - ********* START ********* +2019-02-04 12:59:05.425 [main] INFO - Authentication Type : http_signature +2019-02-04 12:59:05.425 [main] INFO - Request Type: GET +2019-02-04 12:59:05.425 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=udapaa&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-04 12:59:05.425 [main] INFO - v-c-merchant-id: testrest +2019-02-04 12:59:05.425 [main] INFO - Date: Mon, 4 Feb 2019 07:29:03 GMT +2019-02-04 12:59:05.425 [main] INFO - Host: apitest.cybersource.com +2019-02-04 12:59:05.425 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="j+zxUyWwGu3QAPCAjZDS+UWH258egJ/pjpSjMvgtr8I=" +2019-02-04 12:59:05.425 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 12:59:05.691 [main] INFO - Request Body: null +2019-02-04 12:59:05.691 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/purchase-refund-details?startTime=2019-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000} +2019-02-04 12:59:05.691 [main] INFO - Response Code: 400 +2019-02-04 12:59:05.691 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_bb9fdd1a-fcd0-40e5-bc79-f78bf60204a4 +X-OPNET-Transaction-Trace: a2_109baebc-8c6a-447a-82c3-0ed86e05777b +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:29:05 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ddddf784-a49d-4440-9895-21e626437ab7 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265345425 +OkHttp-Received-Millis: 1549265345691 + +2019-02-04 12:59:05.691 [main] INFO - ********* END *********: +2019-02-04 13:00:07.650 [main] INFO - ********* START ********* +2019-02-04 13:00:07.665 [main] INFO - Authentication Type : http_signature +2019-02-04 13:00:07.665 [main] INFO - Request Type: GET +2019-02-04 13:00:07.665 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-04 13:00:07.712 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:00:07.712 [main] INFO - Date: Mon, 4 Feb 2019 07:30:07 GMT +2019-02-04 13:00:07.712 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:00:07.712 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="SwdXERMgqFnpUeikPwFsOzZyHuNhbNb+9PcgTmEEgI0=" +2019-02-04 13:00:07.712 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:00:09.212 [main] INFO - Request Body: null +2019-02-04 13:00:09.212 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/purchase-refund-details"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-04 13:00:09.212 [main] INFO - Response Code: 400 +2019-02-04 13:00:09.212 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_eeecc45c-0d1e-4623-bb6f-7719052b73ee +X-OPNET-Transaction-Trace: a2_4989c2c7-d1df-495d-a704-b4e4182be5eb +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:30:09 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a19e0411-e615-4dac-b9e6-0c93a9e8bf2a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265408868 +OkHttp-Received-Millis: 1549265409165 + +2019-02-04 13:00:09.212 [main] INFO - ********* END *********: +2019-02-04 13:00:09.244 [main] INFO - ********* START ********* +2019-02-04 13:00:09.244 [main] INFO - Authentication Type : http_signature +2019-02-04 13:00:09.244 [main] INFO - Request Type: GET +2019-02-04 13:00:09.244 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2019-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-04 13:00:09.244 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:00:09.244 [main] INFO - Date: Mon, 4 Feb 2019 07:30:07 GMT +2019-02-04 13:00:09.244 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:00:09.244 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="z1LU7FQ0eLEz4IhrIcdQerCRErS9vTP1d1+1CuMZ2hA=" +2019-02-04 13:00:09.244 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:00:09.494 [main] INFO - Request Body: null +2019-02-04 13:00:09.494 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000} +2019-02-04 13:00:09.494 [main] INFO - Response Code: 400 +2019-02-04 13:00:09.509 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_1a3feae0-33a1-4124-abf8-fb62fa09e84a +X-OPNET-Transaction-Trace: a2_01db6c30-680d-41d7-84ee-2f79755f1a50 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:30:09 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: afd854e4-459e-4d62-8ebd-4708b04e8226 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265409244 +OkHttp-Received-Millis: 1549265409494 + +2019-02-04 13:00:09.509 [main] INFO - ********* END *********: +2019-02-04 13:00:09.525 [main] INFO - ********* START ********* +2019-02-04 13:00:09.525 [main] INFO - Authentication Type : http_signature +2019-02-04 13:00:09.525 [main] INFO - Request Type: GET +2019-02-04 13:00:09.525 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=udapaa&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-04 13:00:09.525 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:00:09.525 [main] INFO - Date: Mon, 4 Feb 2019 07:30:07 GMT +2019-02-04 13:00:09.525 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:00:09.525 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="3NbZKPiHAgJQN12KmYXG/EgR0NVWzuZP9Q6MkWySXdI=" +2019-02-04 13:00:09.525 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:00:09.759 [main] INFO - Request Body: null +2019-02-04 13:00:09.775 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/purchase-refund-details?startTime=2019-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000} +2019-02-04 13:00:09.775 [main] INFO - Response Code: 400 +2019-02-04 13:00:09.775 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_305cbd08-a35e-4e91-9be8-c17ee97a83e5 +X-OPNET-Transaction-Trace: a2_ecc66480-b5b5-445c-b4eb-51a1e6768ff1 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:30:09 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 3829427f-d7f0-403f-8d3a-1cfcdb98dc2f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265409525 +OkHttp-Received-Millis: 1549265409759 + +2019-02-04 13:00:09.775 [main] INFO - ********* END *********: +2019-02-04 13:02:58.264 [main] INFO - ********* START ********* +2019-02-04 13:02:58.264 [main] INFO - Authentication Type : http_signature +2019-02-04 13:02:58.264 [main] INFO - Request Type: GET +2019-02-04 13:02:58.264 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest, requestType=GET} +2019-02-04 13:02:58.264 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:02:58.311 [main] INFO - Date: Mon, 4 Feb 2019 07:32:57 GMT +2019-02-04 13:02:58.311 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:02:58.311 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="7Yx3SihBEh1cmXZoYz9oNR3FQeg0kZ3+kJTFtlUXtmg=" +2019-02-04 13:02:58.311 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:02:59.858 [main] INFO - Request Body: null +2019-02-04 13:02:59.858 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest} +2019-02-04 13:02:59.858 [main] INFO - Response Code: 200 +2019-02-04 13:02:59.858 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_0df03b68-3991-4d64-8a64-93c01a0af7c3 +X-OPNET-Transaction-Trace: a2_84782a3a-d1ad-4619-9208-b71a60b9677f +Cache-Control: no-cache, no-transform +ETag: "609183382-gzip" +Expires: Mon, 04 Feb 2019 07:32:59 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:32:59 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: afd783e1-1242-44b8-b0d7-c85dbfaa899c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265579514 +OkHttp-Received-Millis: 1549265579826 + +2019-02-04 13:02:59.858 [main] INFO - ********* END *********: +2019-02-04 13:02:59.976 [main] INFO - ********* START ********* +2019-02-04 13:02:59.976 [main] INFO - Authentication Type : http_signature +2019-02-04 13:02:59.976 [main] INFO - Request Type: GET +2019-02-04 13:02:59.976 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest, requestType=GET} +2019-02-04 13:02:59.976 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:02:59.976 [main] INFO - Date: Mon, 4 Feb 2019 07:32:57 GMT +2019-02-04 13:02:59.976 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:02:59.976 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="M5vuN1WHODYS+mPTldV+kw/Bb8RNzOSPyUklup0YLQA=" +2019-02-04 13:02:59.976 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:03:00.258 [main] INFO - Request Body: null +2019-02-04 13:03:00.258 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest} +2019-02-04 13:03:00.258 [main] INFO - Response Code: 404 +2019-02-04 13:03:00.258 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_46a3cb13-3778-49f9-a1fb-b28529b7cef2 +X-OPNET-Transaction-Trace: a2_b13b191b-b365-4b2c-993a-203871e4f31e +Cache-Control: no-cache, no-transform +ETag: "-830509477-gzip" +Expires: Mon, 04 Feb 2019 07:33:00 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:33:00 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 65bd870e-7402-4521-8235-d86334d55423 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265579976 +OkHttp-Received-Millis: 1549265580258 + +2019-02-04 13:03:00.258 [main] INFO - ********* END *********: +2019-02-04 13:03:00.273 [main] INFO - ********* START ********* +2019-02-04 13:03:00.273 [main] INFO - Authentication Type : http_signature +2019-02-04 13:03:00.273 [main] INFO - Request Type: GET +2019-02-04 13:03:00.289 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=bkalama, requestType=GET} +2019-02-04 13:03:00.289 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:03:00.289 [main] INFO - Date: Mon, 4 Feb 2019 07:32:57 GMT +2019-02-04 13:03:00.289 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:03:00.289 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="K59LR3CMDz8ccGwzx+f/MjbKjuDWWrtps9wTKavWbHg=" +2019-02-04 13:03:00.289 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:03:00.539 [main] INFO - Request Body: null +2019-02-04 13:03:00.539 [main] INFO - Response Message: Response{protocol=http/1.1, code=404, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest} +2019-02-04 13:03:00.539 [main] INFO - Response Code: 400 +2019-02-04 13:03:00.539 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_cba4f23e-ddc2-4b4c-bc27-8df096e583ed +X-OPNET-Transaction-Trace: a2_8b2e1b55-077e-4f40-9917-9ee002a4079a +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:33:00 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 9fee389a-8b2a-4b87-bbcb-4066aee7977c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265580289 +OkHttp-Received-Millis: 1549265580539 + +2019-02-04 13:03:00.539 [main] INFO - ********* END *********: +2019-02-04 13:05:01.914 [main] INFO - ********* START ********* +2019-02-04 13:05:01.930 [main] INFO - Authentication Type : http_signature +2019-02-04 13:05:01.930 [main] INFO - Request Type: GET +2019-02-04 13:05:01.930 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/AcquirerExceptionDetailClass, requestType=GET} +2019-02-04 13:05:01.930 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:05:01.961 [main] INFO - Date: Mon, 4 Feb 2019 07:35:01 GMT +2019-02-04 13:05:01.961 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:05:01.961 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="iSqSI6eGr3Wq8yABOiAqnwhoCFZ1nSGmuz7A4JIYcdY=" +2019-02-04 13:05:01.961 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:05:03.511 [main] INFO - Request Body: null +2019-02-04 13:05:03.511 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass} +2019-02-04 13:05:03.511 [main] INFO - Response Code: 200 +2019-02-04 13:05:03.511 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_fabbc9ab-d7bf-46c9-ae34-bee847a2660a +X-OPNET-Transaction-Trace: a2_3b93506a-988a-4364-b1b6-5a62afd1d78b +Cache-Control: no-cache, no-transform +ETag: "-78621274-gzip" +Expires: Mon, 04 Feb 2019 07:35:03 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:35:02 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 89588946-df7b-4f28-8512-d530113f543b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265703195 +OkHttp-Received-Millis: 1549265703480 + +2019-02-04 13:05:03.511 [main] INFO - ********* END *********: +2019-02-04 13:05:03.568 [main] INFO - ********* START ********* +2019-02-04 13:05:03.568 [main] INFO - Authentication Type : http_signature +2019-02-04 13:05:03.568 [main] INFO - Request Type: GET +2019-02-04 13:05:03.568 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/SubscDetail, requestType=GET} +2019-02-04 13:05:03.568 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:05:03.568 [main] INFO - Date: Mon, 4 Feb 2019 07:35:01 GMT +2019-02-04 13:05:03.568 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:05:03.568 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="sOLP4Ly7dHiSmm8fqR4nep6TkITmLouwdBoD0ayke4E=" +2019-02-04 13:05:03.568 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:05:03.818 [main] INFO - Request Body: null +2019-02-04 13:05:03.818 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass} +2019-02-04 13:05:03.818 [main] INFO - Response Code: 404 +2019-02-04 13:05:03.818 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_75588d60-c4b6-4a27-a391-12cb9c6c1199 +X-OPNET-Transaction-Trace: a2_19236086-460c-496b-a36d-963766dbffcf +Cache-Control: no-cache, no-transform +ETag: "204857944-gzip" +Expires: Mon, 04 Feb 2019 07:35:03 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:35:03 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: f0a146c3-185c-4f9c-90dc-2fe928adee30 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265703568 +OkHttp-Received-Millis: 1549265703818 + +2019-02-04 13:05:03.818 [main] INFO - ********* END *********: +2019-02-04 13:06:14.088 [main] INFO - ********* START ********* +2019-02-04 13:06:14.104 [main] INFO - Authentication Type : http_signature +2019-02-04 13:06:14.104 [main] INFO - Request Type: GET +2019-02-04 13:06:14.104 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=testrest, requestType=GET} +2019-02-04 13:06:14.104 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:06:14.151 [main] INFO - Date: Mon, 4 Feb 2019 07:36:13 GMT +2019-02-04 13:06:14.151 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:06:14.151 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="dWuHTI8QkSql8HUcgEDKrj26xdor+bo4eiwUYzLyKyM=" +2019-02-04 13:06:14.151 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:06:15.666 [main] INFO - Request Body: null +2019-02-04 13:06:15.666 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-04 13:06:15.666 [main] INFO - Response Code: 200 +2019-02-04 13:06:15.666 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_1c02b6a4-13b7-4506-8296-62c928d7d23d +X-OPNET-Transaction-Trace: a2_fda195b5-c0cf-420a-a9e9-a9083bc72c49 +Cache-Control: no-cache, no-transform +ETag: "1846674451-gzip" +Expires: Mon, 04 Feb 2019 07:36:15 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:36:15 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 28fe2175-d462-4379-b389-fbebec132749 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265775325 +OkHttp-Received-Millis: 1549265775635 + +2019-02-04 13:06:15.666 [main] INFO - ********* END *********: +2019-02-04 13:06:15.715 [main] INFO - ********* START ********* +2019-02-04 13:06:15.715 [main] INFO - Authentication Type : http_signature +2019-02-04 13:06:15.715 [main] INFO - Request Type: GET +2019-02-04 13:06:15.715 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=bplkmdghd, requestType=GET} +2019-02-04 13:06:15.715 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:06:15.715 [main] INFO - Date: Mon, 4 Feb 2019 07:36:13 GMT +2019-02-04 13:06:15.715 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:06:15.715 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="bURdAk4RhpV5N11e8uCP884qk2HfpIpSXPq19PFZyJg=" +2019-02-04 13:06:15.715 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:06:15.965 [main] INFO - Request Body: null +2019-02-04 13:06:15.965 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-04 13:06:15.965 [main] INFO - Response Code: 400 +2019-02-04 13:06:15.965 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_6e8af71a-db70-4197-9656-c52df4674c3a +X-OPNET-Transaction-Trace: a2_13d15c35-67de-4396-9828-1d5b89929aad +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:36:15 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 43af9443-209d-4855-82ff-345794b86c91 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265775715 +OkHttp-Received-Millis: 1549265775949 + +2019-02-04 13:06:15.965 [main] INFO - ********* END *********: +2019-02-04 13:07:15.566 [main] INFO - ********* START ********* +2019-02-04 13:07:15.582 [main] INFO - Authentication Type : http_signature +2019-02-04 13:07:15.582 [main] INFO - Request Type: GET +2019-02-04 13:07:15.582 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/Texture, requestType=GET} +2019-02-04 13:07:15.582 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:07:15.613 [main] INFO - Date: Mon, 4 Feb 2019 07:37:15 GMT +2019-02-04 13:07:15.629 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:07:15.629 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="qnqL8yj77mgitkGTm6zO15gm8HA/O+tewroIYipOKhE=" +2019-02-04 13:07:15.629 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:07:17.035 [main] INFO - Request Body: null +2019-02-04 13:07:17.035 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture} +2019-02-04 13:07:17.035 [main] INFO - Response Code: 200 +2019-02-04 13:07:17.035 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_57e029d8-b983-40a0-8150-c16ed1f5bbc1 +X-OPNET-Transaction-Trace: a2_85bcc7ca-c7c7-43d1-bf7c-6aacae5b9550 +Cache-Control: no-cache, no-transform +ETag: "-1844867216-gzip" +Expires: Mon, 04 Feb 2019 07:37:16 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:37:16 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 0b4b51c2-2957-4f2b-b926-afc51d333061 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265836722 +OkHttp-Received-Millis: 1549265837019 + +2019-02-04 13:07:17.035 [main] INFO - ********* END *********: +2019-02-04 13:07:17.100 [main] INFO - ********* START ********* +2019-02-04 13:07:17.100 [main] INFO - Authentication Type : http_signature +2019-02-04 13:07:17.100 [main] INFO - Request Type: GET +2019-02-04 13:07:17.100 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/bplkmdgsd, requestType=GET} +2019-02-04 13:07:17.100 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:07:17.100 [main] INFO - Date: Mon, 4 Feb 2019 07:37:15 GMT +2019-02-04 13:07:17.100 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:07:17.100 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="0J0XK+5OiJ6EXBHpr6Yyz75yrreqw5bMRpRa2iNusbw=" +2019-02-04 13:07:17.100 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:07:17.350 [main] INFO - Request Body: null +2019-02-04 13:07:17.350 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture} +2019-02-04 13:07:17.350 [main] INFO - Response Code: 404 +2019-02-04 13:07:17.350 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e0a44f92-575a-41ab-86a8-b7e710db60bf +X-OPNET-Transaction-Trace: a2_e03af834-1726-4f96-b455-d5c97909c577 +Cache-Control: no-cache, no-transform +ETag: "1764052161-gzip" +Expires: Mon, 04 Feb 2019 07:37:17 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:37:17 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e483e149-46b2-4feb-8e2f-a5dad1478cff +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265837100 +OkHttp-Received-Millis: 1549265837350 + +2019-02-04 13:07:17.366 [main] INFO - ********* END *********: +2019-02-04 13:08:23.910 [main] INFO - ********* START ********* +2019-02-04 13:08:23.910 [main] INFO - Authentication Type : http_signature +2019-02-04 13:08:23.927 [main] INFO - Request Type: GET +2019-02-04 13:08:23.927 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-04 13:08:23.956 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:08:23.956 [main] INFO - Date: Mon, 4 Feb 2019 07:38:23 GMT +2019-02-04 13:08:23.956 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:08:23.956 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="lIwlRp0vpv2gR+QrNFfQeOnADzcTFDRHyA/dqW/G6uQ=" +2019-02-04 13:08:23.972 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:08:31.503 [main] INFO - Request Body: null +2019-02-04 13:08:31.503 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime} +2019-02-04 13:08:31.503 [main] INFO - Response Code: 200 +2019-02-04 13:08:31.503 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_cd122808-fdb0-4964-af0e-49d5f8de2e42 +X-OPNET-Transaction-Trace: a2_22b895cd-91f0-4f05-89e6-578c7c83b170 +Cache-Control: no-cache, no-transform +ETag: "98577355-gzip" +Expires: Mon, 04 Feb 2019 07:38:31 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:38:31 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ebd4601d-c2eb-4ca7-aa17-6bf10b85293c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265905081 +OkHttp-Received-Millis: 1549265911472 + +2019-02-04 13:08:31.503 [main] INFO - ********* END *********: +2019-02-04 13:08:31.553 [main] INFO - ********* START ********* +2019-02-04 13:08:31.553 [main] INFO - Authentication Type : http_signature +2019-02-04 13:08:31.553 [main] INFO - Request Type: GET +2019-02-04 13:08:31.553 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime, requestType=GET} +2019-02-04 13:08:31.553 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:08:31.553 [main] INFO - Date: Mon, 4 Feb 2019 07:38:23 GMT +2019-02-04 13:08:31.553 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:08:31.553 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="38326qhHe9l+2ATRfJbZKfX8QqPx+A3p6rs3kOvL4Os=" +2019-02-04 13:08:31.553 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:08:31.819 [main] INFO - Request Body: null +2019-02-04 13:08:31.819 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime} +2019-02-04 13:08:31.819 [main] INFO - Response Code: 400 +2019-02-04 13:08:31.819 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_8c8c0a04-749d-4bae-89a3-ada8d8b78e96 +X-OPNET-Transaction-Trace: a2_0a087306-420c-4ba4-8f87-1bf2ef95d3ce +Cache-Control: no-cache, no-transform +ETag: "480352859-gzip" +Expires: Mon, 04 Feb 2019 07:38:31 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:38:31 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 1a1261dd-3a4c-4e39-a0aa-f7ba34bab184 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265911553 +OkHttp-Received-Millis: 1549265911819 + +2019-02-04 13:08:31.819 [main] INFO - ********* END *********: +2019-02-04 13:08:31.834 [main] INFO - ********* START ********* +2019-02-04 13:08:31.834 [main] INFO - Authentication Type : http_signature +2019-02-04 13:08:31.834 [main] INFO - Request Type: GET +2019-02-04 13:08:31.834 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2019-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-04 13:08:31.834 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:08:31.834 [main] INFO - Date: Mon, 4 Feb 2019 07:38:23 GMT +2019-02-04 13:08:31.850 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:08:31.850 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="rIEHfUliLpyXBf+lWBYRWBFE8gCXgO8qkHJz8RsDa4s=" +2019-02-04 13:08:31.850 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:08:32.131 [main] INFO - Request Body: null +2019-02-04 13:08:32.131 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime} +2019-02-04 13:08:32.131 [main] INFO - Response Code: 404 +2019-02-04 13:08:32.131 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d39ddac3-dd65-49f6-b6fe-d294c760c121 +X-OPNET-Transaction-Trace: a2_6c26ba44-732b-446a-b483-18877571fdd4 +Cache-Control: no-cache, no-transform +ETag: "1803701484-gzip" +Expires: Mon, 04 Feb 2019 07:38:32 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:38:31 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7d7f0913-b3ef-41b4-8649-6bb0d3eab22f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265911850 +OkHttp-Received-Millis: 1549265912131 + +2019-02-04 13:08:32.131 [main] INFO - ********* END *********: +2019-02-04 13:09:32.851 [main] INFO - ********* START ********* +2019-02-04 13:09:32.867 [main] INFO - Authentication Type : http_signature +2019-02-04 13:09:32.867 [main] INFO - Request Type: GET +2019-02-04 13:09:32.867 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA%3D%3D?organizationId=testrest, requestType=GET} +2019-02-04 13:09:32.867 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:09:32.898 [main] INFO - Date: Mon, 4 Feb 2019 07:39:32 GMT +2019-02-04 13:09:32.898 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:09:32.898 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="fEn6m9x8BdY0Njb+PUlqfmxSZxh6gNpa1M7vYEpmw1M=" +2019-02-04 13:09:32.898 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:09:34.429 [main] INFO - Request Body: null +2019-02-04 13:09:34.429 [main] INFO - Response Message: testrest,TRRReport,TransactionRequestReport,1.10,2018-10-19T16:00:00Z to 2018-10-20T16:00:00Z +RequestID,RequestDate,MerchantReferenceNumber,MerchantID +5399662771246550003001,2018-10-19T16:24:37Z,TC50171_3,testrest +5399664781416551403001,2018-10-19T16:27:58Z,TC50171_3,testrest +5399666196306552903001,2018-10-19T16:30:19Z,TC50171_3,testrest +5399666357576981903005,2018-10-19T16:30:35Z,TC50171_3,testrest +5399680347956058103004,2018-10-19T16:53:54Z,TC50171_3,testrest +5399680431216058303004,2018-10-19T16:54:03Z,TC50171_3,testrest +5399684302416000903005,2018-10-19T17:00:30Z,TC50171_3,testrest +5399684505506723403002,2018-10-19T17:00:50Z,TC50171_3,testrest +5399684781686729303003,2018-10-19T17:01:18Z,TC50171_3,testrest +5399742716346290903004,2018-10-19T18:37:51Z,TC50171_3,testrest +5399742808726291703004,2018-10-19T18:38:00Z,TC50171_3,testrest +5399743679866242703005,2018-10-19T18:39:28Z,TC50171_3,testrest +5399751921786020803003,2018-10-19T18:53:12Z,TC50171_3,testrest +5399761919726317303005,2018-10-19T19:09:52Z,TC50171_3,testrest +5399787878246907603001,2018-10-19T19:53:07Z,TC50171_3,testrest +5399793339576405603004,2018-10-19T20:02:14Z,405195660::1,testrest +5399807626196378603005,2018-10-19T20:26:02Z,405195660::1,testrest +5399810449296963303001,2018-10-19T20:30:45Z,33557799,testrest +5399829987226032203001,2018-10-19T21:03:18Z,1234567890,testrest +5399844740286070303001,2018-10-19T21:27:54Z,TC50171_3,testrest +5399845077266611803006,2018-10-19T21:28:27Z,TC50171_3,testrest +5399845139246229503002,2018-10-19T21:28:34Z,TC50171_3,testrest +5399889652786155003001,2018-10-19T22:42:45Z,TC50171_3,testrest +5399900584196720203006,2018-10-19T23:00:58Z,1234567890,testrest + +2019-02-04 13:09:34.429 [main] INFO - Response Code: 200 +2019-02-04 13:09:34.429 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_75fdc0ce-6ba8-4263-8837-5b7908eb267b +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 04 Feb 2019 07:39:34 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Mon, 04 Feb 2019 07:39:34 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e2909d9f-3864-4409-b481-8373e63a426d +OkHttp-Sent-Millis: 1549265974085 +OkHttp-Received-Millis: 1549265974413 + +2019-02-04 13:09:34.429 [main] INFO - ********* END *********: +2019-02-04 13:09:34.469 [main] INFO - ********* START ********* +2019-02-04 13:09:34.469 [main] INFO - Authentication Type : http_signature +2019-02-04 13:09:34.469 [main] INFO - Request Type: GET +2019-02-04 13:09:34.469 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0?organizationId=testrest, requestType=GET} +2019-02-04 13:09:34.469 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:09:34.469 [main] INFO - Date: Mon, 4 Feb 2019 07:39:32 GMT +2019-02-04 13:09:34.469 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:09:34.469 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="zgEtDDMOyKxFhW6JR9DQdrSje+tdJmSYS7CY7ERVc1o=" +2019-02-04 13:09:34.469 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:09:34.758 [main] INFO - Request Body: null +2019-02-04 13:09:34.758 [main] INFO - Response Message: + + Field validation errors + cybsapi.validation.errors + VALIDATION_ERROR + + cybsapi.file.id.invalid + fileId + Invalid File ID + + + +2019-02-04 13:09:34.758 [main] INFO - Response Code: 400 +2019-02-04 13:09:34.758 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_20bed4ac-805d-43af-abfb-a0b63bd91142 +Cache-Control: no-cache, no-transform +ETag: "-807714005-gzip" +Expires: Mon, 04 Feb 2019 07:39:34 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Mon, 04 Feb 2019 07:39:34 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6ea5ce5c-33c0-4cfa-a15d-6846646b8d70 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549265974469 +OkHttp-Received-Millis: 1549265974758 + +2019-02-04 13:09:34.758 [main] INFO - ********* END *********: +2019-02-04 13:11:54.912 [main] INFO - ********* START ********* +2019-02-04 13:11:54.924 [main] INFO - Authentication Type : http_signature +2019-02-04 13:11:54.928 [main] INFO - Request Type: GET +2019-02-04 13:11:54.928 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest, requestType=GET} +2019-02-04 13:11:54.968 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:11:54.968 [main] INFO - Date: Mon, 4 Feb 2019 07:41:54 GMT +2019-02-04 13:11:54.968 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:11:54.972 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="kdatWfs+58r6qPMmFSwoKg0HCnALCEUzAz0p0efHOoA=" +2019-02-04 13:11:54.972 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:11:57.715 [main] INFO - Request Body: null +2019-02-04 13:11:57.715 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest} +2019-02-04 13:11:57.715 [main] INFO - Response Code: 200 +2019-02-04 13:11:57.715 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_6df57d1b-df7e-4a9b-a44b-ee84a83c4ec0 +Cache-Control: no-cache, no-transform +ETag: "1382942517-gzip" +Expires: Mon, 04 Feb 2019 07:41:57 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:41:57 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 20ee0896-5cab-4e07-963d-8218afd361b8 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549266116168 +OkHttp-Received-Millis: 1549266117621 + +2019-02-04 13:11:57.715 [main] INFO - ********* END *********: +2019-02-04 13:11:57.835 [main] INFO - ********* START ********* +2019-02-04 13:11:57.835 [main] INFO - Authentication Type : http_signature +2019-02-04 13:11:57.835 [main] INFO - Request Type: GET +2019-02-04 13:11:57.835 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testtest, requestType=GET} +2019-02-04 13:11:57.835 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:11:57.835 [main] INFO - Date: Mon, 4 Feb 2019 07:41:54 GMT +2019-02-04 13:11:57.835 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:11:57.835 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="zyWcYbYML5IZiat5Awd4WfqVj5UqdIW8FIPLeKlUcTc=" +2019-02-04 13:11:57.835 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:11:58.117 [main] INFO - Request Body: null +2019-02-04 13:11:58.117 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest} +2019-02-04 13:11:58.117 [main] INFO - Response Code: 403 +2019-02-04 13:11:58.117 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_1828c02d-d38c-452d-942b-79a15f85f8d0 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:41:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c780aa94-cd56-40ea-b913-a4947fa52762 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549266117851 +OkHttp-Received-Millis: 1549266118117 + +2019-02-04 13:11:58.117 [main] INFO - ********* END *********: +2019-02-04 13:15:18.051 [main] INFO - ********* START ********* +2019-02-04 13:15:18.066 [main] INFO - Authentication Type : http_signature +2019-02-04 13:15:18.066 [main] INFO - Request Type: GET +2019-02-04 13:15:18.066 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches/Owcyk6pl, requestType=GET} +2019-02-04 13:15:18.066 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:15:18.066 [main] INFO - Date: Mon, 4 Feb 2019 07:45:17 GMT +2019-02-04 13:15:18.066 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:15:18.066 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="U/HSJMxkZvogMc7oZ6XDKrozv8nGxYVtLml0EoM+jjY=" +2019-02-04 13:15:18.066 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:15:19.488 [main] INFO - Request Body: null +2019-02-04 13:15:19.488 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches/Owcyk6pl} +2019-02-04 13:15:19.488 [main] INFO - Response Code: 200 +2019-02-04 13:15:19.488 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_61d4f493-efa0-40c0-9780-c324b24ac52e +X-OPNET-Transaction-Trace: a2_b8017183-9b32-4f45-acd3-6ebe285095ee +Cache-Control: no-cache, no-transform +ETag: "-1139639258" +Expires: Mon, 04 Feb 2019 07:45:19 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:45:19 GMT +X-Cnection: close +v-c-correlation-id: 2a6e0aa0-eced-4222-bb61-e5ea56be32d6 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549266319207 +OkHttp-Received-Millis: 1549266319473 + +2019-02-04 13:15:19.488 [main] INFO - ********* END *********: +2019-02-04 13:15:19.516 [main] INFO - ********* START ********* +2019-02-04 13:15:19.516 [main] INFO - Authentication Type : http_signature +2019-02-04 13:15:19.516 [main] INFO - Request Type: GET +2019-02-04 13:15:19.516 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches/CYBS123, requestType=GET} +2019-02-04 13:15:19.516 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:15:19.516 [main] INFO - Date: Mon, 4 Feb 2019 07:45:17 GMT +2019-02-04 13:15:19.516 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:15:19.516 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ZYoMSbxnaAwp3ekLHr4ZtTOTkPxA6neYvYgYqvO3sbQ=" +2019-02-04 13:15:19.516 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:15:19.798 [main] INFO - Request Body: null +2019-02-04 13:15:19.798 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches/Owcyk6pl} +2019-02-04 13:15:19.798 [main] INFO - Response Code: 404 +2019-02-04 13:15:19.798 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_6309431c-e0f2-4687-8386-373f3165dd82 +Cache-Control: no-cache, no-transform +ETag: "-975452876" +Expires: Mon, 04 Feb 2019 07:45:19 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:45:19 GMT +X-Cnection: close +v-c-correlation-id: 819b198d-0c9a-4353-bd95-93c5d0088fd9 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549266319516 +OkHttp-Received-Millis: 1549266319798 + +2019-02-04 13:15:19.798 [main] INFO - ********* END *********: +2019-02-04 13:16:30.296 [main] INFO - ********* START ********* +2019-02-04 13:16:30.311 [main] INFO - Authentication Type : http_signature +2019-02-04 13:16:30.311 [main] INFO - Request Type: GET +2019-02-04 13:16:30.311 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-04 13:16:30.359 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:16:30.359 [main] INFO - Date: Mon, 4 Feb 2019 07:46:29 GMT +2019-02-04 13:16:30.359 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:16:30.359 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="cT23CTETPXjIE/rdKj5n7VHfH122NYTuea1tmTBC8Ko=" +2019-02-04 13:16:30.359 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:16:31.796 [main] INFO - Request Body: null +2019-02-04 13:16:31.796 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z} +2019-02-04 13:16:31.796 [main] INFO - Response Code: 200 +2019-02-04 13:16:31.796 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_dab8bf3e-06b8-4918-ac0d-3c1d227e5f95 +X-OPNET-Transaction-Trace: a2_c72d8f8d-751c-44dc-874e-84a22629d637 +Cache-Control: no-cache, no-transform +ETag: "-212235018" +Expires: Mon, 04 Feb 2019 07:46:31 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:46:31 GMT +X-Cnection: close +v-c-correlation-id: 169be626-7492-491c-81d8-8d6d169a264e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549266391499 +OkHttp-Received-Millis: 1549266391765 + +2019-02-04 13:16:31.796 [main] INFO - ********* END *********: +2019-02-04 13:16:31.857 [main] INFO - ********* START ********* +2019-02-04 13:16:31.857 [main] INFO - Authentication Type : http_signature +2019-02-04 13:16:31.857 [main] INFO - Request Type: GET +2019-02-04 13:16:31.857 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2019-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-04 13:16:31.857 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:16:31.857 [main] INFO - Date: Mon, 4 Feb 2019 07:46:29 GMT +2019-02-04 13:16:31.857 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:16:31.857 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="JNaDPDRMqLd4WGL2sMkKWafo46P2LwoeifVasZh1/PA=" +2019-02-04 13:16:31.857 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:16:32.123 [main] INFO - Request Body: null +2019-02-04 13:16:32.123 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z} +2019-02-04 13:16:32.123 [main] INFO - Response Code: 400 +2019-02-04 13:16:32.123 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_47750117-4f16-4928-967c-d886c9fdfc7c +Cache-Control: no-cache, no-transform +ETag: "-1732043611" +Expires: Mon, 04 Feb 2019 07:46:32 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:46:32 GMT +X-Cnection: close +v-c-correlation-id: b8173c3b-571e-497f-95fd-a08f6b654829 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549266391857 +OkHttp-Received-Millis: 1549266392123 + +2019-02-04 13:16:32.123 [main] INFO - ********* END *********: +2019-02-04 13:17:41.760 [main] INFO - ********* START ********* +2019-02-04 13:17:41.760 [main] INFO - Authentication Type : http_signature +2019-02-04 13:17:41.776 [main] INFO - Request Type: GET +2019-02-04 13:17:41.776 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/transactions/5408386919326811103004, requestType=GET} +2019-02-04 13:17:41.776 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:17:41.807 [main] INFO - Date: Mon, 4 Feb 2019 07:47:41 GMT +2019-02-04 13:17:41.807 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:17:41.807 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="dDkW387MOEpprCUznLxm0+NlhsUsKXNJN3sX3ZeWx4Y=" +2019-02-04 13:17:41.807 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:17:43.323 [main] INFO - Request Body: null +2019-02-04 13:17:43.323 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tss/v2/transactions/5408386919326811103004} +2019-02-04 13:17:43.323 [main] INFO - Response Code: 200 +2019-02-04 13:17:43.323 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_266f34f4-522a-4252-a7c3-b44fc1e08782 +Cache-Control: no-cache, no-transform +ETag: "-1543210418" +Expires: Mon, 04 Feb 2019 07:47:43 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:47:43 GMT +X-Cnection: close +v-c-correlation-id: c47c7f4e-ad15-47b6-8860-e653dd8bd02a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549266462948 +OkHttp-Received-Millis: 1549266463307 + +2019-02-04 13:17:43.323 [main] INFO - ********* END *********: +2019-02-04 13:17:43.635 [main] INFO - ********* START ********* +2019-02-04 13:17:43.635 [main] INFO - Authentication Type : http_signature +2019-02-04 13:17:43.635 [main] INFO - Request Type: GET +2019-02-04 13:17:43.635 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/transactions/1234567898745651235454, requestType=GET} +2019-02-04 13:17:43.635 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:17:43.635 [main] INFO - Date: Mon, 4 Feb 2019 07:47:41 GMT +2019-02-04 13:17:43.635 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:17:43.635 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="claiRkWgCOxAspVnDxIidMkTzSCNxMCzinCyL+c5REA=" +2019-02-04 13:17:43.650 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:17:43.900 [main] INFO - Request Body: null +2019-02-04 13:17:43.900 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tss/v2/transactions/5408386919326811103004} +2019-02-04 13:17:43.900 [main] INFO - Response Code: 404 +2019-02-04 13:17:43.900 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b8fc86ed-2575-452b-80b7-35f58d186e76 +Cache-Control: no-cache, no-transform +ETag: "1151868788" +Expires: Mon, 04 Feb 2019 07:47:43 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:47:43 GMT +X-Cnection: close +v-c-correlation-id: ef93cfc8-5b1f-4098-bf5b-ee40dd5a03dc +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549266463650 +OkHttp-Received-Millis: 1549266463900 + +2019-02-04 13:17:43.900 [main] INFO - ********* END *********: +2019-02-04 13:18:35.535 [main] INFO - ********* START ********* +2019-02-04 13:18:35.550 [main] INFO - Authentication Type : http_signature +2019-02-04 13:18:35.550 [main] INFO - Request Type: POST +2019-02-04 13:18:35.550 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-04 13:18:35.550 [main] INFO - Digest: SHA-256=yv1HHIWB0ukuo0JfNKnkDCUcVm1OrwOQ7U4IgWX3zTs= +2019-02-04 13:18:35.597 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:18:35.597 [main] INFO - Date: Mon, 4 Feb 2019 07:48:35 GMT +2019-02-04 13:18:35.597 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:18:35.597 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="tY1gmb4+A4TYKUcJ8FpEPd+Y2fjolvuEsjvaw5Ue+Cc=" +2019-02-04 13:18:35.597 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:18:38.003 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientReferenceInformation.code:12345","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-04 13:18:38.003 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches} +2019-02-04 13:18:38.003 [main] INFO - Response Code: 201 +2019-02-04 13:18:38.003 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_fff3dbd5-3804-4a50-9900-d93b9c3dfcd2 +Cache-Control: no-cache, no-transform +ETag: "-1013879044" +Expires: Mon, 04 Feb 2019 07:48:37 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 04 Feb 2019 07:48:37 GMT +X-Cnection: close +v-c-correlation-id: b8699287-07d1-4051-a420-6012e16aab90 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549266516769 +OkHttp-Received-Millis: 1549266517941 + +2019-02-04 13:18:38.003 [main] INFO - ********* END *********: +2019-02-04 13:18:38.187 [main] INFO - ********* START ********* +2019-02-04 13:18:38.187 [main] INFO - Authentication Type : http_signature +2019-02-04 13:18:38.187 [main] INFO - Request Type: POST +2019-02-04 13:18:38.187 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-04 13:18:38.187 [main] INFO - Digest: SHA-256=MvPxo/GwSzPCnxUumNRkM4jYV4dEdR0iQ6mljgTLqrs= +2019-02-04 13:18:38.187 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:18:38.187 [main] INFO - Date: Mon, 4 Feb 2019 07:48:35 GMT +2019-02-04 13:18:38.187 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:18:38.187 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ml/eLHK+VrfspFO3vKqCtK8rU6/vPaCtzyjlzqrmjro=" +2019-02-04 13:18:38.187 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:18:38.500 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientRefeInfo.code:52465","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-04 13:18:38.500 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches} +2019-02-04 13:18:38.500 [main] INFO - Response Code: 400 +2019-02-04 13:18:38.500 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_5d07d4f2-bc2c-4763-87a6-542d03f98801 +X-OPNET-Transaction-Trace: a2_cddace0f-0d14-455f-be91-1a6344e849fc +Cache-Control: no-cache, no-transform +ETag: "-652493791" +Expires: Mon, 04 Feb 2019 07:48:38 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 04 Feb 2019 07:48:38 GMT +X-Cnection: close +v-c-correlation-id: b1de9b09-c953-44ee-9676-fb24cfce6442 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549266518203 +OkHttp-Received-Millis: 1549266518500 + +2019-02-04 13:18:38.500 [main] INFO - ********* END *********: +2019-02-04 13:19:48.318 [main] INFO - ********* START ********* +2019-02-04 13:19:48.333 [main] INFO - Authentication Type : http_signature +2019-02-04 13:19:48.333 [main] INFO - Request Type: GET +2019-02-04 13:19:48.333 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc, requestType=GET} +2019-02-04 13:19:48.333 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:19:48.364 [main] INFO - Date: Mon, 4 Feb 2019 07:49:47 GMT +2019-02-04 13:19:48.364 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:19:48.364 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="0q6tB2AvnlyxOOfo0V8XRoN0EKyYFngsUkUYJVq/9D4=" +2019-02-04 13:19:48.364 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:19:50.036 [main] INFO - Request Body: null +2019-02-04 13:19:50.036 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc} +2019-02-04 13:19:50.036 [main] INFO - Response Code: 200 +2019-02-04 13:19:50.036 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_53c834a8-97aa-4b7e-822d-10a181e42f97 +X-OPNET-Transaction-Trace: a2_eb7492a3-a322-4c6c-bc4d-0bbd022752f7 +Cache-Control: no-cache, no-transform +ETag: "-767505593" +Expires: Mon, 04 Feb 2019 07:49:49 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 04 Feb 2019 07:49:49 GMT +X-Cnection: close +v-c-correlation-id: dd71f8b7-2253-41e1-84af-25c777415aa7 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549266589458 +OkHttp-Received-Millis: 1549266589974 + +2019-02-04 13:19:50.036 [main] INFO - ********* END *********: +2019-02-04 13:19:50.224 [main] INFO - ********* START ********* +2019-02-04 13:19:50.224 [main] INFO - Authentication Type : http_signature +2019-02-04 13:19:50.224 [main] INFO - Request Type: GET +2019-02-04 13:19:50.224 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/343hdgff-88uh-23hh-b6d6-5dfjhdtsufh8, requestType=GET} +2019-02-04 13:19:50.224 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:19:50.224 [main] INFO - Date: Mon, 4 Feb 2019 07:49:47 GMT +2019-02-04 13:19:50.224 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:19:50.224 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="wgch4e3stVztdQGjkanOfWIetc9cXfZ1IWv1tJgDz0Y=" +2019-02-04 13:19:50.224 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:19:50.474 [main] INFO - Request Body: null +2019-02-04 13:19:50.474 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc} +2019-02-04 13:19:50.474 [main] INFO - Response Code: 404 +2019-02-04 13:19:50.474 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_fbe40a04-060c-40a3-8381-165aa0b0ab33 +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Content-Length: 0 +Date: Mon, 04 Feb 2019 07:49:50 GMT +X-Cnection: close +v-c-correlation-id: fcaac129-4af8-49ee-899e-849148a594ec +OkHttp-Sent-Millis: 1549266590224 +OkHttp-Received-Millis: 1549266590474 + +2019-02-04 13:19:50.474 [main] INFO - ********* END *********: +2019-02-04 13:20:56.558 [main] INFO - ********* START ********* +2019-02-04 13:20:56.570 [main] INFO - Authentication Type : http_signature +2019-02-04 13:20:56.570 [main] INFO - Request Type: GET +2019-02-04 13:20:56.570 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-04 13:20:56.570 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:20:56.633 [main] INFO - Date: Mon, 4 Feb 2019 07:50:56 GMT +2019-02-04 13:20:56.633 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:20:56.633 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="tCOVo3dNXI6R/L5ADnCI4EjKTGOQDUJB/VZAJv5vzRM=" +2019-02-04 13:20:56.633 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:20:58.180 [main] INFO - Request Body: null +2019-02-04 13:20:58.180 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-04 13:20:58.180 [main] INFO - Response Code: 200 +2019-02-04 13:20:58.180 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_defc4b3e-483c-452d-85ef-b434b123857e +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:50:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c6ba9782-1039-4468-90aa-97a4f0044b42 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549266657821 +OkHttp-Received-Millis: 1549266658149 + +2019-02-04 13:20:58.180 [main] INFO - ********* END *********: +2019-02-04 13:20:58.327 [main] INFO - ********* START ********* +2019-02-04 13:20:58.327 [main] INFO - Authentication Type : http_signature +2019-02-04 13:20:58.327 [main] INFO - Request Type: GET +2019-02-04 13:20:58.327 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testre&roleId=admin, requestType=GET} +2019-02-04 13:20:58.327 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:20:58.327 [main] INFO - Date: Mon, 4 Feb 2019 07:50:56 GMT +2019-02-04 13:20:58.327 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:20:58.327 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="07Y/CTIHJZvjJw6jj+DBRJQlYao2nS1vBbIgbehYr+U=" +2019-02-04 13:20:58.327 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:20:58.639 [main] INFO - Request Body: null +2019-02-04 13:20:58.639 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-04 13:20:58.639 [main] INFO - Response Code: 401 +2019-02-04 13:20:58.639 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_cba0395c-82e7-4752-a5fe-d59672fc1907 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 04 Feb 2019 07:50:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6652e689-741f-4134-a7c7-27995b82374c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549266658327 +OkHttp-Received-Millis: 1549266658639 + +2019-02-04 13:20:58.639 [main] INFO - ********* END *********: +2019-02-04 13:33:08.305 [main] INFO - ********* START ********* +2019-02-04 13:33:08.325 [main] INFO - Authentication Type : http_signature +2019-02-04 13:33:08.325 [main] INFO - Request Type: POST +2019-02-04 13:33:08.325 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 13:33:08.325 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 13:33:08.367 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:33:08.367 [main] INFO - Date: Mon, 4 Feb 2019 08:03:07 GMT +2019-02-04 13:33:08.367 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:33:08.367 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="JWfQUvAOpT05V8Z8vtiE1fLc0W3byucMJDOjBMEcZj4=" +2019-02-04 13:33:08.367 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:33:13.602 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 13:33:13.602 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 13:33:13.602 [main] INFO - Response Code: 201 +2019-02-04 13:33:13.602 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 236ms +v-c-correlation-id: db4a3898-7b35-438a-9902-71d9005a4595 +OkHttp-Sent-Millis: 1549267393086 +OkHttp-Received-Millis: 1549267393571 + +2019-02-04 13:33:13.602 [main] INFO - ********* END *********: +2019-02-04 13:33:53.176 [main] INFO - ********* START ********* +2019-02-04 13:33:53.176 [main] INFO - Authentication Type : http_signature +2019-02-04 13:33:53.176 [main] INFO - Request Type: POST +2019-02-04 13:33:53.176 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 13:33:53.176 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 13:33:53.176 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:33:53.176 [main] INFO - Date: Mon, 4 Feb 2019 08:03:07 GMT +2019-02-04 13:33:53.176 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:33:53.176 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="JWfQUvAOpT05V8Z8vtiE1fLc0W3byucMJDOjBMEcZj4=" +2019-02-04 13:33:53.176 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:33:53.708 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 13:33:53.708 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 13:33:53.708 [main] INFO - Response Code: 201 +2019-02-04 13:33:53.708 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 294ms +v-c-correlation-id: ea0c9a25-e411-4c11-bfbf-2e424741a2be +OkHttp-Sent-Millis: 1549267433208 +OkHttp-Received-Millis: 1549267433708 + +2019-02-04 13:33:53.708 [main] INFO - ********* END *********: +2019-02-04 13:33:53.739 [main] INFO - ********* START ********* +2019-02-04 13:33:53.739 [main] INFO - Authentication Type : http_signature +2019-02-04 13:33:53.739 [main] INFO - Request Type: POST +2019-02-04 13:33:53.739 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 13:33:53.739 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-04 13:33:53.739 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:33:53.739 [main] INFO - Date: Mon, 4 Feb 2019 08:03:07 GMT +2019-02-04 13:33:53.739 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:33:53.739 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="e2GIUAQSd3vfk34HmnEiZeV8LFRDcrTxObAVpvTrwc4=" +2019-02-04 13:33:53.739 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:33:54.645 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 13:33:54.645 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 13:33:54.645 [main] INFO - Response Code: 201 +2019-02-04 13:33:54.645 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 219ms +v-c-correlation-id: f6aca81d-187e-4fe8-b7b1-e28928aa1497 +OkHttp-Sent-Millis: 1549267433754 +OkHttp-Received-Millis: 1549267434645 + +2019-02-04 13:33:54.645 [main] INFO - ********* END *********: +2019-02-04 13:33:54.670 [main] INFO - ********* START ********* +2019-02-04 13:33:54.670 [main] INFO - Authentication Type : http_signature +2019-02-04 13:33:54.670 [main] INFO - Request Type: POST +2019-02-04 13:33:54.670 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 13:33:54.670 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-04 13:33:54.670 [main] INFO - v-c-merchant-id: testrest +2019-02-04 13:33:54.670 [main] INFO - Date: Mon, 4 Feb 2019 08:03:07 GMT +2019-02-04 13:33:54.670 [main] INFO - Host: apitest.cybersource.com +2019-02-04 13:33:54.670 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="G8SmRI3v6FmNPbc0+nqBf09l8EHwnmdjgiC936sMY/o=" +2019-02-04 13:33:54.670 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 13:33:55.577 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 13:33:55.577 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 13:33:55.577 [main] INFO - Response Code: 400 +2019-02-04 13:33:55.577 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 215ms +v-c-correlation-id: 82628055-eca5-4d46-9709-7e48ef0ff137 +OkHttp-Sent-Millis: 1549267434686 +OkHttp-Received-Millis: 1549267435577 + +2019-02-04 13:33:55.577 [main] INFO - ********* END *********: +2019-02-04 14:27:56.802 [main] INFO - ********* START ********* +2019-02-04 14:27:56.820 [main] INFO - Authentication Type : http_signature +2019-02-04 14:27:56.833 [main] INFO - Request Type: POST +2019-02-04 14:27:56.833 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 14:27:56.833 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 14:27:56.833 [main] INFO - v-c-merchant-id: testrest +2019-02-04 14:27:56.833 [main] INFO - Date: Mon, 4 Feb 2019 08:57:51 GMT +2019-02-04 14:27:56.833 [main] INFO - Host: apitest.cybersource.com +2019-02-04 14:27:56.833 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="wM5vG1MR/e0wtI9dpoR3WJ9tAu+F9nSm74XbemWCxWI=" +2019-02-04 14:27:56.833 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 15:38:00.358 [main] INFO - ********* START ********* +2019-02-04 15:38:00.373 [main] INFO - Authentication Type : http_signature +2019-02-04 15:38:00.374 [main] INFO - Request Type: POST +2019-02-04 15:38:00.374 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 15:38:00.375 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 15:38:00.419 [main] INFO - v-c-merchant-id: testrest +2019-02-04 15:38:00.419 [main] INFO - Date: Mon, 4 Feb 2019 10:08:00 GMT +2019-02-04 15:38:00.419 [main] INFO - Host: apitest.cybersource.com +2019-02-04 15:38:00.420 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="1HC/TM8NDbXNBJpI2Iu1h/dAU9OBGRuNd438hwuNo8w=" +2019-02-04 15:38:00.420 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 15:38:03.832 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 15:38:03.833 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 15:38:03.833 [main] INFO - Response Code: 201 +2019-02-04 15:38:03.834 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 254ms +v-c-correlation-id: de539dcb-3052-4112-b989-fda17a9aed8c +OkHttp-Sent-Millis: 1549274883327 +OkHttp-Received-Millis: 1549274883812 + +2019-02-04 15:38:03.834 [main] INFO - ********* END *********: +2019-02-04 15:40:17.746 [main] INFO - ********* START ********* +2019-02-04 15:40:17.759 [main] INFO - Authentication Type : http_signature +2019-02-04 15:40:17.759 [main] INFO - Request Type: POST +2019-02-04 15:40:17.760 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 15:40:17.760 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 15:40:17.799 [main] INFO - v-c-merchant-id: testrest +2019-02-04 15:40:17.800 [main] INFO - Date: Mon, 4 Feb 2019 10:10:17 GMT +2019-02-04 15:40:17.800 [main] INFO - Host: apitest.cybersource.com +2019-02-04 15:40:17.800 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="CYc3zeXxbSsHl6lkOUFUYtw2DhGJLn5URdTHO7z8aUw=" +2019-02-04 15:40:17.801 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 15:40:19.430 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 15:40:19.431 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 15:40:19.431 [main] INFO - Response Code: 201 +2019-02-04 15:40:19.432 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 254ms +v-c-correlation-id: 3500e4f9-3c5b-4a30-893f-6d1a1856904d +OkHttp-Sent-Millis: 1549275018920 +OkHttp-Received-Millis: 1549275019411 + +2019-02-04 15:40:19.432 [main] INFO - ********* END *********: +2019-02-04 15:42:15.131 [main] INFO - ********* START ********* +2019-02-04 15:42:15.168 [main] INFO - Authentication Type : http_signature +2019-02-04 15:42:15.170 [main] INFO - Request Type: POST +2019-02-04 15:42:15.171 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 15:42:15.172 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 15:42:15.210 [main] INFO - v-c-merchant-id: testrest +2019-02-04 15:42:15.211 [main] INFO - Date: Mon, 4 Feb 2019 10:12:14 GMT +2019-02-04 15:42:15.211 [main] INFO - Host: apitest.cybersource.com +2019-02-04 15:42:15.212 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="2dMXSKn7kVGP4s0hTdk5+kMQGp0UM3mcTiOWtZZfRgs=" +2019-02-04 15:42:15.213 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 15:42:17.001 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 15:42:17.002 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 15:42:17.002 [main] INFO - Response Code: 201 +2019-02-04 15:42:17.003 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 286ms +v-c-correlation-id: 9ff0bfd9-6612-4277-b367-b2f216c2c770 +OkHttp-Sent-Millis: 1549275136436 +OkHttp-Received-Millis: 1549275136970 + +2019-02-04 15:42:17.003 [main] INFO - ********* END *********: +2019-02-04 15:42:38.250 [main] INFO - ********* START ********* +2019-02-04 15:42:38.277 [main] INFO - Authentication Type : http_signature +2019-02-04 15:42:38.277 [main] INFO - Request Type: POST +2019-02-04 15:42:38.278 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 15:42:38.278 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 15:42:38.322 [main] INFO - v-c-merchant-id: testrest +2019-02-04 15:42:38.323 [main] INFO - Date: Mon, 4 Feb 2019 10:12:37 GMT +2019-02-04 15:42:38.323 [main] INFO - Host: apitest.cybersource.com +2019-02-04 15:42:38.323 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="PXt7lhxXpgu/xeYBtnFS8hsdGy9//On8BDo7uXw2nwQ=" +2019-02-04 15:42:38.324 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 15:42:41.611 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 15:42:41.612 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 15:42:41.612 [main] INFO - Response Code: 201 +2019-02-04 15:42:41.613 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 220ms +v-c-correlation-id: 2c262d45-b9b7-4aec-9199-4a362dc87dfe +OkHttp-Sent-Millis: 1549275161138 +OkHttp-Received-Millis: 1549275161588 + +2019-02-04 15:42:41.613 [main] INFO - ********* END *********: +2019-02-04 16:35:26.224 [main] INFO - ********* START ********* +2019-02-04 16:35:26.238 [main] INFO - Authentication Type : http_signature +2019-02-04 16:35:26.239 [main] INFO - Request Type: POST +2019-02-04 16:35:26.240 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:35:26.241 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 16:35:26.284 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:35:26.284 [main] INFO - Date: Mon, 4 Feb 2019 11:05:25 GMT +2019-02-04 16:35:26.285 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:35:26.285 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Ev2xBruCMAk0Jc8ycgpF1IelB4Nr1JQb66E7FL8u9Bs=" +2019-02-04 16:35:26.286 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:35:30.923 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:35:30.925 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:35:30.925 [main] INFO - Response Code: 201 +2019-02-04 16:35:30.926 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 254ms +v-c-correlation-id: eb27991e-0a5b-45c1-b9c6-b01d39bd0ea1 +OkHttp-Sent-Millis: 1549278330394 +OkHttp-Received-Millis: 1549278330901 + +2019-02-04 16:35:30.927 [main] INFO - ********* END *********: +2019-02-04 16:36:21.917 [main] INFO - ********* START ********* +2019-02-04 16:36:21.917 [main] INFO - Authentication Type : http_signature +2019-02-04 16:36:21.918 [main] INFO - Request Type: POST +2019-02-04 16:36:21.918 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:36:21.919 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 16:36:21.919 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:36:21.920 [main] INFO - Date: Mon, 4 Feb 2019 11:05:25 GMT +2019-02-04 16:36:21.920 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:36:21.921 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Ev2xBruCMAk0Jc8ycgpF1IelB4Nr1JQb66E7FL8u9Bs=" +2019-02-04 16:36:21.922 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:36:22.471 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:36:22.471 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:36:22.472 [main] INFO - Response Code: 201 +2019-02-04 16:36:22.472 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 286ms +v-c-correlation-id: 2ba15fe5-6241-4c44-8cfc-bcc0cb505615 +OkHttp-Sent-Millis: 1549278381928 +OkHttp-Received-Millis: 1549278382469 + +2019-02-04 16:36:22.473 [main] INFO - ********* END *********: +2019-02-04 16:36:22.496 [main] INFO - ********* START ********* +2019-02-04 16:36:22.496 [main] INFO - Authentication Type : http_signature +2019-02-04 16:36:22.497 [main] INFO - Request Type: POST +2019-02-04 16:36:22.497 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:36:22.497 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-04 16:36:22.498 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:36:22.498 [main] INFO - Date: Mon, 4 Feb 2019 11:05:25 GMT +2019-02-04 16:36:22.498 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:36:22.499 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="zqZaskZmw914TXEBodS/s0wKu3W92vrPfCLNr91liOI=" +2019-02-04 16:36:22.499 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:36:22.987 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:36:22.988 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:36:22.989 [main] INFO - Response Code: 201 +2019-02-04 16:36:22.989 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 252ms +v-c-correlation-id: 63ae4b08-5421-44fa-8a16-83415f4645cf +OkHttp-Sent-Millis: 1549278382502 +OkHttp-Received-Millis: 1549278382986 + +2019-02-04 16:36:22.989 [main] INFO - ********* END *********: +2019-02-04 16:36:23.012 [main] INFO - ********* START ********* +2019-02-04 16:36:23.012 [main] INFO - Authentication Type : http_signature +2019-02-04 16:36:23.012 [main] INFO - Request Type: POST +2019-02-04 16:36:23.013 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:36:23.014 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-04 16:36:23.014 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:36:23.015 [main] INFO - Date: Mon, 4 Feb 2019 11:05:25 GMT +2019-02-04 16:36:23.015 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:36:23.015 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="wvaGUF9wI9Rn5Xph7UCw+6QSaC+N/IUzhIRrNmB6m6w=" +2019-02-04 16:36:23.016 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:36:23.422 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:36:23.423 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:36:23.423 [main] INFO - Response Code: 400 +2019-02-04 16:36:23.423 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 185ms +v-c-correlation-id: 4e980ed6-62c4-42ec-b17b-156ba7b4f0a4 +OkHttp-Sent-Millis: 1549278383018 +OkHttp-Received-Millis: 1549278383421 + +2019-02-04 16:36:23.423 [main] INFO - ********* END *********: +2019-02-04 16:37:14.735 [main] INFO - ********* START ********* +2019-02-04 16:37:14.751 [main] INFO - Authentication Type : http_signature +2019-02-04 16:37:14.751 [main] INFO - Request Type: POST +2019-02-04 16:37:14.752 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:37:14.753 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 16:37:14.795 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:37:14.796 [main] INFO - Date: Mon, 4 Feb 2019 11:07:14 GMT +2019-02-04 16:37:14.796 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:37:14.797 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="4OAn9iG293zFl4Lkp93rk1YjvTQR0lKkrHCnlvDC1OU=" +2019-02-04 16:37:14.797 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:37:18.688 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:37:18.689 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:37:18.689 [main] INFO - Response Code: 201 +2019-02-04 16:37:18.690 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 252ms +v-c-correlation-id: e8839ad1-a245-4cea-986f-7c54614544a7 +OkHttp-Sent-Millis: 1549278438171 +OkHttp-Received-Millis: 1549278438666 + +2019-02-04 16:37:18.691 [main] INFO - ********* END *********: +2019-02-04 16:38:19.684 [main] INFO - ********* START ********* +2019-02-04 16:38:19.684 [main] INFO - Authentication Type : http_signature +2019-02-04 16:38:19.684 [main] INFO - Request Type: POST +2019-02-04 16:38:19.684 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:38:19.685 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-04 16:38:19.685 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:38:19.686 [main] INFO - Date: Mon, 4 Feb 2019 11:07:14 GMT +2019-02-04 16:38:19.686 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:38:19.686 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="+OcK6DaY03DV9c/Kcaol4vdfDhdeUXTTL+I6qoIFZUs=" +2019-02-04 16:38:19.687 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:38:20.130 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:38:20.131 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:38:20.131 [main] INFO - Response Code: 201 +2019-02-04 16:38:20.131 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 222ms +v-c-correlation-id: 50e813ca-2f37-4dfe-9ce1-c31d3fa4e197 +OkHttp-Sent-Millis: 1549278499693 +OkHttp-Received-Millis: 1549278500129 + +2019-02-04 16:38:20.132 [main] INFO - ********* END *********: +2019-02-04 16:38:20.153 [main] INFO - ********* START ********* +2019-02-04 16:38:20.154 [main] INFO - Authentication Type : http_signature +2019-02-04 16:38:20.154 [main] INFO - Request Type: POST +2019-02-04 16:38:20.154 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:38:20.155 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-04 16:38:20.155 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:38:20.155 [main] INFO - Date: Mon, 4 Feb 2019 11:07:14 GMT +2019-02-04 16:38:20.156 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:38:20.156 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="15LcpCBZpzN7cydQyE6bz0GfES0uOm8y/Z585boNMQI=" +2019-02-04 16:38:20.156 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:38:20.556 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:38:20.557 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:38:20.557 [main] INFO - Response Code: 400 +2019-02-04 16:38:20.558 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 182ms +v-c-correlation-id: 28442f57-6f4d-40c6-9229-9280f837583c +OkHttp-Sent-Millis: 1549278500159 +OkHttp-Received-Millis: 1549278500555 + +2019-02-04 16:38:20.558 [main] INFO - ********* END *********: +2019-02-04 16:39:11.888 [main] INFO - ********* START ********* +2019-02-04 16:39:11.903 [main] INFO - Authentication Type : http_signature +2019-02-04 16:39:11.903 [main] INFO - Request Type: POST +2019-02-04 16:39:11.904 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:39:11.904 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 16:39:11.905 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:39:11.905 [main] INFO - Date: Mon, 4 Feb 2019 11:09:11 GMT +2019-02-04 16:39:11.905 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:39:11.906 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="O9Pfd9eLiALgUSaWnICCLTama6avboot4qiG4AXB6hU=" +2019-02-04 16:39:11.906 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:39:13.708 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:39:13.709 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:39:13.709 [main] INFO - Response Code: 201 +2019-02-04 16:39:13.709 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 251ms +v-c-correlation-id: 680994c3-1ff1-450d-bc35-a4f186467a14 +OkHttp-Sent-Millis: 1549278553201 +OkHttp-Received-Millis: 1549278553683 + +2019-02-04 16:39:13.710 [main] INFO - ********* END *********: +2019-02-04 16:39:13.830 [main] INFO - ********* START ********* +2019-02-04 16:39:13.830 [main] INFO - Authentication Type : http_signature +2019-02-04 16:39:13.830 [main] INFO - Request Type: POST +2019-02-04 16:39:13.831 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:39:13.831 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-04 16:39:13.832 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:39:13.832 [main] INFO - Date: Mon, 4 Feb 2019 11:09:11 GMT +2019-02-04 16:39:13.833 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:39:13.833 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="TNrH1g4c/t4XftJ+pvNvgOUvvjNac99VDvVbhW97F8A=" +2019-02-04 16:39:13.835 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:39:14.324 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:39:14.324 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:39:14.324 [main] INFO - Response Code: 201 +2019-02-04 16:39:14.326 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 258ms +v-c-correlation-id: e2afb5ad-930d-4b1d-9618-7112ba111a26 +OkHttp-Sent-Millis: 1549278553839 +OkHttp-Received-Millis: 1549278554322 + +2019-02-04 16:39:14.326 [main] INFO - ********* END *********: +2019-02-04 16:39:14.345 [main] INFO - ********* START ********* +2019-02-04 16:39:14.345 [main] INFO - Authentication Type : http_signature +2019-02-04 16:39:14.346 [main] INFO - Request Type: POST +2019-02-04 16:39:14.346 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:39:14.346 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-04 16:39:14.347 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:39:14.347 [main] INFO - Date: Mon, 4 Feb 2019 11:09:11 GMT +2019-02-04 16:39:14.348 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:39:14.348 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="7rCYWJp6jn6uxm5fOJ9mQmkuJP408ig15aNStqw0vWM=" +2019-02-04 16:39:14.349 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:39:14.770 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:39:14.770 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:39:14.771 [main] INFO - Response Code: 400 +2019-02-04 16:39:14.771 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 185ms +v-c-correlation-id: a16f13fb-bac9-4abe-ada7-ec5485bb27be +OkHttp-Sent-Millis: 1549278554351 +OkHttp-Received-Millis: 1549278554769 + +2019-02-04 16:39:14.771 [main] INFO - ********* END *********: +2019-02-04 16:40:26.409 [main] INFO - ********* START ********* +2019-02-04 16:40:26.431 [main] INFO - Authentication Type : http_signature +2019-02-04 16:40:26.432 [main] INFO - Request Type: POST +2019-02-04 16:40:26.436 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:40:26.437 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 16:40:26.438 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:40:26.439 [main] INFO - Date: Mon, 4 Feb 2019 11:10:21 GMT +2019-02-04 16:40:26.440 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:40:26.441 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="H88PVwJhmdefZ5A+dTA/3EhE1OQliBytjDLPbjQFKVM=" +2019-02-04 16:40:26.442 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:40:32.315 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:40:32.316 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:40:32.316 [main] INFO - Response Code: 201 +2019-02-04 16:40:32.317 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 231ms +v-c-correlation-id: e37a916f-b703-4952-9de6-e70235db9580 +OkHttp-Sent-Millis: 1549278631817 +OkHttp-Received-Millis: 1549278632294 + +2019-02-04 16:40:32.317 [main] INFO - ********* END *********: +2019-02-04 16:41:06.018 [main] INFO - ********* START ********* +2019-02-04 16:41:06.019 [main] INFO - Authentication Type : http_signature +2019-02-04 16:41:06.019 [main] INFO - Request Type: POST +2019-02-04 16:41:06.024 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:41:06.028 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-04 16:41:06.030 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:41:06.030 [main] INFO - Date: Mon, 4 Feb 2019 11:10:21 GMT +2019-02-04 16:41:06.032 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:41:06.032 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="SdFK6bjobCEI3BDHPB9I2QOYkuRSHCFkrH+9cUcTZqg=" +2019-02-04 16:41:06.033 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:41:08.385 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:41:08.386 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:41:08.389 [main] INFO - Response Code: 201 +2019-02-04 16:41:08.389 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 298ms +v-c-correlation-id: 906c4619-d6a8-4e29-b08c-ecfd2fa3f100 +OkHttp-Sent-Millis: 1549278667847 +OkHttp-Received-Millis: 1549278668384 + +2019-02-04 16:41:08.390 [main] INFO - ********* END *********: +2019-02-04 16:41:34.577 [main] INFO - ********* START ********* +2019-02-04 16:41:34.578 [main] INFO - Authentication Type : http_signature +2019-02-04 16:41:34.579 [main] INFO - Request Type: POST +2019-02-04 16:41:34.583 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:41:34.584 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-04 16:41:34.585 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:41:34.586 [main] INFO - Date: Mon, 4 Feb 2019 11:10:21 GMT +2019-02-04 16:41:34.587 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:41:34.588 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="SUJP5Hbk0N31r7rgA+8h97BozUo4VSFOYdnFHzP/Eqw=" +2019-02-04 16:41:34.589 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:41:39.675 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:41:39.675 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:41:39.676 [main] INFO - Response Code: 400 +2019-02-04 16:41:39.676 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 178ms +v-c-correlation-id: db6004ef-6473-4694-bda4-9038629d1668 +OkHttp-Sent-Millis: 1549278694914 +OkHttp-Received-Millis: 1549278695321 + +2019-02-04 16:41:39.677 [main] INFO - ********* END *********: +2019-02-04 16:42:56.028 [main] INFO - ********* START ********* +2019-02-04 16:42:56.049 [main] INFO - Authentication Type : http_signature +2019-02-04 16:42:56.049 [main] INFO - Request Type: POST +2019-02-04 16:42:56.050 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:42:56.053 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 16:42:56.053 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:42:56.054 [main] INFO - Date: Mon, 4 Feb 2019 11:12:55 GMT +2019-02-04 16:42:56.055 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:42:56.055 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="mVHZvOelpTT+zR02xnawWy7qnnBVyQu/9nau5KQIzfc=" +2019-02-04 16:42:56.056 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:42:57.818 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:42:57.818 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:42:57.819 [main] INFO - Response Code: 201 +2019-02-04 16:42:57.819 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 248ms +v-c-correlation-id: bf90a93b-3c23-482b-9542-f976f0f7c585 +OkHttp-Sent-Millis: 1549278777303 +OkHttp-Received-Millis: 1549278777796 + +2019-02-04 16:42:57.820 [main] INFO - ********* END *********: +2019-02-04 16:42:57.931 [main] INFO - ********* START ********* +2019-02-04 16:42:57.931 [main] INFO - Authentication Type : http_signature +2019-02-04 16:42:57.932 [main] INFO - Request Type: POST +2019-02-04 16:42:57.932 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:42:57.933 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-04 16:42:57.933 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:42:57.933 [main] INFO - Date: Mon, 4 Feb 2019 11:12:55 GMT +2019-02-04 16:42:57.934 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:42:57.934 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="jjcKmGQyH9cBywL2P5F40YDZf+NSPKguZp61IvEylRk=" +2019-02-04 16:42:57.934 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:42:58.431 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:42:58.431 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:42:58.432 [main] INFO - Response Code: 201 +2019-02-04 16:42:58.432 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 267ms +v-c-correlation-id: 5997dde5-3c46-4504-b2cc-c1244aa9e861 +OkHttp-Sent-Millis: 1549278777938 +OkHttp-Received-Millis: 1549278778429 + +2019-02-04 16:42:58.432 [main] INFO - ********* END *********: +2019-02-04 16:42:58.454 [main] INFO - ********* START ********* +2019-02-04 16:42:58.455 [main] INFO - Authentication Type : http_signature +2019-02-04 16:42:58.455 [main] INFO - Request Type: POST +2019-02-04 16:42:58.455 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:42:58.456 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-04 16:42:58.456 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:42:58.457 [main] INFO - Date: Mon, 4 Feb 2019 11:12:55 GMT +2019-02-04 16:42:58.457 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:42:58.458 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="9gV1gcDI3BBjsotBr1+lBv1FQF7njLD+YrDMdN3p8so=" +2019-02-04 16:42:58.458 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:42:58.877 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:42:58.878 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:42:58.879 [main] INFO - Response Code: 400 +2019-02-04 16:42:58.879 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 197ms +v-c-correlation-id: dbada0c4-ed05-4a14-ac6b-6bf8a50c7a95 +OkHttp-Sent-Millis: 1549278778462 +OkHttp-Received-Millis: 1549278778876 + +2019-02-04 16:42:58.879 [main] INFO - ********* END *********: +2019-02-04 16:46:02.357 [main] INFO - ********* START ********* +2019-02-04 16:46:02.370 [main] INFO - Authentication Type : http_signature +2019-02-04 16:46:02.370 [main] INFO - Request Type: POST +2019-02-04 16:46:02.371 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:46:02.371 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 16:46:02.408 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:46:02.409 [main] INFO - Date: Mon, 4 Feb 2019 11:16:01 GMT +2019-02-04 16:46:02.409 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:46:02.409 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="fLWVzzJ9jE5gOmxzaWqK//gQ94ElNNGwXZAxY0AW5II=" +2019-02-04 16:46:02.410 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:46:04.019 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:46:04.020 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:46:04.020 [main] INFO - Response Code: 201 +2019-02-04 16:46:04.021 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 204ms +v-c-correlation-id: e4445d3e-9afa-4e37-aca8-8c378968f739 +OkHttp-Sent-Millis: 1549278963560 +OkHttp-Received-Millis: 1549278963997 + +2019-02-04 16:46:04.021 [main] INFO - ********* END *********: +2019-02-04 16:46:04.143 [main] INFO - ********* START ********* +2019-02-04 16:46:04.143 [main] INFO - Authentication Type : http_signature +2019-02-04 16:46:04.143 [main] INFO - Request Type: POST +2019-02-04 16:46:04.144 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:46:04.144 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-04 16:46:04.145 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:46:04.145 [main] INFO - Date: Mon, 4 Feb 2019 11:16:01 GMT +2019-02-04 16:46:04.145 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:46:04.146 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="e8r8YT0SfdNEGy7c6VG87jepETx/Q3Wfc3e1Iz+uqJs=" +2019-02-04 16:46:04.147 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:46:04.625 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:46:04.626 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:46:04.626 [main] INFO - Response Code: 201 +2019-02-04 16:46:04.626 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 244ms +v-c-correlation-id: 2aaff999-845b-44c6-899e-5c3860bffb6b +OkHttp-Sent-Millis: 1549278964153 +OkHttp-Received-Millis: 1549278964624 + +2019-02-04 16:46:04.627 [main] INFO - ********* END *********: +2019-02-04 16:46:04.646 [main] INFO - ********* START ********* +2019-02-04 16:46:04.647 [main] INFO - Authentication Type : http_signature +2019-02-04 16:46:04.647 [main] INFO - Request Type: POST +2019-02-04 16:46:04.647 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:46:04.648 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-04 16:46:04.648 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:46:04.648 [main] INFO - Date: Mon, 4 Feb 2019 11:16:01 GMT +2019-02-04 16:46:04.649 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:46:04.649 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="7XkPyKXa0fCschbBCsElOw9bFbpkrWqpVUiaoFFFUPY=" +2019-02-04 16:46:04.649 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:46:05.077 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:46:05.078 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:46:05.078 [main] INFO - Response Code: 400 +2019-02-04 16:46:05.079 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 201ms +v-c-correlation-id: 80eb89cf-e332-4258-8cac-7d30f1e35599 +OkHttp-Sent-Millis: 1549278964652 +OkHttp-Received-Millis: 1549278965076 + +2019-02-04 16:46:05.079 [main] INFO - ********* END *********: +2019-02-04 16:48:48.656 [main] INFO - ********* START ********* +2019-02-04 16:48:48.669 [main] INFO - Authentication Type : http_signature +2019-02-04 16:48:48.669 [main] INFO - Request Type: POST +2019-02-04 16:48:48.670 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:48:48.671 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 16:48:48.708 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:48:48.708 [main] INFO - Date: Mon, 4 Feb 2019 11:18:48 GMT +2019-02-04 16:48:48.709 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:48:48.709 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="+KYCeh1jyNO0n5JUPUglyM4NOQns8UawdqtacmSOpwg=" +2019-02-04 16:48:48.709 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:48:53.165 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:48:53.166 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:48:53.167 [main] INFO - Response Code: 201 +2019-02-04 16:48:53.167 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 236ms +v-c-correlation-id: 05885578-6e5c-4e4d-8684-cc259e96cadc +OkHttp-Sent-Millis: 1549279132653 +OkHttp-Received-Millis: 1549279133132 + +2019-02-04 16:48:53.167 [main] INFO - ********* END *********: +2019-02-04 16:48:58.003 [main] INFO - ********* START ********* +2019-02-04 16:48:58.004 [main] INFO - Authentication Type : http_signature +2019-02-04 16:48:58.004 [main] INFO - Request Type: POST +2019-02-04 16:48:58.005 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:48:58.005 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-04 16:48:58.005 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:48:58.006 [main] INFO - Date: Mon, 4 Feb 2019 11:18:48 GMT +2019-02-04 16:48:58.006 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:48:58.007 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="sZpXimpV1dR0KSl9gKxb/RiVK3udEj51LN/nYYq7kV0=" +2019-02-04 16:48:58.008 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:49:00.352 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:49:00.352 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:49:00.353 [main] INFO - Response Code: 201 +2019-02-04 16:49:00.353 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 254ms +v-c-correlation-id: 5f3d2ce2-7c78-41fe-92c0-3e5c8f71e695 +OkHttp-Sent-Millis: 1549279139866 +OkHttp-Received-Millis: 1549279140350 + +2019-02-04 16:49:00.354 [main] INFO - ********* END *********: +2019-02-04 16:49:10.500 [main] INFO - ********* START ********* +2019-02-04 16:49:10.500 [main] INFO - Authentication Type : http_signature +2019-02-04 16:49:10.501 [main] INFO - Request Type: POST +2019-02-04 16:49:10.501 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:49:10.502 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-04 16:49:10.502 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:49:10.503 [main] INFO - Date: Mon, 4 Feb 2019 11:18:48 GMT +2019-02-04 16:49:10.503 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:49:10.504 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="/xblIj4i1VsCe0Gu0eACTpPtCXK6qtjPRXwtqCbOhuw=" +2019-02-04 16:49:10.504 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:49:12.716 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:49:12.716 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:49:12.717 [main] INFO - Response Code: 400 +2019-02-04 16:49:12.717 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 201ms +v-c-correlation-id: 43e81f7a-b935-488d-98fc-c9238e15bfc5 +OkHttp-Sent-Millis: 1549279152295 +OkHttp-Received-Millis: 1549279152715 + +2019-02-04 16:49:12.718 [main] INFO - ********* END *********: +2019-02-04 16:49:58.134 [main] INFO - ********* START ********* +2019-02-04 16:49:58.147 [main] INFO - Authentication Type : http_signature +2019-02-04 16:49:58.148 [main] INFO - Request Type: POST +2019-02-04 16:49:58.148 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:49:58.149 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 16:49:58.188 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:49:58.189 [main] INFO - Date: Mon, 4 Feb 2019 11:19:57 GMT +2019-02-04 16:49:58.189 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:49:58.189 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="VtNVkumcjw6JGR/g2usT9w1Cm++0JObcXa8y79u5BOg=" +2019-02-04 16:49:58.190 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:49:59.910 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:49:59.910 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:49:59.911 [main] INFO - Response Code: 201 +2019-02-04 16:49:59.911 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 219ms +v-c-correlation-id: 16fef95e-c433-4a3a-a628-5abd9091610f +OkHttp-Sent-Millis: 1549279199429 +OkHttp-Received-Millis: 1549279199891 + +2019-02-04 16:49:59.911 [main] INFO - ********* END *********: +2019-02-04 16:50:00.028 [main] INFO - ********* START ********* +2019-02-04 16:50:00.029 [main] INFO - Authentication Type : http_signature +2019-02-04 16:50:00.029 [main] INFO - Request Type: POST +2019-02-04 16:50:00.029 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:50:00.030 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-04 16:50:00.031 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:50:00.031 [main] INFO - Date: Mon, 4 Feb 2019 11:19:57 GMT +2019-02-04 16:50:00.031 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:50:00.032 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="vfj+Z3SIed2EzB4nlpXfvLGqH6dEWJbBMinuhcA7JE4=" +2019-02-04 16:50:00.032 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:50:00.587 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:50:00.590 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:50:00.590 [main] INFO - Response Code: 201 +2019-02-04 16:50:00.591 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 289ms +v-c-correlation-id: 8f45f627-7559-4f5a-ab16-1c332a10ab20 +OkHttp-Sent-Millis: 1549279200035 +OkHttp-Received-Millis: 1549279200559 + +2019-02-04 16:50:00.591 [main] INFO - ********* END *********: +2019-02-04 16:50:00.614 [main] INFO - ********* START ********* +2019-02-04 16:50:00.615 [main] INFO - Authentication Type : http_signature +2019-02-04 16:50:00.615 [main] INFO - Request Type: POST +2019-02-04 16:50:00.615 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:50:00.616 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-04 16:50:00.616 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:50:00.616 [main] INFO - Date: Mon, 4 Feb 2019 11:19:57 GMT +2019-02-04 16:50:00.617 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:50:00.617 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="rW3hTxQKDNxdcmVa52Oqcrq9CV1UZPKIkvZUSsY0s+I=" +2019-02-04 16:50:00.617 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:50:01.094 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:50:01.095 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:50:01.095 [main] INFO - Response Code: 400 +2019-02-04 16:50:01.096 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 235ms +v-c-correlation-id: e821040f-4827-497d-b3f5-377d0c1ac757 +OkHttp-Sent-Millis: 1549279200620 +OkHttp-Received-Millis: 1549279201093 + +2019-02-04 16:50:01.096 [main] INFO - ********* END *********: +2019-02-04 16:51:26.359 [main] INFO - ********* START ********* +2019-02-04 16:51:26.374 [main] INFO - Authentication Type : http_signature +2019-02-04 16:51:26.375 [main] INFO - Request Type: POST +2019-02-04 16:51:26.376 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:51:26.376 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 16:51:26.425 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:51:26.426 [main] INFO - Date: Mon, 4 Feb 2019 11:21:25 GMT +2019-02-04 16:51:26.426 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:51:26.426 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="0LghMhLmnMrzNkhC1mDO3fXBRIE6V4a04igqfiqQNt0=" +2019-02-04 16:51:26.427 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:51:28.225 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:51:28.226 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:51:28.227 [main] INFO - Response Code: 201 +2019-02-04 16:51:28.227 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 288ms +v-c-correlation-id: d1055947-03d6-47bf-a3ad-f50c74272baf +OkHttp-Sent-Millis: 1549279287673 +OkHttp-Received-Millis: 1549279288198 + +2019-02-04 16:51:28.228 [main] INFO - ********* END *********: +2019-02-04 16:51:28.382 [main] INFO - ********* START ********* +2019-02-04 16:51:28.383 [main] INFO - Authentication Type : http_signature +2019-02-04 16:51:28.384 [main] INFO - Request Type: POST +2019-02-04 16:51:28.384 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:51:28.385 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-04 16:51:28.386 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:51:28.386 [main] INFO - Date: Mon, 4 Feb 2019 11:21:25 GMT +2019-02-04 16:51:28.387 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:51:28.388 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="xnqZusRfvkKStVQhohKAjYKudmaFWcYD4+K4m9wv0AE=" +2019-02-04 16:51:28.388 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:51:28.889 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:51:28.892 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:51:28.893 [main] INFO - Response Code: 201 +2019-02-04 16:51:28.894 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 237ms +v-c-correlation-id: dc248e37-4ec7-43d6-883d-996261f54955 +OkHttp-Sent-Millis: 1549279288393 +OkHttp-Received-Millis: 1549279288868 + +2019-02-04 16:51:28.894 [main] INFO - ********* END *********: +2019-02-04 16:51:28.913 [main] INFO - ********* START ********* +2019-02-04 16:51:28.914 [main] INFO - Authentication Type : http_signature +2019-02-04 16:51:28.914 [main] INFO - Request Type: POST +2019-02-04 16:51:28.914 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:51:28.915 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-04 16:51:28.915 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:51:28.915 [main] INFO - Date: Mon, 4 Feb 2019 11:21:25 GMT +2019-02-04 16:51:28.916 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:51:28.916 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="y/SmOgQvYLG5l3la26k5qVlkJB2w7dglU49UJsVl9po=" +2019-02-04 16:51:28.916 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:51:29.316 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:51:29.317 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:51:29.317 [main] INFO - Response Code: 400 +2019-02-04 16:51:29.318 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 180ms +v-c-correlation-id: 0b7a6c3e-526d-41ef-b01f-8d36cf9d2eff +OkHttp-Sent-Millis: 1549279288919 +OkHttp-Received-Millis: 1549279289315 + +2019-02-04 16:51:29.318 [main] INFO - ********* END *********: +2019-02-04 16:53:30.610 [main] INFO - ********* START ********* +2019-02-04 16:53:30.627 [main] INFO - Authentication Type : http_signature +2019-02-04 16:53:30.628 [main] INFO - Request Type: POST +2019-02-04 16:53:30.629 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:53:30.630 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 16:53:30.668 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:53:30.668 [main] INFO - Date: Mon, 4 Feb 2019 11:23:30 GMT +2019-02-04 16:53:30.668 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:53:30.669 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="WKOrv/JAEsG28POwhBSXvRPVLLcmOTSeG5GvKlIWtGM=" +2019-02-04 16:53:30.669 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:53:34.240 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:53:34.241 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:53:34.241 [main] INFO - Response Code: 201 +2019-02-04 16:53:34.241 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 245ms +v-c-correlation-id: 32037577-3e42-43d0-9d43-b5af7cc563b0 +OkHttp-Sent-Millis: 1549279413708 +OkHttp-Received-Millis: 1549279414213 + +2019-02-04 16:53:34.242 [main] INFO - ********* END *********: +2019-02-04 16:53:37.303 [main] INFO - ********* START ********* +2019-02-04 16:53:37.303 [main] INFO - Authentication Type : http_signature +2019-02-04 16:53:37.304 [main] INFO - Request Type: POST +2019-02-04 16:53:37.304 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:53:37.305 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-04 16:53:37.305 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:53:37.306 [main] INFO - Date: Mon, 4 Feb 2019 11:23:30 GMT +2019-02-04 16:53:37.307 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:53:37.307 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="58/BFiWkgKDXU2tiIplpK/24M2mWEuFD+ewapCSIqfk=" +2019-02-04 16:53:37.307 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:53:39.357 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:53:39.358 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:53:39.359 [main] INFO - Response Code: 201 +2019-02-04 16:53:39.359 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 328ms +v-c-correlation-id: f0e5fa03-42ee-4710-a76a-84c16444a547 +OkHttp-Sent-Millis: 1549279418788 +OkHttp-Received-Millis: 1549279419356 + +2019-02-04 16:53:39.360 [main] INFO - ********* END *********: +2019-02-04 16:53:41.954 [main] INFO - ********* START ********* +2019-02-04 16:53:41.955 [main] INFO - Authentication Type : http_signature +2019-02-04 16:53:41.955 [main] INFO - Request Type: POST +2019-02-04 16:53:41.956 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:53:41.956 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-04 16:53:41.956 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:53:41.957 [main] INFO - Date: Mon, 4 Feb 2019 11:23:30 GMT +2019-02-04 16:53:41.957 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:53:41.958 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="JOwpjtCJudiOpgc4IikyeZEIveFTNoanjOXyjEVws0s=" +2019-02-04 16:53:41.958 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:53:44.167 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:53:44.167 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:53:44.168 [main] INFO - Response Code: 400 +2019-02-04 16:53:44.168 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 191ms +v-c-correlation-id: c24b4abf-daa8-42fc-b4d5-87756f68de8d +OkHttp-Sent-Millis: 1549279423732 +OkHttp-Received-Millis: 1549279424165 + +2019-02-04 16:53:44.168 [main] INFO - ********* END *********: +2019-02-04 16:58:09.223 [main] INFO - ********* START ********* +2019-02-04 16:58:09.224 [main] INFO - Authentication Type : http_signature +2019-02-04 16:58:09.224 [main] INFO - Request Type: POST +2019-02-04 16:58:09.225 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:58:09.225 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 16:58:09.226 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:58:09.226 [main] INFO - Date: Mon, 4 Feb 2019 11:23:30 GMT +2019-02-04 16:58:09.226 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:58:09.227 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="WKOrv/JAEsG28POwhBSXvRPVLLcmOTSeG5GvKlIWtGM=" +2019-02-04 16:58:09.228 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:58:09.739 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:58:09.740 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:58:09.740 [main] INFO - Response Code: 201 +2019-02-04 16:58:09.741 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 266ms +v-c-correlation-id: 1fb9b2b3-9a05-44f1-9720-135a76e53a3b +OkHttp-Sent-Millis: 1549279689231 +OkHttp-Received-Millis: 1549279689738 + +2019-02-04 16:58:09.741 [main] INFO - ********* END *********: +2019-02-04 16:58:09.759 [main] INFO - ********* START ********* +2019-02-04 16:58:09.760 [main] INFO - Authentication Type : http_signature +2019-02-04 16:58:09.760 [main] INFO - Request Type: POST +2019-02-04 16:58:09.761 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:58:09.761 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-04 16:58:09.761 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:58:09.762 [main] INFO - Date: Mon, 4 Feb 2019 11:23:30 GMT +2019-02-04 16:58:09.762 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:58:09.762 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="58/BFiWkgKDXU2tiIplpK/24M2mWEuFD+ewapCSIqfk=" +2019-02-04 16:58:09.762 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:58:10.208 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:58:10.209 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:58:10.209 [main] INFO - Response Code: 201 +2019-02-04 16:58:10.209 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 214ms +v-c-correlation-id: 30712dd9-d237-430a-af2f-6abc173c6e0d +OkHttp-Sent-Millis: 1549279689765 +OkHttp-Received-Millis: 1549279690207 + +2019-02-04 16:58:10.210 [main] INFO - ********* END *********: +2019-02-04 16:58:10.227 [main] INFO - ********* START ********* +2019-02-04 16:58:10.228 [main] INFO - Authentication Type : http_signature +2019-02-04 16:58:10.228 [main] INFO - Request Type: POST +2019-02-04 16:58:10.228 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 16:58:10.229 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-04 16:58:10.229 [main] INFO - v-c-merchant-id: testrest +2019-02-04 16:58:10.229 [main] INFO - Date: Mon, 4 Feb 2019 11:23:30 GMT +2019-02-04 16:58:10.230 [main] INFO - Host: apitest.cybersource.com +2019-02-04 16:58:10.230 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="JOwpjtCJudiOpgc4IikyeZEIveFTNoanjOXyjEVws0s=" +2019-02-04 16:58:10.230 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 16:58:10.610 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 16:58:10.610 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 16:58:10.610 [main] INFO - Response Code: 400 +2019-02-04 16:58:10.611 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 154ms +v-c-correlation-id: 21abc704-ac2b-4f7b-a30f-d9bad9b2fee0 +OkHttp-Sent-Millis: 1549279690233 +OkHttp-Received-Millis: 1549279690609 + +2019-02-04 16:58:10.611 [main] INFO - ********* END *********: +2019-02-04 17:10:28.581 [main] INFO - ********* START ********* +2019-02-04 17:10:28.594 [main] INFO - Authentication Type : http_signature +2019-02-04 17:10:28.594 [main] INFO - Request Type: POST +2019-02-04 17:10:28.595 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 17:10:28.595 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-04 17:10:28.635 [main] INFO - v-c-merchant-id: testrest +2019-02-04 17:10:28.636 [main] INFO - Date: Mon, 4 Feb 2019 11:40:28 GMT +2019-02-04 17:10:28.636 [main] INFO - Host: apitest.cybersource.com +2019-02-04 17:10:28.636 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="VT/70OfKSDeV0WFIgZj3hW+0z29VB/tqF5U9B4UpR5c=" +2019-02-04 17:10:28.637 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 17:10:30.267 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 17:10:30.267 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 17:10:30.268 [main] INFO - Response Code: 201 +2019-02-04 17:10:30.268 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 189ms +v-c-correlation-id: c0596535-0f62-4bc1-9012-f41caa8d1375 +OkHttp-Sent-Millis: 1549280429821 +OkHttp-Received-Millis: 1549280430247 + +2019-02-04 17:10:30.268 [main] INFO - ********* END *********: +2019-02-04 17:10:30.372 [main] INFO - ********* START ********* +2019-02-04 17:10:30.373 [main] INFO - Authentication Type : http_signature +2019-02-04 17:10:30.373 [main] INFO - Request Type: POST +2019-02-04 17:10:30.373 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 17:10:30.374 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-04 17:10:30.374 [main] INFO - v-c-merchant-id: testrest +2019-02-04 17:10:30.375 [main] INFO - Date: Mon, 4 Feb 2019 11:40:28 GMT +2019-02-04 17:10:30.376 [main] INFO - Host: apitest.cybersource.com +2019-02-04 17:10:30.376 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="D04MRofVN7DdnhuWsz7Aloh3GwJDRnyLE3xTrtuuvHo=" +2019-02-04 17:10:30.376 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 17:10:30.891 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 17:10:30.892 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 17:10:30.892 [main] INFO - Response Code: 201 +2019-02-04 17:10:30.892 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 279ms +v-c-correlation-id: dc83c039-cc42-41dd-b9aa-5c8f53acfd78 +OkHttp-Sent-Millis: 1549280430381 +OkHttp-Received-Millis: 1549280430890 + +2019-02-04 17:10:30.893 [main] INFO - ********* END *********: +2019-02-04 17:10:30.910 [main] INFO - ********* START ********* +2019-02-04 17:10:30.911 [main] INFO - Authentication Type : http_signature +2019-02-04 17:10:30.911 [main] INFO - Request Type: POST +2019-02-04 17:10:30.911 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-04 17:10:30.912 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-04 17:10:30.912 [main] INFO - v-c-merchant-id: testrest +2019-02-04 17:10:30.912 [main] INFO - Date: Mon, 4 Feb 2019 11:40:28 GMT +2019-02-04 17:10:30.913 [main] INFO - Host: apitest.cybersource.com +2019-02-04 17:10:30.913 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="UiZZ+8vnOLGjAUadKYmzcy/co3HjwmnLSfcfNkAEMIw=" +2019-02-04 17:10:30.913 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-04 17:10:31.368 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-04 17:10:31.369 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-04 17:10:31.369 [main] INFO - Response Code: 400 +2019-02-04 17:10:31.370 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 221ms +v-c-correlation-id: 183d2e8c-cd61-499d-a36d-cd1dc14bac52 +OkHttp-Sent-Millis: 1549280430919 +OkHttp-Received-Millis: 1549280431367 + +2019-02-04 17:10:31.370 [main] INFO - ********* END *********: +2019-02-05 12:09:01.732 [main] INFO - ********* START ********* +2019-02-05 12:09:01.753 [main] INFO - Authentication Type : http_signature +2019-02-05 12:09:01.754 [main] INFO - Request Type: POST +2019-02-05 12:09:01.754 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:09:01.755 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-05 12:09:01.795 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:09:01.795 [main] INFO - Date: Tue, 5 Feb 2019 06:39:01 GMT +2019-02-05 12:09:01.796 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:09:01.796 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="/1k6VHSIPJX/zdiNaZHbWlECgKEW8k9f5tZ1hpN8wqA=" +2019-02-05 12:09:01.796 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:09:05.764 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:09:05.764 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:09:05.765 [main] INFO - Response Code: 201 +2019-02-05 12:09:05.765 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 388ms +v-c-correlation-id: b5317f34-ff49-40cb-b2cd-4bb6eac33658 +OkHttp-Sent-Millis: 1549348745154 +OkHttp-Received-Millis: 1549348745744 + +2019-02-05 12:09:05.765 [main] INFO - ********* END *********: +2019-02-05 12:09:32.188 [main] INFO - ********* START ********* +2019-02-05 12:09:32.189 [main] INFO - Authentication Type : http_signature +2019-02-05 12:09:32.190 [main] INFO - Request Type: POST +2019-02-05 12:09:32.190 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:09:32.191 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-05 12:09:32.192 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:09:32.192 [main] INFO - Date: Tue, 5 Feb 2019 06:39:01 GMT +2019-02-05 12:09:32.192 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:09:32.193 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="/1k6VHSIPJX/zdiNaZHbWlECgKEW8k9f5tZ1hpN8wqA=" +2019-02-05 12:09:32.194 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:09:32.756 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:09:32.756 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:09:32.757 [main] INFO - Response Code: 201 +2019-02-05 12:09:32.757 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 360ms +v-c-correlation-id: b4c1384a-6160-40d9-838f-cb159db1003d +OkHttp-Sent-Millis: 1549348772209 +OkHttp-Received-Millis: 1549348772754 + +2019-02-05 12:09:32.758 [main] INFO - ********* END *********: +2019-02-05 12:09:32.827 [main] INFO - ********* START ********* +2019-02-05 12:09:32.827 [main] INFO - Authentication Type : http_signature +2019-02-05 12:09:32.828 [main] INFO - Request Type: POST +2019-02-05 12:09:32.829 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:09:32.829 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-05 12:09:32.830 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:09:32.830 [main] INFO - Date: Tue, 5 Feb 2019 06:39:01 GMT +2019-02-05 12:09:32.830 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:09:32.831 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="vEndmNvgUU4RIfakwIOZ5VGmDjEuBVcc3Fdl77B9CAA=" +2019-02-05 12:09:32.831 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:09:33.365 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:09:33.366 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:09:33.366 [main] INFO - Response Code: 201 +2019-02-05 12:09:33.367 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 339ms +v-c-correlation-id: c2a145d7-aa5c-40de-a326-c276b0edf58d +OkHttp-Sent-Millis: 1549348772833 +OkHttp-Received-Millis: 1549348773364 + +2019-02-05 12:09:33.368 [main] INFO - ********* END *********: +2019-02-05 12:09:33.395 [main] INFO - ********* START ********* +2019-02-05 12:09:33.396 [main] INFO - Authentication Type : http_signature +2019-02-05 12:09:33.396 [main] INFO - Request Type: POST +2019-02-05 12:09:33.396 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:09:33.397 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-05 12:09:33.397 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:09:33.397 [main] INFO - Date: Tue, 5 Feb 2019 06:39:01 GMT +2019-02-05 12:09:33.398 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:09:33.398 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="vNUzEuNhf3euQJ1trwH4vcrZu/C2UsgYhh+yu/uqWTU=" +2019-02-05 12:09:33.398 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:09:33.899 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:09:33.899 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:09:33.900 [main] INFO - Response Code: 400 +2019-02-05 12:09:33.900 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 296ms +v-c-correlation-id: 9a6f80b4-c43b-46fa-9f1f-80e51fbc34cb +OkHttp-Sent-Millis: 1549348773401 +OkHttp-Received-Millis: 1549348773897 + +2019-02-05 12:09:33.900 [main] INFO - ********* END *********: +2019-02-05 12:10:07.225 [main] INFO - ********* START ********* +2019-02-05 12:10:07.252 [main] INFO - Authentication Type : http_signature +2019-02-05 12:10:07.253 [main] INFO - Request Type: POST +2019-02-05 12:10:07.259 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:10:07.260 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-05 12:10:07.261 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:10:07.262 [main] INFO - Date: Tue, 5 Feb 2019 06:40:02 GMT +2019-02-05 12:10:07.262 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:10:07.263 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="nqQNfG5AMVsxbFBbt70QCbHzqOTdiwDBU016z1HTgHo=" +2019-02-05 12:10:07.264 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:10:12.488 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:10:12.489 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:10:12.490 [main] INFO - Response Code: 201 +2019-02-05 12:10:12.490 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 348ms +v-c-correlation-id: 4bf6a8b2-e82c-4e13-a93c-500838fd0ab2 +OkHttp-Sent-Millis: 1549348811922 +OkHttp-Received-Millis: 1549348812460 + +2019-02-05 12:10:12.490 [main] INFO - ********* END *********: +2019-02-05 12:10:39.271 [main] INFO - ********* START ********* +2019-02-05 12:10:39.272 [main] INFO - Authentication Type : http_signature +2019-02-05 12:10:39.272 [main] INFO - Request Type: POST +2019-02-05 12:10:39.273 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:10:39.273 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-05 12:10:39.273 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:10:39.274 [main] INFO - Date: Tue, 5 Feb 2019 06:40:02 GMT +2019-02-05 12:10:39.274 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:10:39.275 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="/eC8waOPrcRgvTQvVszqW532231GVnE9YTbKJdsctMw=" +2019-02-05 12:10:39.276 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:10:41.772 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:10:41.773 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:10:41.774 [main] INFO - Response Code: 201 +2019-02-05 12:10:41.774 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 372ms +v-c-correlation-id: ab1d6885-a961-4f57-9476-6d73df9fdb1f +OkHttp-Sent-Millis: 1549348841215 +OkHttp-Received-Millis: 1549348841769 + +2019-02-05 12:10:41.775 [main] INFO - ********* END *********: +2019-02-05 12:11:19.998 [main] INFO - ********* START ********* +2019-02-05 12:11:19.999 [main] INFO - Authentication Type : http_signature +2019-02-05 12:11:20.000 [main] INFO - Request Type: POST +2019-02-05 12:11:20.010 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:11:20.013 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-05 12:11:20.014 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:11:20.015 [main] INFO - Date: Tue, 5 Feb 2019 06:40:02 GMT +2019-02-05 12:11:20.016 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:11:20.016 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="rostjtHyAh87WfBLzW7DUC+TD/sX7Pz6TbAv9Dv7gr4=" +2019-02-05 12:11:20.017 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:11:22.555 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:11:22.556 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:11:22.557 [main] INFO - Response Code: 400 +2019-02-05 12:11:22.557 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 318ms +v-c-correlation-id: b53063ab-b523-41f8-ba35-ac55a00072c6 +OkHttp-Sent-Millis: 1549348882056 +OkHttp-Received-Millis: 1549348882552 + +2019-02-05 12:11:22.558 [main] INFO - ********* END *********: +2019-02-05 12:13:56.853 [main] INFO - ********* START ********* +2019-02-05 12:13:56.867 [main] INFO - Authentication Type : http_signature +2019-02-05 12:13:56.867 [main] INFO - Request Type: POST +2019-02-05 12:13:56.868 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:13:56.869 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-05 12:13:56.913 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:13:56.913 [main] INFO - Date: Tue, 5 Feb 2019 06:43:56 GMT +2019-02-05 12:13:56.914 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:13:56.914 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ydXUz6NLHM1YlBFQ+5pOsNIt6t+JVXwryTBEWKLTDNk=" +2019-02-05 12:13:56.915 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:13:58.583 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:13:58.583 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:13:58.583 [main] INFO - Response Code: 201 +2019-02-05 12:13:58.583 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 363ms +v-c-correlation-id: bef73537-a10d-44f3-9f0d-e5e58f0d2551 +OkHttp-Sent-Millis: 1549349037977 +OkHttp-Received-Millis: 1549349038563 + +2019-02-05 12:13:58.583 [main] INFO - ********* END *********: +2019-02-05 12:13:58.700 [main] INFO - ********* START ********* +2019-02-05 12:13:58.700 [main] INFO - Authentication Type : http_signature +2019-02-05 12:13:58.701 [main] INFO - Request Type: POST +2019-02-05 12:13:58.701 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:13:58.702 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-05 12:13:58.702 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:13:58.703 [main] INFO - Date: Tue, 5 Feb 2019 06:43:56 GMT +2019-02-05 12:13:58.703 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:13:58.703 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="bdvtjrwJ5WVnpouLhwUcjyv+FxoUxQ4KPx3nq3IQacE=" +2019-02-05 12:13:58.704 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:13:59.271 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:13:59.271 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:13:59.272 [main] INFO - Response Code: 201 +2019-02-05 12:13:59.273 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 355ms +v-c-correlation-id: 6e683c7c-6975-491a-a4b2-b42a04ce1fef +OkHttp-Sent-Millis: 1549349038711 +OkHttp-Received-Millis: 1549349039267 + +2019-02-05 12:13:59.274 [main] INFO - ********* END *********: +2019-02-05 12:13:59.299 [main] INFO - ********* START ********* +2019-02-05 12:13:59.300 [main] INFO - Authentication Type : http_signature +2019-02-05 12:13:59.300 [main] INFO - Request Type: POST +2019-02-05 12:13:59.300 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:13:59.301 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-05 12:13:59.302 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:13:59.302 [main] INFO - Date: Tue, 5 Feb 2019 06:43:56 GMT +2019-02-05 12:13:59.303 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:13:59.303 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="0UVk97weTWlzA2Wn6b7Q+Pd8yfzTfTpkdjfYP1j46no=" +2019-02-05 12:13:59.303 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:13:59.817 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:13:59.817 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:13:59.818 [main] INFO - Response Code: 400 +2019-02-05 12:13:59.818 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 311ms +v-c-correlation-id: 42037a50-7840-4f8e-91c0-b71b72c75d14 +OkHttp-Sent-Millis: 1549349039309 +OkHttp-Received-Millis: 1549349039816 + +2019-02-05 12:13:59.819 [main] INFO - ********* END *********: +2019-02-05 12:16:36.590 [main] INFO - ********* START ********* +2019-02-05 12:16:36.608 [main] INFO - Authentication Type : http_signature +2019-02-05 12:16:36.609 [main] INFO - Request Type: POST +2019-02-05 12:16:36.610 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:16:36.611 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-05 12:16:36.656 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:16:36.656 [main] INFO - Date: Tue, 5 Feb 2019 06:46:36 GMT +2019-02-05 12:16:36.657 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:16:36.657 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Hgq+/o3oADyQDpV848gdTJuTbFmw7pw1RuyFdn/hFpo=" +2019-02-05 12:16:36.657 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:16:38.244 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:16:38.245 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:16:38.247 [main] INFO - Response Code: 201 +2019-02-05 12:16:38.247 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 374ms +v-c-correlation-id: 3fa5fde8-a3f1-4a8a-8b85-855db1e4a7f0 +OkHttp-Sent-Millis: 1549349197651 +OkHttp-Received-Millis: 1549349198218 + +2019-02-05 12:16:38.248 [main] INFO - ********* END *********: +2019-02-05 12:16:38.363 [main] INFO - ********* START ********* +2019-02-05 12:16:38.363 [main] INFO - Authentication Type : http_signature +2019-02-05 12:16:38.364 [main] INFO - Request Type: POST +2019-02-05 12:16:38.364 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:16:38.364 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-05 12:16:38.365 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:16:38.365 [main] INFO - Date: Tue, 5 Feb 2019 06:46:36 GMT +2019-02-05 12:16:38.366 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:16:38.367 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="hAF85wbsgFzabpOexFIleYy4R6YzRj10hAxuVffnMwA=" +2019-02-05 12:16:38.367 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:16:38.899 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:16:38.899 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:16:38.900 [main] INFO - Response Code: 201 +2019-02-05 12:16:38.900 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 350ms +v-c-correlation-id: 0b6ebd6d-26f4-49c5-bfd2-294f3bc9dd4f +OkHttp-Sent-Millis: 1549349198372 +OkHttp-Received-Millis: 1549349198897 + +2019-02-05 12:16:38.900 [main] INFO - ********* END *********: +2019-02-05 12:16:38.920 [main] INFO - ********* START ********* +2019-02-05 12:16:38.920 [main] INFO - Authentication Type : http_signature +2019-02-05 12:16:38.921 [main] INFO - Request Type: POST +2019-02-05 12:16:38.921 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:16:38.922 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-05 12:16:38.922 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:16:38.922 [main] INFO - Date: Tue, 5 Feb 2019 06:46:36 GMT +2019-02-05 12:16:38.923 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:16:38.923 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="bBvptS1sSZiP/ieYq/xa/rBiHtM2FqqjVgQFrhVQC9E=" +2019-02-05 12:16:38.923 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:16:39.439 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:16:39.440 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:16:39.440 [main] INFO - Response Code: 400 +2019-02-05 12:16:39.441 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 337ms +v-c-correlation-id: 0cdfd4d0-9af9-44e7-8bac-0e053830a4c7 +OkHttp-Sent-Millis: 1549349198925 +OkHttp-Received-Millis: 1549349199438 + +2019-02-05 12:16:39.441 [main] INFO - ********* END *********: +2019-02-05 12:18:00.722 [main] INFO - ********* START ********* +2019-02-05 12:18:00.735 [main] INFO - Authentication Type : http_signature +2019-02-05 12:18:00.735 [main] INFO - Request Type: POST +2019-02-05 12:18:00.736 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:18:00.736 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-05 12:18:00.779 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:18:00.780 [main] INFO - Date: Tue, 5 Feb 2019 06:48:00 GMT +2019-02-05 12:18:00.780 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:18:00.781 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="COcO4mSUBOuVbJVIE0qe6uPrVPRfofu8JrnQi49Vy+g=" +2019-02-05 12:18:00.781 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:18:02.305 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:18:02.306 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:18:02.306 [main] INFO - Response Code: 201 +2019-02-05 12:18:02.307 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 346ms +v-c-correlation-id: 7d56c281-ed41-445e-a826-7f63a92a7b49 +OkHttp-Sent-Millis: 1549349281750 +OkHttp-Received-Millis: 1549349282287 + +2019-02-05 12:18:02.307 [main] INFO - ********* END *********: +2019-02-05 12:18:02.400 [main] INFO - ********* START ********* +2019-02-05 12:18:02.401 [main] INFO - Authentication Type : http_signature +2019-02-05 12:18:02.401 [main] INFO - Request Type: POST +2019-02-05 12:18:02.401 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:18:02.402 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-05 12:18:02.402 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:18:02.403 [main] INFO - Date: Tue, 5 Feb 2019 06:48:00 GMT +2019-02-05 12:18:02.403 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:18:02.403 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="SoXQClUZVTMzT2FisyygEmgNEgzCJI6uCaVP3DZXUm0=" +2019-02-05 12:18:02.404 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:18:02.921 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:18:02.922 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:18:02.922 [main] INFO - Response Code: 201 +2019-02-05 12:18:02.922 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 331ms +v-c-correlation-id: f78bda9a-7f71-45ab-9476-7fb83a088dbd +OkHttp-Sent-Millis: 1549349282407 +OkHttp-Received-Millis: 1549349282920 + +2019-02-05 12:18:02.923 [main] INFO - ********* END *********: +2019-02-05 12:18:02.942 [main] INFO - ********* START ********* +2019-02-05 12:18:02.942 [main] INFO - Authentication Type : http_signature +2019-02-05 12:18:02.943 [main] INFO - Request Type: POST +2019-02-05 12:18:02.943 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:18:02.944 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-05 12:18:02.944 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:18:02.945 [main] INFO - Date: Tue, 5 Feb 2019 06:48:00 GMT +2019-02-05 12:18:02.945 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:18:02.946 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="fHgZv1Pl2iNDVwFtVSo8JRw4cr9sIm++uhLtQaEzNXI=" +2019-02-05 12:18:02.947 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:18:03.393 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:18:03.394 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:18:03.395 [main] INFO - Response Code: 400 +2019-02-05 12:18:03.395 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 275ms +v-c-correlation-id: a13d9507-bfe6-41cc-9545-24a3fdf30efc +OkHttp-Sent-Millis: 1549349282949 +OkHttp-Received-Millis: 1549349283392 + +2019-02-05 12:18:03.395 [main] INFO - ********* END *********: +2019-02-05 12:19:45.977 [main] INFO - ********* START ********* +2019-02-05 12:19:45.992 [main] INFO - Authentication Type : http_signature +2019-02-05 12:19:45.992 [main] INFO - Request Type: POST +2019-02-05 12:19:45.993 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:19:45.994 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-05 12:19:46.034 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:19:46.035 [main] INFO - Date: Tue, 5 Feb 2019 06:49:45 GMT +2019-02-05 12:19:46.035 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:19:46.035 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="4Z+7ocTWfKwMy8EtSgKRWipXEl2C04PNnheE3KHxf6Q=" +2019-02-05 12:19:46.035 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:19:47.474 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:19:47.474 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:19:47.475 [main] INFO - Response Code: 201 +2019-02-05 12:19:47.475 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 353ms +v-c-correlation-id: d14da4ab-b9ca-4d06-856d-cb0682f02bf8 +OkHttp-Sent-Millis: 1549349386891 +OkHttp-Received-Millis: 1549349387454 + +2019-02-05 12:19:47.475 [main] INFO - ********* END *********: +2019-02-05 12:19:47.602 [main] INFO - ********* START ********* +2019-02-05 12:19:47.602 [main] INFO - Authentication Type : http_signature +2019-02-05 12:19:47.603 [main] INFO - Request Type: POST +2019-02-05 12:19:47.603 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:19:47.606 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-05 12:19:47.606 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:19:47.607 [main] INFO - Date: Tue, 5 Feb 2019 06:49:45 GMT +2019-02-05 12:19:47.607 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:19:47.607 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="3emxXOJ7KHQuCEWBqr2L2hTYIJLttrK30OmwFEJk6mQ=" +2019-02-05 12:19:47.608 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:19:48.153 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:19:48.153 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:19:48.154 [main] INFO - Response Code: 201 +2019-02-05 12:19:48.154 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 357ms +v-c-correlation-id: 579b9f1f-023b-4d64-ab09-c1f8db3eb231 +OkHttp-Sent-Millis: 1549349387618 +OkHttp-Received-Millis: 1549349388151 + +2019-02-05 12:19:48.155 [main] INFO - ********* END *********: +2019-02-05 12:19:48.177 [main] INFO - ********* START ********* +2019-02-05 12:19:48.177 [main] INFO - Authentication Type : http_signature +2019-02-05 12:19:48.178 [main] INFO - Request Type: POST +2019-02-05 12:19:48.178 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:19:48.178 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-05 12:19:48.179 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:19:48.179 [main] INFO - Date: Tue, 5 Feb 2019 06:49:45 GMT +2019-02-05 12:19:48.179 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:19:48.180 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="AdGlj+OEZYFE4wDb0RRIlpkeLGkNAK2zVfn/eusC8VE=" +2019-02-05 12:19:48.180 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:19:48.744 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:19:48.745 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:19:48.745 [main] INFO - Response Code: 400 +2019-02-05 12:19:48.745 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 381ms +v-c-correlation-id: f893c2dd-b883-43ff-a26d-f9a6d86b81c5 +OkHttp-Sent-Millis: 1549349388183 +OkHttp-Received-Millis: 1549349388743 + +2019-02-05 12:19:48.746 [main] INFO - ********* END *********: +2019-02-05 12:29:31.214 [main] INFO - ********* START ********* +2019-02-05 12:29:31.226 [main] INFO - Authentication Type : http_signature +2019-02-05 12:29:31.226 [main] INFO - Request Type: POST +2019-02-05 12:29:31.227 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:29:31.228 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-05 12:29:31.228 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:29:31.228 [main] INFO - Date: Tue, 5 Feb 2019 06:59:30 GMT +2019-02-05 12:29:31.229 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:29:31.229 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="4HG11w88PbfumMs9nH5JBo+DWT74soasLznRPIDjp8g=" +2019-02-05 12:29:31.229 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:29:32.940 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:29:32.940 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:29:32.940 [main] INFO - Response Code: 201 +2019-02-05 12:29:32.940 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 378ms +v-c-correlation-id: 99a18ead-faee-4bf1-b163-6a014701426f +OkHttp-Sent-Millis: 1549349972309 +OkHttp-Received-Millis: 1549349972919 + +2019-02-05 12:29:32.944 [main] INFO - ********* END *********: +2019-02-05 12:29:33.061 [main] INFO - ********* START ********* +2019-02-05 12:29:33.062 [main] INFO - Authentication Type : http_signature +2019-02-05 12:29:33.062 [main] INFO - Request Type: POST +2019-02-05 12:29:33.063 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:29:33.064 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-05 12:29:33.064 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:29:33.065 [main] INFO - Date: Tue, 5 Feb 2019 06:59:30 GMT +2019-02-05 12:29:33.065 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:29:33.065 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Oz6a+XSB46HTC3CKzIjS5etTnUzPTzJM2TKRrEA2JsM=" +2019-02-05 12:29:33.066 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:29:33.607 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:29:33.608 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:29:33.608 [main] INFO - Response Code: 201 +2019-02-05 12:29:33.609 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 333ms +v-c-correlation-id: 18d13c4f-d618-4f31-b72e-16998c6d223e +OkHttp-Sent-Millis: 1549349973069 +OkHttp-Received-Millis: 1549349973604 + +2019-02-05 12:29:33.609 [main] INFO - ********* END *********: +2019-02-05 12:29:33.635 [main] INFO - ********* START ********* +2019-02-05 12:29:33.635 [main] INFO - Authentication Type : http_signature +2019-02-05 12:29:33.635 [main] INFO - Request Type: POST +2019-02-05 12:29:33.636 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:29:33.636 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-05 12:29:33.636 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:29:33.637 [main] INFO - Date: Tue, 5 Feb 2019 06:59:30 GMT +2019-02-05 12:29:33.637 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:29:33.637 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="/ZwKfejKTUEt4hXZawzLuSMf9n3BgNjo6iWkNu8v4+I=" +2019-02-05 12:29:33.638 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:29:34.162 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:29:34.164 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:29:34.164 [main] INFO - Response Code: 400 +2019-02-05 12:29:34.165 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 321ms +v-c-correlation-id: 2036f9ec-7a9e-46b3-9dd4-9601790b5cd8 +OkHttp-Sent-Millis: 1549349973640 +OkHttp-Received-Millis: 1549349974161 + +2019-02-05 12:29:34.165 [main] INFO - ********* END *********: +2019-02-05 12:34:52.854 [main] INFO - ********* START ********* +2019-02-05 12:34:52.867 [main] INFO - Authentication Type : http_signature +2019-02-05 12:34:52.867 [main] INFO - Request Type: POST +2019-02-05 12:34:52.868 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:34:52.868 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-05 12:34:52.869 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:34:52.869 [main] INFO - Date: Tue, 5 Feb 2019 07:04:52 GMT +2019-02-05 12:34:52.869 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:34:52.870 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="BC8zhj1IvIjTE4jC5B5HY7x/iYX//RWfZAwyyHsp0aU=" +2019-02-05 12:34:52.870 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:34:54.520 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:34:54.521 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:34:54.521 [main] INFO - Response Code: 201 +2019-02-05 12:34:54.521 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 368ms +v-c-correlation-id: eb06d03b-bfe9-4e61-9e9d-256a8cc9dda8 +OkHttp-Sent-Millis: 1549350293927 +OkHttp-Received-Millis: 1549350294500 + +2019-02-05 12:34:54.522 [main] INFO - ********* END *********: +2019-02-05 12:34:54.628 [main] INFO - ********* START ********* +2019-02-05 12:34:54.629 [main] INFO - Authentication Type : http_signature +2019-02-05 12:34:54.629 [main] INFO - Request Type: POST +2019-02-05 12:34:54.631 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:34:54.632 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-05 12:34:54.633 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:34:54.633 [main] INFO - Date: Tue, 5 Feb 2019 07:04:52 GMT +2019-02-05 12:34:54.634 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:34:54.634 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="MRH48K8H2oTDP9XXZT7CI53XtwZULiLx+EeCbh64QEo=" +2019-02-05 12:34:54.634 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:34:55.192 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:34:55.193 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:34:55.193 [main] INFO - Response Code: 201 +2019-02-05 12:34:55.193 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 358ms +v-c-correlation-id: 4df610ab-140c-427e-af49-97135a0af1fc +OkHttp-Sent-Millis: 1549350294638 +OkHttp-Received-Millis: 1549350295191 + +2019-02-05 12:34:55.193 [main] INFO - ********* END *********: +2019-02-05 12:34:55.215 [main] INFO - ********* START ********* +2019-02-05 12:34:55.216 [main] INFO - Authentication Type : http_signature +2019-02-05 12:34:55.216 [main] INFO - Request Type: POST +2019-02-05 12:34:55.217 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:34:55.217 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-05 12:34:55.217 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:34:55.218 [main] INFO - Date: Tue, 5 Feb 2019 07:04:52 GMT +2019-02-05 12:34:55.218 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:34:55.219 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="1JBvzP8JiPCgO8DCnP18STYfApmHJkqZZBC1tzNF/0o=" +2019-02-05 12:34:55.220 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:34:55.765 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:34:55.767 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:34:55.768 [main] INFO - Response Code: 400 +2019-02-05 12:34:55.771 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 338ms +v-c-correlation-id: 37624280-a8a7-4182-9c21-61b1c706f956 +OkHttp-Sent-Millis: 1549350295224 +OkHttp-Received-Millis: 1549350295750 + +2019-02-05 12:34:55.774 [main] INFO - ********* END *********: +2019-02-05 12:39:15.233 [main] INFO - ********* START ********* +2019-02-05 12:39:15.248 [main] INFO - Authentication Type : http_signature +2019-02-05 12:39:15.249 [main] INFO - Request Type: POST +2019-02-05 12:39:15.250 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:39:15.251 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-05 12:39:15.251 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:39:15.251 [main] INFO - Date: Tue, 5 Feb 2019 07:09:14 GMT +2019-02-05 12:39:15.252 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:39:15.252 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="6vmnSnYEST2AL0LYkeqoRmKHhm9HeTzsqqNo0vHoi2g=" +2019-02-05 12:39:15.253 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:39:16.703 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:39:16.704 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:39:16.704 [main] INFO - Response Code: 201 +2019-02-05 12:39:16.705 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 337ms +v-c-correlation-id: de2c80fc-6137-46cb-b0cd-5e7a27ceca8e +OkHttp-Sent-Millis: 1549350556144 +OkHttp-Received-Millis: 1549350556683 + +2019-02-05 12:39:16.705 [main] INFO - ********* END *********: +2019-02-05 12:39:16.812 [main] INFO - ********* START ********* +2019-02-05 12:39:16.813 [main] INFO - Authentication Type : http_signature +2019-02-05 12:39:16.813 [main] INFO - Request Type: POST +2019-02-05 12:39:16.814 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:39:16.815 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-05 12:39:16.815 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:39:16.815 [main] INFO - Date: Tue, 5 Feb 2019 07:09:14 GMT +2019-02-05 12:39:16.816 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:39:16.816 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="UtBV/Zf2nbvJUOzqpo6We9HSkeL7gu9vrBJc5rPv92U=" +2019-02-05 12:39:16.816 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:39:17.361 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:39:17.361 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:39:17.362 [main] INFO - Response Code: 201 +2019-02-05 12:39:17.362 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 350ms +v-c-correlation-id: 45ae18dd-9ca0-4341-ab67-2d93382a4296 +OkHttp-Sent-Millis: 1549350556821 +OkHttp-Received-Millis: 1549350557360 + +2019-02-05 12:39:17.363 [main] INFO - ********* END *********: +2019-02-05 12:39:17.383 [main] INFO - ********* START ********* +2019-02-05 12:39:17.384 [main] INFO - Authentication Type : http_signature +2019-02-05 12:39:17.384 [main] INFO - Request Type: POST +2019-02-05 12:39:17.385 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:39:17.385 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-05 12:39:17.387 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:39:17.387 [main] INFO - Date: Tue, 5 Feb 2019 07:09:14 GMT +2019-02-05 12:39:17.388 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:39:17.388 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="PZBkwKVdOJ/xV3ppyZZ74y8CpAa8nd2l4W2nfmLhq2s=" +2019-02-05 12:39:17.389 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:39:17.888 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:39:17.889 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:39:17.890 [main] INFO - Response Code: 400 +2019-02-05 12:39:17.892 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 304ms +v-c-correlation-id: e189098e-f8c6-45d7-a237-7b386a98ec61 +OkHttp-Sent-Millis: 1549350557392 +OkHttp-Received-Millis: 1549350557871 + +2019-02-05 12:39:17.892 [main] INFO - ********* END *********: +2019-02-05 12:46:07.078 [main] INFO - ********* START ********* +2019-02-05 12:46:07.093 [main] INFO - Authentication Type : http_signature +2019-02-05 12:46:07.094 [main] INFO - Request Type: POST +2019-02-05 12:46:07.095 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:46:07.095 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-05 12:46:07.135 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:46:07.135 [main] INFO - Date: Tue, 5 Feb 2019 07:16:06 GMT +2019-02-05 12:46:07.136 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:46:07.136 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="wWoXDoLZvrinrHrizWIG1UkUTtVRu2VLUMsGcnCAGrs=" +2019-02-05 12:46:07.136 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:46:08.649 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:46:08.650 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:46:08.651 [main] INFO - Response Code: 201 +2019-02-05 12:46:08.651 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 370ms +v-c-correlation-id: 2dbf6eed-1095-48de-8034-07fdfe232654 +OkHttp-Sent-Millis: 1549350968041 +OkHttp-Received-Millis: 1549350968625 + +2019-02-05 12:46:08.651 [main] INFO - ********* END *********: +2019-02-05 12:46:08.757 [main] INFO - ********* START ********* +2019-02-05 12:46:08.758 [main] INFO - Authentication Type : http_signature +2019-02-05 12:46:08.758 [main] INFO - Request Type: POST +2019-02-05 12:46:08.759 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:46:08.760 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-05 12:46:08.760 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:46:08.760 [main] INFO - Date: Tue, 5 Feb 2019 07:16:06 GMT +2019-02-05 12:46:08.761 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:46:08.761 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="nma4aEWhrVC72AktFPAGZYTFjRDDjbNEI0j5WdGvucc=" +2019-02-05 12:46:08.762 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:46:09.268 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:46:09.269 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:46:09.270 [main] INFO - Response Code: 201 +2019-02-05 12:46:09.270 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 318ms +v-c-correlation-id: fc47d1c5-5c0c-49bc-9200-3014f869b04e +OkHttp-Sent-Millis: 1549350968768 +OkHttp-Received-Millis: 1549350969265 + +2019-02-05 12:46:09.271 [main] INFO - ********* END *********: +2019-02-05 12:46:09.295 [main] INFO - ********* START ********* +2019-02-05 12:46:09.295 [main] INFO - Authentication Type : http_signature +2019-02-05 12:46:09.296 [main] INFO - Request Type: POST +2019-02-05 12:46:09.296 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 12:46:09.297 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-05 12:46:09.297 [main] INFO - v-c-merchant-id: testrest +2019-02-05 12:46:09.298 [main] INFO - Date: Tue, 5 Feb 2019 07:16:06 GMT +2019-02-05 12:46:09.298 [main] INFO - Host: apitest.cybersource.com +2019-02-05 12:46:09.299 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Dh++uSAOjA6cdyN9h/cLdX0GXdA8ErsBEZE0O+hEHTc=" +2019-02-05 12:46:09.300 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 12:46:09.789 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 12:46:09.789 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 12:46:09.790 [main] INFO - Response Code: 400 +2019-02-05 12:46:09.790 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 305ms +v-c-correlation-id: faa8c25e-1f76-45d4-b9ea-674f1b8f6753 +OkHttp-Sent-Millis: 1549350969304 +OkHttp-Received-Millis: 1549350969787 + +2019-02-05 12:46:09.790 [main] INFO - ********* END *********: +2019-02-05 14:40:40.351 [main] INFO - ********* START ********* +2019-02-05 14:40:40.377 [main] INFO - Authentication Type : http_signature +2019-02-05 14:40:40.378 [main] INFO - Request Type: POST +2019-02-05 14:40:40.379 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 14:40:40.380 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-05 14:40:40.425 [main] INFO - v-c-merchant-id: testrest +2019-02-05 14:40:40.425 [main] INFO - Date: Tue, 5 Feb 2019 09:10:39 GMT +2019-02-05 14:40:40.426 [main] INFO - Host: apitest.cybersource.com +2019-02-05 14:40:40.426 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="eNJ2FBMekIyDdmm8+uBZPtUTeltl7lay3p03rL0gHcw=" +2019-02-05 14:40:40.426 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 14:40:42.110 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 14:40:42.110 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 14:40:42.111 [main] INFO - Response Code: 201 +2019-02-05 14:40:42.111 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 379ms +v-c-correlation-id: 326ad24b-2a59-4569-ae08-b3f4a8f495a1 +OkHttp-Sent-Millis: 1549357841483 +OkHttp-Received-Millis: 1549357842078 + +2019-02-05 14:40:42.111 [main] INFO - ********* END *********: +2019-02-05 14:40:42.227 [main] INFO - ********* START ********* +2019-02-05 14:40:42.228 [main] INFO - Authentication Type : http_signature +2019-02-05 14:40:42.228 [main] INFO - Request Type: POST +2019-02-05 14:40:42.229 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 14:40:42.229 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-05 14:40:42.230 [main] INFO - v-c-merchant-id: testrest +2019-02-05 14:40:42.230 [main] INFO - Date: Tue, 5 Feb 2019 09:10:39 GMT +2019-02-05 14:40:42.231 [main] INFO - Host: apitest.cybersource.com +2019-02-05 14:40:42.231 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="tqN+wPHQDKOnb6rNDY5iFaO6gjFH4UVo0gV5OGlgvxc=" +2019-02-05 14:40:42.231 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 14:40:42.786 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 14:40:42.786 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 14:40:42.787 [main] INFO - Response Code: 201 +2019-02-05 14:40:42.787 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 355ms +v-c-correlation-id: 1a7b2010-6bea-415b-9b0f-ac72a649a1c4 +OkHttp-Sent-Millis: 1549357842240 +OkHttp-Received-Millis: 1549357842784 + +2019-02-05 14:40:42.788 [main] INFO - ********* END *********: +2019-02-05 14:40:42.807 [main] INFO - ********* START ********* +2019-02-05 14:40:42.808 [main] INFO - Authentication Type : http_signature +2019-02-05 14:40:42.808 [main] INFO - Request Type: POST +2019-02-05 14:40:42.809 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 14:40:42.809 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-05 14:40:42.809 [main] INFO - v-c-merchant-id: testrest +2019-02-05 14:40:42.810 [main] INFO - Date: Tue, 5 Feb 2019 09:10:39 GMT +2019-02-05 14:40:42.810 [main] INFO - Host: apitest.cybersource.com +2019-02-05 14:40:42.810 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="IiWuLULrqr5mAGQ82o5bJsK51cGiOeBAu6sTWOD/Ct8=" +2019-02-05 14:40:42.810 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 14:40:43.305 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 14:40:43.305 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 14:40:43.305 [main] INFO - Response Code: 400 +2019-02-05 14:40:43.306 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 306ms +v-c-correlation-id: 965df6a5-c5d8-456f-977c-495bd5fb463d +OkHttp-Sent-Millis: 1549357842812 +OkHttp-Received-Millis: 1549357843303 + +2019-02-05 14:40:43.307 [main] INFO - ********* END *********: +2019-02-05 14:57:59.463 [main] INFO - ********* START ********* +2019-02-05 14:57:59.478 [main] INFO - Authentication Type : http_signature +2019-02-05 14:57:59.479 [main] INFO - Request Type: POST +2019-02-05 14:57:59.481 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 14:57:59.481 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-05 14:57:59.524 [main] INFO - v-c-merchant-id: testrest +2019-02-05 14:57:59.525 [main] INFO - Date: Tue, 5 Feb 2019 09:27:59 GMT +2019-02-05 14:57:59.525 [main] INFO - Host: apitest.cybersource.com +2019-02-05 14:57:59.526 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="BW27FJffRMu1BTCg1iPufDm8EpAoswv6OdupKkEjKcA=" +2019-02-05 14:57:59.526 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 14:58:01.191 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 14:58:01.191 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 14:58:01.192 [main] INFO - Response Code: 201 +2019-02-05 14:58:01.192 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 394ms +v-c-correlation-id: 88cbfa9c-843e-478b-a1b8-5d122ff5a3b1 +OkHttp-Sent-Millis: 1549358880565 +OkHttp-Received-Millis: 1549358881172 + +2019-02-05 14:58:01.192 [main] INFO - ********* END *********: +2019-02-05 14:58:01.313 [main] INFO - ********* START ********* +2019-02-05 14:58:01.313 [main] INFO - Authentication Type : http_signature +2019-02-05 14:58:01.314 [main] INFO - Request Type: POST +2019-02-05 14:58:01.314 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 14:58:01.315 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-05 14:58:01.315 [main] INFO - v-c-merchant-id: testrest +2019-02-05 14:58:01.316 [main] INFO - Date: Tue, 5 Feb 2019 09:27:59 GMT +2019-02-05 14:58:01.317 [main] INFO - Host: apitest.cybersource.com +2019-02-05 14:58:01.317 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="DUQBdCseAF4eFX9PhWJNWPAcvTrmtPqfMWiJ22YIMg0=" +2019-02-05 14:58:01.318 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 14:58:01.887 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 14:58:01.888 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 14:58:01.888 [main] INFO - Response Code: 201 +2019-02-05 14:58:01.889 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 366ms +v-c-correlation-id: 057eb0cd-a17b-497f-b5bf-bc70a4b75db0 +OkHttp-Sent-Millis: 1549358881322 +OkHttp-Received-Millis: 1549358881885 + +2019-02-05 14:58:01.889 [main] INFO - ********* END *********: +2019-02-05 14:58:01.915 [main] INFO - ********* START ********* +2019-02-05 14:58:01.916 [main] INFO - Authentication Type : http_signature +2019-02-05 14:58:01.917 [main] INFO - Request Type: POST +2019-02-05 14:58:01.918 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 14:58:01.918 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-05 14:58:01.919 [main] INFO - v-c-merchant-id: testrest +2019-02-05 14:58:01.919 [main] INFO - Date: Tue, 5 Feb 2019 09:27:59 GMT +2019-02-05 14:58:01.920 [main] INFO - Host: apitest.cybersource.com +2019-02-05 14:58:01.920 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="IXumuSf66e/hfBvz8irPog2kqOAslWdHBZocJadUEyE=" +2019-02-05 14:58:01.920 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 14:58:02.422 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 14:58:02.423 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 14:58:02.423 [main] INFO - Response Code: 400 +2019-02-05 14:58:02.424 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 293ms +v-c-correlation-id: 2fe1c93c-c294-4e96-adfb-705a54309ecb +OkHttp-Sent-Millis: 1549358881924 +OkHttp-Received-Millis: 1549358882421 + +2019-02-05 14:58:02.424 [main] INFO - ********* END *********: +2019-02-05 15:38:45.648 [main] INFO - ********* START ********* +2019-02-05 15:38:45.669 [main] INFO - Authentication Type : http_signature +2019-02-05 15:38:45.669 [main] INFO - Request Type: POST +2019-02-05 15:38:45.670 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 15:38:45.671 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-05 15:38:45.718 [main] INFO - v-c-merchant-id: testrest +2019-02-05 15:38:45.719 [main] INFO - Date: Tue, 5 Feb 2019 10:08:45 GMT +2019-02-05 15:38:45.719 [main] INFO - Host: apitest.cybersource.com +2019-02-05 15:38:45.719 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="EeVDPf/IhgLJild/mwtLiBWzDGhtFYmkOmwBNxpKDVY=" +2019-02-05 15:38:45.719 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 15:38:47.392 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 15:38:47.394 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 15:38:47.395 [main] INFO - Response Code: 201 +2019-02-05 15:38:47.395 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 373ms +v-c-correlation-id: b56e7837-e4b0-4dde-b15f-db08de3ab368 +OkHttp-Sent-Millis: 1549361326748 +OkHttp-Received-Millis: 1549361327372 + +2019-02-05 15:38:47.396 [main] INFO - ********* END *********: +2019-02-05 15:38:47.574 [main] INFO - ********* START ********* +2019-02-05 15:38:47.574 [main] INFO - Authentication Type : http_signature +2019-02-05 15:38:47.575 [main] INFO - Request Type: POST +2019-02-05 15:38:47.576 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 15:38:47.577 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-05 15:38:47.577 [main] INFO - v-c-merchant-id: testrest +2019-02-05 15:38:47.578 [main] INFO - Date: Tue, 5 Feb 2019 10:08:45 GMT +2019-02-05 15:38:47.579 [main] INFO - Host: apitest.cybersource.com +2019-02-05 15:38:47.579 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ajgvwN7T8gSvoKH5TDES+nIfRM1czvnYlkBc9LY/XGI=" +2019-02-05 15:38:47.579 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 15:38:48.248 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 15:38:48.249 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 15:38:48.249 [main] INFO - Response Code: 201 +2019-02-05 15:38:48.249 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 412ms +v-c-correlation-id: b8d9447d-314c-45a3-9734-fca904a258bb +OkHttp-Sent-Millis: 1549361327589 +OkHttp-Received-Millis: 1549361328245 + +2019-02-05 15:38:48.250 [main] INFO - ********* END *********: +2019-02-05 15:38:48.271 [main] INFO - ********* START ********* +2019-02-05 15:38:48.271 [main] INFO - Authentication Type : http_signature +2019-02-05 15:38:48.272 [main] INFO - Request Type: POST +2019-02-05 15:38:48.272 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-05 15:38:48.273 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-05 15:38:48.273 [main] INFO - v-c-merchant-id: testrest +2019-02-05 15:38:48.273 [main] INFO - Date: Tue, 5 Feb 2019 10:08:45 GMT +2019-02-05 15:38:48.274 [main] INFO - Host: apitest.cybersource.com +2019-02-05 15:38:48.274 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="3jB3nev8orEh/icSWuc2pD6z86kTlZA0A5J6wg2gcN4=" +2019-02-05 15:38:48.275 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-05 15:38:48.824 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-05 15:38:48.826 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-05 15:38:48.827 [main] INFO - Response Code: 400 +2019-02-05 15:38:48.827 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 355ms +v-c-correlation-id: 318bda84-7ff2-4cea-abe6-cdee8934e70c +OkHttp-Sent-Millis: 1549361328278 +OkHttp-Received-Millis: 1549361328821 + +2019-02-05 15:38:48.828 [main] INFO - ********* END *********: +2019-02-06 18:01:27.354 [main] INFO - ********* START ********* +2019-02-06 18:01:27.370 [main] INFO - Authentication Type : http_signature +2019-02-06 18:01:27.370 [main] INFO - Request Type: POST +2019-02-06 18:01:27.371 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-06 18:01:27.372 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-06 18:01:27.372 [main] INFO - v-c-merchant-id: testrest +2019-02-06 18:01:27.373 [main] INFO - Date: Wed, 6 Feb 2019 12:31:26 GMT +2019-02-06 18:01:27.373 [main] INFO - Host: apitest.cybersource.com +2019-02-06 18:01:27.373 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Ep0gZTwt8d95ZRtDSqN+6B2bME0Q167QU985/2CxxiM=" +2019-02-06 18:01:27.374 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-06 18:01:28.884 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-06 18:01:28.884 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-06 18:01:28.885 [main] INFO - Response Code: 201 +2019-02-06 18:01:28.885 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 331ms +v-c-correlation-id: f4ae7c99-9967-4876-8b34-e247eb8cf021 +OkHttp-Sent-Millis: 1549456288312 +OkHttp-Received-Millis: 1549456288859 + +2019-02-06 18:01:28.885 [main] INFO - ********* END *********: +2019-02-06 18:01:29.035 [main] INFO - ********* START ********* +2019-02-06 18:01:29.036 [main] INFO - Authentication Type : http_signature +2019-02-06 18:01:29.036 [main] INFO - Request Type: POST +2019-02-06 18:01:29.036 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-06 18:01:29.036 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-06 18:01:29.036 [main] INFO - v-c-merchant-id: testrest +2019-02-06 18:01:29.036 [main] INFO - Date: Wed, 6 Feb 2019 12:31:26 GMT +2019-02-06 18:01:29.039 [main] INFO - Host: apitest.cybersource.com +2019-02-06 18:01:29.039 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="IVuMfsoa6AOxN+pYE+JpmHzqXpxCoeaXJPK7exwqfO8=" +2019-02-06 18:01:29.039 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-06 18:01:29.597 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-06 18:01:29.598 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-06 18:01:29.599 [main] INFO - Response Code: 201 +2019-02-06 18:01:29.599 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 329ms +v-c-correlation-id: 8acd0fb9-ea46-4f09-958a-31876404c995 +OkHttp-Sent-Millis: 1549456289044 +OkHttp-Received-Millis: 1549456289575 + +2019-02-06 18:01:29.601 [main] INFO - ********* END *********: +2019-02-06 18:01:29.622 [main] INFO - ********* START ********* +2019-02-06 18:01:29.624 [main] INFO - Authentication Type : http_signature +2019-02-06 18:01:29.624 [main] INFO - Request Type: POST +2019-02-06 18:01:29.625 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-06 18:01:29.625 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-06 18:01:29.626 [main] INFO - v-c-merchant-id: testrest +2019-02-06 18:01:29.626 [main] INFO - Date: Wed, 6 Feb 2019 12:31:26 GMT +2019-02-06 18:01:29.627 [main] INFO - Host: apitest.cybersource.com +2019-02-06 18:01:29.627 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="dDZLGxpnjnx2LOqnZ/FarPmm3x152I4FL7TFCxHoeaI=" +2019-02-06 18:01:29.628 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-06 18:01:30.184 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-06 18:01:30.184 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-06 18:01:30.185 [main] INFO - Response Code: 400 +2019-02-06 18:01:30.185 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 346ms +v-c-correlation-id: d2a24802-678b-4423-a07b-2139abb2c3b1 +OkHttp-Sent-Millis: 1549456289637 +OkHttp-Received-Millis: 1549456290182 + +2019-02-06 18:01:30.186 [main] INFO - ********* END *********: +2019-02-06 18:13:02.395 [main] INFO - ********* START ********* +2019-02-06 18:13:02.409 [main] INFO - Authentication Type : http_signature +2019-02-06 18:13:02.410 [main] INFO - Request Type: POST +2019-02-06 18:13:02.412 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-02-06 18:13:02.413 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-02-06 18:13:02.455 [main] INFO - v-c-merchant-id: testrest +2019-02-06 18:13:02.456 [main] INFO - Date: Wed, 6 Feb 2019 12:43:02 GMT +2019-02-06 18:13:02.456 [main] INFO - Host: apitest.cybersource.com +2019-02-06 18:13:02.456 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="w4sRFnHQormL+dso9ASfCsswO4QaD8ivmquNlo6Gwa8=" +2019-02-06 18:13:02.457 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-06 18:13:04.356 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-06 18:13:04.357 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207982366112103002/captures} +2019-02-06 18:13:04.357 [main] INFO - Response Code: 201 +2019-02-06 18:13:04.357 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 441ms +v-c-correlation-id: 6c629334-dba4-4beb-9e0e-f1a63ac9af98 +OkHttp-Sent-Millis: 1549456983683 +OkHttp-Received-Millis: 1549456984336 + +2019-02-06 18:13:04.358 [main] INFO - ********* END *********: +2019-02-06 18:13:04.436 [main] INFO - ********* START ********* +2019-02-06 18:13:04.436 [main] INFO - Authentication Type : http_signature +2019-02-06 18:13:04.437 [main] INFO - Request Type: POST +2019-02-06 18:13:04.437 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-02-06 18:13:04.437 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-02-06 18:13:04.438 [main] INFO - v-c-merchant-id: testrest +2019-02-06 18:13:04.438 [main] INFO - Date: Wed, 6 Feb 2019 12:43:02 GMT +2019-02-06 18:13:04.438 [main] INFO - Host: apitest.cybersource.com +2019-02-06 18:13:04.439 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="GYNsYOMmkOyM8sm/yo24zWugf+6d8YzB3ZxHB0oRtKk=" +2019-02-06 18:13:04.439 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-06 18:13:05.003 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-06 18:13:05.004 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-06 18:13:05.004 [main] INFO - Response Code: 201 +2019-02-06 18:13:05.004 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 356ms +v-c-correlation-id: 4b14a504-f9ed-41ac-98e2-bcb3d8cb0af2 +OkHttp-Sent-Millis: 1549456984443 +OkHttp-Received-Millis: 1549456985001 + +2019-02-06 18:13:05.005 [main] INFO - ********* END *********: +2019-02-06 18:13:05.037 [main] INFO - ********* START ********* +2019-02-06 18:13:05.037 [main] INFO - Authentication Type : http_signature +2019-02-06 18:13:05.038 [main] INFO - Request Type: POST +2019-02-06 18:13:05.038 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-02-06 18:13:05.038 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-02-06 18:13:05.039 [main] INFO - v-c-merchant-id: testrest +2019-02-06 18:13:05.039 [main] INFO - Date: Wed, 6 Feb 2019 12:43:02 GMT +2019-02-06 18:13:05.039 [main] INFO - Host: apitest.cybersource.com +2019-02-06 18:13:05.040 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ABXs6+4J3sCt6CxxtvpLHTbwkdzLnaUSSjerTrIzDDg=" +2019-02-06 18:13:05.040 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-06 18:13:05.567 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-06 18:13:05.568 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-06 18:13:05.568 [main] INFO - Response Code: 400 +2019-02-06 18:13:05.568 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 326ms +v-c-correlation-id: dd009c8d-2115-442a-b6c3-df85473dcb5e +OkHttp-Sent-Millis: 1549456985043 +OkHttp-Received-Millis: 1549456985565 + +2019-02-06 18:13:05.569 [main] INFO - ********* END *********: +2019-02-06 18:13:38.697 [main] INFO - ********* START ********* +2019-02-06 18:13:38.713 [main] INFO - Authentication Type : http_signature +2019-02-06 18:13:38.713 [main] INFO - Request Type: POST +2019-02-06 18:13:38.714 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-02-06 18:13:38.715 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-02-06 18:13:38.757 [main] INFO - v-c-merchant-id: testrest +2019-02-06 18:13:38.757 [main] INFO - Date: Wed, 6 Feb 2019 12:43:38 GMT +2019-02-06 18:13:38.757 [main] INFO - Host: apitest.cybersource.com +2019-02-06 18:13:38.758 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Lke310UFXjiwOoNJfIKPxU5StOVzYG6iRStsGZV8mmE=" +2019-02-06 18:13:38.758 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-06 18:13:40.356 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-06 18:13:40.357 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207982366112103002/captures} +2019-02-06 18:13:40.357 [main] INFO - Response Code: 201 +2019-02-06 18:13:40.358 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 331ms +v-c-correlation-id: c555bff3-ab54-4b2b-8246-be13131b9286 +OkHttp-Sent-Millis: 1549457019807 +OkHttp-Received-Millis: 1549457020336 + +2019-02-06 18:13:40.358 [main] INFO - ********* END *********: +2019-02-06 18:14:37.452 [main] INFO - ********* START ********* +2019-02-06 18:14:37.452 [main] INFO - Authentication Type : http_signature +2019-02-06 18:14:37.452 [main] INFO - Request Type: POST +2019-02-06 18:14:37.453 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-02-06 18:14:37.453 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-02-06 18:14:37.454 [main] INFO - v-c-merchant-id: testrest +2019-02-06 18:14:37.454 [main] INFO - Date: Wed, 6 Feb 2019 12:43:38 GMT +2019-02-06 18:14:37.454 [main] INFO - Host: apitest.cybersource.com +2019-02-06 18:14:37.455 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="mYqBuE+2Q8zkmsID3FY6b6C+vdb99QtZvAB34qIHg4g=" +2019-02-06 18:14:37.455 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-06 18:14:38.050 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-06 18:14:38.051 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-06 18:14:38.051 [main] INFO - Response Code: 201 +2019-02-06 18:14:38.052 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 388ms +v-c-correlation-id: cb73fcca-4a61-421b-93e9-00771a8cefba +OkHttp-Sent-Millis: 1549457077460 +OkHttp-Received-Millis: 1549457078049 + +2019-02-06 18:14:38.052 [main] INFO - ********* END *********: +2019-02-06 18:14:38.079 [main] INFO - ********* START ********* +2019-02-06 18:14:38.080 [main] INFO - Authentication Type : http_signature +2019-02-06 18:14:38.080 [main] INFO - Request Type: POST +2019-02-06 18:14:38.080 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-02-06 18:14:38.081 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-02-06 18:14:38.081 [main] INFO - v-c-merchant-id: testrest +2019-02-06 18:14:38.081 [main] INFO - Date: Wed, 6 Feb 2019 12:43:38 GMT +2019-02-06 18:14:38.082 [main] INFO - Host: apitest.cybersource.com +2019-02-06 18:14:38.082 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="kNpyCY82ZgBmZqIxBsavYcjpTj720u7T0V6xez8Oflg=" +2019-02-06 18:14:38.082 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-06 18:14:38.584 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-06 18:14:38.585 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-06 18:14:38.586 [main] INFO - Response Code: 400 +2019-02-06 18:14:38.586 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 311ms +v-c-correlation-id: 2bb57b9d-ce19-4555-9965-419b666fa798 +OkHttp-Sent-Millis: 1549457078085 +OkHttp-Received-Millis: 1549457078583 + +2019-02-06 18:14:38.587 [main] INFO - ********* END *********: +2019-02-06 18:15:24.159 [main] INFO - ********* START ********* +2019-02-06 18:15:24.179 [main] INFO - Authentication Type : http_signature +2019-02-06 18:15:24.180 [main] INFO - Request Type: POST +2019-02-06 18:15:24.180 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-02-06 18:15:24.180 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-02-06 18:15:24.180 [main] INFO - v-c-merchant-id: testrest +2019-02-06 18:15:24.180 [main] INFO - Date: Wed, 6 Feb 2019 12:45:23 GMT +2019-02-06 18:15:24.180 [main] INFO - Host: apitest.cybersource.com +2019-02-06 18:15:24.180 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="d+Vp4oGIq0xm8g1UVE/FjwNAlE6eOg0g1NlSdD3LYu4=" +2019-02-06 18:15:24.180 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-06 18:15:25.605 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-06 18:15:25.605 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207982366112103002/captures} +2019-02-06 18:15:25.605 [main] INFO - Response Code: 201 +2019-02-06 18:15:25.606 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 313ms +v-c-correlation-id: 579124b8-ece9-464b-8c12-a733fbcd75d5 +OkHttp-Sent-Millis: 1549457125074 +OkHttp-Received-Millis: 1549457125585 + +2019-02-06 18:15:25.606 [main] INFO - ********* END *********: +2019-02-06 18:15:25.666 [main] INFO - ********* START ********* +2019-02-06 18:15:25.667 [main] INFO - Authentication Type : http_signature +2019-02-06 18:15:25.667 [main] INFO - Request Type: POST +2019-02-06 18:15:25.668 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-02-06 18:15:25.668 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-02-06 18:15:25.669 [main] INFO - v-c-merchant-id: testrest +2019-02-06 18:15:25.669 [main] INFO - Date: Wed, 6 Feb 2019 12:45:23 GMT +2019-02-06 18:15:25.670 [main] INFO - Host: apitest.cybersource.com +2019-02-06 18:15:25.670 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="PQE3fYS5Xckoqqw9ieQHuLAMTP+gG/8a5lVALvCFzAY=" +2019-02-06 18:15:25.670 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-06 18:15:26.216 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-06 18:15:26.217 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-06 18:15:26.217 [main] INFO - Response Code: 201 +2019-02-06 18:15:26.217 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 358ms +v-c-correlation-id: 5b9e86e1-833c-4400-8df5-de0e3352c15b +OkHttp-Sent-Millis: 1549457125678 +OkHttp-Received-Millis: 1549457126214 + +2019-02-06 18:15:26.218 [main] INFO - ********* END *********: +2019-02-06 18:15:26.253 [main] INFO - ********* START ********* +2019-02-06 18:15:26.253 [main] INFO - Authentication Type : http_signature +2019-02-06 18:15:26.254 [main] INFO - Request Type: POST +2019-02-06 18:15:26.254 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-02-06 18:15:26.255 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-02-06 18:15:26.256 [main] INFO - v-c-merchant-id: testrest +2019-02-06 18:15:26.256 [main] INFO - Date: Wed, 6 Feb 2019 12:45:23 GMT +2019-02-06 18:15:26.257 [main] INFO - Host: apitest.cybersource.com +2019-02-06 18:15:26.257 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="fPy+DDuV/vRcrAZU1vFZXofzLlXgh9H8Gb1QSuTTni0=" +2019-02-06 18:15:26.258 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-06 18:15:26.762 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-06 18:15:26.764 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-06 18:15:26.764 [main] INFO - Response Code: 400 +2019-02-06 18:15:26.764 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 312ms +v-c-correlation-id: 179295af-cdaa-4e1f-892e-d199e5dafe73 +OkHttp-Sent-Millis: 1549457126260 +OkHttp-Received-Millis: 1549457126759 + +2019-02-06 18:15:26.765 [main] INFO - ********* END *********: +2019-02-06 18:16:03.273 [main] INFO - ********* START ********* +2019-02-06 18:16:03.285 [main] INFO - Authentication Type : http_signature +2019-02-06 18:16:03.285 [main] INFO - Request Type: POST +2019-02-06 18:16:03.288 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-02-06 18:16:03.288 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-02-06 18:16:03.325 [main] INFO - v-c-merchant-id: testrest +2019-02-06 18:16:03.326 [main] INFO - Date: Wed, 6 Feb 2019 12:46:02 GMT +2019-02-06 18:16:03.326 [main] INFO - Host: apitest.cybersource.com +2019-02-06 18:16:03.326 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="6pDrnBL4V8zMN0Usk7990ei9t2XtFwjJNG8sh4JH9Hg=" +2019-02-06 18:16:03.327 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-06 18:16:04.710 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-06 18:16:04.711 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207982366112103002/captures} +2019-02-06 18:16:04.711 [main] INFO - Response Code: 201 +2019-02-06 18:16:04.711 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 303ms +v-c-correlation-id: 313d54ac-6de3-4261-98be-b41a8f57b5b1 +OkHttp-Sent-Millis: 1549457164189 +OkHttp-Received-Millis: 1549457164692 + +2019-02-06 18:16:04.712 [main] INFO - ********* END *********: +2019-02-06 18:16:04.768 [main] INFO - ********* START ********* +2019-02-06 18:16:04.769 [main] INFO - Authentication Type : http_signature +2019-02-06 18:16:04.769 [main] INFO - Request Type: POST +2019-02-06 18:16:04.769 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-02-06 18:16:04.770 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-02-06 18:16:04.770 [main] INFO - v-c-merchant-id: testrest +2019-02-06 18:16:04.770 [main] INFO - Date: Wed, 6 Feb 2019 12:46:02 GMT +2019-02-06 18:16:04.771 [main] INFO - Host: apitest.cybersource.com +2019-02-06 18:16:04.771 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="OiCIdPRGInOqhSjTVyhesj8ICJKvoYKVKmO9MPx7EIc=" +2019-02-06 18:16:04.771 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-06 18:16:05.303 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-06 18:16:05.303 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-06 18:16:05.304 [main] INFO - Response Code: 201 +2019-02-06 18:16:05.304 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 343ms +v-c-correlation-id: 87aff3d2-584f-4fcc-87ab-5d54469c0158 +OkHttp-Sent-Millis: 1549457164775 +OkHttp-Received-Millis: 1549457165302 + +2019-02-06 18:16:05.305 [main] INFO - ********* END *********: +2019-02-06 18:16:05.332 [main] INFO - ********* START ********* +2019-02-06 18:16:05.332 [main] INFO - Authentication Type : http_signature +2019-02-06 18:16:05.333 [main] INFO - Request Type: POST +2019-02-06 18:16:05.333 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-02-06 18:16:05.334 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-02-06 18:16:05.334 [main] INFO - v-c-merchant-id: testrest +2019-02-06 18:16:05.334 [main] INFO - Date: Wed, 6 Feb 2019 12:46:02 GMT +2019-02-06 18:16:05.335 [main] INFO - Host: apitest.cybersource.com +2019-02-06 18:16:05.335 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Jd10b2nBqnxLdh6QYXIc8uSjg/0lS1wsw2HJa9txTdw=" +2019-02-06 18:16:05.336 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-06 18:16:05.864 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-06 18:16:05.865 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-06 18:16:05.865 [main] INFO - Response Code: 400 +2019-02-06 18:16:05.866 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 344ms +v-c-correlation-id: 86feddd5-4834-43a2-a173-174a8a1419f5 +OkHttp-Sent-Millis: 1549457165338 +OkHttp-Received-Millis: 1549457165863 + +2019-02-06 18:16:05.866 [main] INFO - ********* END *********: +2019-02-06 18:17:33.243 [main] INFO - ********* START ********* +2019-02-06 18:17:33.261 [main] INFO - Authentication Type : http_signature +2019-02-06 18:17:33.261 [main] INFO - Request Type: POST +2019-02-06 18:17:33.262 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-02-06 18:17:33.263 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-02-06 18:17:33.307 [main] INFO - v-c-merchant-id: testrest +2019-02-06 18:17:33.307 [main] INFO - Date: Wed, 6 Feb 2019 12:47:32 GMT +2019-02-06 18:17:33.307 [main] INFO - Host: apitest.cybersource.com +2019-02-06 18:17:33.308 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="J2tLD0tYkGYgWtUDCu9Oib4bZigLdMQKzmZ1Cdfpmv4=" +2019-02-06 18:17:33.308 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-06 18:17:34.842 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-06 18:17:34.843 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207982366112103002/captures} +2019-02-06 18:17:34.843 [main] INFO - Response Code: 201 +2019-02-06 18:17:34.843 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 352ms +v-c-correlation-id: 81102b05-3bf5-4c82-b022-026e97c59f68 +OkHttp-Sent-Millis: 1549457254258 +OkHttp-Received-Millis: 1549457254823 + +2019-02-06 18:17:34.844 [main] INFO - ********* END *********: +2019-02-06 18:17:34.900 [main] INFO - ********* START ********* +2019-02-06 18:17:34.900 [main] INFO - Authentication Type : http_signature +2019-02-06 18:17:34.900 [main] INFO - Request Type: POST +2019-02-06 18:17:34.900 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-02-06 18:17:34.900 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-02-06 18:17:34.900 [main] INFO - v-c-merchant-id: testrest +2019-02-06 18:17:34.900 [main] INFO - Date: Wed, 6 Feb 2019 12:47:32 GMT +2019-02-06 18:17:34.900 [main] INFO - Host: apitest.cybersource.com +2019-02-06 18:17:34.900 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="5D6krqYLar/234jMJYrTpKWBkq483Th+5vx1xf2QWmM=" +2019-02-06 18:17:34.900 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-06 18:17:35.468 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-06 18:17:35.469 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-06 18:17:35.469 [main] INFO - Response Code: 201 +2019-02-06 18:17:35.469 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 360ms +v-c-correlation-id: 3b2cb152-cffd-4b93-8ed6-6ce4da9ac9bc +OkHttp-Sent-Millis: 1549457254913 +OkHttp-Received-Millis: 1549457255467 + +2019-02-06 18:17:35.470 [main] INFO - ********* END *********: +2019-02-06 18:17:35.496 [main] INFO - ********* START ********* +2019-02-06 18:17:35.499 [main] INFO - Authentication Type : http_signature +2019-02-06 18:17:35.499 [main] INFO - Request Type: POST +2019-02-06 18:17:35.500 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-02-06 18:17:35.500 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-02-06 18:17:35.500 [main] INFO - v-c-merchant-id: testrest +2019-02-06 18:17:35.500 [main] INFO - Date: Wed, 6 Feb 2019 12:47:32 GMT +2019-02-06 18:17:35.501 [main] INFO - Host: apitest.cybersource.com +2019-02-06 18:17:35.501 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="836lXO48cWMpj4zfZcxEGBwfMg/xx9un0LlF6fTNi4o=" +2019-02-06 18:17:35.501 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-06 18:17:36.017 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-06 18:17:36.018 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-06 18:17:36.018 [main] INFO - Response Code: 400 +2019-02-06 18:17:36.018 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 312ms +v-c-correlation-id: 13644fcc-05d3-4d60-a268-283bee92da93 +OkHttp-Sent-Millis: 1549457255504 +OkHttp-Received-Millis: 1549457256015 + +2019-02-06 18:17:36.019 [main] INFO - ********* END *********: +2019-02-07 10:32:41.380 [main] INFO - ********* START ********* +2019-02-07 10:32:41.395 [main] INFO - Authentication Type : http_signature +2019-02-07 10:32:41.396 [main] INFO - Request Type: POST +2019-02-07 10:32:41.396 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-07 10:32:41.397 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-07 10:32:41.441 [main] INFO - v-c-merchant-id: testrest +2019-02-07 10:32:41.441 [main] INFO - Date: Thu, 7 Feb 2019 05:02:41 GMT +2019-02-07 10:32:41.442 [main] INFO - Host: apitest.cybersource.com +2019-02-07 10:32:41.442 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="BSn728jqbJQV/bx3Xm6YK5ak/0vFmszCxIYY6ODDezQ=" +2019-02-07 10:32:41.442 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 10:32:43.192 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-07 10:32:43.193 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-07 10:32:43.193 [main] INFO - Response Code: 201 +2019-02-07 10:32:43.194 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 433ms +v-c-correlation-id: e659451f-4c5e-40f6-9a03-aff317b4a95a +OkHttp-Sent-Millis: 1549515762468 +OkHttp-Received-Millis: 1549515763171 + +2019-02-07 10:32:43.194 [main] INFO - ********* END *********: +2019-02-07 10:32:43.340 [main] INFO - ********* START ********* +2019-02-07 10:32:43.340 [main] INFO - Authentication Type : http_signature +2019-02-07 10:32:43.340 [main] INFO - Request Type: POST +2019-02-07 10:32:43.341 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-07 10:32:43.341 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-07 10:32:43.342 [main] INFO - v-c-merchant-id: testrest +2019-02-07 10:32:43.342 [main] INFO - Date: Thu, 7 Feb 2019 05:02:41 GMT +2019-02-07 10:32:43.342 [main] INFO - Host: apitest.cybersource.com +2019-02-07 10:32:43.343 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="DAikwapF69yW34A1IOz0sXBR4RAgKdWhUZEiK+LsDFI=" +2019-02-07 10:32:43.343 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 10:32:44.014 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-07 10:32:44.014 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-07 10:32:44.020 [main] INFO - Response Code: 201 +2019-02-07 10:32:44.020 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 449ms +v-c-correlation-id: 8655d0d7-c6c9-44f2-adf2-7333f16bcc09 +OkHttp-Sent-Millis: 1549515763347 +OkHttp-Received-Millis: 1549515764014 + +2019-02-07 10:32:44.020 [main] INFO - ********* END *********: +2019-02-07 10:32:44.041 [main] INFO - ********* START ********* +2019-02-07 10:32:44.041 [main] INFO - Authentication Type : http_signature +2019-02-07 10:32:44.041 [main] INFO - Request Type: POST +2019-02-07 10:32:44.042 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-07 10:32:44.042 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-07 10:32:44.042 [main] INFO - v-c-merchant-id: testrest +2019-02-07 10:32:44.043 [main] INFO - Date: Thu, 7 Feb 2019 05:02:41 GMT +2019-02-07 10:32:44.043 [main] INFO - Host: apitest.cybersource.com +2019-02-07 10:32:44.043 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="nH+zarMt0dmAOl3VD2oY2nS9bsDLjfRMim1iWnKqHCQ=" +2019-02-07 10:32:44.044 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 10:32:44.606 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-07 10:32:44.606 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-07 10:32:44.607 [main] INFO - Response Code: 400 +2019-02-07 10:32:44.607 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 348ms +v-c-correlation-id: f11ec313-4582-457a-a9ab-04285962a4cb +OkHttp-Sent-Millis: 1549515764045 +OkHttp-Received-Millis: 1549515764604 + +2019-02-07 10:32:44.608 [main] INFO - ********* END *********: +2019-02-07 11:34:44.236 [main] INFO - ********* START ********* +2019-02-07 11:34:44.253 [main] INFO - Authentication Type : http_signature +2019-02-07 11:34:44.254 [main] INFO - Request Type: POST +2019-02-07 11:34:44.255 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-07 11:34:44.255 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-07 11:34:44.294 [main] INFO - v-c-merchant-id: testrest +2019-02-07 11:34:44.295 [main] INFO - Date: Thu, 7 Feb 2019 06:04:43 GMT +2019-02-07 11:34:44.295 [main] INFO - Host: apitest.cybersource.com +2019-02-07 11:34:44.296 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="eGjO1lTIMaUIXZquPRdlwzXxwOPPbyJo1KcsXeBkgV4=" +2019-02-07 11:34:44.296 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 11:34:46.016 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-07 11:34:46.016 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-07 11:34:46.017 [main] INFO - Response Code: 201 +2019-02-07 11:34:46.017 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 369ms +v-c-correlation-id: 6aba9c96-86db-4096-af48-b60b61f2204a +OkHttp-Sent-Millis: 1549519485405 +OkHttp-Received-Millis: 1549519485993 + +2019-02-07 11:34:46.018 [main] INFO - ********* END *********: +2019-02-07 11:35:15.648 [main] INFO - ********* START ********* +2019-02-07 11:35:15.649 [main] INFO - Authentication Type : http_signature +2019-02-07 11:35:15.649 [main] INFO - Request Type: POST +2019-02-07 11:35:15.650 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-07 11:35:15.650 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-07 11:35:15.650 [main] INFO - v-c-merchant-id: testrest +2019-02-07 11:35:15.651 [main] INFO - Date: Thu, 7 Feb 2019 06:04:43 GMT +2019-02-07 11:35:15.651 [main] INFO - Host: apitest.cybersource.com +2019-02-07 11:35:15.651 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="OnjpfRE0ZAy3EoiEBKusEE00otXbUMMd43UVOlP2ysw=" +2019-02-07 11:35:15.652 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 11:35:16.272 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-07 11:35:16.274 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-07 11:35:16.274 [main] INFO - Response Code: 201 +2019-02-07 11:35:16.274 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 430ms +v-c-correlation-id: 3117de4e-d4b0-4597-aaf6-bcec2318e897 +OkHttp-Sent-Millis: 1549519515656 +OkHttp-Received-Millis: 1549519516271 + +2019-02-07 11:35:16.275 [main] INFO - ********* END *********: +2019-02-07 11:35:16.299 [main] INFO - ********* START ********* +2019-02-07 11:35:16.300 [main] INFO - Authentication Type : http_signature +2019-02-07 11:35:16.300 [main] INFO - Request Type: POST +2019-02-07 11:35:16.300 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-07 11:35:16.301 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-07 11:35:16.301 [main] INFO - v-c-merchant-id: testrest +2019-02-07 11:35:16.301 [main] INFO - Date: Thu, 7 Feb 2019 06:04:43 GMT +2019-02-07 11:35:16.302 [main] INFO - Host: apitest.cybersource.com +2019-02-07 11:35:16.302 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="nvKEM12SjTd8LfHCqsXQZwj30r8qHur+oZOnrZD5XrM=" +2019-02-07 11:35:16.302 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 11:35:16.838 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-07 11:35:16.840 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-07 11:35:16.841 [main] INFO - Response Code: 400 +2019-02-07 11:35:16.841 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 329ms +v-c-correlation-id: 3e600898-052c-4d65-9fd2-bc381b16e108 +OkHttp-Sent-Millis: 1549519516305 +OkHttp-Received-Millis: 1549519516834 + +2019-02-07 11:35:16.841 [main] INFO - ********* END *********: +2019-02-07 11:35:32.581 [main] INFO - ********* START ********* +2019-02-07 11:35:32.594 [main] INFO - Authentication Type : http_signature +2019-02-07 11:35:32.595 [main] INFO - Request Type: POST +2019-02-07 11:35:32.596 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-07 11:35:32.596 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-07 11:35:32.633 [main] INFO - v-c-merchant-id: testrest +2019-02-07 11:35:32.634 [main] INFO - Date: Thu, 7 Feb 2019 06:05:32 GMT +2019-02-07 11:35:32.634 [main] INFO - Host: apitest.cybersource.com +2019-02-07 11:35:32.635 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="qvnpuk1bYv8CuZ+ipf1yWwm26bX2qccr71MfrW/1ZbU=" +2019-02-07 11:35:32.635 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 11:35:34.214 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-07 11:35:34.214 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-07 11:35:34.215 [main] INFO - Response Code: 201 +2019-02-07 11:35:34.215 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 395ms +v-c-correlation-id: 24346bac-9714-4254-b908-a2b5cb578a69 +OkHttp-Sent-Millis: 1549519533567 +OkHttp-Received-Millis: 1549519534195 + +2019-02-07 11:35:34.215 [main] INFO - ********* END *********: +2019-02-07 11:35:34.330 [main] INFO - ********* START ********* +2019-02-07 11:35:34.330 [main] INFO - Authentication Type : http_signature +2019-02-07 11:35:34.331 [main] INFO - Request Type: POST +2019-02-07 11:35:34.332 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-07 11:35:34.332 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-07 11:35:34.333 [main] INFO - v-c-merchant-id: testrest +2019-02-07 11:35:34.334 [main] INFO - Date: Thu, 7 Feb 2019 06:05:32 GMT +2019-02-07 11:35:34.334 [main] INFO - Host: apitest.cybersource.com +2019-02-07 11:35:34.335 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="639ipARTXU/Of77b5aj0LkwRILt5xqrKmEzPgxDy2tE=" +2019-02-07 11:35:34.335 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 11:35:34.914 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-07 11:35:34.915 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-07 11:35:34.915 [main] INFO - Response Code: 201 +2019-02-07 11:35:34.916 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 382ms +v-c-correlation-id: 4541bee9-8f6a-4218-92a3-2471c8b70bea +OkHttp-Sent-Millis: 1549519534339 +OkHttp-Received-Millis: 1549519534913 + +2019-02-07 11:35:34.916 [main] INFO - ********* END *********: +2019-02-07 11:35:34.941 [main] INFO - ********* START ********* +2019-02-07 11:35:34.942 [main] INFO - Authentication Type : http_signature +2019-02-07 11:35:34.942 [main] INFO - Request Type: POST +2019-02-07 11:35:34.943 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-07 11:35:34.943 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-07 11:35:34.943 [main] INFO - v-c-merchant-id: testrest +2019-02-07 11:35:34.944 [main] INFO - Date: Thu, 7 Feb 2019 06:05:32 GMT +2019-02-07 11:35:34.944 [main] INFO - Host: apitest.cybersource.com +2019-02-07 11:35:34.944 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="4l7wOyGhqz4kbZp8Q0+5QHT2BNYHmefwEaG0SbvE4UM=" +2019-02-07 11:35:34.945 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 11:35:35.505 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-07 11:35:35.507 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-07 11:35:35.507 [main] INFO - Response Code: 400 +2019-02-07 11:35:35.507 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 355ms +v-c-correlation-id: f57c3a4b-e244-47cb-b9b5-102a113399e1 +OkHttp-Sent-Millis: 1549519534947 +OkHttp-Received-Millis: 1549519535504 + +2019-02-07 11:35:35.508 [main] INFO - ********* END *********: +2019-02-07 11:46:53.206 [main] INFO - ********* START ********* +2019-02-07 11:46:53.219 [main] INFO - Authentication Type : http_signature +2019-02-07 11:46:53.221 [main] INFO - Request Type: POST +2019-02-07 11:46:53.222 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-02-07 11:46:53.222 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-02-07 11:46:53.260 [main] INFO - v-c-merchant-id: testrest +2019-02-07 11:46:53.261 [main] INFO - Date: Thu, 7 Feb 2019 06:16:52 GMT +2019-02-07 11:46:53.261 [main] INFO - Host: apitest.cybersource.com +2019-02-07 11:46:53.263 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="3e3DuuDk1DAuFrPppuseJneHLRUtQ+lmI9uvc7EubZk=" +2019-02-07 11:46:53.264 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 11:46:54.909 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-07 11:46:54.910 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207982366112103002/captures} +2019-02-07 11:46:54.910 [main] INFO - Response Code: 201 +2019-02-07 11:46:54.910 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 401ms +v-c-correlation-id: c90fdcfe-0bd5-4857-9bed-532c55747c37 +OkHttp-Sent-Millis: 1549520214270 +OkHttp-Received-Millis: 1549520214890 + +2019-02-07 11:46:54.911 [main] INFO - ********* END *********: +2019-02-07 11:46:54.970 [main] INFO - ********* START ********* +2019-02-07 11:46:54.971 [main] INFO - Authentication Type : http_signature +2019-02-07 11:46:54.971 [main] INFO - Request Type: POST +2019-02-07 11:46:54.972 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-02-07 11:46:54.972 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-02-07 11:46:54.972 [main] INFO - v-c-merchant-id: testrest +2019-02-07 11:46:54.973 [main] INFO - Date: Thu, 7 Feb 2019 06:16:52 GMT +2019-02-07 11:46:54.973 [main] INFO - Host: apitest.cybersource.com +2019-02-07 11:46:54.974 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="VbOEH7W5xgIPM/a+WRbscvzNAYkXlAndEV7GVHwW8lo=" +2019-02-07 11:46:54.974 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 11:46:55.547 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-07 11:46:55.548 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-07 11:46:55.548 [main] INFO - Response Code: 201 +2019-02-07 11:46:55.549 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 361ms +v-c-correlation-id: bda5d142-d652-4556-8dca-3421d9308716 +OkHttp-Sent-Millis: 1549520214978 +OkHttp-Received-Millis: 1549520215546 + +2019-02-07 11:46:55.549 [main] INFO - ********* END *********: +2019-02-07 11:46:55.580 [main] INFO - ********* START ********* +2019-02-07 11:46:55.580 [main] INFO - Authentication Type : http_signature +2019-02-07 11:46:55.581 [main] INFO - Request Type: POST +2019-02-07 11:46:55.581 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-02-07 11:46:55.581 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-02-07 11:46:55.582 [main] INFO - v-c-merchant-id: testrest +2019-02-07 11:46:55.582 [main] INFO - Date: Thu, 7 Feb 2019 06:16:52 GMT +2019-02-07 11:46:55.583 [main] INFO - Host: apitest.cybersource.com +2019-02-07 11:46:55.583 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="E/XtHQemrP+kgjy+Swu55nD64LkYur/4s9LZ5/wI1xo=" +2019-02-07 11:46:55.584 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 11:46:56.218 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-07 11:46:56.219 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-07 11:46:56.219 [main] INFO - Response Code: 400 +2019-02-07 11:46:56.220 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 438ms +v-c-correlation-id: 66b80d44-1e67-4286-8f40-dd8a97227cef +OkHttp-Sent-Millis: 1549520215586 +OkHttp-Received-Millis: 1549520216217 + +2019-02-07 11:46:56.220 [main] INFO - ********* END *********: +2019-02-07 12:00:02.737 [main] INFO - ********* START ********* +2019-02-07 12:00:02.750 [main] INFO - Authentication Type : http_signature +2019-02-07 12:00:02.751 [main] INFO - Request Type: POST +2019-02-07 12:00:02.751 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490042042466283603005/reversals, requestType=POST} +2019-02-07 12:00:02.752 [main] INFO - Digest: SHA-256=+nVNWFcK5wejoED726n/0CNM4MAETj2u1DH6s02VUIk= +2019-02-07 12:00:02.794 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:00:02.795 [main] INFO - Date: Thu, 7 Feb 2019 06:30:02 GMT +2019-02-07 12:00:02.795 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:00:02.796 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="eiQkdqhH7ybc4dSt7Q8BYClPCnHPaupyZwosVBC6eyE=" +2019-02-07 12:00:02.796 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:00:04.561 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"100.00"},"reason":"testing"}} +2019-02-07 12:00:04.561 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-07T06:30:04Z","status":"INVALID_REQUEST","reason":"TRANSACTION_ALREADY_REVERSED_OR_SETTLED","message":"Decline - The transaction has already been settled or reversed."} +2019-02-07 12:00:04.562 [main] INFO - Response Code: 400 +2019-02-07 12:00:04.562 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 194 +X-Cnection: close +x-response-time: 521ms +v-c-correlation-id: 928f0e48-39b7-4f25-923d-2c9fc83022f4 +OkHttp-Sent-Millis: 1549521003794 +OkHttp-Received-Millis: 1549521004522 + +2019-02-07 12:00:04.562 [main] INFO - ********* END *********: +2019-02-07 12:01:07.823 [main] INFO - ********* START ********* +2019-02-07 12:01:07.850 [main] INFO - Authentication Type : http_signature +2019-02-07 12:01:07.851 [main] INFO - Request Type: POST +2019-02-07 12:01:07.853 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490042042466283603005/reversals, requestType=POST} +2019-02-07 12:01:07.854 [main] INFO - Digest: SHA-256=+nVNWFcK5wejoED726n/0CNM4MAETj2u1DH6s02VUIk= +2019-02-07 12:01:07.855 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:01:07.856 [main] INFO - Date: Thu, 7 Feb 2019 06:31:03 GMT +2019-02-07 12:01:07.856 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:01:07.857 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ESqLvUg4ZflZDg2FTjeTM42w6xCvyLakyD3901MUZoI=" +2019-02-07 12:01:07.858 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:01:11.569 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"100.00"},"reason":"testing"}} +2019-02-07 12:01:11.570 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-07T06:31:11Z","status":"INVALID_REQUEST","reason":"TRANSACTION_ALREADY_REVERSED_OR_SETTLED","message":"Decline - The transaction has already been settled or reversed."} +2019-02-07 12:01:11.572 [main] INFO - Response Code: 400 +2019-02-07 12:01:11.572 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 194 +X-Cnection: close +x-response-time: 441ms +v-c-correlation-id: ec767718-6559-478b-8e1c-e864a177d15a +OkHttp-Sent-Millis: 1549521070858 +OkHttp-Received-Millis: 1549521071522 + +2019-02-07 12:01:11.573 [main] INFO - ********* END *********: +2019-02-07 12:02:11.896 [main] INFO - ********* START ********* +2019-02-07 12:02:11.914 [main] INFO - Authentication Type : http_signature +2019-02-07 12:02:11.914 [main] INFO - Request Type: POST +2019-02-07 12:02:11.915 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490042042466283603005/reversals, requestType=POST} +2019-02-07 12:02:11.916 [main] INFO - Digest: SHA-256=+nVNWFcK5wejoED726n/0CNM4MAETj2u1DH6s02VUIk= +2019-02-07 12:02:11.954 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:02:11.955 [main] INFO - Date: Thu, 7 Feb 2019 06:32:11 GMT +2019-02-07 12:02:11.955 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:02:11.955 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="adwCjcP0kAmDBQXcf0IaPcqcdqpwQyZNWcONA/QvSzc=" +2019-02-07 12:02:11.958 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:02:13.492 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"100.00"},"reason":"testing"}} +2019-02-07 12:02:13.492 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-07T06:32:13Z","status":"INVALID_REQUEST","reason":"TRANSACTION_ALREADY_REVERSED_OR_SETTLED","message":"Decline - The transaction has already been settled or reversed."} +2019-02-07 12:02:13.493 [main] INFO - Response Code: 400 +2019-02-07 12:02:13.493 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 194 +X-Cnection: close +x-response-time: 393ms +v-c-correlation-id: 3b1c47c9-17a9-40fe-900b-6e84d9cd23bd +OkHttp-Sent-Millis: 1549521132861 +OkHttp-Received-Millis: 1549521133464 + +2019-02-07 12:02:13.493 [main] INFO - ********* END *********: +2019-02-07 12:04:17.298 [main] INFO - ********* START ********* +2019-02-07 12:04:17.310 [main] INFO - Authentication Type : http_signature +2019-02-07 12:04:17.311 [main] INFO - Request Type: POST +2019-02-07 12:04:17.311 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490042042466283603005/reversals, requestType=POST} +2019-02-07 12:04:17.312 [main] INFO - Digest: SHA-256=+nVNWFcK5wejoED726n/0CNM4MAETj2u1DH6s02VUIk= +2019-02-07 12:04:17.349 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:04:17.350 [main] INFO - Date: Thu, 7 Feb 2019 06:34:16 GMT +2019-02-07 12:04:17.351 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:04:17.351 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="JNwoRcU9lrEdpF59pDOSZ3ca7A2A2kwDfBZ5PnpPOs4=" +2019-02-07 12:04:17.351 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:04:18.896 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"100.00"},"reason":"testing"}} +2019-02-07 12:04:18.896 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-07T06:34:18Z","status":"INVALID_REQUEST","reason":"TRANSACTION_ALREADY_REVERSED_OR_SETTLED","message":"Decline - The transaction has already been settled or reversed."} +2019-02-07 12:04:18.897 [main] INFO - Response Code: 400 +2019-02-07 12:04:18.898 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 194 +X-Cnection: close +x-response-time: 379ms +v-c-correlation-id: f9b29af0-846e-4a70-9dc0-aebeb6f24781 +OkHttp-Sent-Millis: 1549521258283 +OkHttp-Received-Millis: 1549521258869 + +2019-02-07 12:04:18.898 [main] INFO - ********* END *********: +2019-02-07 12:04:18.941 [main] INFO - ********* START ********* +2019-02-07 12:04:18.941 [main] INFO - Authentication Type : http_signature +2019-02-07 12:04:18.942 [main] INFO - Request Type: POST +2019-02-07 12:04:18.942 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490042042466283603005/reversals, requestType=POST} +2019-02-07 12:04:18.943 [main] INFO - Digest: SHA-256=pAGeIXg2n5jV3A6rwpZbKaLbAzo/U73Yk5w2Zu0QX4M= +2019-02-07 12:04:18.943 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:04:18.944 [main] INFO - Date: Thu, 7 Feb 2019 06:34:16 GMT +2019-02-07 12:04:18.944 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:04:18.945 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="BNSskuEhZavOruUoSJtF/PW6/UkcNwGwSrWuGJOv2nk=" +2019-02-07 12:04:18.945 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:04:19.480 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"200"},"reason":"testing"}} +2019-02-07 12:04:19.481 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490042042466283603005/reversals} +2019-02-07 12:04:19.481 [main] INFO - Response Code: 400 +2019-02-07 12:04:19.482 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 264 +X-Cnection: close +x-response-time: 332ms +v-c-correlation-id: 80b5a0c6-280a-4849-b2b6-ac40cc7b30a8 +OkHttp-Sent-Millis: 1549521258948 +OkHttp-Received-Millis: 1549521259479 + +2019-02-07 12:04:19.482 [main] INFO - ********* END *********: +2019-02-07 12:04:19.511 [main] INFO - ********* START ********* +2019-02-07 12:04:19.511 [main] INFO - Authentication Type : http_signature +2019-02-07 12:04:19.512 [main] INFO - Request Type: POST +2019-02-07 12:04:19.512 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/reversals, requestType=POST} +2019-02-07 12:04:19.512 [main] INFO - Digest: SHA-256=EmbUNBQ6YMXxCj2Ldp/J/yZkqbcqi/7w3Qh/cGHWZ54= +2019-02-07 12:04:19.513 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:04:19.513 [main] INFO - Date: Thu, 7 Feb 2019 06:34:16 GMT +2019-02-07 12:04:19.513 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:04:19.514 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="jUGavfVsQZk4anMpP3b1M6poZp4xGBxiK81sju1/ZMM=" +2019-02-07 12:04:19.514 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:04:20.046 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"102.21"},"reason":"testing"}} +2019-02-07 12:04:20.047 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490042042466283603005/reversals} +2019-02-07 12:04:20.047 [main] INFO - Response Code: 400 +2019-02-07 12:04:20.047 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 343ms +v-c-correlation-id: c5b5645c-f9e9-46e1-9c68-0fcba1e89c7a +OkHttp-Sent-Millis: 1549521259517 +OkHttp-Received-Millis: 1549521260045 + +2019-02-07 12:04:20.048 [main] INFO - ********* END *********: +2019-02-07 12:12:50.324 [main] INFO - ********* START ********* +2019-02-07 12:12:50.340 [main] INFO - Authentication Type : http_signature +2019-02-07 12:12:50.341 [main] INFO - Request Type: POST +2019-02-07 12:12:50.341 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490056228246693603006/refunds, requestType=POST} +2019-02-07 12:12:50.342 [main] INFO - Digest: SHA-256=I+1qD0zhOoAiatjE27A6YBxkUKBTRSBoS6VKc2mS8Bc= +2019-02-07 12:12:50.382 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:12:50.383 [main] INFO - Date: Thu, 7 Feb 2019 06:42:49 GMT +2019-02-07 12:12:50.383 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:12:50.384 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="5imPPxzgTVlNjWdXA1zVXKwHsVo6JW20K43MvU1cC/c=" +2019-02-07 12:12:50.384 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:12:52.098 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}}} +2019-02-07 12:12:52.099 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490056228246693603006/refunds} +2019-02-07 12:12:52.099 [main] INFO - Response Code: 201 +2019-02-07 12:12:52.100 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 584ms +v-c-correlation-id: 8d22afbc-1892-4387-901d-48a91b6a77d7 +OkHttp-Sent-Millis: 1549521771285 +OkHttp-Received-Millis: 1549521772074 + +2019-02-07 12:12:52.101 [main] INFO - ********* END *********: +2019-02-07 12:12:52.171 [main] INFO - ********* START ********* +2019-02-07 12:12:52.171 [main] INFO - Authentication Type : http_signature +2019-02-07 12:12:52.172 [main] INFO - Request Type: POST +2019-02-07 12:12:52.172 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490056228246693603006/refunds, requestType=POST} +2019-02-07 12:12:52.173 [main] INFO - Digest: SHA-256=k43sFGLkconY+lZ+qk3SH20ZjY4hdnzlhh7bkAtP+34= +2019-02-07 12:12:52.173 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:12:52.174 [main] INFO - Date: Thu, 7 Feb 2019 06:42:49 GMT +2019-02-07 12:12:52.174 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:12:52.174 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="VGACOIYwLpBbG9i0hMmUM4Riyp+ffvcps2zaotakJ+M=" +2019-02-07 12:12:52.175 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:12:52.818 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}}} +2019-02-07 12:12:52.819 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490056228246693603006/refunds} +2019-02-07 12:12:52.819 [main] INFO - Response Code: 201 +2019-02-07 12:12:52.820 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 451ms +v-c-correlation-id: a0b800c9-3556-434d-92c3-25089d227110 +OkHttp-Sent-Millis: 1549521772178 +OkHttp-Received-Millis: 1549521772818 + +2019-02-07 12:12:52.820 [main] INFO - ********* END *********: +2019-02-07 12:12:52.848 [main] INFO - ********* START ********* +2019-02-07 12:12:52.850 [main] INFO - Authentication Type : http_signature +2019-02-07 12:12:52.850 [main] INFO - Request Type: POST +2019-02-07 12:12:52.851 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567890123456789123/refunds, requestType=POST} +2019-02-07 12:12:52.851 [main] INFO - Digest: SHA-256=3OkTv9EQccMckYHiNHUzAweMWa91L1CQXTmCvjjQHoU= +2019-02-07 12:12:52.852 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:12:52.852 [main] INFO - Date: Thu, 7 Feb 2019 06:42:49 GMT +2019-02-07 12:12:52.852 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:12:52.853 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="TnR9ADenraowJLNs1+jQZ4TWRXfI2Y0Z40gPSCGTB7k=" +2019-02-07 12:12:52.853 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:14:04.693 [main] INFO - ********* START ********* +2019-02-07 12:14:04.707 [main] INFO - Authentication Type : http_signature +2019-02-07 12:14:04.707 [main] INFO - Request Type: POST +2019-02-07 12:14:04.708 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490056228246693603006/refunds, requestType=POST} +2019-02-07 12:14:04.708 [main] INFO - Digest: SHA-256=I+1qD0zhOoAiatjE27A6YBxkUKBTRSBoS6VKc2mS8Bc= +2019-02-07 12:14:04.746 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:14:04.746 [main] INFO - Date: Thu, 7 Feb 2019 06:44:04 GMT +2019-02-07 12:14:04.747 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:14:04.747 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="lBNm8zrUtfalPbRT4RpkU3i70pUHOVsr/gH3G74yoew=" +2019-02-07 12:14:04.748 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:14:06.383 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}}} +2019-02-07 12:14:06.384 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490056228246693603006/refunds} +2019-02-07 12:14:06.384 [main] INFO - Response Code: 201 +2019-02-07 12:14:06.385 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 458ms +v-c-correlation-id: 9f35fdd6-d5bf-4230-b2c7-a2b6c03c2bd7 +OkHttp-Sent-Millis: 1549521845679 +OkHttp-Received-Millis: 1549521846341 + +2019-02-07 12:14:06.385 [main] INFO - ********* END *********: +2019-02-07 12:14:10.859 [main] INFO - ********* START ********* +2019-02-07 12:14:10.860 [main] INFO - Authentication Type : http_signature +2019-02-07 12:14:10.860 [main] INFO - Request Type: POST +2019-02-07 12:14:10.861 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490056228246693603006/refunds, requestType=POST} +2019-02-07 12:14:10.862 [main] INFO - Digest: SHA-256=k43sFGLkconY+lZ+qk3SH20ZjY4hdnzlhh7bkAtP+34= +2019-02-07 12:14:10.862 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:14:10.863 [main] INFO - Date: Thu, 7 Feb 2019 06:44:04 GMT +2019-02-07 12:14:10.863 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:14:10.864 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="RCe5a883x1/Qm1VmpLHuLAPaYz5KIkIG06yIsEFh6tM=" +2019-02-07 12:14:10.865 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:14:11.524 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}}} +2019-02-07 12:14:11.525 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490056228246693603006/refunds} +2019-02-07 12:14:11.525 [main] INFO - Response Code: 201 +2019-02-07 12:14:11.526 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 442ms +v-c-correlation-id: e9b21861-f28f-43bc-bbd6-5354d88c9522 +OkHttp-Sent-Millis: 1549521850871 +OkHttp-Received-Millis: 1549521851521 + +2019-02-07 12:14:11.527 [main] INFO - ********* END *********: +2019-02-07 12:14:14.265 [main] INFO - ********* START ********* +2019-02-07 12:14:14.268 [main] INFO - Authentication Type : http_signature +2019-02-07 12:14:14.269 [main] INFO - Request Type: POST +2019-02-07 12:14:14.271 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567890123456789123/refunds, requestType=POST} +2019-02-07 12:14:14.272 [main] INFO - Digest: SHA-256=3OkTv9EQccMckYHiNHUzAweMWa91L1CQXTmCvjjQHoU= +2019-02-07 12:14:14.273 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:14:14.274 [main] INFO - Date: Thu, 7 Feb 2019 06:44:04 GMT +2019-02-07 12:14:14.275 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:14:14.276 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="rPeLsPZOYA2KfdYLUXNu9rseszhZnmFrbaIJtd38fQ8=" +2019-02-07 12:14:14.277 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:16:28.012 [main] INFO - ********* START ********* +2019-02-07 12:16:28.029 [main] INFO - Authentication Type : http_signature +2019-02-07 12:16:28.029 [main] INFO - Request Type: POST +2019-02-07 12:16:28.030 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490056228246693603006/refunds, requestType=POST} +2019-02-07 12:16:28.031 [main] INFO - Digest: SHA-256=I+1qD0zhOoAiatjE27A6YBxkUKBTRSBoS6VKc2mS8Bc= +2019-02-07 12:16:28.073 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:16:28.073 [main] INFO - Date: Thu, 7 Feb 2019 06:46:27 GMT +2019-02-07 12:16:28.074 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:16:28.074 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="BogaGmGSGt1cy05Kvtmjrk+P8zRf6+wGyn9OEkDggGs=" +2019-02-07 12:16:28.075 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:16:54.511 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}}} +2019-02-07 12:16:54.857 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490056228246693603006/refunds} +2019-02-07 12:16:55.242 [main] INFO - Response Code: 201 +2019-02-07 12:16:55.567 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 541ms +v-c-correlation-id: 989945dc-f561-4ca5-b6bc-bc28489d0cc3 +OkHttp-Sent-Millis: 1549521989065 +OkHttp-Received-Millis: 1549521989815 + +2019-02-07 12:16:55.887 [main] INFO - ********* END *********: +2019-02-07 12:17:04.970 [main] INFO - ********* START ********* +2019-02-07 12:17:04.971 [main] INFO - Authentication Type : http_signature +2019-02-07 12:17:04.972 [main] INFO - Request Type: POST +2019-02-07 12:17:04.972 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490056228246693603006/refunds, requestType=POST} +2019-02-07 12:17:04.973 [main] INFO - Digest: SHA-256=k43sFGLkconY+lZ+qk3SH20ZjY4hdnzlhh7bkAtP+34= +2019-02-07 12:17:04.974 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:17:04.974 [main] INFO - Date: Thu, 7 Feb 2019 06:46:27 GMT +2019-02-07 12:17:04.974 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:17:04.975 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="aKVQrk2bv/Lw0XAAtYbzcTJEJFgFn8E1x15b4LIlRO4=" +2019-02-07 12:17:04.975 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:17:32.742 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}}} +2019-02-07 12:17:33.762 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490056228246693603006/refunds} +2019-02-07 12:17:33.763 [main] INFO - Response Code: 201 +2019-02-07 12:17:33.763 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 418ms +v-c-correlation-id: fd45ee62-0528-4cf6-9eb5-7583c0a2f25d +OkHttp-Sent-Millis: 1549522024982 +OkHttp-Received-Millis: 1549522025616 + +2019-02-07 12:17:33.764 [main] INFO - ********* END *********: +2019-02-07 12:17:37.008 [main] INFO - ********* START ********* +2019-02-07 12:17:37.008 [main] INFO - Authentication Type : http_signature +2019-02-07 12:17:37.009 [main] INFO - Request Type: POST +2019-02-07 12:17:37.009 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567890123456789123/refunds, requestType=POST} +2019-02-07 12:17:37.010 [main] INFO - Digest: SHA-256=3OkTv9EQccMckYHiNHUzAweMWa91L1CQXTmCvjjQHoU= +2019-02-07 12:17:37.011 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:17:37.011 [main] INFO - Date: Thu, 7 Feb 2019 06:46:27 GMT +2019-02-07 12:17:37.011 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:17:37.012 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="2o5KvFQVVdFWcQLzE+gtwMWeVfUSVdfzYeRhuENbeSk=" +2019-02-07 12:17:37.012 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:24:45.774 [main] INFO - ********* START ********* +2019-02-07 12:24:45.787 [main] INFO - Authentication Type : http_signature +2019-02-07 12:24:45.787 [main] INFO - Request Type: POST +2019-02-07 12:24:45.788 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490056228246693603006/refunds, requestType=POST} +2019-02-07 12:24:45.788 [main] INFO - Digest: SHA-256=I+1qD0zhOoAiatjE27A6YBxkUKBTRSBoS6VKc2mS8Bc= +2019-02-07 12:24:45.824 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:24:45.826 [main] INFO - Date: Thu, 7 Feb 2019 06:54:45 GMT +2019-02-07 12:24:45.826 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:24:45.826 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="jEwEbee8SGQYXhEztcP9jzwwiS1ZYB8rob2k9i/NCVU=" +2019-02-07 12:24:45.826 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:24:47.439 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}}} +2019-02-07 12:24:47.439 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490056228246693603006/refunds} +2019-02-07 12:24:47.440 [main] INFO - Response Code: 201 +2019-02-07 12:24:47.440 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 493ms +v-c-correlation-id: 62b10794-f9ae-416b-8b9d-ac1bb6ed56a3 +OkHttp-Sent-Millis: 1549522486698 +OkHttp-Received-Millis: 1549522487421 + +2019-02-07 12:24:47.440 [main] INFO - ********* END *********: +2019-02-07 12:24:47.493 [main] INFO - ********* START ********* +2019-02-07 12:24:47.494 [main] INFO - Authentication Type : http_signature +2019-02-07 12:24:47.494 [main] INFO - Request Type: POST +2019-02-07 12:24:47.494 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490056228246693603006/refunds, requestType=POST} +2019-02-07 12:24:47.495 [main] INFO - Digest: SHA-256=k43sFGLkconY+lZ+qk3SH20ZjY4hdnzlhh7bkAtP+34= +2019-02-07 12:24:47.495 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:24:47.495 [main] INFO - Date: Thu, 7 Feb 2019 06:54:45 GMT +2019-02-07 12:24:47.496 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:24:47.496 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="yTXEDeT0lYCe6t1tf3xrkbucxPty2E6vKXKph15mZFk=" +2019-02-07 12:24:47.496 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:24:48.129 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}}} +2019-02-07 12:24:48.129 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490056228246693603006/refunds} +2019-02-07 12:24:48.130 [main] INFO - Response Code: 201 +2019-02-07 12:24:48.130 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 394ms +v-c-correlation-id: 165ecd89-fea3-4581-80b4-924b86794638 +OkHttp-Sent-Millis: 1549522487501 +OkHttp-Received-Millis: 1549522488128 + +2019-02-07 12:24:48.130 [main] INFO - ********* END *********: +2019-02-07 12:24:48.157 [main] INFO - ********* START ********* +2019-02-07 12:24:48.157 [main] INFO - Authentication Type : http_signature +2019-02-07 12:24:48.157 [main] INFO - Request Type: POST +2019-02-07 12:24:48.158 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567890123456789123/refunds, requestType=POST} +2019-02-07 12:24:48.158 [main] INFO - Digest: SHA-256=3OkTv9EQccMckYHiNHUzAweMWa91L1CQXTmCvjjQHoU= +2019-02-07 12:24:48.158 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:24:48.159 [main] INFO - Date: Thu, 7 Feb 2019 06:54:45 GMT +2019-02-07 12:24:48.159 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:24:48.160 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="/rtZKiwoGTyBSEoYzIFTl+jAiQFhZMc9Ua9zuVQlx8c=" +2019-02-07 12:24:48.160 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:26:18.054 [main] INFO - ********* START ********* +2019-02-07 12:26:18.069 [main] INFO - Authentication Type : http_signature +2019-02-07 12:26:18.070 [main] INFO - Request Type: POST +2019-02-07 12:26:18.071 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490056228246693603006/refunds, requestType=POST} +2019-02-07 12:26:18.071 [main] INFO - Digest: SHA-256=I+1qD0zhOoAiatjE27A6YBxkUKBTRSBoS6VKc2mS8Bc= +2019-02-07 12:26:18.110 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:26:18.110 [main] INFO - Date: Thu, 7 Feb 2019 06:56:17 GMT +2019-02-07 12:26:18.110 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:26:18.111 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="SR88aFwhmeCMe1DByVaGif2sUbgDIkgoycnj0Yi6NLE=" +2019-02-07 12:26:18.111 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:26:19.645 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}}} +2019-02-07 12:26:19.645 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490056228246693603006/refunds} +2019-02-07 12:26:19.646 [main] INFO - Response Code: 201 +2019-02-07 12:26:19.646 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 415ms +v-c-correlation-id: 1d6d55ed-a40c-4bb7-8cc8-30c511881420 +OkHttp-Sent-Millis: 1549522579009 +OkHttp-Received-Millis: 1549522579624 + +2019-02-07 12:26:19.647 [main] INFO - ********* END *********: +2019-02-07 12:26:19.715 [main] INFO - ********* START ********* +2019-02-07 12:26:19.715 [main] INFO - Authentication Type : http_signature +2019-02-07 12:26:19.715 [main] INFO - Request Type: POST +2019-02-07 12:26:19.716 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490056228246693603006/refunds, requestType=POST} +2019-02-07 12:26:19.716 [main] INFO - Digest: SHA-256=k43sFGLkconY+lZ+qk3SH20ZjY4hdnzlhh7bkAtP+34= +2019-02-07 12:26:19.717 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:26:19.717 [main] INFO - Date: Thu, 7 Feb 2019 06:56:17 GMT +2019-02-07 12:26:19.717 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:26:19.718 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="osZ0JiAtnapqCRgqdjVFGbMd6tNoMOa2sXe6vCryG9M=" +2019-02-07 12:26:19.718 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:26:20.368 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}}} +2019-02-07 12:26:20.368 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490056228246693603006/refunds} +2019-02-07 12:26:20.370 [main] INFO - Response Code: 201 +2019-02-07 12:26:20.370 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 452ms +v-c-correlation-id: f0b2596b-3fe9-40e1-9d55-252150d7d257 +OkHttp-Sent-Millis: 1549522579723 +OkHttp-Received-Millis: 1549522580367 + +2019-02-07 12:26:20.370 [main] INFO - ********* END *********: +2019-02-07 12:26:20.398 [main] INFO - ********* START ********* +2019-02-07 12:26:20.398 [main] INFO - Authentication Type : http_signature +2019-02-07 12:26:20.399 [main] INFO - Request Type: POST +2019-02-07 12:26:20.399 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567890123456789123/refunds, requestType=POST} +2019-02-07 12:26:20.400 [main] INFO - Digest: SHA-256=3OkTv9EQccMckYHiNHUzAweMWa91L1CQXTmCvjjQHoU= +2019-02-07 12:26:20.400 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:26:20.400 [main] INFO - Date: Thu, 7 Feb 2019 06:56:17 GMT +2019-02-07 12:26:20.401 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:26:20.401 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="L1rYfPho9+HUajAK0GLn+txR3+IQ4syAnTt/GPjU2Jg=" +2019-02-07 12:26:20.401 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:32:14.983 [main] INFO - ********* START ********* +2019-02-07 12:32:14.999 [main] INFO - Authentication Type : http_signature +2019-02-07 12:32:15.000 [main] INFO - Request Type: POST +2019-02-07 12:32:15.001 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490048369806834703002/refunds, requestType=POST} +2019-02-07 12:32:15.002 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-07 12:32:15.044 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:32:15.044 [main] INFO - Date: Thu, 7 Feb 2019 07:02:14 GMT +2019-02-07 12:32:15.045 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:32:15.045 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="CGo9EieUDAeDvv/OlgeQiOVjBfyDjq9ciPQ8R1ZeYxM=" +2019-02-07 12:32:15.045 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:32:16.588 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-07 12:32:16.589 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/5490048369806834703002/refunds} +2019-02-07 12:32:16.589 [main] INFO - Response Code: 201 +2019-02-07 12:32:16.591 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 387ms +v-c-correlation-id: f9fa5efd-0fb2-4ec4-9152-ce7b61a4d3bb +OkHttp-Sent-Millis: 1549522935960 +OkHttp-Received-Millis: 1549522936569 + +2019-02-07 12:32:16.591 [main] INFO - ********* END *********: +2019-02-07 12:32:16.655 [main] INFO - ********* START ********* +2019-02-07 12:32:16.655 [main] INFO - Authentication Type : http_signature +2019-02-07 12:32:16.655 [main] INFO - Request Type: POST +2019-02-07 12:32:16.656 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490048369806834703002/refunds, requestType=POST} +2019-02-07 12:32:16.656 [main] INFO - Digest: SHA-256=wpSGzbtW0BUOhzWs7lfUWgOPwslWGPDCGWzRLNsbsWk= +2019-02-07 12:32:16.656 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:32:16.657 [main] INFO - Date: Thu, 7 Feb 2019 07:02:14 GMT +2019-02-07 12:32:16.657 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:32:16.657 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="kfQpxlzGtw8IEWzkjUX1xCy10n88nOFdrokCPWSkp6g=" +2019-02-07 12:32:16.658 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:32:17.242 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-07 12:32:17.243 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/5490048369806834703002/refunds} +2019-02-07 12:32:17.243 [main] INFO - Response Code: 201 +2019-02-07 12:32:17.243 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 384ms +v-c-correlation-id: ebd50d30-4b44-4c3a-a54a-7b4215612444 +OkHttp-Sent-Millis: 1549522936662 +OkHttp-Received-Millis: 1549522937241 + +2019-02-07 12:32:17.244 [main] INFO - ********* END *********: +2019-02-07 12:32:17.275 [main] INFO - ********* START ********* +2019-02-07 12:32:17.276 [main] INFO - Authentication Type : http_signature +2019-02-07 12:32:17.277 [main] INFO - Request Type: POST +2019-02-07 12:32:17.277 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/1234567898745632145698/refunds, requestType=POST} +2019-02-07 12:32:17.278 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-07 12:32:17.278 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:32:17.278 [main] INFO - Date: Thu, 7 Feb 2019 07:02:14 GMT +2019-02-07 12:32:17.280 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:32:17.281 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="oEcX3IxF8yBtO+piY8NdlroGSLMhrsapwNaWorLG8oU=" +2019-02-07 12:32:17.282 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:32:17.870 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-07 12:32:17.871 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/5490048369806834703002/refunds} +2019-02-07 12:32:17.872 [main] INFO - Response Code: 400 +2019-02-07 12:32:17.872 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 384ms +v-c-correlation-id: bd5ec97d-7718-4698-97a2-0adfcf8bf600 +OkHttp-Sent-Millis: 1549522937287 +OkHttp-Received-Millis: 1549522937868 + +2019-02-07 12:32:17.873 [main] INFO - ********* END *********: +2019-02-07 12:37:49.891 [main] INFO - ********* START ********* +2019-02-07 12:37:49.903 [main] INFO - Authentication Type : http_signature +2019-02-07 12:37:49.903 [main] INFO - Request Type: POST +2019-02-07 12:37:49.904 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-07 12:37:49.904 [main] INFO - Digest: SHA-256=zxGx3jITWtX9QIzslmEjtRBRSY1fB9P+o4iF5tlE4Oo= +2019-02-07 12:37:49.948 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:37:49.949 [main] INFO - Date: Thu, 7 Feb 2019 07:07:49 GMT +2019-02-07 12:37:49.949 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:37:49.949 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Z6xUDtewCYUGbQPcLUZeFu2Lnqiab1oGUwJVhckQ7ww=" +2019-02-07 12:37:49.950 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:37:51.445 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-07 12:37:51.447 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/credits/} +2019-02-07 12:37:51.447 [main] INFO - Response Code: 201 +2019-02-07 12:37:51.447 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 463 +X-Cnection: close +x-response-time: 353ms +v-c-correlation-id: 9bb77be1-f151-48e9-8cea-b70189939444 +OkHttp-Sent-Millis: 1549523270869 +OkHttp-Received-Millis: 1549523271417 + +2019-02-07 12:37:51.448 [main] INFO - ********* END *********: +2019-02-07 12:39:30.331 [main] INFO - ********* START ********* +2019-02-07 12:39:30.344 [main] INFO - Authentication Type : http_signature +2019-02-07 12:39:30.345 [main] INFO - Request Type: POST +2019-02-07 12:39:30.346 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-07 12:39:30.346 [main] INFO - Digest: SHA-256=zxGx3jITWtX9QIzslmEjtRBRSY1fB9P+o4iF5tlE4Oo= +2019-02-07 12:39:30.384 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:39:30.385 [main] INFO - Date: Thu, 7 Feb 2019 07:09:29 GMT +2019-02-07 12:39:30.385 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:39:30.385 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="0ypHsVe+5gCIe9UqLmSub3AxDv3WCXTBN5elbuQMMzA=" +2019-02-07 12:39:30.386 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:39:31.839 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-07 12:39:31.839 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/credits/} +2019-02-07 12:39:31.840 [main] INFO - Response Code: 201 +2019-02-07 12:39:31.840 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 463 +X-Cnection: close +x-response-time: 343ms +v-c-correlation-id: 0235eeda-2dd2-4e37-bf06-82824e3c6808 +OkHttp-Sent-Millis: 1549523371259 +OkHttp-Received-Millis: 1549523371818 + +2019-02-07 12:39:31.841 [main] INFO - ********* END *********: +2019-02-07 12:39:31.898 [main] INFO - ********* START ********* +2019-02-07 12:39:31.898 [main] INFO - Authentication Type : http_signature +2019-02-07 12:39:31.899 [main] INFO - Request Type: POST +2019-02-07 12:39:31.899 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-07 12:39:31.899 [main] INFO - Digest: SHA-256=uT4XJKlq0xIzVkS9dGPs0tcDwyAp7ONh+358ol986cw= +2019-02-07 12:39:31.899 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:39:31.899 [main] INFO - Date: Thu, 7 Feb 2019 07:09:29 GMT +2019-02-07 12:39:31.899 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:39:31.899 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="av26ltX/caHseTwbT7rP0EUTWZaO5TRIodX/4gwdV8Y=" +2019-02-07 12:39:31.901 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:39:32.435 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-07 12:39:32.436 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/credits/} +2019-02-07 12:39:32.437 [main] INFO - Response Code: 201 +2019-02-07 12:39:32.437 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 463 +X-Cnection: close +x-response-time: 337ms +v-c-correlation-id: 8edd533b-3503-4a13-a0bc-ab3a9ae3a47a +OkHttp-Sent-Millis: 1549523371905 +OkHttp-Received-Millis: 1549523372427 + +2019-02-07 12:39:32.438 [main] INFO - ********* END *********: +2019-02-07 12:39:32.472 [main] INFO - ********* START ********* +2019-02-07 12:39:32.472 [main] INFO - Authentication Type : http_signature +2019-02-07 12:39:32.472 [main] INFO - Request Type: POST +2019-02-07 12:39:32.473 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-07 12:39:32.473 [main] INFO - Digest: SHA-256=4d6LdcAephqc3ZxTiCs5DRzvla4hZ9OijS7F7lbH+MA= +2019-02-07 12:39:32.474 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:39:32.475 [main] INFO - Date: Thu, 7 Feb 2019 07:09:29 GMT +2019-02-07 12:39:32.475 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:39:32.476 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ervD5lg9CbmXXefyObT268IFf9IFkaXLEC1HineCRu4=" +2019-02-07 12:39:32.476 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:39:33.014 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"GHTR25","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-07 12:39:33.015 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/credits/} +2019-02-07 12:39:33.015 [main] INFO - Response Code: 400 +2019-02-07 12:39:33.015 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 348ms +v-c-correlation-id: b8686a97-4cb0-4c3e-9757-484a47c647ca +OkHttp-Sent-Millis: 1549523372479 +OkHttp-Received-Millis: 1549523373012 + +2019-02-07 12:39:33.016 [main] INFO - ********* END *********: +2019-02-07 12:49:25.426 [main] INFO - ********* START ********* +2019-02-07 12:49:25.439 [main] INFO - Authentication Type : http_signature +2019-02-07 12:49:25.440 [main] INFO - Request Type: POST +2019-02-07 12:49:25.440 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490173455496897903002/voids, requestType=POST} +2019-02-07 12:49:25.441 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-07 12:49:25.441 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:49:25.442 [main] INFO - Date: Thu, 7 Feb 2019 07:19:25 GMT +2019-02-07 12:49:25.442 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:49:25.442 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="v/ahR/5s5n9ww8NQNKf1oNMJyuTwI8cMiC93IogFthM=" +2019-02-07 12:49:25.443 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:49:26.989 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture_void"}} +2019-02-07 12:49:26.989 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-07T07:19:26Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-07 12:49:26.990 [main] INFO - Response Code: 400 +2019-02-07 12:49:26.990 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 382ms +v-c-correlation-id: c85543db-fff8-4110-aa99-1f56ceb8a02f +OkHttp-Sent-Millis: 1549523966372 +OkHttp-Received-Millis: 1549523966967 + +2019-02-07 12:49:26.990 [main] INFO - ********* END *********: +2019-02-07 12:49:27.035 [main] INFO - ********* START ********* +2019-02-07 12:49:27.035 [main] INFO - Authentication Type : http_signature +2019-02-07 12:49:27.036 [main] INFO - Request Type: POST +2019-02-07 12:49:27.036 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/8964213433126812344644/voids, requestType=POST} +2019-02-07 12:49:27.037 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-07 12:49:27.037 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:49:27.038 [main] INFO - Date: Thu, 7 Feb 2019 07:19:25 GMT +2019-02-07 12:49:27.038 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:49:27.039 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="XWDl2d12WGkQHnzPp5zkXPiVq6pEJUxMBk7Jo4LWn+I=" +2019-02-07 12:49:27.039 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:54:17.253 [main] INFO - ********* START ********* +2019-02-07 12:54:17.264 [main] INFO - Authentication Type : http_signature +2019-02-07 12:54:17.264 [main] INFO - Request Type: POST +2019-02-07 12:54:17.264 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/5492620832556049904004/voids, requestType=POST} +2019-02-07 12:54:17.264 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-07 12:54:17.264 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:54:17.264 [main] INFO - Date: Thu, 7 Feb 2019 07:24:16 GMT +2019-02-07 12:54:17.264 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:54:17.264 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="nsujYUxuwvbb1IKUkaQ2uQibb5ix3sWle3nJlckO/SA=" +2019-02-07 12:54:17.274 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 12:54:18.966 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credit_void"}} +2019-02-07 12:54:18.966 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-07T07:24:18Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-07 12:54:18.967 [main] INFO - Response Code: 400 +2019-02-07 12:54:18.967 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 599ms +v-c-correlation-id: 992b7857-f5ce-49a8-9dc8-9332a9ddfff7 +OkHttp-Sent-Millis: 1549524258145 +OkHttp-Received-Millis: 1549524258946 + +2019-02-07 12:54:18.967 [main] INFO - ********* END *********: +2019-02-07 12:54:19.024 [main] INFO - ********* START ********* +2019-02-07 12:54:19.025 [main] INFO - Authentication Type : http_signature +2019-02-07 12:54:19.025 [main] INFO - Request Type: POST +2019-02-07 12:54:19.025 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/8964213433846812344644/voids, requestType=POST} +2019-02-07 12:54:19.026 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-07 12:54:19.026 [main] INFO - v-c-merchant-id: testrest +2019-02-07 12:54:19.026 [main] INFO - Date: Thu, 7 Feb 2019 07:24:16 GMT +2019-02-07 12:54:19.027 [main] INFO - Host: apitest.cybersource.com +2019-02-07 12:54:19.027 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="wWODS99nvcbW1WA5eTnXxuIs8xHMjzVbNvzUpsamWpw=" +2019-02-07 12:54:19.027 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 14:49:58.370 [main] INFO - ********* START ********* +2019-02-07 14:49:58.384 [main] INFO - Authentication Type : http_signature +2019-02-07 14:49:58.385 [main] INFO - Request Type: POST +2019-02-07 14:49:58.386 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5492620832556049904004/voids, requestType=POST} +2019-02-07 14:49:58.386 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-07 14:49:58.387 [main] INFO - v-c-merchant-id: testrest +2019-02-07 14:49:58.387 [main] INFO - Date: Thu, 7 Feb 2019 09:19:58 GMT +2019-02-07 14:49:58.387 [main] INFO - Host: apitest.cybersource.com +2019-02-07 14:49:58.388 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ekT7O9ss2EgspkYkbk8Jr/0bB850ny0X2Jb/8Q4kBoE=" +2019-02-07 14:49:58.388 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 14:50:01.005 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-02-07 14:50:01.005 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-07T09:20:00Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-07 14:50:01.006 [main] INFO - Response Code: 400 +2019-02-07 14:50:01.006 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 1308ms +v-c-correlation-id: 5dabc17f-17f3-41fc-8474-1e338ffe8eed +OkHttp-Sent-Millis: 1549531199399 +OkHttp-Received-Millis: 1549531200982 + +2019-02-07 14:50:01.007 [main] INFO - ********* END *********: +2019-02-07 14:50:01.058 [main] INFO - ********* START ********* +2019-02-07 14:50:01.059 [main] INFO - Authentication Type : http_signature +2019-02-07 14:50:01.059 [main] INFO - Request Type: POST +2019-02-07 14:50:01.060 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-02-07 14:50:01.060 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-07 14:50:01.061 [main] INFO - v-c-merchant-id: testrest +2019-02-07 14:50:01.061 [main] INFO - Date: Thu, 7 Feb 2019 09:19:58 GMT +2019-02-07 14:50:01.062 [main] INFO - Host: apitest.cybersource.com +2019-02-07 14:50:01.062 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="xjlu/LQmVAIZCaxXAIDydppZvEiZg0Hjs3gYFd/aAoQ=" +2019-02-07 14:50:01.063 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 14:54:39.904 [main] INFO - ********* START ********* +2019-02-07 14:54:39.917 [main] INFO - Authentication Type : http_signature +2019-02-07 14:54:39.918 [main] INFO - Request Type: POST +2019-02-07 14:54:39.918 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/5492624390506057904003/voids, requestType=POST} +2019-02-07 14:54:39.919 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-07 14:54:39.956 [main] INFO - v-c-merchant-id: testrest +2019-02-07 14:54:39.957 [main] INFO - Date: Thu, 7 Feb 2019 09:24:39 GMT +2019-02-07 14:54:39.957 [main] INFO - Host: apitest.cybersource.com +2019-02-07 14:54:39.958 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="QeChroQfg80XlAhifTi+kYWF3wMOLMn+7Za/3YkrZPE=" +2019-02-07 14:54:39.958 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 14:54:41.761 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_void"}} +2019-02-07 14:54:41.762 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-07T09:24:41Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-07 14:54:41.762 [main] INFO - Response Code: 400 +2019-02-07 14:54:41.762 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 536ms +v-c-correlation-id: a6780b24-8568-4594-8165-b7be1c539644 +OkHttp-Sent-Millis: 1549531480987 +OkHttp-Received-Millis: 1549531481742 + +2019-02-07 14:54:41.763 [main] INFO - ********* END *********: +2019-02-07 14:54:41.804 [main] INFO - ********* START ********* +2019-02-07 14:54:41.804 [main] INFO - Authentication Type : http_signature +2019-02-07 14:54:41.805 [main] INFO - Request Type: POST +2019-02-07 14:54:41.805 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/8964213433846812344644/voids, requestType=POST} +2019-02-07 14:54:41.805 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-07 14:54:41.806 [main] INFO - v-c-merchant-id: testrest +2019-02-07 14:54:41.806 [main] INFO - Date: Thu, 7 Feb 2019 09:24:39 GMT +2019-02-07 14:54:41.807 [main] INFO - Host: apitest.cybersource.com +2019-02-07 14:54:41.807 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="yiNHdd0KbRyEZ4AUg1rIJr0jKl0zZBKhfEwZy3sysUw=" +2019-02-07 14:54:41.807 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:13:08.370 [main] INFO - ********* START ********* +2019-02-07 15:13:08.389 [main] INFO - Authentication Type : http_signature +2019-02-07 15:13:08.390 [main] INFO - Request Type: POST +2019-02-07 15:13:08.392 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:13:08.392 [main] INFO - Digest: SHA-256=rp59HYGOOXP6bWKiVpWMNgj4QjYai6gMk27yt69dPh8= +2019-02-07 15:13:08.443 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:13:08.444 [main] INFO - Date: Thu, 7 Feb 2019 09:43:07 GMT +2019-02-07 15:13:08.445 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:13:08.445 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="3btUHc8XaKHx0tvYxtn88mzt8thhwYW8z/A4xQ0+L5Y=" +2019-02-07 15:13:08.446 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:13:10.553 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"33557799"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"FD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:13:10.555 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:13:10.555 [main] INFO - Response Code: 201 +2019-02-07 15:13:10.556 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 493 +X-Cnection: close +x-response-time: 553ms +v-c-correlation-id: 24a3126a-446e-4be7-9578-d6535e452ea8 +OkHttp-Sent-Millis: 1549532589696 +OkHttp-Received-Millis: 1549532590526 + +2019-02-07 15:13:10.556 [main] INFO - ********* END *********: +2019-02-07 15:13:10.633 [main] INFO - ********* START ********* +2019-02-07 15:13:10.634 [main] INFO - Authentication Type : http_signature +2019-02-07 15:13:10.634 [main] INFO - Request Type: POST +2019-02-07 15:13:10.635 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:13:10.636 [main] INFO - Digest: SHA-256=WV4kmV6NZQKID4sN4WMbFxFXqbg/hn8kxL7FOS4jQXk= +2019-02-07 15:13:10.636 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:13:10.637 [main] INFO - Date: Thu, 7 Feb 2019 09:43:07 GMT +2019-02-07 15:13:10.638 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:13:10.638 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="qGtHHuahrofzZSbBEjjgD7H9O6PJJAew7vLsJxrfyrM=" +2019-02-07 15:13:10.638 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:13:11.432 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"12345"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"GD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:13:11.433 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:13:11.433 [main] INFO - Response Code: 201 +2019-02-07 15:13:11.434 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 490 +X-Cnection: close +x-response-time: 541ms +v-c-correlation-id: 9065b854-24e1-4745-9ac7-1a966150134d +OkHttp-Sent-Millis: 1549532590644 +OkHttp-Received-Millis: 1549532591431 + +2019-02-07 15:13:11.434 [main] INFO - ********* END *********: +2019-02-07 15:13:11.466 [main] INFO - ********* START ********* +2019-02-07 15:13:11.467 [main] INFO - Authentication Type : http_signature +2019-02-07 15:13:11.467 [main] INFO - Request Type: POST +2019-02-07 15:13:11.468 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:13:11.468 [main] INFO - Digest: SHA-256=w9ZjmtCKOCPKH6OZhKI9VKNlfIK5wZLl6ZxwHbxFJsQ= +2019-02-07 15:13:11.469 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:13:11.470 [main] INFO - Date: Thu, 7 Feb 2019 09:43:07 GMT +2019-02-07 15:13:11.471 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:13:11.472 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="PlQUT74cDE1uLOVUPQdcyenxh0g89Z6NkBN8ak8RBOk=" +2019-02-07 15:13:11.472 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:13:12.100 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"6789"},"orderInformation":{"amountDetails":{"totalAmount":"DSWAZ1","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"MD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:13:12.102 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:13:12.103 [main] INFO - Response Code: 400 +2019-02-07 15:13:12.103 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 361ms +v-c-correlation-id: 3723cde9-4205-4172-8a71-a474b2b9ee82 +OkHttp-Sent-Millis: 1549532591476 +OkHttp-Received-Millis: 1549532592095 + +2019-02-07 15:13:12.104 [main] INFO - ********* END *********: +2019-02-07 15:14:00.940 [main] INFO - ********* START ********* +2019-02-07 15:14:00.959 [main] INFO - Authentication Type : http_signature +2019-02-07 15:14:00.959 [main] INFO - Request Type: POST +2019-02-07 15:14:00.961 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:14:00.961 [main] INFO - Digest: SHA-256=rp59HYGOOXP6bWKiVpWMNgj4QjYai6gMk27yt69dPh8= +2019-02-07 15:14:01.009 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:14:01.010 [main] INFO - Date: Thu, 7 Feb 2019 09:44:00 GMT +2019-02-07 15:14:01.010 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:14:01.011 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="bBYvzjWFcBEEFHg9IccMN56uEf3xaXWC76lYDcUuXf0=" +2019-02-07 15:14:01.011 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:14:02.905 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"33557799"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"FD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:14:02.906 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:14:02.908 [main] INFO - Response Code: 201 +2019-02-07 15:14:02.909 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 493 +X-Cnection: close +x-response-time: 527ms +v-c-correlation-id: 39fa0192-9704-40a9-a412-98c8b44fc078 +OkHttp-Sent-Millis: 1549532642099 +OkHttp-Received-Millis: 1549532642848 + +2019-02-07 15:14:02.909 [main] INFO - ********* END *********: +2019-02-07 15:14:02.996 [main] INFO - ********* START ********* +2019-02-07 15:14:02.997 [main] INFO - Authentication Type : http_signature +2019-02-07 15:14:02.997 [main] INFO - Request Type: POST +2019-02-07 15:14:02.998 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:14:02.999 [main] INFO - Digest: SHA-256=WV4kmV6NZQKID4sN4WMbFxFXqbg/hn8kxL7FOS4jQXk= +2019-02-07 15:14:02.999 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:14:03.000 [main] INFO - Date: Thu, 7 Feb 2019 09:44:00 GMT +2019-02-07 15:14:03.004 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:14:03.005 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="nwer2RNzSf59Hmeymyuop0CYTzEKI4iCcufi/zt3Jb0=" +2019-02-07 15:14:03.007 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:14:03.675 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"12345"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"GD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:14:03.676 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:14:03.676 [main] INFO - Response Code: 201 +2019-02-07 15:14:03.677 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 490 +X-Cnection: close +x-response-time: 453ms +v-c-correlation-id: 5f92ee5a-6890-4f3d-bb53-e514d79b9f78 +OkHttp-Sent-Millis: 1549532643021 +OkHttp-Received-Millis: 1549532643673 + +2019-02-07 15:14:03.677 [main] INFO - ********* END *********: +2019-02-07 15:14:03.704 [main] INFO - ********* START ********* +2019-02-07 15:14:03.705 [main] INFO - Authentication Type : http_signature +2019-02-07 15:14:03.705 [main] INFO - Request Type: POST +2019-02-07 15:14:03.706 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:14:03.707 [main] INFO - Digest: SHA-256=w9ZjmtCKOCPKH6OZhKI9VKNlfIK5wZLl6ZxwHbxFJsQ= +2019-02-07 15:14:03.707 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:14:03.708 [main] INFO - Date: Thu, 7 Feb 2019 09:44:00 GMT +2019-02-07 15:14:03.708 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:14:03.709 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ZhgsepXqkXEFhovEWlZuYGQrxP7+PMMM4qfUCL4HgcA=" +2019-02-07 15:14:03.710 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:14:04.290 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"6789"},"orderInformation":{"amountDetails":{"totalAmount":"DSWAZ1","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"MD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:14:04.290 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:14:04.290 [main] INFO - Response Code: 400 +2019-02-07 15:14:04.295 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 386ms +v-c-correlation-id: 6507f08e-c365-4544-81f8-4f38b3f39ff4 +OkHttp-Sent-Millis: 1549532643713 +OkHttp-Received-Millis: 1549532644290 + +2019-02-07 15:14:04.296 [main] INFO - ********* END *********: +2019-02-07 15:21:43.338 [main] INFO - ********* START ********* +2019-02-07 15:21:43.351 [main] INFO - Authentication Type : http_signature +2019-02-07 15:21:43.351 [main] INFO - Request Type: POST +2019-02-07 15:21:43.352 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 15:21:43.353 [main] INFO - Digest: SHA-256=YljtibTei+du4xVIDxMr3HBsyLAEDuiYaag9TcU9jHA= +2019-02-07 15:21:43.399 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:21:43.400 [main] INFO - Date: Thu, 7 Feb 2019 09:51:42 GMT +2019-02-07 15:21:43.400 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:21:43.400 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Er/mKis9ugFuk+jqnkJy9pT23cTmQLin5FBUrMZc/Os=" +2019-02-07 15:21:43.401 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:21:44.863 [main] INFO - Request Body: {"encryptionType":"RsaOaep256"} +2019-02-07 15:21:44.864 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 15:21:44.864 [main] INFO - Response Code: 200 +2019-02-07 15:21:44.865 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=W6OgUcmvPyzbGt3SAYrjcyO+pVGhi3adb0OWwKsfcDQ= +Content-Type: application/json;charset=UTF-8 +Content-Length: 927 +Date: Thu, 07 Feb 2019 09:51:44 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d4cd4779-0560-4449-b42d-8048502c95eb +OkHttp-Sent-Millis: 1549533104569 +OkHttp-Received-Millis: 1549533104825 + +2019-02-07 15:21:44.866 [main] INFO - ********* END *********: +2019-02-07 15:21:44.934 [main] INFO - ********* START ********* +2019-02-07 15:21:44.934 [main] INFO - Authentication Type : http_signature +2019-02-07 15:21:44.935 [main] INFO - Request Type: POST +2019-02-07 15:21:44.935 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 15:21:44.936 [main] INFO - Digest: SHA-256=gEZo4PozZVgCrpNd3JKwGruwMOoyFI70wP0aDjupsBk= +2019-02-07 15:21:44.937 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:21:44.937 [main] INFO - Date: Thu, 7 Feb 2019 09:51:42 GMT +2019-02-07 15:21:44.938 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:21:44.938 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="M8JwmGf392Q6f7wr/Ulb4RuUjG00eEMvrCVhyZEbnuo=" +2019-02-07 15:21:44.939 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:21:45.137 [main] INFO - Request Body: {"encryptionType":"PqaPabc255"} +2019-02-07 15:21:45.138 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 15:21:45.138 [main] INFO - Response Code: 400 +2019-02-07 15:21:45.139 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Thu, 07 Feb 2019 09:51:45 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 119f607f-52ae-4b71-b334-08771e3495c8 +OkHttp-Sent-Millis: 1549533104944 +OkHttp-Received-Millis: 1549533105134 + +2019-02-07 15:21:45.139 [main] INFO - ********* END *********: +2019-02-07 15:22:15.246 [main] INFO - ********* START ********* +2019-02-07 15:22:15.263 [main] INFO - Authentication Type : http_signature +2019-02-07 15:22:15.263 [main] INFO - Request Type: POST +2019-02-07 15:22:15.263 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 15:22:15.263 [main] INFO - Digest: SHA-256=YljtibTei+du4xVIDxMr3HBsyLAEDuiYaag9TcU9jHA= +2019-02-07 15:22:15.266 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:22:15.266 [main] INFO - Date: Thu, 7 Feb 2019 09:52:14 GMT +2019-02-07 15:22:15.266 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:22:15.267 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="y7mUdjy/uuUGS6MQc76aEHgQNIqPa2vJ4Agq9/RpImE=" +2019-02-07 15:22:15.267 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:22:30.504 [main] INFO - Request Body: {"encryptionType":"RsaOaep256"} +2019-02-07 15:22:30.505 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 15:22:30.506 [main] INFO - Response Code: 200 +2019-02-07 15:22:30.506 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=LF4NYCidB/iidyzdoC2hdCdroP110jkuqtd44RvfU7I= +Content-Type: application/json;charset=UTF-8 +Content-Length: 927 +Date: Thu, 07 Feb 2019 09:52:16 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 5f920f87-c78e-44c6-ba80-93e4f7c913ec +OkHttp-Sent-Millis: 1549533136405 +OkHttp-Received-Millis: 1549533136661 + +2019-02-07 15:22:30.507 [main] INFO - ********* END *********: +2019-02-07 15:22:33.550 [main] INFO - ********* START ********* +2019-02-07 15:22:33.551 [main] INFO - Authentication Type : http_signature +2019-02-07 15:22:33.552 [main] INFO - Request Type: POST +2019-02-07 15:22:33.552 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 15:22:33.553 [main] INFO - Digest: SHA-256=gEZo4PozZVgCrpNd3JKwGruwMOoyFI70wP0aDjupsBk= +2019-02-07 15:22:33.553 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:22:33.554 [main] INFO - Date: Thu, 7 Feb 2019 09:52:14 GMT +2019-02-07 15:22:33.554 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:22:33.555 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="fWbTQnXOPQ/kWZ8+DbUxvdDc1JmRkAKreqnGIhm/P1U=" +2019-02-07 15:22:33.555 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:22:36.044 [main] INFO - Request Body: {"encryptionType":"PqaPabc255"} +2019-02-07 15:22:36.045 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 15:22:36.045 [main] INFO - Response Code: 400 +2019-02-07 15:22:36.046 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Thu, 07 Feb 2019 09:52:33 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6139fa61-57c8-4079-90d5-97e09956f752 +OkHttp-Sent-Millis: 1549533153560 +OkHttp-Received-Millis: 1549533153762 + +2019-02-07 15:22:36.047 [main] INFO - ********* END *********: +2019-02-07 15:25:28.531 [main] INFO - ********* START ********* +2019-02-07 15:25:28.556 [main] INFO - Authentication Type : http_signature +2019-02-07 15:25:28.557 [main] INFO - Request Type: POST +2019-02-07 15:25:28.558 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-07 15:25:28.559 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-07 15:25:28.610 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:25:28.610 [main] INFO - Date: Thu, 7 Feb 2019 09:55:27 GMT +2019-02-07 15:25:28.611 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:25:28.611 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="lbRs42qwRgBHV1v5DHXV7uiHcLQHTrlgALktHlvockw=" +2019-02-07 15:25:28.611 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:25:30.334 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-07 15:25:30.334 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-07 15:25:30.337 [main] INFO - Response Code: 201 +2019-02-07 15:25:30.337 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 377ms +v-c-correlation-id: eb7b1b3f-029e-4add-a257-2531ab9dc8aa +OkHttp-Sent-Millis: 1549533329715 +OkHttp-Received-Millis: 1549533330313 + +2019-02-07 15:25:30.338 [main] INFO - ********* END *********: +2019-02-07 15:25:30.574 [main] INFO - ********* START ********* +2019-02-07 15:25:30.576 [main] INFO - Authentication Type : http_signature +2019-02-07 15:25:30.576 [main] INFO - Request Type: POST +2019-02-07 15:25:30.578 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-07 15:25:30.578 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-07 15:25:30.579 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:25:30.580 [main] INFO - Date: Thu, 7 Feb 2019 09:55:27 GMT +2019-02-07 15:25:30.581 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:25:30.581 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="HoBXO4yvgo+eny/pz1LRWWwv3kZzIvhIkGWkEUiVmME=" +2019-02-07 15:25:30.582 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:25:31.298 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-07 15:25:31.299 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-07 15:25:31.299 [main] INFO - Response Code: 201 +2019-02-07 15:25:31.300 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 431ms +v-c-correlation-id: e2f4bf9c-9152-4c3e-b28a-717436aac2bd +OkHttp-Sent-Millis: 1549533330591 +OkHttp-Received-Millis: 1549533331295 + +2019-02-07 15:25:31.301 [main] INFO - ********* END *********: +2019-02-07 15:25:31.327 [main] INFO - ********* START ********* +2019-02-07 15:25:31.327 [main] INFO - Authentication Type : http_signature +2019-02-07 15:25:31.327 [main] INFO - Request Type: POST +2019-02-07 15:25:31.328 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-07 15:25:31.328 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-07 15:25:31.328 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:25:31.329 [main] INFO - Date: Thu, 7 Feb 2019 09:55:27 GMT +2019-02-07 15:25:31.329 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:25:31.329 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="GjclVldq2ypiK+cRPM2GShAd8WsqbbTscRoYVazG+bM=" +2019-02-07 15:25:31.329 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:25:31.937 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-07 15:25:31.938 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-07 15:25:31.938 [main] INFO - Response Code: 400 +2019-02-07 15:25:31.939 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 362ms +v-c-correlation-id: 120ea5ee-a7ba-45e6-8c24-ca6081c1de12 +OkHttp-Sent-Millis: 1549533331331 +OkHttp-Received-Millis: 1549533331935 + +2019-02-07 15:25:31.940 [main] INFO - ********* END *********: +2019-02-07 15:26:22.699 [main] INFO - ********* START ********* +2019-02-07 15:26:22.722 [main] INFO - Authentication Type : http_signature +2019-02-07 15:26:22.723 [main] INFO - Request Type: POST +2019-02-07 15:26:22.724 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 15:26:22.725 [main] INFO - Digest: SHA-256=YljtibTei+du4xVIDxMr3HBsyLAEDuiYaag9TcU9jHA= +2019-02-07 15:26:22.725 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:26:22.725 [main] INFO - Date: Thu, 7 Feb 2019 09:56:22 GMT +2019-02-07 15:26:22.726 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:26:22.726 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="H8cdwy02OoBdgbz7Ab9I7NY83bkjG4O9jVMyc8C+ReY=" +2019-02-07 15:26:22.726 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:26:24.200 [main] INFO - Request Body: {"encryptionType":"RsaOaep256"} +2019-02-07 15:26:24.201 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 15:26:24.202 [main] INFO - Response Code: 200 +2019-02-07 15:26:24.202 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=7+sjGhJACdDhAqkS3k4LbztMuQ75wbhI8e5gavj+mPE= +Content-Type: application/json;charset=UTF-8 +Content-Length: 927 +Date: Thu, 07 Feb 2019 09:56:24 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 719d1d7e-1364-4511-a3f3-9a39bbe3fdb0 +OkHttp-Sent-Millis: 1549533383902 +OkHttp-Received-Millis: 1549533384163 + +2019-02-07 15:26:24.203 [main] INFO - ********* END *********: +2019-02-07 15:26:24.257 [main] INFO - ********* START ********* +2019-02-07 15:26:24.258 [main] INFO - Authentication Type : http_signature +2019-02-07 15:26:24.258 [main] INFO - Request Type: POST +2019-02-07 15:26:24.259 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 15:26:24.259 [main] INFO - Digest: SHA-256=gEZo4PozZVgCrpNd3JKwGruwMOoyFI70wP0aDjupsBk= +2019-02-07 15:26:24.260 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:26:24.260 [main] INFO - Date: Thu, 7 Feb 2019 09:56:22 GMT +2019-02-07 15:26:24.261 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:26:24.262 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="qrzqRcSP/KKMCkdHXWVj9Fz00G1mggRRWxlLSzedXOM=" +2019-02-07 15:26:24.262 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:26:24.463 [main] INFO - Request Body: {"encryptionType":"PqaPabc255"} +2019-02-07 15:26:24.464 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 15:26:24.465 [main] INFO - Response Code: 400 +2019-02-07 15:26:24.466 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Thu, 07 Feb 2019 09:56:24 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c9e84752-08bb-417e-8162-872811eb9fa3 +OkHttp-Sent-Millis: 1549533384272 +OkHttp-Received-Millis: 1549533384461 + +2019-02-07 15:26:24.467 [main] INFO - ********* END *********: +2019-02-07 15:29:34.093 [main] INFO - ********* START ********* +2019-02-07 15:29:34.093 [main] INFO - Authentication Type : http_signature +2019-02-07 15:29:34.094 [main] INFO - Request Type: POST +2019-02-07 15:29:34.094 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 15:29:34.094 [main] INFO - Digest: SHA-256=YljtibTei+du4xVIDxMr3HBsyLAEDuiYaag9TcU9jHA= +2019-02-07 15:29:34.095 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:29:34.096 [main] INFO - Date: Thu, 7 Feb 2019 09:56:22 GMT +2019-02-07 15:29:34.097 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:29:34.097 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="H8cdwy02OoBdgbz7Ab9I7NY83bkjG4O9jVMyc8C+ReY=" +2019-02-07 15:29:34.098 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:29:34.312 [main] INFO - Request Body: {"encryptionType":"RsaOaep256"} +2019-02-07 15:29:34.313 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 15:29:34.313 [main] INFO - Response Code: 200 +2019-02-07 15:29:34.314 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=lvvabEH8bzYl2wdAjmk8rw67zFFW1+VDKhEf0NfUllY= +Content-Type: application/json;charset=UTF-8 +Content-Length: 927 +Date: Thu, 07 Feb 2019 09:59:34 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e4021954-6baf-476d-bb16-80cf3a5cd02c +OkHttp-Sent-Millis: 1549533574102 +OkHttp-Received-Millis: 1549533574312 + +2019-02-07 15:29:34.314 [main] INFO - ********* END *********: +2019-02-07 15:29:34.333 [main] INFO - ********* START ********* +2019-02-07 15:29:34.333 [main] INFO - Authentication Type : http_signature +2019-02-07 15:29:34.333 [main] INFO - Request Type: POST +2019-02-07 15:29:34.334 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 15:29:34.334 [main] INFO - Digest: SHA-256=gEZo4PozZVgCrpNd3JKwGruwMOoyFI70wP0aDjupsBk= +2019-02-07 15:29:34.335 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:29:34.377 [main] INFO - Date: Thu, 7 Feb 2019 09:56:22 GMT +2019-02-07 15:29:34.377 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:29:34.377 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="qrzqRcSP/KKMCkdHXWVj9Fz00G1mggRRWxlLSzedXOM=" +2019-02-07 15:29:34.378 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:29:34.582 [main] INFO - Request Body: {"encryptionType":"PqaPabc255"} +2019-02-07 15:29:34.583 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 15:29:34.583 [main] INFO - Response Code: 400 +2019-02-07 15:29:34.584 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Thu, 07 Feb 2019 09:59:34 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4bc72cf6-1383-4981-9652-2c57f5ad2dfd +OkHttp-Sent-Millis: 1549533574384 +OkHttp-Received-Millis: 1549533574582 + +2019-02-07 15:29:34.584 [main] INFO - ********* END *********: +2019-02-07 15:30:05.782 [main] INFO - ********* START ********* +2019-02-07 15:30:05.794 [main] INFO - Authentication Type : http_signature +2019-02-07 15:30:05.805 [main] INFO - Request Type: POST +2019-02-07 15:30:05.806 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 15:30:05.807 [main] INFO - Digest: SHA-256=YljtibTei+du4xVIDxMr3HBsyLAEDuiYaag9TcU9jHA= +2019-02-07 15:30:05.856 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:30:05.857 [main] INFO - Date: Thu, 7 Feb 2019 10:00:05 GMT +2019-02-07 15:30:05.857 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:30:05.858 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="G6ens7rGMeFqWnE3SwC/AkJvj8cnh5yJ6d4H963pcXo=" +2019-02-07 15:30:05.858 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:30:07.418 [main] INFO - Request Body: {"encryptionType":"RsaOaep256"} +2019-02-07 15:30:07.418 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 15:30:07.419 [main] INFO - Response Code: 200 +2019-02-07 15:30:07.419 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=OeCx/oQgM6z9/NnHR+M9TSdmEq7h9MKNm4yDUnRC2fA= +Content-Type: application/json;charset=UTF-8 +Content-Length: 927 +Date: Thu, 07 Feb 2019 10:00:07 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c702506d-6ce4-4fdf-adcb-c8f1cfae676b +OkHttp-Sent-Millis: 1549533607182 +OkHttp-Received-Millis: 1549533607393 + +2019-02-07 15:30:07.420 [main] INFO - ********* END *********: +2019-02-07 15:30:07.467 [main] INFO - ********* START ********* +2019-02-07 15:30:07.468 [main] INFO - Authentication Type : http_signature +2019-02-07 15:30:07.468 [main] INFO - Request Type: POST +2019-02-07 15:30:07.469 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 15:30:07.469 [main] INFO - Digest: SHA-256=gEZo4PozZVgCrpNd3JKwGruwMOoyFI70wP0aDjupsBk= +2019-02-07 15:30:07.470 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:30:07.470 [main] INFO - Date: Thu, 7 Feb 2019 10:00:05 GMT +2019-02-07 15:30:07.471 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:30:07.471 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="5J7GS6jc+KNcyf49EnuKGbl+6PgGFe+KbDqp4+ZRmKc=" +2019-02-07 15:30:07.472 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:30:07.679 [main] INFO - Request Body: {"encryptionType":"PqaPabc255"} +2019-02-07 15:30:07.680 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 15:30:07.681 [main] INFO - Response Code: 400 +2019-02-07 15:30:07.681 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Thu, 07 Feb 2019 10:00:07 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: dfec6e7d-4f74-426e-a9c1-a20467ca8af3 +OkHttp-Sent-Millis: 1549533607478 +OkHttp-Received-Millis: 1549533607676 + +2019-02-07 15:30:07.682 [main] INFO - ********* END *********: +2019-02-07 15:31:51.232 [main] INFO - ********* START ********* +2019-02-07 15:31:51.256 [main] INFO - Authentication Type : http_signature +2019-02-07 15:31:51.257 [main] INFO - Request Type: POST +2019-02-07 15:31:51.259 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 15:31:51.260 [main] INFO - Digest: SHA-256=YljtibTei+du4xVIDxMr3HBsyLAEDuiYaag9TcU9jHA= +2019-02-07 15:31:51.260 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:31:51.261 [main] INFO - Date: Thu, 7 Feb 2019 10:01:44 GMT +2019-02-07 15:31:51.262 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:31:51.263 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="3PLDcEkEGquOiuSnG+snYkhILUvJZlmN73H+4hwadeU=" +2019-02-07 15:31:51.264 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:31:55.960 [main] INFO - Request Body: {"encryptionType":"RsaOaep256"} +2019-02-07 15:31:55.961 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 15:31:55.962 [main] INFO - Response Code: 200 +2019-02-07 15:31:55.963 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=RsHUmFcfbT+OjAfmg/lXs4qNck9KkGRvdXdYBKUxC5I= +Content-Type: application/json;charset=UTF-8 +Content-Length: 927 +Date: Thu, 07 Feb 2019 10:01:55 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4f66af48-ddbc-4ba2-9226-4cf73b44601f +OkHttp-Sent-Millis: 1549533715627 +OkHttp-Received-Millis: 1549533715895 + +2019-02-07 15:31:55.966 [main] INFO - ********* END *********: +2019-02-07 15:32:50.776 [main] INFO - ********* START ********* +2019-02-07 15:32:50.776 [main] INFO - Authentication Type : http_signature +2019-02-07 15:32:50.776 [main] INFO - Request Type: POST +2019-02-07 15:32:50.777 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 15:32:50.777 [main] INFO - Digest: SHA-256=gEZo4PozZVgCrpNd3JKwGruwMOoyFI70wP0aDjupsBk= +2019-02-07 15:32:50.778 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:32:50.778 [main] INFO - Date: Thu, 7 Feb 2019 10:01:44 GMT +2019-02-07 15:32:50.779 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:32:50.779 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="mYjV1THq6/4S25cdbfu/mMTp6R33dmySc5ZBrs0nU28=" +2019-02-07 15:32:50.780 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:32:50.981 [main] INFO - Request Body: {"encryptionType":"PqaPabc255"} +2019-02-07 15:32:50.982 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 15:32:50.983 [main] INFO - Response Code: 400 +2019-02-07 15:32:50.983 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Thu, 07 Feb 2019 10:02:50 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a1568942-fa97-47e5-b4b8-ae5bc646b3b9 +OkHttp-Sent-Millis: 1549533770784 +OkHttp-Received-Millis: 1549533770976 + +2019-02-07 15:32:50.984 [main] INFO - ********* END *********: +2019-02-07 15:33:13.861 [main] INFO - ********* START ********* +2019-02-07 15:33:13.880 [main] INFO - Authentication Type : http_signature +2019-02-07 15:33:13.880 [main] INFO - Request Type: POST +2019-02-07 15:33:13.880 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 15:33:13.880 [main] INFO - Digest: SHA-256=YljtibTei+du4xVIDxMr3HBsyLAEDuiYaag9TcU9jHA= +2019-02-07 15:33:13.880 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:33:13.889 [main] INFO - Date: Thu, 7 Feb 2019 10:03:13 GMT +2019-02-07 15:33:13.889 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:33:13.890 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="PqdrA2ZkA/wPUmlVJrPcd258cvD4/zZ3XjFJwmwXfog=" +2019-02-07 15:33:13.891 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:33:15.322 [main] INFO - Request Body: {"encryptionType":"RsaOaep256"} +2019-02-07 15:33:15.323 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 15:33:15.323 [main] INFO - Response Code: 200 +2019-02-07 15:33:15.324 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=3fM/6ajUdPvpbKKZEZj1eQui4SinjGn1U8XxDprrB6E= +Content-Type: application/json;charset=UTF-8 +Content-Length: 927 +Date: Thu, 07 Feb 2019 10:03:15 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 9af4491d-9c74-41ff-842a-10edfc30a6c3 +OkHttp-Sent-Millis: 1549533795087 +OkHttp-Received-Millis: 1549533795297 + +2019-02-07 15:33:15.325 [main] INFO - ********* END *********: +2019-02-07 15:33:15.385 [main] INFO - ********* START ********* +2019-02-07 15:33:15.386 [main] INFO - Authentication Type : http_signature +2019-02-07 15:33:15.387 [main] INFO - Request Type: POST +2019-02-07 15:33:15.388 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 15:33:15.389 [main] INFO - Digest: SHA-256=gEZo4PozZVgCrpNd3JKwGruwMOoyFI70wP0aDjupsBk= +2019-02-07 15:33:15.389 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:33:15.390 [main] INFO - Date: Thu, 7 Feb 2019 10:03:13 GMT +2019-02-07 15:33:15.390 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:33:15.390 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="1R6n4xdAhXNpjtzpC+GhALOM1i59b0wcbizLqKXMs0o=" +2019-02-07 15:33:15.391 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:33:15.594 [main] INFO - Request Body: {"encryptionType":"PqaPabc255"} +2019-02-07 15:33:15.595 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 15:33:15.595 [main] INFO - Response Code: 400 +2019-02-07 15:33:15.596 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Thu, 07 Feb 2019 10:03:15 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 2059140a-a94c-466f-bb3f-cc0a41cf129e +OkHttp-Sent-Millis: 1549533795396 +OkHttp-Received-Millis: 1549533795591 + +2019-02-07 15:33:15.596 [main] INFO - ********* END *********: +2019-02-07 15:45:35.510 [main] INFO - ********* START ********* +2019-02-07 15:45:35.528 [main] INFO - Authentication Type : http_signature +2019-02-07 15:45:35.529 [main] INFO - Request Type: POST +2019-02-07 15:45:35.531 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:45:35.532 [main] INFO - Digest: SHA-256=rp59HYGOOXP6bWKiVpWMNgj4QjYai6gMk27yt69dPh8= +2019-02-07 15:45:35.579 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:45:35.580 [main] INFO - Date: Thu, 7 Feb 2019 10:15:34 GMT +2019-02-07 15:45:35.581 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:45:35.581 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ua1zb+eX0NK3fIFNipu/Gisi4mVV9vb7G65SY1W71a8=" +2019-02-07 15:45:35.582 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:45:37.515 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"33557799"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"FD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:45:37.516 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:45:37.517 [main] INFO - Response Code: 201 +2019-02-07 15:45:37.517 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 493 +X-Cnection: close +x-response-time: 459ms +v-c-correlation-id: dfffd15a-09bb-4f83-ae5d-fc7363e0e254 +OkHttp-Sent-Millis: 1549534536809 +OkHttp-Received-Millis: 1549534537482 + +2019-02-07 15:45:37.517 [main] INFO - ********* END *********: +2019-02-07 15:45:37.578 [main] INFO - ********* START ********* +2019-02-07 15:45:37.579 [main] INFO - Authentication Type : http_signature +2019-02-07 15:45:37.580 [main] INFO - Request Type: POST +2019-02-07 15:45:37.581 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:45:37.582 [main] INFO - Digest: SHA-256=WV4kmV6NZQKID4sN4WMbFxFXqbg/hn8kxL7FOS4jQXk= +2019-02-07 15:45:37.583 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:45:37.583 [main] INFO - Date: Thu, 7 Feb 2019 10:15:34 GMT +2019-02-07 15:45:37.584 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:45:37.584 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="BMNvIXghFXwoU3P+wtmnt13RZquLyCYf0oMkOdihlMQ=" +2019-02-07 15:45:37.585 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:45:38.361 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"12345"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"GD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:45:38.362 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:45:38.363 [main] INFO - Response Code: 201 +2019-02-07 15:45:38.363 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 490 +X-Cnection: close +x-response-time: 567ms +v-c-correlation-id: 2c468c62-9ce4-454a-a793-eba0e6f54e01 +OkHttp-Sent-Millis: 1549534537589 +OkHttp-Received-Millis: 1549534538359 + +2019-02-07 15:45:38.363 [main] INFO - ********* END *********: +2019-02-07 15:45:38.386 [main] INFO - ********* START ********* +2019-02-07 15:45:38.386 [main] INFO - Authentication Type : http_signature +2019-02-07 15:45:38.387 [main] INFO - Request Type: POST +2019-02-07 15:45:38.388 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:45:38.389 [main] INFO - Digest: SHA-256=w9ZjmtCKOCPKH6OZhKI9VKNlfIK5wZLl6ZxwHbxFJsQ= +2019-02-07 15:45:38.389 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:45:38.390 [main] INFO - Date: Thu, 7 Feb 2019 10:15:34 GMT +2019-02-07 15:45:38.391 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:45:38.391 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="rWC4riUVXp9tz2HEnCjDtDRnd6sOV5zutiHFQrHrq6A=" +2019-02-07 15:45:38.392 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:45:38.955 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"6789"},"orderInformation":{"amountDetails":{"totalAmount":"DSWAZ1","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"MD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:45:38.958 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:45:38.959 [main] INFO - Response Code: 400 +2019-02-07 15:45:38.960 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 349ms +v-c-correlation-id: d6fba895-b014-4128-9919-7587d646f641 +OkHttp-Sent-Millis: 1549534538394 +OkHttp-Received-Millis: 1549534538949 + +2019-02-07 15:45:38.960 [main] INFO - ********* END *********: +2019-02-07 15:46:52.443 [main] INFO - ********* START ********* +2019-02-07 15:46:52.460 [main] INFO - Authentication Type : http_signature +2019-02-07 15:46:52.460 [main] INFO - Request Type: POST +2019-02-07 15:46:52.462 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:46:52.463 [main] INFO - Digest: SHA-256=rp59HYGOOXP6bWKiVpWMNgj4QjYai6gMk27yt69dPh8= +2019-02-07 15:46:52.516 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:46:52.517 [main] INFO - Date: Thu, 7 Feb 2019 10:16:51 GMT +2019-02-07 15:46:52.517 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:46:52.518 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="L5ua8jsjkeARFdd+sp5KsufCoQv33kygHXtUnwdQkFs=" +2019-02-07 15:46:52.519 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:46:54.472 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"33557799"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"FD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:46:54.473 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:46:54.473 [main] INFO - Response Code: 201 +2019-02-07 15:46:54.473 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 493 +X-Cnection: close +x-response-time: 448ms +v-c-correlation-id: 7c330602-e6bf-4fb7-a394-196b4b09560d +OkHttp-Sent-Millis: 1549534613777 +OkHttp-Received-Millis: 1549534614436 + +2019-02-07 15:46:54.474 [main] INFO - ********* END *********: +2019-02-07 15:56:36.492 [main] INFO - ********* START ********* +2019-02-07 15:56:36.492 [main] INFO - Authentication Type : http_signature +2019-02-07 15:56:36.493 [main] INFO - Request Type: POST +2019-02-07 15:56:36.494 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:56:36.496 [main] INFO - Digest: SHA-256=rp59HYGOOXP6bWKiVpWMNgj4QjYai6gMk27yt69dPh8= +2019-02-07 15:56:36.496 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:56:36.497 [main] INFO - Date: Thu, 7 Feb 2019 10:16:51 GMT +2019-02-07 15:56:36.498 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:56:36.498 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="L5ua8jsjkeARFdd+sp5KsufCoQv33kygHXtUnwdQkFs=" +2019-02-07 15:56:36.499 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:56:37.453 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"33557799"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"FD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:56:37.455 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:56:37.455 [main] INFO - Response Code: 201 +2019-02-07 15:56:37.456 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 493 +X-Cnection: close +x-response-time: 460ms +v-c-correlation-id: bed1c2fd-b0d4-4a3b-a960-1b2821dc1c13 +OkHttp-Sent-Millis: 1549535196752 +OkHttp-Received-Millis: 1549535197451 + +2019-02-07 15:56:37.457 [main] INFO - ********* END *********: +2019-02-07 15:56:37.501 [main] INFO - ********* START ********* +2019-02-07 15:56:37.502 [main] INFO - Authentication Type : http_signature +2019-02-07 15:56:37.503 [main] INFO - Request Type: POST +2019-02-07 15:56:37.503 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:56:37.503 [main] INFO - Digest: SHA-256=WV4kmV6NZQKID4sN4WMbFxFXqbg/hn8kxL7FOS4jQXk= +2019-02-07 15:56:37.504 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:56:37.505 [main] INFO - Date: Thu, 7 Feb 2019 10:16:51 GMT +2019-02-07 15:56:37.505 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:56:37.505 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="QZ8Pd8sOaH+gPD9r/bVvKIUHAdzrBxd76Lt5veJddpI=" +2019-02-07 15:56:37.506 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:56:38.216 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"12345"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"GD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:56:38.219 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:56:38.220 [main] INFO - Response Code: 201 +2019-02-07 15:56:38.221 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 490 +X-Cnection: close +x-response-time: 508ms +v-c-correlation-id: 95cab31e-cbdb-41e3-bd74-81402c0b657d +OkHttp-Sent-Millis: 1549535197512 +OkHttp-Received-Millis: 1549535198212 + +2019-02-07 15:56:38.222 [main] INFO - ********* END *********: +2019-02-07 15:56:38.259 [main] INFO - ********* START ********* +2019-02-07 15:56:38.259 [main] INFO - Authentication Type : http_signature +2019-02-07 15:56:38.260 [main] INFO - Request Type: POST +2019-02-07 15:56:38.260 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:56:38.261 [main] INFO - Digest: SHA-256=w9ZjmtCKOCPKH6OZhKI9VKNlfIK5wZLl6ZxwHbxFJsQ= +2019-02-07 15:56:38.261 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:56:38.261 [main] INFO - Date: Thu, 7 Feb 2019 10:16:51 GMT +2019-02-07 15:56:38.262 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:56:38.262 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="9L4V75QOYHiMwZ7H7c7k7Z/A1IviecuSHVnWrsHu3jk=" +2019-02-07 15:56:38.263 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:56:38.904 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"6789"},"orderInformation":{"amountDetails":{"totalAmount":"DSWAZ1","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"MD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:56:38.904 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:56:38.904 [main] INFO - Response Code: 400 +2019-02-07 15:56:38.904 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 398ms +v-c-correlation-id: 9beb0086-67df-49a6-830e-67db0314841e +OkHttp-Sent-Millis: 1549535198266 +OkHttp-Received-Millis: 1549535198900 + +2019-02-07 15:56:38.906 [main] INFO - ********* END *********: +2019-02-07 15:57:23.578 [main] INFO - ********* START ********* +2019-02-07 15:57:23.597 [main] INFO - Authentication Type : http_signature +2019-02-07 15:57:23.598 [main] INFO - Request Type: POST +2019-02-07 15:57:23.598 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:57:23.599 [main] INFO - Digest: SHA-256=rp59HYGOOXP6bWKiVpWMNgj4QjYai6gMk27yt69dPh8= +2019-02-07 15:57:23.600 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:57:23.600 [main] INFO - Date: Thu, 7 Feb 2019 10:27:23 GMT +2019-02-07 15:57:23.601 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:57:23.601 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="E6ZO59bgEUOudSdEqbtMriJrFXVdwkYioLJpumQPEaE=" +2019-02-07 15:57:23.602 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:57:25.568 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"33557799"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"FD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:57:25.569 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:57:25.569 [main] INFO - Response Code: 201 +2019-02-07 15:57:25.570 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 493 +X-Cnection: close +x-response-time: 474ms +v-c-correlation-id: 1aade3a4-102e-4201-9f30-1e33dc81ad0e +OkHttp-Sent-Millis: 1549535244805 +OkHttp-Received-Millis: 1549535245533 + +2019-02-07 15:57:25.570 [main] INFO - ********* END *********: +2019-02-07 15:57:25.629 [main] INFO - ********* START ********* +2019-02-07 15:57:25.631 [main] INFO - Authentication Type : http_signature +2019-02-07 15:57:25.632 [main] INFO - Request Type: POST +2019-02-07 15:57:25.632 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:57:25.633 [main] INFO - Digest: SHA-256=WV4kmV6NZQKID4sN4WMbFxFXqbg/hn8kxL7FOS4jQXk= +2019-02-07 15:57:25.633 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:57:25.633 [main] INFO - Date: Thu, 7 Feb 2019 10:27:23 GMT +2019-02-07 15:57:25.634 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:57:25.634 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="/SINfvzydqMpTiHgFhCVR9/hAn6xS6lV/eC2WoRyfEk=" +2019-02-07 15:57:25.635 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:57:26.349 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"12345"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"GD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:57:26.350 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:57:26.351 [main] INFO - Response Code: 201 +2019-02-07 15:57:26.351 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 490 +X-Cnection: close +x-response-time: 469ms +v-c-correlation-id: c3b3636c-fc9d-4886-b930-f5be71305e68 +OkHttp-Sent-Millis: 1549535245639 +OkHttp-Received-Millis: 1549535246345 + +2019-02-07 15:57:26.352 [main] INFO - ********* END *********: +2019-02-07 15:57:26.379 [main] INFO - ********* START ********* +2019-02-07 15:57:26.380 [main] INFO - Authentication Type : http_signature +2019-02-07 15:57:26.381 [main] INFO - Request Type: POST +2019-02-07 15:57:26.383 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:57:26.384 [main] INFO - Digest: SHA-256=w9ZjmtCKOCPKH6OZhKI9VKNlfIK5wZLl6ZxwHbxFJsQ= +2019-02-07 15:57:26.385 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:57:26.385 [main] INFO - Date: Thu, 7 Feb 2019 10:27:23 GMT +2019-02-07 15:57:26.386 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:57:26.386 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="orig058hPcIlaTguvI0D+dXXE/BleAnl0UphO5Wz1g0=" +2019-02-07 15:57:26.387 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:57:26.942 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"6789"},"orderInformation":{"amountDetails":{"totalAmount":"DSWAZ1","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"MD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:57:26.943 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:57:26.943 [main] INFO - Response Code: 400 +2019-02-07 15:57:26.943 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 341ms +v-c-correlation-id: f9945828-a374-41d5-88d7-e639c9c67f24 +OkHttp-Sent-Millis: 1549535246399 +OkHttp-Received-Millis: 1549535246940 + +2019-02-07 15:57:26.943 [main] INFO - ********* END *********: +2019-02-07 15:59:51.750 [main] INFO - ********* START ********* +2019-02-07 15:59:51.771 [main] INFO - Authentication Type : http_signature +2019-02-07 15:59:51.771 [main] INFO - Request Type: POST +2019-02-07 15:59:51.773 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:59:51.773 [main] INFO - Digest: SHA-256=rp59HYGOOXP6bWKiVpWMNgj4QjYai6gMk27yt69dPh8= +2019-02-07 15:59:51.774 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:59:51.776 [main] INFO - Date: Thu, 7 Feb 2019 10:29:51 GMT +2019-02-07 15:59:51.776 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:59:51.777 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="zTv53bWJm1roIxmyHVacnjmz2g8ZnLz5ZhXoObhCR6E=" +2019-02-07 15:59:51.778 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:59:54.054 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"33557799"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"FD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:59:54.055 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:59:54.056 [main] INFO - Response Code: 201 +2019-02-07 15:59:54.056 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 493 +X-Cnection: close +x-response-time: 615ms +v-c-correlation-id: 5895e7ad-2531-453a-81f2-54b10895dfa2 +OkHttp-Sent-Millis: 1549535393168 +OkHttp-Received-Millis: 1549535394007 + +2019-02-07 15:59:54.057 [main] INFO - ********* END *********: +2019-02-07 15:59:54.143 [main] INFO - ********* START ********* +2019-02-07 15:59:54.143 [main] INFO - Authentication Type : http_signature +2019-02-07 15:59:54.144 [main] INFO - Request Type: POST +2019-02-07 15:59:54.145 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:59:54.147 [main] INFO - Digest: SHA-256=WV4kmV6NZQKID4sN4WMbFxFXqbg/hn8kxL7FOS4jQXk= +2019-02-07 15:59:54.147 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:59:54.148 [main] INFO - Date: Thu, 7 Feb 2019 10:29:51 GMT +2019-02-07 15:59:54.148 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:59:54.149 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="aXCgMHSwqCPQErw5D4LsSITM/8thPKfsVr3iJjALOZQ=" +2019-02-07 15:59:54.150 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:59:54.821 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"12345"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"GD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:59:54.821 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:59:54.821 [main] INFO - Response Code: 201 +2019-02-07 15:59:54.821 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 490 +X-Cnection: close +x-response-time: 473ms +v-c-correlation-id: 5cf5da7a-493d-4e91-ba4c-56eafd1fbe34 +OkHttp-Sent-Millis: 1549535394158 +OkHttp-Received-Millis: 1549535394820 + +2019-02-07 15:59:54.821 [main] INFO - ********* END *********: +2019-02-07 15:59:54.856 [main] INFO - ********* START ********* +2019-02-07 15:59:54.856 [main] INFO - Authentication Type : http_signature +2019-02-07 15:59:54.857 [main] INFO - Request Type: POST +2019-02-07 15:59:54.858 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 15:59:54.858 [main] INFO - Digest: SHA-256=w9ZjmtCKOCPKH6OZhKI9VKNlfIK5wZLl6ZxwHbxFJsQ= +2019-02-07 15:59:54.859 [main] INFO - v-c-merchant-id: testrest +2019-02-07 15:59:54.860 [main] INFO - Date: Thu, 7 Feb 2019 10:29:51 GMT +2019-02-07 15:59:54.861 [main] INFO - Host: apitest.cybersource.com +2019-02-07 15:59:54.861 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="40DlfiLKrTXQfrnbegnb+A7v+TxVGrVOpswy9Aa+gqI=" +2019-02-07 15:59:54.862 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 15:59:55.435 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"6789"},"orderInformation":{"amountDetails":{"totalAmount":"DSWAZ1","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"MD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 15:59:55.436 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 15:59:55.436 [main] INFO - Response Code: 400 +2019-02-07 15:59:55.437 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 374ms +v-c-correlation-id: ac3d5638-45a5-4420-9687-ff875e717758 +OkHttp-Sent-Millis: 1549535394866 +OkHttp-Received-Millis: 1549535395432 + +2019-02-07 15:59:55.437 [main] INFO - ********* END *********: +2019-02-07 16:36:11.307 [main] INFO - ********* START ********* +2019-02-07 16:36:11.326 [main] INFO - Authentication Type : http_signature +2019-02-07 16:36:11.327 [main] INFO - Request Type: POST +2019-02-07 16:36:11.327 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 16:36:11.328 [main] INFO - Digest: SHA-256=rp59HYGOOXP6bWKiVpWMNgj4QjYai6gMk27yt69dPh8= +2019-02-07 16:36:11.328 [main] INFO - v-c-merchant-id: testrest +2019-02-07 16:36:11.329 [main] INFO - Date: Thu, 7 Feb 2019 11:06:10 GMT +2019-02-07 16:36:11.330 [main] INFO - Host: apitest.cybersource.com +2019-02-07 16:36:11.331 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="X0oh5ndPMH773ecTUKiuoQ/PMuQjq4CHMjrPty2RC4A=" +2019-02-07 16:36:11.331 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 16:36:13.268 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"33557799"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"FD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 16:36:13.268 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 16:36:13.268 [main] INFO - Response Code: 201 +2019-02-07 16:36:13.270 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 493 +X-Cnection: close +x-response-time: 471ms +v-c-correlation-id: 03a5a80e-b1e6-4ecd-8d7d-3ab9a9330ff4 +OkHttp-Sent-Millis: 1549537572542 +OkHttp-Received-Millis: 1549537573237 + +2019-02-07 16:36:13.270 [main] INFO - ********* END *********: +2019-02-07 16:36:13.332 [main] INFO - ********* START ********* +2019-02-07 16:36:13.332 [main] INFO - Authentication Type : http_signature +2019-02-07 16:36:13.333 [main] INFO - Request Type: POST +2019-02-07 16:36:13.333 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 16:36:13.333 [main] INFO - Digest: SHA-256=WV4kmV6NZQKID4sN4WMbFxFXqbg/hn8kxL7FOS4jQXk= +2019-02-07 16:36:13.334 [main] INFO - v-c-merchant-id: testrest +2019-02-07 16:36:13.334 [main] INFO - Date: Thu, 7 Feb 2019 11:06:10 GMT +2019-02-07 16:36:13.334 [main] INFO - Host: apitest.cybersource.com +2019-02-07 16:36:13.335 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="3agp5YvAbha3gONWgqoDlABzNa9ftWr47tEfyPOK1ck=" +2019-02-07 16:36:13.335 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 16:36:14.128 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"12345"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"GD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 16:36:14.129 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 16:36:14.129 [main] INFO - Response Code: 201 +2019-02-07 16:36:14.129 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 490 +X-Cnection: close +x-response-time: 575ms +v-c-correlation-id: 0463b598-6621-4755-9aeb-fbc9776c467f +OkHttp-Sent-Millis: 1549537573340 +OkHttp-Received-Millis: 1549537574126 + +2019-02-07 16:36:14.130 [main] INFO - ********* END *********: +2019-02-07 16:36:14.149 [main] INFO - ********* START ********* +2019-02-07 16:36:14.149 [main] INFO - Authentication Type : http_signature +2019-02-07 16:36:14.149 [main] INFO - Request Type: POST +2019-02-07 16:36:14.149 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-07 16:36:14.149 [main] INFO - Digest: SHA-256=w9ZjmtCKOCPKH6OZhKI9VKNlfIK5wZLl6ZxwHbxFJsQ= +2019-02-07 16:36:14.150 [main] INFO - v-c-merchant-id: testrest +2019-02-07 16:36:14.150 [main] INFO - Date: Thu, 7 Feb 2019 11:06:10 GMT +2019-02-07 16:36:14.150 [main] INFO - Host: apitest.cybersource.com +2019-02-07 16:36:14.152 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="JYH81oqy+tPTHnbRys8Pc1N2UvHZ06aL3dum8SCtmaU=" +2019-02-07 16:36:14.152 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 16:36:14.769 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"6789"},"orderInformation":{"amountDetails":{"totalAmount":"DSWAZ1","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"MD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-07 16:36:14.770 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-07 16:36:14.770 [main] INFO - Response Code: 400 +2019-02-07 16:36:14.770 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 371ms +v-c-correlation-id: d4516f2a-c13b-44aa-a955-8b6c3489afb6 +OkHttp-Sent-Millis: 1549537574154 +OkHttp-Received-Millis: 1549537574766 + +2019-02-07 16:36:14.771 [main] INFO - ********* END *********: +2019-02-07 16:36:38.593 [main] INFO - ********* START ********* +2019-02-07 16:36:38.606 [main] INFO - Authentication Type : http_signature +2019-02-07 16:36:38.607 [main] INFO - Request Type: POST +2019-02-07 16:36:38.607 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 16:36:38.608 [main] INFO - Digest: SHA-256=YljtibTei+du4xVIDxMr3HBsyLAEDuiYaag9TcU9jHA= +2019-02-07 16:36:38.645 [main] INFO - v-c-merchant-id: testrest +2019-02-07 16:36:38.646 [main] INFO - Date: Thu, 7 Feb 2019 11:06:38 GMT +2019-02-07 16:36:38.646 [main] INFO - Host: apitest.cybersource.com +2019-02-07 16:36:38.647 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="496M7F2iZ9acQixMg6EtpUpPSOf0xPSX6KiTDNS71Ro=" +2019-02-07 16:36:38.647 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 16:36:39.950 [main] INFO - Request Body: {"encryptionType":"RsaOaep256"} +2019-02-07 16:36:39.950 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 16:36:39.951 [main] INFO - Response Code: 200 +2019-02-07 16:36:39.951 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=0XKwt+krdrUBYlmhcO2eXqBSn+uUUJx+kMQCvXsbzmA= +Content-Type: application/json;charset=UTF-8 +Content-Length: 927 +Date: Thu, 07 Feb 2019 11:06:39 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d9797748-d47d-4f38-ba0c-7792d1a39853 +OkHttp-Sent-Millis: 1549537599709 +OkHttp-Received-Millis: 1549537599929 + +2019-02-07 16:36:39.952 [main] INFO - ********* END *********: +2019-02-07 16:36:39.991 [main] INFO - ********* START ********* +2019-02-07 16:36:39.991 [main] INFO - Authentication Type : http_signature +2019-02-07 16:36:39.991 [main] INFO - Request Type: POST +2019-02-07 16:36:39.992 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 16:36:39.993 [main] INFO - Digest: SHA-256=gEZo4PozZVgCrpNd3JKwGruwMOoyFI70wP0aDjupsBk= +2019-02-07 16:36:39.993 [main] INFO - v-c-merchant-id: testrest +2019-02-07 16:36:39.994 [main] INFO - Date: Thu, 7 Feb 2019 11:06:38 GMT +2019-02-07 16:36:39.994 [main] INFO - Host: apitest.cybersource.com +2019-02-07 16:36:39.994 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="rt1rV1lr/RR2M4qyphGx/AH4h/7lenklhAZkjyjPaI0=" +2019-02-07 16:36:39.995 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 16:36:40.192 [main] INFO - Request Body: {"encryptionType":"PqaPabc255"} +2019-02-07 16:36:40.192 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 16:36:40.193 [main] INFO - Response Code: 400 +2019-02-07 16:36:40.193 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Thu, 07 Feb 2019 11:06:40 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4edc5972-1c45-4e07-b604-f41d158db264 +OkHttp-Sent-Millis: 1549537599999 +OkHttp-Received-Millis: 1549537600190 + +2019-02-07 16:36:40.193 [main] INFO - ********* END *********: +2019-02-07 16:40:07.087 [main] INFO - ********* START ********* +2019-02-07 16:40:07.102 [main] INFO - Authentication Type : http_signature +2019-02-07 16:40:07.104 [main] INFO - Request Type: POST +2019-02-07 16:40:07.105 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-07 16:40:07.105 [main] INFO - Digest: SHA-256=khZNHyPh9N0I+lwcfhLK01waD8zcWY9ExSoDeYhJg2g= +2019-02-07 16:40:07.105 [main] INFO - v-c-merchant-id: testrest +2019-02-07 16:40:07.106 [main] INFO - Date: Thu, 7 Feb 2019 11:10:06 GMT +2019-02-07 16:40:07.106 [main] INFO - Host: apitest.cybersource.com +2019-02-07 16:40:07.106 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="GydUwh8BJgGgNI7ShG7GJsqCf/sjEqSDVmLmb4pQGCc=" +2019-02-07 16:40:07.107 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 16:40:08.295 [main] INFO - Request Body: {"cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-07 16:40:08.296 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"One or more validation errors occurred","correlationId":null,"details":[{"location":"keyId","message":"keyId is null"}],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-07 16:40:08.296 [main] INFO - Response Code: 400 +2019-02-07 16:40:08.297 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=k2w6jjQhlEkSKxWpmIO+lM9217YXPU9wUxQxwYxxeUI= +Content-Type: application/json;charset=UTF-8 +Content-Length: 259 +Date: Thu, 07 Feb 2019 11:10:08 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: cbc486ff-93da-4099-8821-f66e933f6bfc +OkHttp-Sent-Millis: 1549537808110 +OkHttp-Received-Millis: 1549537808276 + +2019-02-07 16:40:08.297 [main] INFO - ********* END *********: +2019-02-07 16:40:08.346 [main] INFO - ********* START ********* +2019-02-07 16:40:08.346 [main] INFO - Authentication Type : http_signature +2019-02-07 16:40:08.347 [main] INFO - Request Type: POST +2019-02-07 16:40:08.348 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-07 16:40:08.348 [main] INFO - Digest: SHA-256=khZNHyPh9N0I+lwcfhLK01waD8zcWY9ExSoDeYhJg2g= +2019-02-07 16:40:08.348 [main] INFO - v-c-merchant-id: testrest +2019-02-07 16:40:08.349 [main] INFO - Date: Thu, 7 Feb 2019 11:10:06 GMT +2019-02-07 16:40:08.349 [main] INFO - Host: apitest.cybersource.com +2019-02-07 16:40:08.349 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="GydUwh8BJgGgNI7ShG7GJsqCf/sjEqSDVmLmb4pQGCc=" +2019-02-07 16:40:08.350 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 16:40:08.516 [main] INFO - Request Body: {"cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-07 16:40:08.516 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-02-07 16:40:08.516 [main] INFO - Response Code: 400 +2019-02-07 16:40:08.516 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=k2w6jjQhlEkSKxWpmIO+lM9217YXPU9wUxQxwYxxeUI= +Content-Type: application/json;charset=UTF-8 +Content-Length: 259 +Date: Thu, 07 Feb 2019 11:10:08 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 1af7ca92-995b-4060-bebc-63f8627f7a6f +OkHttp-Sent-Millis: 1549537808353 +OkHttp-Received-Millis: 1549537808513 + +2019-02-07 16:40:08.516 [main] INFO - ********* END *********: +2019-02-07 16:42:53.165 [main] INFO - ********* START ********* +2019-02-07 16:42:53.182 [main] INFO - Authentication Type : http_signature +2019-02-07 16:42:53.183 [main] INFO - Request Type: POST +2019-02-07 16:42:53.184 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-07 16:42:53.185 [main] INFO - Digest: SHA-256=3bOpdX6uUPEVablJrWeJqPg6cnRHcOGfhA57MuoEQas= +2019-02-07 16:42:53.234 [main] INFO - v-c-merchant-id: testrest +2019-02-07 16:42:53.235 [main] INFO - Date: Thu, 7 Feb 2019 11:12:52 GMT +2019-02-07 16:42:53.235 [main] INFO - Host: apitest.cybersource.com +2019-02-07 16:42:53.236 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="quOAh9wTiaDPLlQY2lIXKeH3K35g5cd7y6LDSO2ekMM=" +2019-02-07 16:42:53.236 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 16:42:54.492 [main] INFO - Request Body: {"keyId":"0761jLr3eSSc0ZKWMY6YR73NqjSwqxi4","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-07 16:42:54.493 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [0761jLr3eSSc0ZKWMY6YR73NqjSwqxi4]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-07 16:42:54.494 [main] INFO - Response Code: 400 +2019-02-07 16:42:54.494 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=sVsBthbGSKIwE/jfc3EChbB/v11nRumhMlEtAt1BCAs= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Thu, 07 Feb 2019 11:12:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 1f744f8f-8b0f-4348-929b-7a529fefa8e9 +OkHttp-Sent-Millis: 1549537974293 +OkHttp-Received-Millis: 1549537974469 + +2019-02-07 16:42:54.495 [main] INFO - ********* END *********: +2019-02-07 16:42:54.545 [main] INFO - ********* START ********* +2019-02-07 16:42:54.546 [main] INFO - Authentication Type : http_signature +2019-02-07 16:42:54.547 [main] INFO - Request Type: POST +2019-02-07 16:42:54.548 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-07 16:42:54.548 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-02-07 16:42:54.549 [main] INFO - v-c-merchant-id: testrest +2019-02-07 16:42:54.549 [main] INFO - Date: Thu, 7 Feb 2019 11:12:52 GMT +2019-02-07 16:42:54.549 [main] INFO - Host: apitest.cybersource.com +2019-02-07 16:42:54.550 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Ag4kdsvlXnsBtRQs8AutadwRdqKumikaNJe5t2e+BMc=" +2019-02-07 16:42:54.550 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 16:42:54.717 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-07 16:42:54.718 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-02-07 16:42:54.718 [main] INFO - Response Code: 400 +2019-02-07 16:42:54.719 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Thu, 07 Feb 2019 11:12:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ae7d542f-5c36-4236-8bc3-77f8cc7c7938 +OkHttp-Sent-Millis: 1549537974553 +OkHttp-Received-Millis: 1549537974717 + +2019-02-07 16:42:54.719 [main] INFO - ********* END *********: +2019-02-07 16:43:41.230 [main] INFO - ********* START ********* +2019-02-07 16:43:41.258 [main] INFO - Authentication Type : http_signature +2019-02-07 16:43:41.259 [main] INFO - Request Type: POST +2019-02-07 16:43:41.261 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-07 16:43:41.262 [main] INFO - Digest: SHA-256=3bOpdX6uUPEVablJrWeJqPg6cnRHcOGfhA57MuoEQas= +2019-02-07 16:43:41.263 [main] INFO - v-c-merchant-id: testrest +2019-02-07 16:43:41.264 [main] INFO - Date: Thu, 7 Feb 2019 11:13:36 GMT +2019-02-07 16:43:41.265 [main] INFO - Host: apitest.cybersource.com +2019-02-07 16:43:41.265 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="/La2rc03NZFIUl7EXuPrOoVQEXG53JGW1RFygIGpUQk=" +2019-02-07 16:43:41.267 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 16:43:45.045 [main] INFO - Request Body: {"keyId":"0761jLr3eSSc0ZKWMY6YR73NqjSwqxi4","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-07 16:43:45.046 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [0761jLr3eSSc0ZKWMY6YR73NqjSwqxi4]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-07 16:43:45.047 [main] INFO - Response Code: 400 +2019-02-07 16:43:45.048 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=sVsBthbGSKIwE/jfc3EChbB/v11nRumhMlEtAt1BCAs= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Thu, 07 Feb 2019 11:13:44 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 145a3106-418e-48d9-a0e0-9b253ccc89f9 +OkHttp-Sent-Millis: 1549538024799 +OkHttp-Received-Millis: 1549538024995 + +2019-02-07 16:43:45.050 [main] INFO - ********* END *********: +2019-02-07 16:44:02.370 [main] INFO - ********* START ********* +2019-02-07 16:44:02.371 [main] INFO - Authentication Type : http_signature +2019-02-07 16:44:02.371 [main] INFO - Request Type: POST +2019-02-07 16:44:02.372 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-07 16:44:02.373 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-02-07 16:44:02.373 [main] INFO - v-c-merchant-id: testrest +2019-02-07 16:44:02.374 [main] INFO - Date: Thu, 7 Feb 2019 11:13:36 GMT +2019-02-07 16:44:02.374 [main] INFO - Host: apitest.cybersource.com +2019-02-07 16:44:02.375 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="jYAUhqz/uUB6lZwfU1Cm6NsOkls5C8AixJFbCeGy2CA=" +2019-02-07 16:44:02.375 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 16:44:02.544 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-07 16:44:02.545 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-02-07 16:44:02.545 [main] INFO - Response Code: 400 +2019-02-07 16:44:02.545 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Thu, 07 Feb 2019 11:14:02 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e62ec15f-bcee-4794-96ee-d42d8552296e +OkHttp-Sent-Millis: 1549538042381 +OkHttp-Received-Millis: 1549538042543 + +2019-02-07 16:44:02.546 [main] INFO - ********* END *********: +2019-02-07 16:45:04.221 [main] INFO - ********* START ********* +2019-02-07 16:45:04.240 [main] INFO - Authentication Type : http_signature +2019-02-07 16:45:04.241 [main] INFO - Request Type: POST +2019-02-07 16:45:04.241 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-07 16:45:04.242 [main] INFO - Digest: SHA-256=NTEgGTO0S/Q4uLa31n32FPLByTOx0Y4C4nAozKMXflE= +2019-02-07 16:45:04.283 [main] INFO - v-c-merchant-id: testrest +2019-02-07 16:45:04.284 [main] INFO - Date: Thu, 7 Feb 2019 11:15:03 GMT +2019-02-07 16:45:04.284 [main] INFO - Host: apitest.cybersource.com +2019-02-07 16:45:04.284 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="0mQh+VKImw9CPW1yTZQOYTopsgko57svLGNYWnhBviw=" +2019-02-07 16:45:04.285 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 16:45:05.767 [main] INFO - Request Body: {"keyId":"078cNRFLmTIrTCeW24GHiFSBDPLRjjQ0","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-07 16:45:05.767 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-02-07 16:45:05.767 [main] INFO - Response Code: 200 +2019-02-07 16:45:05.768 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=gXgr5pA06uiQIo7mPumAjvlp5Kqw/9yMZjKQoa7OWdg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 840 +Date: Thu, 07 Feb 2019 11:15:05 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 2d809af8-737a-4be2-ae56-cf6db353ecc2 +OkHttp-Sent-Millis: 1549538105227 +OkHttp-Received-Millis: 1549538105748 + +2019-02-07 16:45:05.768 [main] INFO - ********* END *********: +2019-02-07 16:45:06.581 [main] INFO - ********* START ********* +2019-02-07 16:45:06.582 [main] INFO - Authentication Type : http_signature +2019-02-07 16:45:06.582 [main] INFO - Request Type: POST +2019-02-07 16:45:06.583 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-07 16:45:06.583 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-02-07 16:45:06.584 [main] INFO - v-c-merchant-id: testrest +2019-02-07 16:45:06.584 [main] INFO - Date: Thu, 7 Feb 2019 11:15:03 GMT +2019-02-07 16:45:06.584 [main] INFO - Host: apitest.cybersource.com +2019-02-07 16:45:06.584 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="uBcAIb/PF0w9mhIuZMYQFxV8ZoPBUAVH2xz/1f3bKjU=" +2019-02-07 16:45:06.585 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 16:45:06.740 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-07 16:45:06.741 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-02-07 16:45:06.741 [main] INFO - Response Code: 400 +2019-02-07 16:45:06.741 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Thu, 07 Feb 2019 11:15:06 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 375dd142-6a7a-4ab2-bb7c-786d04eceee4 +OkHttp-Sent-Millis: 1549538106588 +OkHttp-Received-Millis: 1549538106739 + +2019-02-07 16:45:06.742 [main] INFO - ********* END *********: +2019-02-07 16:45:40.803 [main] INFO - ********* START ********* +2019-02-07 16:45:40.816 [main] INFO - Authentication Type : http_signature +2019-02-07 16:45:40.816 [main] INFO - Request Type: POST +2019-02-07 16:45:40.817 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-07 16:45:40.817 [main] INFO - Digest: SHA-256=NTEgGTO0S/Q4uLa31n32FPLByTOx0Y4C4nAozKMXflE= +2019-02-07 16:45:40.855 [main] INFO - v-c-merchant-id: testrest +2019-02-07 16:45:40.855 [main] INFO - Date: Thu, 7 Feb 2019 11:15:40 GMT +2019-02-07 16:45:40.855 [main] INFO - Host: apitest.cybersource.com +2019-02-07 16:45:40.856 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="B4SJX+VByzj9+0wYE6vwc2A7wPepILCbSS2D8Uy4I3Q=" +2019-02-07 16:45:40.856 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 16:45:42.380 [main] INFO - Request Body: {"keyId":"078cNRFLmTIrTCeW24GHiFSBDPLRjjQ0","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-07 16:45:42.380 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-02-07 16:45:42.381 [main] INFO - Response Code: 200 +2019-02-07 16:45:42.381 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=RFUhv7sLpL/q3B+QG2/4AJA4m92FWHdHcVi+SQ6YMs8= +Content-Type: application/json;charset=UTF-8 +Content-Length: 840 +Date: Thu, 07 Feb 2019 11:15:42 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 15833205-6713-4635-9420-921e934ae4c8 +OkHttp-Sent-Millis: 1549538141870 +OkHttp-Received-Millis: 1549538142359 + +2019-02-07 16:45:42.381 [main] INFO - ********* END *********: +2019-02-07 16:45:42.936 [main] INFO - ********* START ********* +2019-02-07 16:45:42.936 [main] INFO - Authentication Type : http_signature +2019-02-07 16:45:42.937 [main] INFO - Request Type: POST +2019-02-07 16:45:42.937 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-07 16:45:42.938 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-02-07 16:45:42.938 [main] INFO - v-c-merchant-id: testrest +2019-02-07 16:45:42.939 [main] INFO - Date: Thu, 7 Feb 2019 11:15:40 GMT +2019-02-07 16:45:42.939 [main] INFO - Host: apitest.cybersource.com +2019-02-07 16:45:42.939 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="KuxqnVU5nl25h45GISYYz/rpVWfKFdr7e59bCn8CFjQ=" +2019-02-07 16:45:42.940 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 16:45:43.097 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-07 16:45:43.097 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-02-07 16:45:43.098 [main] INFO - Response Code: 400 +2019-02-07 16:45:43.098 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Thu, 07 Feb 2019 11:15:43 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: fbe93595-4e94-434f-b7eb-4c9bc48e600a +OkHttp-Sent-Millis: 1549538142943 +OkHttp-Received-Millis: 1549538143095 + +2019-02-07 16:45:43.098 [main] INFO - ********* END *********: +2019-02-07 16:51:02.129 [main] INFO - ********* START ********* +2019-02-07 16:51:02.146 [main] INFO - Authentication Type : http_signature +2019-02-07 16:51:02.147 [main] INFO - Request Type: POST +2019-02-07 16:51:02.148 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 16:51:02.149 [main] INFO - Digest: SHA-256=bena9bhB3Jy4uPvfu1tAC0uN8AuzzM+xjqmDwR5//EA= +2019-02-07 16:51:02.195 [main] INFO - v-c-merchant-id: testrest +2019-02-07 16:51:02.196 [main] INFO - Date: Thu, 7 Feb 2019 11:21:01 GMT +2019-02-07 16:51:02.196 [main] INFO - Host: apitest.cybersource.com +2019-02-07 16:51:02.197 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="w+WzFOVFxKCFZyTPYwAAz+F7hroCtTZG8o5dqRSYt1A=" +2019-02-07 16:51:02.197 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 16:51:03.384 [main] INFO - Request Body: {"encryptionType":"None"} +2019-02-07 16:51:03.384 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 16:51:03.385 [main] INFO - Response Code: 200 +2019-02-07 16:51:03.385 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=JLq0CLz0JreaxgLdBhWAaVfrKnXL2Zhmfu9emBjDb+c= +Content-Type: application/json;charset=UTF-8 +Content-Length: 505 +Date: Thu, 07 Feb 2019 11:21:03 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e6ebc140-358f-4ed1-807a-53c2fa0d7e7e +OkHttp-Sent-Millis: 1549538463136 +OkHttp-Received-Millis: 1549538463364 + +2019-02-07 16:51:03.385 [main] INFO - ********* END *********: +2019-02-07 16:51:03.427 [main] INFO - ********* START ********* +2019-02-07 16:51:03.427 [main] INFO - Authentication Type : http_signature +2019-02-07 16:51:03.427 [main] INFO - Request Type: POST +2019-02-07 16:51:03.428 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 16:51:03.428 [main] INFO - Digest: SHA-256=RGxc6GDM4hd0Lz1J24GEBLuX6JSK+r0fZi1/r0x/0Xo= +2019-02-07 16:51:03.429 [main] INFO - v-c-merchant-id: testrest +2019-02-07 16:51:03.429 [main] INFO - Date: Thu, 7 Feb 2019 11:21:01 GMT +2019-02-07 16:51:03.430 [main] INFO - Host: apitest.cybersource.com +2019-02-07 16:51:03.431 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="S3yZnHb8gsJMVJisPxFzk9qGwfFHE+jV9HCnzATL3x4=" +2019-02-07 16:51:03.431 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 16:51:03.627 [main] INFO - Request Body: {"encryptionType":"SDMP"} +2019-02-07 16:51:03.628 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 16:51:03.628 [main] INFO - Response Code: 400 +2019-02-07 16:51:03.628 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Thu, 07 Feb 2019 11:21:03 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ee0ad503-3175-4e46-8176-e934f4e5d164 +OkHttp-Sent-Millis: 1549538463435 +OkHttp-Received-Millis: 1549538463626 + +2019-02-07 16:51:03.629 [main] INFO - ********* END *********: +2019-02-07 17:07:58.219 [main] INFO - ********* START ********* +2019-02-07 17:07:58.237 [main] INFO - Authentication Type : http_signature +2019-02-07 17:07:58.237 [main] INFO - Request Type: POST +2019-02-07 17:07:58.239 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:07:58.239 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:07:58.277 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:07:58.277 [main] INFO - Date: Thu, 7 Feb 2019 11:37:57 GMT +2019-02-07 17:07:58.278 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:07:58.278 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="JeLPeMXYdqQMZSIF2vvYcgrONjWHmpxbpZOmLCc5wpo=" +2019-02-07 17:07:58.278 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:07:59.665 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:07:59.666 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:07:59.666 [main] INFO - Response Code: 200 +2019-02-07 17:07:59.666 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_0950c76f-6047-45c9-8b9f-829a2299ebf0 +uniqueTransactionID: 077fa592-4e6c-4685-8247-39828f8ee0e8 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Thu, 07 Feb 2019 11:37:59 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: f627cf27-368f-4246-8d61-258a116698c7 +OkHttp-Sent-Millis: 1549539479372 +OkHttp-Received-Millis: 1549539479646 + +2019-02-07 17:07:59.667 [main] INFO - ********* END *********: +2019-02-07 17:07:59.708 [main] INFO - ********* START ********* +2019-02-07 17:07:59.708 [main] INFO - Authentication Type : http_signature +2019-02-07 17:07:59.709 [main] INFO - Request Type: POST +2019-02-07 17:07:59.709 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:07:59.710 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:07:59.710 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:07:59.710 [main] INFO - Date: Thu, 7 Feb 2019 11:37:57 GMT +2019-02-07 17:07:59.710 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:07:59.710 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="JeLPeMXYdqQMZSIF2vvYcgrONjWHmpxbpZOmLCc5wpo=" +2019-02-07 17:07:59.710 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:07:59.941 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:07:59.942 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:07:59.942 [main] INFO - Response Code: 400 +2019-02-07 17:07:59.943 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_fb638f44-0634-4726-805f-e41733a61cb0 +uniqueTransactionID: d594bbe2-ba26-436b-9fc7-36a14e595a0a +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Thu, 07 Feb 2019 11:37:59 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 9c6678ee-75e5-4548-82e5-b6a5120234cb +OkHttp-Sent-Millis: 1549539479715 +OkHttp-Received-Millis: 1549539479934 + +2019-02-07 17:07:59.944 [main] INFO - ********* END *********: +2019-02-07 17:08:23.558 [main] INFO - ********* START ********* +2019-02-07 17:08:23.576 [main] INFO - Authentication Type : http_signature +2019-02-07 17:08:23.577 [main] INFO - Request Type: POST +2019-02-07 17:08:23.578 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:08:23.578 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:08:23.628 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:08:23.629 [main] INFO - Date: Thu, 7 Feb 2019 11:38:23 GMT +2019-02-07 17:08:23.630 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:08:23.630 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="C3XOMgTD8o5VrWK1dAiAEHyuzkDLKm79VtZkDhXiVqU=" +2019-02-07 17:08:23.630 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:08:25.110 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:08:25.111 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:08:25.111 [main] INFO - Response Code: 200 +2019-02-07 17:08:25.112 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_d47c455d-163f-4963-8ca9-f43f97e9bc66 +uniqueTransactionID: 95c51831-1edb-4962-a56e-a1692b5233b7 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Thu, 07 Feb 2019 11:38:25 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 747dc4e2-0c06-4c53-ae5b-5732b4fc7241 +OkHttp-Sent-Millis: 1549539504810 +OkHttp-Received-Millis: 1549539505065 + +2019-02-07 17:08:25.113 [main] INFO - ********* END *********: +2019-02-07 17:08:30.200 [main] INFO - ********* START ********* +2019-02-07 17:08:30.200 [main] INFO - Authentication Type : http_signature +2019-02-07 17:08:30.201 [main] INFO - Request Type: POST +2019-02-07 17:08:30.201 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:08:30.202 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:08:30.202 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:08:30.202 [main] INFO - Date: Thu, 7 Feb 2019 11:38:23 GMT +2019-02-07 17:08:30.203 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:08:30.204 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="C3XOMgTD8o5VrWK1dAiAEHyuzkDLKm79VtZkDhXiVqU=" +2019-02-07 17:08:30.204 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:08:30.407 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:08:30.408 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:08:30.408 [main] INFO - Response Code: 400 +2019-02-07 17:08:30.409 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_28da2d38-2bee-4b4a-87d2-23bc93565a3e +uniqueTransactionID: e3b025e0-dd61-4bf6-b175-8323daad2703 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Thu, 07 Feb 2019 11:38:30 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 934dc17c-a4c8-47b0-b2c5-fcab54fd239c +OkHttp-Sent-Millis: 1549539510210 +OkHttp-Received-Millis: 1549539510406 + +2019-02-07 17:08:30.409 [main] INFO - ********* END *********: +2019-02-07 17:09:55.856 [main] INFO - ********* START ********* +2019-02-07 17:09:55.876 [main] INFO - Authentication Type : http_signature +2019-02-07 17:09:55.876 [main] INFO - Request Type: POST +2019-02-07 17:09:55.876 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:09:55.876 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:09:55.876 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:09:55.876 [main] INFO - Date: Thu, 7 Feb 2019 11:39:55 GMT +2019-02-07 17:09:55.876 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:09:55.876 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="bbKH7n1iUbUbTKhjwvDEqJLtk80JiRaKU2K3uEvNjAo=" +2019-02-07 17:09:55.876 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:09:57.162 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:09:57.163 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:09:57.163 [main] INFO - Response Code: 200 +2019-02-07 17:09:57.164 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_751c5aa7-82c5-4cb7-baf9-0b7d3858f53d +uniqueTransactionID: b6e8db69-60d0-43c9-91ab-c393825a0b30 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Thu, 07 Feb 2019 11:39:57 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 95d7b5ce-a8be-4a48-8b13-0be51e694c2b +OkHttp-Sent-Millis: 1549539596869 +OkHttp-Received-Millis: 1549539597143 + +2019-02-07 17:09:57.164 [main] INFO - ********* END *********: +2019-02-07 17:09:57.203 [main] INFO - ********* START ********* +2019-02-07 17:09:57.204 [main] INFO - Authentication Type : http_signature +2019-02-07 17:09:57.204 [main] INFO - Request Type: POST +2019-02-07 17:09:57.204 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:09:57.205 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:09:57.205 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:09:57.205 [main] INFO - Date: Thu, 7 Feb 2019 11:39:55 GMT +2019-02-07 17:09:57.206 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:09:57.206 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="bbKH7n1iUbUbTKhjwvDEqJLtk80JiRaKU2K3uEvNjAo=" +2019-02-07 17:09:57.207 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:09:57.420 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:09:57.421 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:09:57.421 [main] INFO - Response Code: 400 +2019-02-07 17:09:57.422 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_f53b70ca-3eb6-436c-945e-4d1dd9eb084c +uniqueTransactionID: 3ba4cca1-8b8b-4a68-911e-80bc3aea2b5a +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Thu, 07 Feb 2019 11:39:57 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 3636cc4d-8019-439b-978a-ac7368478f69 +OkHttp-Sent-Millis: 1549539597210 +OkHttp-Received-Millis: 1549539597419 + +2019-02-07 17:09:57.422 [main] INFO - ********* END *********: +2019-02-07 17:10:27.144 [main] INFO - ********* START ********* +2019-02-07 17:10:27.160 [main] INFO - Authentication Type : http_signature +2019-02-07 17:10:27.161 [main] INFO - Request Type: POST +2019-02-07 17:10:27.162 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:10:27.162 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:10:27.203 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:10:27.204 [main] INFO - Date: Thu, 7 Feb 2019 11:40:26 GMT +2019-02-07 17:10:27.204 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:10:27.204 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="WJhqerPmmYFpZzDNcNWYWiviL1IIw9BFOE/xQoAw+rM=" +2019-02-07 17:10:27.205 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:10:28.778 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:10:28.778 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:10:28.779 [main] INFO - Response Code: 200 +2019-02-07 17:10:28.779 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_2878deac-09ce-4f90-b394-3c4942f4da43 +uniqueTransactionID: 50ceb8be-b142-424b-b012-00c15fb4ffe8 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Thu, 07 Feb 2019 11:40:28 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: ca0b0092-06ec-41ee-b6c7-8006a37b87a0 +OkHttp-Sent-Millis: 1549539628392 +OkHttp-Received-Millis: 1549539628737 + +2019-02-07 17:10:28.780 [main] INFO - ********* END *********: +2019-02-07 17:10:30.802 [main] INFO - ********* START ********* +2019-02-07 17:10:30.803 [main] INFO - Authentication Type : http_signature +2019-02-07 17:10:30.803 [main] INFO - Request Type: POST +2019-02-07 17:10:30.804 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:10:30.804 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:10:30.804 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:10:30.805 [main] INFO - Date: Thu, 7 Feb 2019 11:40:26 GMT +2019-02-07 17:10:30.805 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:10:30.805 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="WJhqerPmmYFpZzDNcNWYWiviL1IIw9BFOE/xQoAw+rM=" +2019-02-07 17:10:30.806 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:10:31.006 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:10:31.006 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:10:31.007 [main] INFO - Response Code: 400 +2019-02-07 17:10:31.007 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_030026eb-8946-4162-b611-70d4901b84d5 +uniqueTransactionID: 45204fcc-8cae-4eb0-b9d9-1506e18be1f6 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Thu, 07 Feb 2019 11:40:31 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 01930c1c-482f-4eea-94d1-f39d72e26188 +OkHttp-Sent-Millis: 1549539630811 +OkHttp-Received-Millis: 1549539631004 + +2019-02-07 17:10:31.008 [main] INFO - ********* END *********: +2019-02-07 17:12:44.280 [main] INFO - ********* START ********* +2019-02-07 17:12:44.295 [main] INFO - Authentication Type : http_signature +2019-02-07 17:12:44.296 [main] INFO - Request Type: POST +2019-02-07 17:12:44.297 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:12:44.297 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:12:44.298 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:12:44.298 [main] INFO - Date: Thu, 7 Feb 2019 11:42:43 GMT +2019-02-07 17:12:44.299 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:12:44.299 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="aNbeZLqCQpfGzwy8F5pT+HKwpBn8kf2a64ut1fUJni4=" +2019-02-07 17:12:44.299 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:12:45.681 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:12:45.681 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:12:45.682 [main] INFO - Response Code: 200 +2019-02-07 17:12:45.683 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_5a6aed41-1b72-46fa-8533-3c541c37afbf +uniqueTransactionID: 92933a6f-d12a-4352-886e-ffd426cb8f8e +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Thu, 07 Feb 2019 11:42:45 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: d3a8e6dc-e7e1-44f5-9c58-05f7b4dba8ab +OkHttp-Sent-Millis: 1549539765413 +OkHttp-Received-Millis: 1549539765657 + +2019-02-07 17:12:45.684 [main] INFO - ********* END *********: +2019-02-07 17:12:47.915 [main] INFO - ********* START ********* +2019-02-07 17:12:47.915 [main] INFO - Authentication Type : http_signature +2019-02-07 17:12:47.915 [main] INFO - Request Type: POST +2019-02-07 17:12:47.916 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:12:47.917 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:12:47.917 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:12:47.918 [main] INFO - Date: Thu, 7 Feb 2019 11:42:43 GMT +2019-02-07 17:12:47.918 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:12:47.918 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="aNbeZLqCQpfGzwy8F5pT+HKwpBn8kf2a64ut1fUJni4=" +2019-02-07 17:12:47.919 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:12:48.125 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:12:48.126 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:12:48.126 [main] INFO - Response Code: 400 +2019-02-07 17:12:48.126 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_31d3ecc1-6307-4443-b198-d74efa69eec8 +uniqueTransactionID: c1c1f6ee-933c-4541-b77f-0edaf864950d +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Thu, 07 Feb 2019 11:42:48 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 39c0b861-ef5e-41de-b966-5c4c42d80426 +OkHttp-Sent-Millis: 1549539767929 +OkHttp-Received-Millis: 1549539768124 + +2019-02-07 17:12:48.127 [main] INFO - ********* END *********: +2019-02-07 17:13:55.589 [main] INFO - ********* START ********* +2019-02-07 17:13:55.595 [main] INFO - Authentication Type : http_signature +2019-02-07 17:13:55.595 [main] INFO - Request Type: POST +2019-02-07 17:13:55.597 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:13:55.598 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:13:55.645 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:13:55.646 [main] INFO - Date: Thu, 7 Feb 2019 11:43:55 GMT +2019-02-07 17:13:55.646 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:13:55.646 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="nvhcjNvTIfBf0wcdK/8NqPIA5dBiUpxb6Lmp1RohC24=" +2019-02-07 17:13:55.647 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:13:57.186 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:13:57.186 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:13:57.187 [main] INFO - Response Code: 200 +2019-02-07 17:13:57.187 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_f52a7f34-6867-4a7d-996d-a65471055221 +uniqueTransactionID: 7fb6ffee-bd04-435c-ab4c-e32ea7eaeb35 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Thu, 07 Feb 2019 11:43:57 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 02f79b28-3429-4e70-98a4-48023b00e369 +OkHttp-Sent-Millis: 1549539836886 +OkHttp-Received-Millis: 1549539837156 + +2019-02-07 17:13:57.188 [main] INFO - ********* END *********: +2019-02-07 17:13:59.186 [main] INFO - ********* START ********* +2019-02-07 17:13:59.186 [main] INFO - Authentication Type : http_signature +2019-02-07 17:13:59.186 [main] INFO - Request Type: POST +2019-02-07 17:13:59.188 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:13:59.189 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:13:59.189 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:13:59.190 [main] INFO - Date: Thu, 7 Feb 2019 11:43:55 GMT +2019-02-07 17:13:59.190 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:13:59.191 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="nvhcjNvTIfBf0wcdK/8NqPIA5dBiUpxb6Lmp1RohC24=" +2019-02-07 17:13:59.191 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:13:59.401 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:13:59.402 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:13:59.403 [main] INFO - Response Code: 400 +2019-02-07 17:13:59.403 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_dad10b5e-d46b-4826-9f91-a6befcec8080 +uniqueTransactionID: b5942ff7-d7a5-4617-bf0c-98d8f7d2c555 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Thu, 07 Feb 2019 11:43:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: fb7c241f-eecc-473a-b65f-b37f4e384bb0 +OkHttp-Sent-Millis: 1549539839198 +OkHttp-Received-Millis: 1549539839400 + +2019-02-07 17:13:59.404 [main] INFO - ********* END *********: +2019-02-07 17:17:50.897 [main] INFO - ********* START ********* +2019-02-07 17:17:50.897 [main] INFO - Authentication Type : http_signature +2019-02-07 17:17:50.898 [main] INFO - Request Type: POST +2019-02-07 17:17:50.898 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:17:50.898 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:17:50.899 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:17:50.900 [main] INFO - Date: Thu, 7 Feb 2019 11:43:55 GMT +2019-02-07 17:17:50.900 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:17:50.901 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="nvhcjNvTIfBf0wcdK/8NqPIA5dBiUpxb6Lmp1RohC24=" +2019-02-07 17:17:50.901 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:17:51.175 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:17:51.177 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:17:51.177 [main] INFO - Response Code: 200 +2019-02-07 17:17:51.178 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_c2f51d94-972d-4251-813a-748383bca534 +uniqueTransactionID: c8c5b01d-7ccb-484a-9dad-5f15eddfa1cc +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Thu, 07 Feb 2019 11:47:50 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 92d71e48-6794-40ac-943c-639605e2cf42 +OkHttp-Sent-Millis: 1549540070903 +OkHttp-Received-Millis: 1549540071174 + +2019-02-07 17:17:51.179 [main] INFO - ********* END *********: +2019-02-07 17:17:51.201 [main] INFO - ********* START ********* +2019-02-07 17:17:51.201 [main] INFO - Authentication Type : http_signature +2019-02-07 17:17:51.201 [main] INFO - Request Type: POST +2019-02-07 17:17:51.202 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:17:51.202 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:17:51.203 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:17:51.204 [main] INFO - Date: Thu, 7 Feb 2019 11:43:55 GMT +2019-02-07 17:17:51.205 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:17:51.205 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="nvhcjNvTIfBf0wcdK/8NqPIA5dBiUpxb6Lmp1RohC24=" +2019-02-07 17:17:51.205 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:17:51.408 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:17:51.409 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:17:51.409 [main] INFO - Response Code: 400 +2019-02-07 17:17:51.410 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_b15ec07a-332f-4db5-a1b0-02bf23c51db0 +uniqueTransactionID: f0ad01e9-dc25-44a4-a1ed-a05e81e22bc1 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Thu, 07 Feb 2019 11:47:50 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 9e7bacfc-9116-4eee-b614-26caf9fc09fd +OkHttp-Sent-Millis: 1549540071209 +OkHttp-Received-Millis: 1549540071407 + +2019-02-07 17:17:51.410 [main] INFO - ********* END *********: +2019-02-07 17:18:15.152 [main] INFO - ********* START ********* +2019-02-07 17:18:15.171 [main] INFO - Authentication Type : http_signature +2019-02-07 17:18:15.171 [main] INFO - Request Type: POST +2019-02-07 17:18:15.172 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:18:15.172 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:18:15.217 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:18:15.218 [main] INFO - Date: Thu, 7 Feb 2019 11:48:14 GMT +2019-02-07 17:18:15.218 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:18:15.219 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="3KUXDpIpTFjCaJpodYq+sSHKBJdLSUDHF1bhw+9jL7w=" +2019-02-07 17:18:15.219 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:18:16.582 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:18:16.583 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:18:16.583 [main] INFO - Response Code: 200 +2019-02-07 17:18:16.583 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_750bf242-9900-4f24-b836-ce8ebb5df596 +uniqueTransactionID: 5b639d56-d94c-464c-8fdd-de59075a6dd0 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Thu, 07 Feb 2019 11:48:16 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 8c51518e-c534-4bd0-a6ff-ccc82246c600 +OkHttp-Sent-Millis: 1549540096285 +OkHttp-Received-Millis: 1549540096534 + +2019-02-07 17:18:16.584 [main] INFO - ********* END *********: +2019-02-07 17:18:19.795 [main] INFO - ********* START ********* +2019-02-07 17:18:19.796 [main] INFO - Authentication Type : http_signature +2019-02-07 17:18:19.796 [main] INFO - Request Type: POST +2019-02-07 17:18:19.797 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:18:19.797 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:18:19.798 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:18:19.798 [main] INFO - Date: Thu, 7 Feb 2019 11:48:14 GMT +2019-02-07 17:18:19.798 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:18:19.799 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="3KUXDpIpTFjCaJpodYq+sSHKBJdLSUDHF1bhw+9jL7w=" +2019-02-07 17:18:19.799 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:18:19.997 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:18:19.997 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:18:19.998 [main] INFO - Response Code: 400 +2019-02-07 17:18:19.998 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_fd0d1800-4a62-4add-8d0a-76ae1bcc792a +uniqueTransactionID: 7f9fcd48-3b3a-4037-8df5-9b603739e0dc +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Thu, 07 Feb 2019 11:48:19 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 301ed144-9ba8-4948-b14b-a9b1088c04d9 +OkHttp-Sent-Millis: 1549540099805 +OkHttp-Received-Millis: 1549540099995 + +2019-02-07 17:18:19.998 [main] INFO - ********* END *********: +2019-02-07 17:19:10.640 [main] INFO - ********* START ********* +2019-02-07 17:19:10.660 [main] INFO - Authentication Type : http_signature +2019-02-07 17:19:10.661 [main] INFO - Request Type: POST +2019-02-07 17:19:10.662 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:19:10.662 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:19:10.663 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:19:10.663 [main] INFO - Date: Thu, 7 Feb 2019 11:49:10 GMT +2019-02-07 17:19:10.663 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:19:10.664 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="AKiuztQO97on7O0hLF7cDu896oz1EhGqMQRS2NMhRmE=" +2019-02-07 17:19:10.664 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:19:11.914 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:19:11.914 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:19:11.915 [main] INFO - Response Code: 200 +2019-02-07 17:19:11.915 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_b1e9b3bb-d3f2-41b1-b1fe-eddc8457c2e9 +uniqueTransactionID: c08966e0-cf32-4440-84ea-5a1f1d80b1db +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Thu, 07 Feb 2019 11:49:11 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: a898dece-fef3-4ed2-a7b9-e9fee4b1b22a +OkHttp-Sent-Millis: 1549540151614 +OkHttp-Received-Millis: 1549540151881 + +2019-02-07 17:19:11.915 [main] INFO - ********* END *********: +2019-02-07 17:19:14.214 [main] INFO - ********* START ********* +2019-02-07 17:19:14.215 [main] INFO - Authentication Type : http_signature +2019-02-07 17:19:14.216 [main] INFO - Request Type: POST +2019-02-07 17:19:14.217 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:19:14.217 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:19:14.218 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:19:14.218 [main] INFO - Date: Thu, 7 Feb 2019 11:49:10 GMT +2019-02-07 17:19:14.219 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:19:14.219 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="AKiuztQO97on7O0hLF7cDu896oz1EhGqMQRS2NMhRmE=" +2019-02-07 17:19:14.220 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:19:14.434 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:19:14.435 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:19:14.435 [main] INFO - Response Code: 400 +2019-02-07 17:19:14.436 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_8330abbc-450f-471b-b3c4-00dedf311dc0 +uniqueTransactionID: 37cddb6d-a8c3-411a-8bae-a14cb8654a90 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Thu, 07 Feb 2019 11:49:14 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 692269d8-6c8f-49d6-abee-9a449067522b +OkHttp-Sent-Millis: 1549540154225 +OkHttp-Received-Millis: 1549540154433 + +2019-02-07 17:19:14.436 [main] INFO - ********* END *********: +2019-02-07 17:20:29.717 [main] INFO - ********* START ********* +2019-02-07 17:20:29.732 [main] INFO - Authentication Type : http_signature +2019-02-07 17:20:29.733 [main] INFO - Request Type: POST +2019-02-07 17:20:29.734 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:20:29.735 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:20:29.773 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:20:29.774 [main] INFO - Date: Thu, 7 Feb 2019 11:50:29 GMT +2019-02-07 17:20:29.774 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:20:29.775 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="iMSjt0NDzgjkAuDGopfkuXKUjL9/khTQhCPPoj6xKII=" +2019-02-07 17:20:29.776 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:20:31.132 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:20:31.132 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:20:31.133 [main] INFO - Response Code: 200 +2019-02-07 17:20:31.133 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_adbbac0e-0b0d-4311-8072-127d56576f8d +uniqueTransactionID: 00c74a69-31ca-4aa5-ad5a-49e82d69539b +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Thu, 07 Feb 2019 11:50:30 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 74966c4d-a0fc-47bd-8a95-b1136ee6af3c +OkHttp-Sent-Millis: 1549540230881 +OkHttp-Received-Millis: 1549540231110 + +2019-02-07 17:20:31.133 [main] INFO - ********* END *********: +2019-02-07 17:20:33.105 [main] INFO - ********* START ********* +2019-02-07 17:20:33.106 [main] INFO - Authentication Type : http_signature +2019-02-07 17:20:33.106 [main] INFO - Request Type: POST +2019-02-07 17:20:33.107 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:20:33.108 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:20:33.109 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:20:33.109 [main] INFO - Date: Thu, 7 Feb 2019 11:50:29 GMT +2019-02-07 17:20:33.109 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:20:33.110 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="iMSjt0NDzgjkAuDGopfkuXKUjL9/khTQhCPPoj6xKII=" +2019-02-07 17:20:33.111 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:20:33.309 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:20:33.310 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:20:33.310 [main] INFO - Response Code: 400 +2019-02-07 17:20:33.311 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_bb2b71b4-694f-4e07-9eff-fb3683608f1c +uniqueTransactionID: 3c05b272-6120-44ca-be0a-50b1e919792a +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Thu, 07 Feb 2019 11:50:33 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 8eaf5acf-97a2-4af2-8bfd-6f446dc02971 +OkHttp-Sent-Millis: 1549540233116 +OkHttp-Received-Millis: 1549540233308 + +2019-02-07 17:20:33.311 [main] INFO - ********* END *********: +2019-02-07 17:24:00.932 [main] INFO - ********* START ********* +2019-02-07 17:24:00.947 [main] INFO - Authentication Type : http_signature +2019-02-07 17:24:00.948 [main] INFO - Request Type: POST +2019-02-07 17:24:00.950 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:24:00.950 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:24:00.995 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:24:00.996 [main] INFO - Date: Thu, 7 Feb 2019 11:54:00 GMT +2019-02-07 17:24:00.997 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:24:00.997 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="HBzJtUtE/OBHntj2hVwgPiTGpVCWmBZeiGE1r/iNVF8=" +2019-02-07 17:24:00.997 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:24:02.563 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:24:02.564 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:24:02.564 [main] INFO - Response Code: 200 +2019-02-07 17:24:02.565 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_02ef2e50-b23c-41d9-a8c0-558950079cd9 +uniqueTransactionID: ed0fdfce-e2a7-464c-b04e-5f7e012fea5c +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Thu, 07 Feb 2019 11:54:02 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 3ad32ab3-c717-4e83-8846-80faf18034e2 +OkHttp-Sent-Millis: 1549540442232 +OkHttp-Received-Millis: 1549540442524 + +2019-02-07 17:24:02.565 [main] INFO - ********* END *********: +2019-02-07 17:24:04.595 [main] INFO - ********* START ********* +2019-02-07 17:24:04.596 [main] INFO - Authentication Type : http_signature +2019-02-07 17:24:04.596 [main] INFO - Request Type: POST +2019-02-07 17:24:04.597 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:24:04.597 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:24:04.598 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:24:04.598 [main] INFO - Date: Thu, 7 Feb 2019 11:54:00 GMT +2019-02-07 17:24:04.599 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:24:04.599 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="HBzJtUtE/OBHntj2hVwgPiTGpVCWmBZeiGE1r/iNVF8=" +2019-02-07 17:24:04.600 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:24:04.817 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:24:04.818 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:24:04.818 [main] INFO - Response Code: 400 +2019-02-07 17:24:04.818 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_898232d1-c19d-40f4-82ea-07a69c6811aa +uniqueTransactionID: ebe8aee4-3e55-4b18-acdf-591537373f99 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Thu, 07 Feb 2019 11:54:04 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 5b69159f-26c3-4edc-85ed-2d0a0b7a30a2 +OkHttp-Sent-Millis: 1549540444610 +OkHttp-Received-Millis: 1549540444816 + +2019-02-07 17:24:04.819 [main] INFO - ********* END *********: +2019-02-07 17:26:02.888 [main] INFO - ********* START ********* +2019-02-07 17:26:02.888 [main] INFO - Authentication Type : http_signature +2019-02-07 17:26:02.889 [main] INFO - Request Type: POST +2019-02-07 17:26:02.889 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:26:02.890 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:26:02.890 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:26:02.890 [main] INFO - Date: Thu, 7 Feb 2019 11:54:00 GMT +2019-02-07 17:26:02.891 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:26:02.891 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="HBzJtUtE/OBHntj2hVwgPiTGpVCWmBZeiGE1r/iNVF8=" +2019-02-07 17:26:02.892 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:26:03.117 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:26:03.117 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:26:03.117 [main] INFO - Response Code: 200 +2019-02-07 17:26:03.118 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_0c915960-d809-48de-9590-63988b8c4274 +uniqueTransactionID: 2a5a494a-e3b9-4bf9-8a2a-7c3374c36b92 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Thu, 07 Feb 2019 11:56:03 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 74e66657-16f8-4f6a-a96b-714d53b1b4d0 +OkHttp-Sent-Millis: 1549540562894 +OkHttp-Received-Millis: 1549540563116 + +2019-02-07 17:26:03.119 [main] INFO - ********* END *********: +2019-02-07 17:26:03.141 [main] INFO - ********* START ********* +2019-02-07 17:26:03.141 [main] INFO - Authentication Type : http_signature +2019-02-07 17:26:03.142 [main] INFO - Request Type: POST +2019-02-07 17:26:03.142 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:26:03.143 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:26:03.143 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:26:03.143 [main] INFO - Date: Thu, 7 Feb 2019 11:54:00 GMT +2019-02-07 17:26:03.143 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:26:03.143 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="HBzJtUtE/OBHntj2hVwgPiTGpVCWmBZeiGE1r/iNVF8=" +2019-02-07 17:26:03.143 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:26:03.342 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:26:03.342 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:26:03.343 [main] INFO - Response Code: 400 +2019-02-07 17:26:03.343 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_0e56c4c0-6483-4381-998d-e70295349429 +uniqueTransactionID: 75041b90-d869-48c2-9963-352a0c6e7956 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Thu, 07 Feb 2019 11:56:03 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 79cf2716-e591-4962-8ed3-b9deaa77c57c +OkHttp-Sent-Millis: 1549540563147 +OkHttp-Received-Millis: 1549540563339 + +2019-02-07 17:26:03.344 [main] INFO - ********* END *********: +2019-02-07 17:26:53.423 [main] INFO - ********* START ********* +2019-02-07 17:26:53.436 [main] INFO - Authentication Type : http_signature +2019-02-07 17:26:53.437 [main] INFO - Request Type: POST +2019-02-07 17:26:53.437 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:26:53.438 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:26:53.476 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:26:53.477 [main] INFO - Date: Thu, 7 Feb 2019 11:56:52 GMT +2019-02-07 17:26:53.477 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:26:53.477 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="gwr7uyGMyvbUDLd21/He2+2W0mQOnRZQ1NHxe3TpiE0=" +2019-02-07 17:26:53.478 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:26:54.731 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:26:54.732 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:26:54.733 [main] INFO - Response Code: 200 +2019-02-07 17:26:54.733 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_6a21e6d3-55a2-41cb-998c-3651f1451d1b +uniqueTransactionID: 352888e7-e8f3-4451-80dd-56d7216e62a1 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Thu, 07 Feb 2019 11:56:54 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: e8f35237-6400-408d-b33f-bcf3e8b4ddbc +OkHttp-Sent-Millis: 1549540614453 +OkHttp-Received-Millis: 1549540614709 + +2019-02-07 17:26:54.733 [main] INFO - ********* END *********: +2019-02-07 17:26:54.781 [main] INFO - ********* START ********* +2019-02-07 17:26:54.782 [main] INFO - Authentication Type : http_signature +2019-02-07 17:26:54.782 [main] INFO - Request Type: POST +2019-02-07 17:26:54.783 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:26:54.783 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:26:54.784 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:26:54.784 [main] INFO - Date: Thu, 7 Feb 2019 11:56:52 GMT +2019-02-07 17:26:54.784 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:26:54.785 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="gwr7uyGMyvbUDLd21/He2+2W0mQOnRZQ1NHxe3TpiE0=" +2019-02-07 17:26:54.785 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:26:54.993 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:26:54.994 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:26:54.995 [main] INFO - Response Code: 400 +2019-02-07 17:26:54.995 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_df0a1ff1-4e33-4e9d-a3d9-6a9b1ad533f3 +uniqueTransactionID: c3841c71-92af-4efc-be85-f3afd59b8a3b +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Thu, 07 Feb 2019 11:56:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ee6940c8-b318-4d40-bd33-5ed7de870161 +OkHttp-Sent-Millis: 1549540614790 +OkHttp-Received-Millis: 1549540614991 + +2019-02-07 17:26:54.996 [main] INFO - ********* END *********: +2019-02-07 17:30:40.429 [main] INFO - ********* START ********* +2019-02-07 17:30:40.448 [main] INFO - Authentication Type : http_signature +2019-02-07 17:30:40.449 [main] INFO - Request Type: POST +2019-02-07 17:30:40.450 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 17:30:40.451 [main] INFO - Digest: SHA-256=YljtibTei+du4xVIDxMr3HBsyLAEDuiYaag9TcU9jHA= +2019-02-07 17:30:40.493 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:30:40.494 [main] INFO - Date: Thu, 7 Feb 2019 12:00:39 GMT +2019-02-07 17:30:40.494 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:30:40.494 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="w7REp5tGoj3I+wGfGAF7jKEQ9QUHAyWjpwqctBPjRTw=" +2019-02-07 17:30:40.495 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:30:41.877 [main] INFO - Request Body: {"encryptionType":"RsaOaep256"} +2019-02-07 17:30:41.879 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 17:30:41.879 [main] INFO - Response Code: 200 +2019-02-07 17:30:41.880 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=TEBqNfbkuc5KM1Zz7lLw2qVVHyx0gY5SJq3jx4TrNVg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 927 +Date: Thu, 07 Feb 2019 12:00:41 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: bdbfe574-c74a-489b-a9ea-f33b1e7bbfa2 +OkHttp-Sent-Millis: 1549540841582 +OkHttp-Received-Millis: 1549540841847 + +2019-02-07 17:30:41.880 [main] INFO - ********* END *********: +2019-02-07 17:30:43.335 [main] INFO - ********* START ********* +2019-02-07 17:30:43.336 [main] INFO - Authentication Type : http_signature +2019-02-07 17:30:43.336 [main] INFO - Request Type: POST +2019-02-07 17:30:43.337 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-07 17:30:43.338 [main] INFO - Digest: SHA-256=gEZo4PozZVgCrpNd3JKwGruwMOoyFI70wP0aDjupsBk= +2019-02-07 17:30:43.338 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:30:43.339 [main] INFO - Date: Thu, 7 Feb 2019 12:00:39 GMT +2019-02-07 17:30:43.339 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:30:43.340 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="zDYvPX6jFR4luX2pzKSndcTUHOrOQ8v/IPFOflWNjtU=" +2019-02-07 17:30:43.341 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:30:43.586 [main] INFO - Request Body: {"encryptionType":"PqaPabc255"} +2019-02-07 17:30:43.587 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-07 17:30:43.587 [main] INFO - Response Code: 400 +2019-02-07 17:30:43.588 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Thu, 07 Feb 2019 12:00:43 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c6ffe391-af78-4397-b02a-736fdc508fa2 +OkHttp-Sent-Millis: 1549540843344 +OkHttp-Received-Millis: 1549540843584 + +2019-02-07 17:30:43.588 [main] INFO - ********* END *********: +2019-02-07 17:32:56.714 [main] INFO - ********* START ********* +2019-02-07 17:32:56.728 [main] INFO - Authentication Type : http_signature +2019-02-07 17:32:56.728 [main] INFO - Request Type: POST +2019-02-07 17:32:56.729 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:32:56.730 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:32:56.772 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:32:56.773 [main] INFO - Date: Thu, 7 Feb 2019 12:02:56 GMT +2019-02-07 17:32:56.774 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:32:56.774 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="qEQ8Dr8G7N78GIZPMkd5hKfdWG4akf7EeFDaUql4kYE=" +2019-02-07 17:32:56.775 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:32:58.203 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:32:58.203 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:32:58.204 [main] INFO - Response Code: 200 +2019-02-07 17:32:58.204 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_27d85953-8c24-478e-b392-dd6f940f9810 +uniqueTransactionID: e56d56dd-380f-4fc9-bb44-ccc01fc47ea0 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Thu, 07 Feb 2019 12:02:58 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 473df64c-8744-4560-9ef6-b2e4bbcbd4c7 +OkHttp-Sent-Millis: 1549540977842 +OkHttp-Received-Millis: 1549540978171 + +2019-02-07 17:32:58.205 [main] INFO - ********* END *********: +2019-02-07 17:32:58.256 [main] INFO - ********* START ********* +2019-02-07 17:32:58.257 [main] INFO - Authentication Type : http_signature +2019-02-07 17:32:58.257 [main] INFO - Request Type: POST +2019-02-07 17:32:58.257 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-07 17:32:58.258 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-07 17:32:58.258 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:32:58.259 [main] INFO - Date: Thu, 7 Feb 2019 12:02:56 GMT +2019-02-07 17:32:58.259 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:32:58.260 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="qEQ8Dr8G7N78GIZPMkd5hKfdWG4akf7EeFDaUql4kYE=" +2019-02-07 17:32:58.260 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:32:58.466 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:32:58.466 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-07 17:32:58.466 [main] INFO - Response Code: 400 +2019-02-07 17:32:58.466 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_28c14f45-fc44-4566-a1da-ebdbd6d155fc +uniqueTransactionID: 7b464760-04aa-42f9-b709-c8a04f740f11 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Thu, 07 Feb 2019 12:02:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 3b84eb23-0221-4c08-b9a0-66cbec5aa9f9 +OkHttp-Sent-Millis: 1549540978266 +OkHttp-Received-Millis: 1549540978465 + +2019-02-07 17:32:58.466 [main] INFO - ********* END *********: +2019-02-07 17:51:06.804 [main] INFO - ********* START ********* +2019-02-07 17:51:06.818 [main] INFO - Authentication Type : http_signature +2019-02-07 17:51:06.819 [main] INFO - Request Type: PATCH +2019-02-07 17:51:06.819 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654, requestType=PATCH} +2019-02-07 17:51:06.819 [main] INFO - Digest: SHA-256=8WWAL+hDoWtF/EyxX3M/HpCKmkkPnnqbqKxbc3iH/JY= +2019-02-07 17:51:06.858 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:51:06.858 [main] INFO - Date: Thu, 7 Feb 2019 12:21:06 GMT +2019-02-07 17:51:06.859 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:51:06.859 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="cw/cepUNVuKIc4nkmDKCE2lkW7ukKZD7JCCrSl6UB5M=" +2019-02-07 17:51:06.859 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:51:08.256 [main] INFO - Request Body: {"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:51:08.256 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654} +2019-02-07 17:51:08.257 [main] INFO - Response Code: 200 +2019-02-07 17:51:08.257 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_b01370a7-75c7-4519-abd1-8921159d37b3 +uniqueTransactionID: 9748fff5-75b6-4433-8f8a-1d6eb612907f +Pragma: no-cache +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654 +ETag: "YvPnVK3T7tr74tGy2SQRiUNmZhBqRCunuvV4KD0NztI=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Thu, 07 Feb 2019 12:21:08 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: bab3dada-5978-4ab5-a9e0-8f9ccede2c66 +OkHttp-Sent-Millis: 1549542067889 +OkHttp-Received-Millis: 1549542068237 + +2019-02-07 17:51:08.257 [main] INFO - ********* END *********: +2019-02-07 17:51:08.306 [main] INFO - ********* START ********* +2019-02-07 17:51:08.307 [main] INFO - Authentication Type : http_signature +2019-02-07 17:51:08.307 [main] INFO - Request Type: PATCH +2019-02-07 17:51:08.308 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000123455, requestType=PATCH} +2019-02-07 17:51:08.308 [main] INFO - Digest: SHA-256=8WWAL+hDoWtF/EyxX3M/HpCKmkkPnnqbqKxbc3iH/JY= +2019-02-07 17:51:08.309 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:51:08.309 [main] INFO - Date: Thu, 7 Feb 2019 12:21:06 GMT +2019-02-07 17:51:08.310 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:51:08.310 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="B6XVSELHr6yFxJaxX0q8w7oeyxPVqqe5Wwnc2Y52/hk=" +2019-02-07 17:51:08.310 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:51:08.717 [main] INFO - Request Body: {"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-07 17:51:08.717 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654} +2019-02-07 17:51:08.718 [main] INFO - Response Code: 404 +2019-02-07 17:51:08.718 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_6770df70-4315-49b1-b20a-26400be83a81 +uniqueTransactionID: eccfc037-7001-4ac8-8b4a-fec31ba5faff +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 12:21:08 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: af4179e4-6e35-4927-af99-c6257784eaba +OkHttp-Sent-Millis: 1549542068315 +OkHttp-Received-Millis: 1549542068716 + +2019-02-07 17:51:08.719 [main] INFO - ********* END *********: +2019-02-07 17:56:55.480 [main] INFO - ********* START ********* +2019-02-07 17:56:55.497 [main] INFO - Authentication Type : http_signature +2019-02-07 17:56:55.498 [main] INFO - Request Type: GET +2019-02-07 17:56:55.499 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7010000000016241111, requestType=GET} +2019-02-07 17:56:55.500 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:56:55.547 [main] INFO - Date: Thu, 7 Feb 2019 12:26:55 GMT +2019-02-07 17:56:55.548 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:56:55.548 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="hxWxd4/2ki32teqBaanJGUNoueQyYAQzIzONa4KsdV8=" +2019-02-07 17:56:55.548 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:56:56.894 [main] INFO - Request Body: null +2019-02-07 17:56:56.894 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111} +2019-02-07 17:56:56.895 [main] INFO - Response Code: 200 +2019-02-07 17:56:56.895 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_fa1c6dce-c3b0-48a6-a71c-c4138cfd0f01 +uniqueTransactionID: 04c1ffd6-5475-4865-96c5-54c475c93597 +Pragma: no-cache +X-Application-Context: application +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +Token-Class: instrumentIdentifier +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Thu, 07 Feb 2019 12:26:56 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: eff3024a-7710-4640-8f59-35dbaa5ad9f1 +OkHttp-Sent-Millis: 1549542416597 +OkHttp-Received-Millis: 1549542416868 + +2019-02-07 17:56:56.896 [main] INFO - ********* END *********: +2019-02-07 17:56:56.994 [main] INFO - ********* START ********* +2019-02-07 17:56:56.994 [main] INFO - Authentication Type : http_signature +2019-02-07 17:56:56.995 [main] INFO - Request Type: GET +2019-02-07 17:56:56.995 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546, requestType=GET} +2019-02-07 17:56:56.996 [main] INFO - v-c-merchant-id: testrest +2019-02-07 17:56:56.997 [main] INFO - Date: Thu, 7 Feb 2019 12:26:55 GMT +2019-02-07 17:56:56.997 [main] INFO - Host: apitest.cybersource.com +2019-02-07 17:56:56.998 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="25oAHV7eJxQNieP/9o21ILEK24fbNrEdnqdQ6FIV+RI=" +2019-02-07 17:56:56.998 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 17:56:57.228 [main] INFO - Request Body: null +2019-02-07 17:56:57.228 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111} +2019-02-07 17:56:57.229 [main] INFO - Response Code: 404 +2019-02-07 17:56:57.229 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_ec8d28b2-0f0c-4a31-8744-434bd2d5029f +uniqueTransactionID: fe4a1eb3-f5fb-4bd7-b409-2a71a3f1774f +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 12:26:57 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: ecaab7e4-2b9d-4b26-85be-bcfc08158f13 +OkHttp-Sent-Millis: 1549542417002 +OkHttp-Received-Millis: 1549542417227 + +2019-02-07 17:56:57.229 [main] INFO - ********* END *********: +2019-02-07 18:04:35.566 [main] INFO - ********* START ********* +2019-02-07 18:04:35.580 [main] INFO - Authentication Type : http_signature +2019-02-07 18:04:35.581 [main] INFO - Request Type: GET +2019-02-07 18:04:35.582 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-07 18:04:35.583 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:04:35.625 [main] INFO - Date: Thu, 7 Feb 2019 12:34:35 GMT +2019-02-07 18:04:35.626 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:04:35.626 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="k5lJKQEpKoqdRniykRLApmv23eyylI8RlouVZJx+ZbA=" +2019-02-07 18:04:35.626 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:04:37.287 [main] INFO - Request Body: null +2019-02-07 18:04:37.288 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:04:37.289 [main] INFO - Response Code: 200 +2019-02-07 18:04:37.290 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_d0457e9a-3120-4941-a130-2d1620b84ee4 +uniqueTransactionID: 25631f9c-40e8-4751-bd7d-8a99accb8c39 +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Thu, 07 Feb 2019 12:34:37 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 77761cc1-98b5-4d74-b907-9aaf3051466f +OkHttp-Sent-Millis: 1549542876762 +OkHttp-Received-Millis: 1549542877142 + +2019-02-07 18:04:37.291 [main] INFO - ********* END *********: +2019-02-07 18:04:37.384 [main] INFO - ********* START ********* +2019-02-07 18:04:37.384 [main] INFO - Authentication Type : http_signature +2019-02-07 18:04:37.385 [main] INFO - Request Type: GET +2019-02-07 18:04:37.386 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-07 18:04:37.387 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:04:37.387 [main] INFO - Date: Thu, 7 Feb 2019 12:34:35 GMT +2019-02-07 18:04:37.388 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:04:37.388 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="yG5bWfY/uXM8Vnh2zBmX4BJGJpyh7iE6iwcQu1q/KpA=" +2019-02-07 18:04:37.388 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:04:37.750 [main] INFO - Request Body: null +2019-02-07 18:04:37.750 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:04:37.751 [main] INFO - Response Code: 404 +2019-02-07 18:04:37.751 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_fe24b3d1-88d8-4cf5-a227-3710b670b279 +uniqueTransactionID: 9c99871a-95f5-4c84-9530-0651071f3c0b +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 12:34:37 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 4723937f-0d6c-4cbf-8163-bc4b7d64f849 +OkHttp-Sent-Millis: 1549542877394 +OkHttp-Received-Millis: 1549542877749 + +2019-02-07 18:04:37.751 [main] INFO - ********* END *********: +2019-02-07 18:05:00.041 [main] INFO - ********* START ********* +2019-02-07 18:05:00.056 [main] INFO - Authentication Type : http_signature +2019-02-07 18:05:00.057 [main] INFO - Request Type: GET +2019-02-07 18:05:00.058 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-07 18:05:00.058 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:05:00.104 [main] INFO - Date: Thu, 7 Feb 2019 12:34:59 GMT +2019-02-07 18:05:00.105 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:05:00.105 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="O3wkOfgeh+30jtEafJm3adKFs+2ciC4B/4qOZyTcMHg=" +2019-02-07 18:05:00.105 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:05:01.527 [main] INFO - Request Body: null +2019-02-07 18:05:01.529 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:05:01.529 [main] INFO - Response Code: 200 +2019-02-07 18:05:01.529 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_4b00e1de-e51b-48b1-a7bd-7ae756e4ea76 +uniqueTransactionID: 469c699b-b158-4c68-863d-031620d5ff5e +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Thu, 07 Feb 2019 12:35:00 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 1bc0112e-839f-47bc-9f96-54deeae1e163 +OkHttp-Sent-Millis: 1549542901030 +OkHttp-Received-Millis: 1549542901373 + +2019-02-07 18:05:01.530 [main] INFO - ********* END *********: +2019-02-07 18:07:13.564 [main] INFO - ********* START ********* +2019-02-07 18:07:13.565 [main] INFO - Authentication Type : http_signature +2019-02-07 18:07:13.566 [main] INFO - Request Type: GET +2019-02-07 18:07:13.566 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-07 18:07:13.567 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:07:13.567 [main] INFO - Date: Thu, 7 Feb 2019 12:34:59 GMT +2019-02-07 18:07:13.568 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:07:13.568 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="O3wkOfgeh+30jtEafJm3adKFs+2ciC4B/4qOZyTcMHg=" +2019-02-07 18:07:13.569 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:07:13.935 [main] INFO - Request Body: null +2019-02-07 18:07:13.936 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:07:13.936 [main] INFO - Response Code: 200 +2019-02-07 18:07:13.936 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_8d941fdf-7283-4538-9c71-91dfb837a322 +uniqueTransactionID: 8f905511-5aad-4e07-875c-0516c74ae922 +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Thu, 07 Feb 2019 12:37:13 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 8ad5fe47-c12b-46bc-8d70-e6f67778ffb0 +OkHttp-Sent-Millis: 1549543033571 +OkHttp-Received-Millis: 1549543033924 + +2019-02-07 18:07:13.937 [main] INFO - ********* END *********: +2019-02-07 18:07:13.980 [main] INFO - ********* START ********* +2019-02-07 18:07:13.980 [main] INFO - Authentication Type : http_signature +2019-02-07 18:07:13.980 [main] INFO - Request Type: GET +2019-02-07 18:07:13.981 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-07 18:07:13.981 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:07:13.981 [main] INFO - Date: Thu, 7 Feb 2019 12:34:59 GMT +2019-02-07 18:07:13.982 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:07:13.983 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="jP/W0Aa7qs0hQeziD1jSKgNZTV/fN5Ihj9ngg8RwYrU=" +2019-02-07 18:07:13.984 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:07:14.192 [main] INFO - Request Body: null +2019-02-07 18:07:14.193 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:07:14.193 [main] INFO - Response Code: 404 +2019-02-07 18:07:14.193 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_6ea5b031-3664-4f42-9d64-c110f5d7a926 +uniqueTransactionID: 1ae9a035-095c-4a84-9e10-ae660da31b3d +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 12:37:14 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: a9998fba-3277-4923-9615-89ef85763797 +OkHttp-Sent-Millis: 1549543033985 +OkHttp-Received-Millis: 1549543034186 + +2019-02-07 18:07:14.194 [main] INFO - ********* END *********: +2019-02-07 18:07:49.136 [main] INFO - ********* START ********* +2019-02-07 18:07:49.149 [main] INFO - Authentication Type : http_signature +2019-02-07 18:07:49.150 [main] INFO - Request Type: GET +2019-02-07 18:07:49.151 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-07 18:07:49.151 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:07:49.193 [main] INFO - Date: Thu, 7 Feb 2019 12:37:48 GMT +2019-02-07 18:07:49.193 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:07:49.194 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="5+UudqY60cATzQ3VQiK9q6pG7J81bOrEzqizDPoJRbY=" +2019-02-07 18:07:49.194 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:07:50.568 [main] INFO - Request Body: null +2019-02-07 18:07:50.569 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:07:50.569 [main] INFO - Response Code: 200 +2019-02-07 18:07:50.569 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_6053eb6b-c770-4e98-b4cd-911d46c0bcf1 +uniqueTransactionID: 643cc754-8b27-4461-b009-74b912c49c93 +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Thu, 07 Feb 2019 12:37:50 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 3bc8e3d5-d741-4d2e-b729-0d6d15e50d98 +OkHttp-Sent-Millis: 1549543070111 +OkHttp-Received-Millis: 1549543070430 + +2019-02-07 18:07:50.570 [main] INFO - ********* END *********: +2019-02-07 18:07:50.629 [main] INFO - ********* START ********* +2019-02-07 18:07:50.629 [main] INFO - Authentication Type : http_signature +2019-02-07 18:07:50.630 [main] INFO - Request Type: GET +2019-02-07 18:07:50.630 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-07 18:07:50.631 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:07:50.631 [main] INFO - Date: Thu, 7 Feb 2019 12:37:48 GMT +2019-02-07 18:07:50.631 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:07:50.632 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="vUA3KL76/83JBLrW0d2v3qacalhPnFDi1hxyru+A7q8=" +2019-02-07 18:07:50.632 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:07:50.861 [main] INFO - Request Body: null +2019-02-07 18:07:50.861 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:07:50.862 [main] INFO - Response Code: 404 +2019-02-07 18:07:50.862 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_13c93419-ccd0-42f1-b35f-da40f44dd6b6 +uniqueTransactionID: 7c9e89c6-0cba-4815-b90b-489865a47c68 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 12:37:50 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: bd3936fd-6597-4775-bc13-67e69253d31b +OkHttp-Sent-Millis: 1549543070634 +OkHttp-Received-Millis: 1549543070860 + +2019-02-07 18:07:50.863 [main] INFO - ********* END *********: +2019-02-07 18:08:52.415 [main] INFO - ********* START ********* +2019-02-07 18:08:52.431 [main] INFO - Authentication Type : http_signature +2019-02-07 18:08:52.432 [main] INFO - Request Type: GET +2019-02-07 18:08:52.432 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-07 18:08:52.433 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:08:52.473 [main] INFO - Date: Thu, 7 Feb 2019 12:38:52 GMT +2019-02-07 18:08:52.474 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:08:52.474 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="9Pz2+YTPAf23Hvg4rSA17zup8YnmL4JysqnZNFLdmzY=" +2019-02-07 18:08:52.474 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:08:54.103 [main] INFO - Request Body: null +2019-02-07 18:08:54.103 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:08:54.104 [main] INFO - Response Code: 200 +2019-02-07 18:08:54.104 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_84299bf0-1f25-4672-a27e-fe6cbc13ffad +uniqueTransactionID: 01dc3ea0-96eb-49dc-b52f-17ae0c6c32df +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Thu, 07 Feb 2019 12:38:53 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 8c4550fb-585c-460e-805b-ccc3cb161316 +OkHttp-Sent-Millis: 1549543133406 +OkHttp-Received-Millis: 1549543133961 + +2019-02-07 18:08:54.105 [main] INFO - ********* END *********: +2019-02-07 18:08:54.167 [main] INFO - ********* START ********* +2019-02-07 18:08:54.168 [main] INFO - Authentication Type : http_signature +2019-02-07 18:08:54.168 [main] INFO - Request Type: GET +2019-02-07 18:08:54.169 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-07 18:08:54.169 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:08:54.170 [main] INFO - Date: Thu, 7 Feb 2019 12:38:52 GMT +2019-02-07 18:08:54.170 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:08:54.170 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="1+NT5BLtCWeso/153t+4bdKvqQB3vSAIyrQGhXIpe4g=" +2019-02-07 18:08:54.171 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:08:54.394 [main] INFO - Request Body: null +2019-02-07 18:08:54.395 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:08:54.395 [main] INFO - Response Code: 404 +2019-02-07 18:08:54.395 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_a7c8543e-1e53-4318-956c-5e1fd2e7416e +uniqueTransactionID: d6d5b321-326c-4354-b977-e6800dd28ac3 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 12:38:54 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 1f37052f-7f0b-412d-a7f0-5c655d1c4180 +OkHttp-Sent-Millis: 1549543134173 +OkHttp-Received-Millis: 1549543134393 + +2019-02-07 18:08:54.396 [main] INFO - ********* END *********: +2019-02-07 18:09:12.746 [main] INFO - ********* START ********* +2019-02-07 18:09:12.760 [main] INFO - Authentication Type : http_signature +2019-02-07 18:09:12.760 [main] INFO - Request Type: GET +2019-02-07 18:09:12.761 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-07 18:09:12.761 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:09:12.762 [main] INFO - Date: Thu, 7 Feb 2019 12:39:12 GMT +2019-02-07 18:09:12.762 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:09:12.762 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="6IVBNo9R9njBPbt2wAq3HB6jIa9EO+tUSAZeZxF1/Go=" +2019-02-07 18:09:12.763 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:09:14.088 [main] INFO - Request Body: null +2019-02-07 18:09:14.089 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:09:14.090 [main] INFO - Response Code: 200 +2019-02-07 18:09:14.091 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_148662b1-ad23-4f82-a80f-0b5f5c127721 +uniqueTransactionID: 8fec7822-ef0f-4936-9a54-56d44f4ab881 +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Thu, 07 Feb 2019 12:39:13 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: a68dc0c6-587e-4176-9736-5fbeff7f34f4 +OkHttp-Sent-Millis: 1549543153628 +OkHttp-Received-Millis: 1549543153960 + +2019-02-07 18:09:14.092 [main] INFO - ********* END *********: +2019-02-07 18:09:14.166 [main] INFO - ********* START ********* +2019-02-07 18:09:14.167 [main] INFO - Authentication Type : http_signature +2019-02-07 18:09:14.168 [main] INFO - Request Type: GET +2019-02-07 18:09:14.168 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-07 18:09:14.169 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:09:14.169 [main] INFO - Date: Thu, 7 Feb 2019 12:39:12 GMT +2019-02-07 18:09:14.170 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:09:14.170 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="n0+QMm0Qns4GffQGFkHwMFb+3RwhWQJpsEnT6LuTc18=" +2019-02-07 18:09:14.171 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:09:14.366 [main] INFO - Request Body: null +2019-02-07 18:09:14.367 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:09:14.368 [main] INFO - Response Code: 404 +2019-02-07 18:09:14.368 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_6f7540be-d1f1-4c4d-820d-3bdddf0ef9ba +uniqueTransactionID: 07c8cbcf-6855-4c0b-88c8-6e2b1e6ac769 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 12:39:14 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 31a2d8f3-69ed-4196-9a3a-b8ad6d59ed68 +OkHttp-Sent-Millis: 1549543154174 +OkHttp-Received-Millis: 1549543154366 + +2019-02-07 18:09:14.368 [main] INFO - ********* END *********: +2019-02-07 18:10:58.819 [main] INFO - ********* START ********* +2019-02-07 18:10:58.832 [main] INFO - Authentication Type : http_signature +2019-02-07 18:10:58.832 [main] INFO - Request Type: GET +2019-02-07 18:10:58.833 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-07 18:10:58.833 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:10:58.834 [main] INFO - Date: Thu, 7 Feb 2019 12:40:58 GMT +2019-02-07 18:10:58.834 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:10:58.834 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="hhesOVkU3SYmslax6cKVY1GFt7reyFGaSGwWBo5k3Hw=" +2019-02-07 18:10:58.834 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:11:00.195 [main] INFO - Request Body: null +2019-02-07 18:11:00.196 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:11:00.196 [main] INFO - Response Code: 200 +2019-02-07 18:11:00.197 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_6549813f-b672-4d30-a0d8-266ae226fd87 +uniqueTransactionID: 547bf949-c873-45b3-8f1b-87ef947076c7 +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Thu, 07 Feb 2019 12:41:00 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 3112212b-3a1a-4f41-89e3-a5dced26cd6d +OkHttp-Sent-Millis: 1549543259737 +OkHttp-Received-Millis: 1549543260062 + +2019-02-07 18:11:00.197 [main] INFO - ********* END *********: +2019-02-07 18:11:00.282 [main] INFO - ********* START ********* +2019-02-07 18:11:00.282 [main] INFO - Authentication Type : http_signature +2019-02-07 18:11:00.283 [main] INFO - Request Type: GET +2019-02-07 18:11:00.284 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-07 18:11:00.284 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:11:00.285 [main] INFO - Date: Thu, 7 Feb 2019 12:40:58 GMT +2019-02-07 18:11:00.285 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:11:00.286 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="cqzr1kx0moN9XPX1lUYN6oeHZjzto07P2F+ZQEAensA=" +2019-02-07 18:11:00.287 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:11:00.513 [main] INFO - Request Body: null +2019-02-07 18:11:00.514 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:11:00.514 [main] INFO - Response Code: 404 +2019-02-07 18:11:00.515 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_b4600d7f-b78b-49a7-9a4b-d564ff42fd10 +uniqueTransactionID: 3edd32c9-41ab-4de3-9049-533b4aa11c3b +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 12:41:00 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 54f8b69f-807c-4bac-92e3-235f9bc60cc6 +OkHttp-Sent-Millis: 1549543260290 +OkHttp-Received-Millis: 1549543260513 + +2019-02-07 18:11:00.515 [main] INFO - ********* END *********: +2019-02-07 18:14:00.559 [main] INFO - ********* START ********* +2019-02-07 18:14:00.572 [main] INFO - Authentication Type : http_signature +2019-02-07 18:14:00.572 [main] INFO - Request Type: GET +2019-02-07 18:14:00.573 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-07 18:14:00.574 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:14:00.612 [main] INFO - Date: Thu, 7 Feb 2019 12:44:00 GMT +2019-02-07 18:14:00.613 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:14:00.614 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="iDmrlY4dUXf0VmqMDHnrsUjI47zEVyDrG05zfN4Uz7M=" +2019-02-07 18:14:00.614 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:14:01.967 [main] INFO - Request Body: null +2019-02-07 18:14:01.968 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:14:01.968 [main] INFO - Response Code: 200 +2019-02-07 18:14:01.968 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_2d97a40f-0979-47c7-8d5a-d1f43570b5b8 +uniqueTransactionID: 030a486a-acf1-4d99-8158-35af6dae46de +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Thu, 07 Feb 2019 12:44:01 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 7a8691c1-5e18-4e08-9733-916af39249cf +OkHttp-Sent-Millis: 1549543441504 +OkHttp-Received-Millis: 1549543441837 + +2019-02-07 18:14:01.969 [main] INFO - ********* END *********: +2019-02-07 18:14:02.031 [main] INFO - ********* START ********* +2019-02-07 18:14:02.031 [main] INFO - Authentication Type : http_signature +2019-02-07 18:14:02.032 [main] INFO - Request Type: GET +2019-02-07 18:14:02.033 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-07 18:14:02.033 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:14:02.034 [main] INFO - Date: Thu, 7 Feb 2019 12:44:00 GMT +2019-02-07 18:14:02.034 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:14:02.035 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="vCrmtenXb3fEWTu/4v0ph10hOt0X/t0BW52oBgHajYM=" +2019-02-07 18:14:02.035 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:14:02.260 [main] INFO - Request Body: null +2019-02-07 18:14:02.261 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:14:02.261 [main] INFO - Response Code: 404 +2019-02-07 18:14:02.261 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_f2200ab6-1abd-472c-97c8-64c4876f5796 +uniqueTransactionID: 24b84d34-c826-4f1a-a171-35156821b982 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 12:44:02 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 1b38412d-1ebd-4562-968d-1b5fc3f17e97 +OkHttp-Sent-Millis: 1549543442037 +OkHttp-Received-Millis: 1549543442259 + +2019-02-07 18:14:02.262 [main] INFO - ********* END *********: +2019-02-07 18:14:25.423 [main] INFO - ********* START ********* +2019-02-07 18:14:25.441 [main] INFO - Authentication Type : http_signature +2019-02-07 18:14:25.442 [main] INFO - Request Type: GET +2019-02-07 18:14:25.442 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-07 18:14:25.443 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:14:25.487 [main] INFO - Date: Thu, 7 Feb 2019 12:44:24 GMT +2019-02-07 18:14:25.488 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:14:25.488 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="dVL6Y4rXERMMCgOaSbNUOzRlgsFI/3+9OtmgCsh3sbc=" +2019-02-07 18:14:25.489 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:14:27.031 [main] INFO - Request Body: null +2019-02-07 18:14:27.032 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:14:27.033 [main] INFO - Response Code: 200 +2019-02-07 18:14:27.033 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_6d57d5e2-cbfe-40a1-a115-09da6c89e903 +uniqueTransactionID: 21700587-b908-4926-92d2-02fce8489894 +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Thu, 07 Feb 2019 12:44:26 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 85bd1ea8-ca42-4ef3-be9e-2c266e4565e6 +OkHttp-Sent-Millis: 1549543466523 +OkHttp-Received-Millis: 1549543466888 + +2019-02-07 18:14:27.034 [main] INFO - ********* END *********: +2019-02-07 18:15:11.996 [main] INFO - ********* START ********* +2019-02-07 18:15:11.996 [main] INFO - Authentication Type : http_signature +2019-02-07 18:15:11.997 [main] INFO - Request Type: GET +2019-02-07 18:15:11.997 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-07 18:15:11.999 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:15:11.999 [main] INFO - Date: Thu, 7 Feb 2019 12:44:24 GMT +2019-02-07 18:15:11.999 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:15:11.999 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="dVL6Y4rXERMMCgOaSbNUOzRlgsFI/3+9OtmgCsh3sbc=" +2019-02-07 18:15:11.999 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:15:12.324 [main] INFO - Request Body: null +2019-02-07 18:15:12.324 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:15:12.325 [main] INFO - Response Code: 200 +2019-02-07 18:15:12.325 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_35e87aa8-97e9-4728-ac63-158443488c8e +uniqueTransactionID: 4a711866-9a21-4168-babe-3480a164d84c +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Thu, 07 Feb 2019 12:45:12 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 0dcfc529-9601-4b4c-bed3-3bdfa0bb618c +OkHttp-Sent-Millis: 1549543512003 +OkHttp-Received-Millis: 1549543512318 + +2019-02-07 18:15:12.326 [main] INFO - ********* END *********: +2019-02-07 18:15:12.359 [main] INFO - ********* START ********* +2019-02-07 18:15:12.359 [main] INFO - Authentication Type : http_signature +2019-02-07 18:15:12.360 [main] INFO - Request Type: GET +2019-02-07 18:15:12.361 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-07 18:15:12.362 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:15:12.362 [main] INFO - Date: Thu, 7 Feb 2019 12:44:24 GMT +2019-02-07 18:15:12.362 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:15:12.363 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="rIzcn57DqxlvrqIz9LDOHeUjVcDpFXPji2zRb0HpGaA=" +2019-02-07 18:15:12.363 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:15:12.598 [main] INFO - Request Body: null +2019-02-07 18:15:12.599 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:15:12.599 [main] INFO - Response Code: 404 +2019-02-07 18:15:12.600 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_3a3f5515-b872-48f6-9857-7417b3a5d667 +uniqueTransactionID: 2ab0b3ab-746f-49e1-9c52-c5834c74b7f8 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 12:45:12 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 2b577e71-9a2f-4728-a192-5c4b54d47398 +OkHttp-Sent-Millis: 1549543512364 +OkHttp-Received-Millis: 1549543512597 + +2019-02-07 18:15:12.600 [main] INFO - ********* END *********: +2019-02-07 18:15:35.213 [main] INFO - ********* START ********* +2019-02-07 18:15:35.227 [main] INFO - Authentication Type : http_signature +2019-02-07 18:15:35.228 [main] INFO - Request Type: GET +2019-02-07 18:15:35.228 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-07 18:15:35.229 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:15:35.268 [main] INFO - Date: Thu, 7 Feb 2019 12:45:34 GMT +2019-02-07 18:15:35.268 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:15:35.269 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="9JGulQCvy0uxHBVJukcWBDOfaDlbBrlb+AP0soM0uao=" +2019-02-07 18:15:35.269 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:15:36.568 [main] INFO - Request Body: null +2019-02-07 18:15:36.569 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:15:36.569 [main] INFO - Response Code: 200 +2019-02-07 18:15:36.569 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_1fb081af-4b1d-4e7f-8877-7f5d9afded4a +uniqueTransactionID: 448417be-363e-4e59-8f85-182978fdf694 +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Thu, 07 Feb 2019 12:45:36 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 330ac013-aaaa-45a5-a0c8-9e6d4e9ed781 +OkHttp-Sent-Millis: 1549543536113 +OkHttp-Received-Millis: 1549543536439 + +2019-02-07 18:15:36.570 [main] INFO - ********* END *********: +2019-02-07 18:15:36.637 [main] INFO - ********* START ********* +2019-02-07 18:15:36.638 [main] INFO - Authentication Type : http_signature +2019-02-07 18:15:36.638 [main] INFO - Request Type: GET +2019-02-07 18:15:36.639 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-07 18:15:36.639 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:15:36.639 [main] INFO - Date: Thu, 7 Feb 2019 12:45:34 GMT +2019-02-07 18:15:36.640 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:15:36.640 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="VWeHwMdzt5TyMynEl1qmBMb6r+KJuSBEfAOB7e8nLRs=" +2019-02-07 18:15:36.641 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:15:36.833 [main] INFO - Request Body: null +2019-02-07 18:15:36.834 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:15:36.834 [main] INFO - Response Code: 404 +2019-02-07 18:15:36.834 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_a744c224-dd0b-4c2d-8c5e-9a941cbf5de7 +uniqueTransactionID: 2943e0fd-44f8-44f4-9d80-5b1179f1192f +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 12:45:36 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 914003a7-02fc-42b6-b10b-ac357b0fecc9 +OkHttp-Sent-Millis: 1549543536644 +OkHttp-Received-Millis: 1549543536832 + +2019-02-07 18:15:36.835 [main] INFO - ********* END *********: +2019-02-07 18:16:00.047 [main] INFO - ********* START ********* +2019-02-07 18:16:00.060 [main] INFO - Authentication Type : http_signature +2019-02-07 18:16:00.061 [main] INFO - Request Type: GET +2019-02-07 18:16:00.061 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-07 18:16:00.062 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:16:00.100 [main] INFO - Date: Thu, 7 Feb 2019 12:45:59 GMT +2019-02-07 18:16:00.100 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:16:00.101 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ykyfZy8FW0RRg/NHovCkhL/0z85WQDn98Ine/D7LtF8=" +2019-02-07 18:16:00.101 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:16:01.544 [main] INFO - Request Body: null +2019-02-07 18:16:01.545 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:16:01.545 [main] INFO - Response Code: 200 +2019-02-07 18:16:01.545 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_08448b8e-c700-44d7-84a8-e34909631fe5 +uniqueTransactionID: 20ea9ff3-8fb6-424f-b88d-83609032a76b +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Thu, 07 Feb 2019 12:46:00 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 8e68eb72-f44b-44e4-9c91-4c42d817ce39 +OkHttp-Sent-Millis: 1549543561068 +OkHttp-Received-Millis: 1549543561398 + +2019-02-07 18:16:01.548 [main] INFO - ********* END *********: +2019-02-07 18:16:17.513 [main] INFO - ********* START ********* +2019-02-07 18:16:17.514 [main] INFO - Authentication Type : http_signature +2019-02-07 18:16:17.515 [main] INFO - Request Type: GET +2019-02-07 18:16:17.515 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-07 18:16:17.517 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:16:17.517 [main] INFO - Date: Thu, 7 Feb 2019 12:45:59 GMT +2019-02-07 18:16:17.518 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:16:17.519 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Y/D7Thc2B729dYUH2VLPOfI+09ROmt3LzekvhJjItEs=" +2019-02-07 18:16:17.520 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:16:17.735 [main] INFO - Request Body: null +2019-02-07 18:16:17.736 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:16:17.736 [main] INFO - Response Code: 404 +2019-02-07 18:16:17.737 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_f9b8029d-f78a-40d5-be2e-ce28c1c4cdc2 +uniqueTransactionID: bcda4e96-e906-48f9-b900-1d32f3d6f958 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 12:46:17 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 6e8e705d-8dc6-40be-b734-005fc3c20ff0 +OkHttp-Sent-Millis: 1549543577524 +OkHttp-Received-Millis: 1549543577733 + +2019-02-07 18:16:17.739 [main] INFO - ********* END *********: +2019-02-07 18:16:43.035 [main] INFO - ********* START ********* +2019-02-07 18:16:43.048 [main] INFO - Authentication Type : http_signature +2019-02-07 18:16:43.048 [main] INFO - Request Type: GET +2019-02-07 18:16:43.049 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-07 18:16:43.050 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:16:43.086 [main] INFO - Date: Thu, 7 Feb 2019 12:46:42 GMT +2019-02-07 18:16:43.086 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:16:43.086 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="U8BI6reQoR2wRSgYUnwKNo5Y3A51Py7GUI2TyOvAOiY=" +2019-02-07 18:16:43.086 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:16:45.898 [main] INFO - Request Body: null +2019-02-07 18:16:45.899 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:16:45.899 [main] INFO - Response Code: 200 +2019-02-07 18:16:45.900 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_dba94047-aec8-49b2-9ac3-2ef4ba7fecc8 +uniqueTransactionID: 8dc26b94-2c5c-4e77-8821-99392ba96fa9 +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Thu, 07 Feb 2019 12:46:44 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: ff274471-92be-4c0b-9ef8-e39273966082 +OkHttp-Sent-Millis: 1549543603947 +OkHttp-Received-Millis: 1549543605655 + +2019-02-07 18:16:45.900 [main] INFO - ********* END *********: +2019-02-07 18:16:45.971 [main] INFO - ********* START ********* +2019-02-07 18:16:45.972 [main] INFO - Authentication Type : http_signature +2019-02-07 18:16:45.973 [main] INFO - Request Type: GET +2019-02-07 18:16:45.973 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-07 18:16:45.973 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:16:45.974 [main] INFO - Date: Thu, 7 Feb 2019 12:46:42 GMT +2019-02-07 18:16:45.974 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:16:45.974 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="kswO/MfuL08aKYUxO9X/4jmtMqbIYneYB1aBc35/tlU=" +2019-02-07 18:16:45.975 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:16:46.169 [main] INFO - Request Body: null +2019-02-07 18:16:46.169 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:16:46.169 [main] INFO - Response Code: 404 +2019-02-07 18:16:46.169 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_c8ec0dec-9a70-451b-ab09-87614058312f +uniqueTransactionID: 557a8f0c-1c27-4fa5-9fc2-45ee5776c7ea +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 12:46:46 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: f2b4cf81-3baf-4895-bfb9-6eb287107e2e +OkHttp-Sent-Millis: 1549543605979 +OkHttp-Received-Millis: 1549543606168 + +2019-02-07 18:16:46.172 [main] INFO - ********* END *********: +2019-02-07 18:17:11.696 [main] INFO - ********* START ********* +2019-02-07 18:17:11.710 [main] INFO - Authentication Type : http_signature +2019-02-07 18:17:11.710 [main] INFO - Request Type: GET +2019-02-07 18:17:11.711 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-07 18:17:11.711 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:17:11.750 [main] INFO - Date: Thu, 7 Feb 2019 12:47:11 GMT +2019-02-07 18:17:11.751 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:17:11.751 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="98+v8pzs5Bbw18NJt+E6jjVgFwdUGGfMTAcpcqH7q4k=" +2019-02-07 18:17:11.751 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:17:13.134 [main] INFO - Request Body: null +2019-02-07 18:17:13.135 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:17:13.136 [main] INFO - Response Code: 200 +2019-02-07 18:17:13.136 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_24ba9475-f0e6-4486-b9b2-2c580e505807 +uniqueTransactionID: c279a7dc-489c-41eb-8e4d-e08d697474b4 +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Thu, 07 Feb 2019 12:47:11 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: b32d2a31-c130-4c85-87f1-76c7952c25f0 +OkHttp-Sent-Millis: 1549543632664 +OkHttp-Received-Millis: 1549543632983 + +2019-02-07 18:17:13.137 [main] INFO - ********* END *********: +2019-02-07 18:17:53.028 [main] INFO - ********* START ********* +2019-02-07 18:17:53.029 [main] INFO - Authentication Type : http_signature +2019-02-07 18:17:53.029 [main] INFO - Request Type: GET +2019-02-07 18:17:53.030 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-07 18:17:53.030 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:17:53.030 [main] INFO - Date: Thu, 7 Feb 2019 12:47:11 GMT +2019-02-07 18:17:53.031 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:17:53.031 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="wU0D6dlp0iBMruze5a2dxzFjUUoqHfy4gQLQoIQlIqc=" +2019-02-07 18:17:53.031 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:17:53.236 [main] INFO - Request Body: null +2019-02-07 18:17:53.237 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:17:53.238 [main] INFO - Response Code: 404 +2019-02-07 18:17:53.238 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_15dca241-8174-48ea-b249-8364986a1491 +uniqueTransactionID: addeed0f-7cba-4e9f-9ec5-39ed694a1db6 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 12:47:53 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: c13f541a-9d91-458e-928b-a1d31dc224d9 +OkHttp-Sent-Millis: 1549543673034 +OkHttp-Received-Millis: 1549543673235 + +2019-02-07 18:17:53.239 [main] INFO - ********* END *********: +2019-02-07 18:19:47.120 [main] INFO - ********* START ********* +2019-02-07 18:19:47.134 [main] INFO - Authentication Type : http_signature +2019-02-07 18:19:47.135 [main] INFO - Request Type: GET +2019-02-07 18:19:47.136 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-07 18:19:47.136 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:19:47.136 [main] INFO - Date: Thu, 7 Feb 2019 12:49:46 GMT +2019-02-07 18:19:47.137 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:19:47.137 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ET/XmrY6rOOWUyg7xLQSTPm2v4v5Mo1In4tYFkLlWJA=" +2019-02-07 18:19:47.137 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:19:48.574 [main] INFO - Request Body: null +2019-02-07 18:19:48.574 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:19:48.574 [main] INFO - Response Code: 200 +2019-02-07 18:19:48.575 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_a67fbbc6-1963-4a3e-9cd1-f1667c7c7b53 +uniqueTransactionID: 68d2b230-5e72-4597-9095-e74dcf22e63d +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Thu, 07 Feb 2019 12:49:48 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: a688d55c-6dc1-486a-bf2c-126da3691703 +OkHttp-Sent-Millis: 1549543788086 +OkHttp-Received-Millis: 1549543788449 + +2019-02-07 18:19:48.575 [main] INFO - ********* END *********: +2019-02-07 18:19:59.331 [main] INFO - ********* START ********* +2019-02-07 18:19:59.331 [main] INFO - Authentication Type : http_signature +2019-02-07 18:19:59.333 [main] INFO - Request Type: GET +2019-02-07 18:19:59.333 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-07 18:19:59.334 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:19:59.335 [main] INFO - Date: Thu, 7 Feb 2019 12:49:46 GMT +2019-02-07 18:19:59.335 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:19:59.335 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ET/XmrY6rOOWUyg7xLQSTPm2v4v5Mo1In4tYFkLlWJA=" +2019-02-07 18:19:59.336 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:19:59.701 [main] INFO - Request Body: null +2019-02-07 18:19:59.702 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:19:59.702 [main] INFO - Response Code: 200 +2019-02-07 18:19:59.705 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_76623592-cb83-4943-a12f-7c1a6a34e647 +uniqueTransactionID: 3be34956-3989-425d-9152-789bacc1df3b +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Thu, 07 Feb 2019 12:49:59 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 0c653fbd-3f27-4e59-b0c0-6484078a675f +OkHttp-Sent-Millis: 1549543799339 +OkHttp-Received-Millis: 1549543799667 + +2019-02-07 18:19:59.706 [main] INFO - ********* END *********: +2019-02-07 18:19:59.747 [main] INFO - ********* START ********* +2019-02-07 18:19:59.749 [main] INFO - Authentication Type : http_signature +2019-02-07 18:19:59.749 [main] INFO - Request Type: GET +2019-02-07 18:19:59.749 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-07 18:19:59.750 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:19:59.750 [main] INFO - Date: Thu, 7 Feb 2019 12:49:46 GMT +2019-02-07 18:19:59.750 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:19:59.751 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="vs40ysc45SC73PJjO/LtwsEuwBAUfW+jiolD6fEvLp8=" +2019-02-07 18:19:59.751 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:19:59.952 [main] INFO - Request Body: null +2019-02-07 18:19:59.953 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:19:59.954 [main] INFO - Response Code: 404 +2019-02-07 18:19:59.954 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_8d37ee7f-8ed0-4867-960f-0d134c539e41 +uniqueTransactionID: ec2168f0-d65b-4c22-a9bb-3e5e53932961 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 12:49:59 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 7edd1ce7-fc33-4ffa-83ee-62978d92fa4a +OkHttp-Sent-Millis: 1549543799751 +OkHttp-Received-Millis: 1549543799951 + +2019-02-07 18:19:59.956 [main] INFO - ********* END *********: +2019-02-07 18:20:14.819 [main] INFO - ********* START ********* +2019-02-07 18:20:14.833 [main] INFO - Authentication Type : http_signature +2019-02-07 18:20:14.834 [main] INFO - Request Type: GET +2019-02-07 18:20:14.834 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-07 18:20:14.835 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:20:14.879 [main] INFO - Date: Thu, 7 Feb 2019 12:50:14 GMT +2019-02-07 18:20:14.879 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:20:14.880 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="gDTxc2mW9lHWBh6v/MWfBj7tbv+GgkStzaCJfG/OCgQ=" +2019-02-07 18:20:14.880 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:20:16.211 [main] INFO - Request Body: null +2019-02-07 18:20:16.212 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:20:16.212 [main] INFO - Response Code: 200 +2019-02-07 18:20:16.212 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_d1b58948-f6b1-41ed-abb9-811fd38da2d6 +uniqueTransactionID: a88dbae2-08bd-4697-b9dd-d8dec110a2ed +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 132 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Thu, 07 Feb 2019 12:50:16 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: c2716caf-1111-4dda-a408-f9a626c4a9da +OkHttp-Sent-Millis: 1549543815766 +OkHttp-Received-Millis: 1549543816078 + +2019-02-07 18:20:16.213 [main] INFO - ********* END *********: +2019-02-07 18:20:16.279 [main] INFO - ********* START ********* +2019-02-07 18:20:16.280 [main] INFO - Authentication Type : http_signature +2019-02-07 18:20:16.280 [main] INFO - Request Type: GET +2019-02-07 18:20:16.280 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-07 18:20:16.281 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:20:16.281 [main] INFO - Date: Thu, 7 Feb 2019 12:50:14 GMT +2019-02-07 18:20:16.281 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:20:16.282 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="BTXXFD1pA3ZmuTPe2jT/lCN8/+CQ1nf101c3at7e0TE=" +2019-02-07 18:20:16.282 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:20:16.492 [main] INFO - Request Body: null +2019-02-07 18:20:16.493 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-07 18:20:16.493 [main] INFO - Response Code: 404 +2019-02-07 18:20:16.494 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_75639e4f-effb-486c-bc85-d756b5c201b6 +uniqueTransactionID: 1565bb0e-9eda-408b-8e81-4c94726f0e50 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 12:50:16 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 48d54690-29f3-45aa-b922-5779a2e87105 +OkHttp-Sent-Millis: 1549543816284 +OkHttp-Received-Millis: 1549543816490 + +2019-02-07 18:20:16.494 [main] INFO - ********* END *********: +2019-02-07 18:27:42.818 [main] INFO - ********* START ********* +2019-02-07 18:27:42.830 [main] INFO - Authentication Type : http_signature +2019-02-07 18:27:42.831 [main] INFO - Request Type: POST +2019-02-07 18:27:42.831 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-07 18:27:42.832 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-07 18:27:42.873 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:27:42.874 [main] INFO - Date: Thu, 7 Feb 2019 12:57:42 GMT +2019-02-07 18:27:42.874 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:27:42.875 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="JWJ/guEhaX/xQCNSBUFRqwZy3lqXYG8UYv34LMBhOIk=" +2019-02-07 18:27:42.875 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:27:44.179 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-07 18:27:44.180 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments} +2019-02-07 18:27:44.180 [main] INFO - Response Code: 201 +2019-02-07 18:27:44.180 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_3ed9f12b-6978-47cd-8afc-e57f4aa42276 +uniqueTransactionID: a56abea5-ae65-4a0c-91b9-e1c188bf29b4 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/paymentinstruments/814E636D20AB6C64E05340588D0A1F61 +ETag: "80+L5jHgcwtI79IPGALKtgXl85uW8qf09rF6oeuuHkA=" +instrumentidentifier-created: false +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1001 +Date: Thu, 07 Feb 2019 12:57:44 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: c7c706ed-460c-421b-8842-bea6ad51031e +OkHttp-Sent-Millis: 1549544263800 +OkHttp-Received-Millis: 1549544264160 + +2019-02-07 18:27:44.181 [main] INFO - ********* END *********: +2019-02-07 18:27:44.222 [main] INFO - ********* START ********* +2019-02-07 18:27:44.222 [main] INFO - Authentication Type : http_signature +2019-02-07 18:27:44.223 [main] INFO - Request Type: POST +2019-02-07 18:27:44.223 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-07 18:27:44.223 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-07 18:27:44.224 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:27:44.224 [main] INFO - Date: Thu, 7 Feb 2019 12:57:42 GMT +2019-02-07 18:27:44.224 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:27:44.224 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="JWJ/guEhaX/xQCNSBUFRqwZy3lqXYG8UYv34LMBhOIk=" +2019-02-07 18:27:44.225 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:27:44.469 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-07 18:27:44.469 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments} +2019-02-07 18:27:44.470 [main] INFO - Response Code: 400 +2019-02-07 18:27:44.470 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_dda85a03-acdb-4a08-bdfc-988bf627a04b +uniqueTransactionID: 0bc4e382-d3b4-4ee7-b416-614835398ae4 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Thu, 07 Feb 2019 12:57:44 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 842af8ee-04ba-49c6-90a0-49c8e43ba8d1 +OkHttp-Sent-Millis: 1549544264229 +OkHttp-Received-Millis: 1549544264468 + +2019-02-07 18:27:44.471 [main] INFO - ********* END *********: +2019-02-07 18:29:08.812 [main] INFO - ********* START ********* +2019-02-07 18:29:08.825 [main] INFO - Authentication Type : http_signature +2019-02-07 18:29:08.825 [main] INFO - Request Type: POST +2019-02-07 18:29:08.826 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-07 18:29:08.827 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-07 18:29:08.871 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:29:08.873 [main] INFO - Date: Thu, 7 Feb 2019 12:59:08 GMT +2019-02-07 18:29:08.873 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:29:08.873 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="L3JhZjuQT2PuKgAaOE1/ZFK5iZEPQPljPSsM4r1Lkpw=" +2019-02-07 18:29:08.873 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:29:10.160 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-07 18:29:10.161 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments} +2019-02-07 18:29:10.161 [main] INFO - Response Code: 201 +2019-02-07 18:29:10.162 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_626563e9-4d7c-424e-84d1-b3ef0affb3e5 +uniqueTransactionID: 5f9c7690-264e-4ac5-9bf0-72d217040808 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/paymentinstruments/814E636D20AE6C64E05340588D0A1F61 +ETag: "Daieu5nnjAdiQEJyMzl4+12QeGra+4IdEl3CwQyKV1s=" +instrumentidentifier-created: false +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1001 +Date: Thu, 07 Feb 2019 12:59:10 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 34713e25-1e32-400c-be05-d3b631b923d1 +OkHttp-Sent-Millis: 1549544349830 +OkHttp-Received-Millis: 1549544350140 + +2019-02-07 18:29:10.162 [main] INFO - ********* END *********: +2019-02-07 18:29:10.199 [main] INFO - ********* START ********* +2019-02-07 18:29:10.199 [main] INFO - Authentication Type : http_signature +2019-02-07 18:29:10.199 [main] INFO - Request Type: POST +2019-02-07 18:29:10.199 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-07 18:29:10.199 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-07 18:29:10.202 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:29:10.202 [main] INFO - Date: Thu, 7 Feb 2019 12:59:08 GMT +2019-02-07 18:29:10.202 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:29:10.202 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="L3JhZjuQT2PuKgAaOE1/ZFK5iZEPQPljPSsM4r1Lkpw=" +2019-02-07 18:29:10.202 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:29:10.409 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-07 18:29:10.410 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments} +2019-02-07 18:29:10.411 [main] INFO - Response Code: 400 +2019-02-07 18:29:10.411 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_8655b43c-f8b1-446c-b7d2-4ee6d16abffa +uniqueTransactionID: ff241161-b737-47cc-a506-a4527857c687 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Thu, 07 Feb 2019 12:59:10 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 92892a95-2e3a-45e5-aade-4e24042dc3aa +OkHttp-Sent-Millis: 1549544350206 +OkHttp-Received-Millis: 1549544350408 + +2019-02-07 18:29:10.411 [main] INFO - ********* END *********: +2019-02-07 18:30:21.454 [main] INFO - ********* START ********* +2019-02-07 18:30:21.476 [main] INFO - Authentication Type : http_signature +2019-02-07 18:30:21.477 [main] INFO - Request Type: POST +2019-02-07 18:30:21.480 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-07 18:30:21.481 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-07 18:30:21.482 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:30:21.482 [main] INFO - Date: Thu, 7 Feb 2019 13:00:17 GMT +2019-02-07 18:30:21.483 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:30:21.484 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="k9ZGMJjOOJflJ9zHbwECqhOlPiOjFxT9DpFv7tGN9lc=" +2019-02-07 18:30:21.485 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:30:24.701 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-07 18:30:24.702 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments} +2019-02-07 18:30:24.703 [main] INFO - Response Code: 201 +2019-02-07 18:30:24.705 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_c6643ae5-6cee-4d2b-b97d-424c2ba4cf4b +uniqueTransactionID: 29659641-d72c-4153-b66b-7db4c46b4440 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/paymentinstruments/814E636D20B16C64E05340588D0A1F61 +ETag: "LWcTkylZhOxCfjGOPo/KPrJraTOXoZqE4aLW2U/Wt5Q=" +instrumentidentifier-created: false +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1001 +Date: Thu, 07 Feb 2019 13:00:24 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: a9ec0496-8ac1-4a4f-ad9a-1d4ea0e538e8 +OkHttp-Sent-Millis: 1549544424347 +OkHttp-Received-Millis: 1549544424648 + +2019-02-07 18:30:24.706 [main] INFO - ********* END *********: +2019-02-07 18:31:05.858 [main] INFO - ********* START ********* +2019-02-07 18:31:05.858 [main] INFO - Authentication Type : http_signature +2019-02-07 18:31:05.859 [main] INFO - Request Type: POST +2019-02-07 18:31:05.860 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-07 18:31:05.860 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-07 18:31:05.861 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:31:05.861 [main] INFO - Date: Thu, 7 Feb 2019 13:00:17 GMT +2019-02-07 18:31:05.862 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:31:05.862 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="k9ZGMJjOOJflJ9zHbwECqhOlPiOjFxT9DpFv7tGN9lc=" +2019-02-07 18:31:05.863 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:31:06.169 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-07 18:31:06.173 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments} +2019-02-07 18:31:06.174 [main] INFO - Response Code: 201 +2019-02-07 18:31:06.175 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_a1cd4d33-4deb-4cfe-8817-32f383860f1f +uniqueTransactionID: ed2744e3-99ba-4f1d-b4a2-65ae9f5ae801 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/paymentinstruments/814E3C16E9315D85E05340588D0ABB6C +ETag: "Xea6+BNXE/wX/92JZd/x5yVS7HCZGGZAtTL8IKuznYE=" +instrumentidentifier-created: false +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1001 +Date: Thu, 07 Feb 2019 13:01:06 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 34ba13f6-bb83-4137-9975-ab6ac19df95c +OkHttp-Sent-Millis: 1549544465866 +OkHttp-Received-Millis: 1549544466161 + +2019-02-07 18:31:06.175 [main] INFO - ********* END *********: +2019-02-07 18:31:06.231 [main] INFO - ********* START ********* +2019-02-07 18:31:06.231 [main] INFO - Authentication Type : http_signature +2019-02-07 18:31:06.232 [main] INFO - Request Type: POST +2019-02-07 18:31:06.235 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-07 18:31:06.236 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-07 18:31:06.236 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:31:06.237 [main] INFO - Date: Thu, 7 Feb 2019 13:00:17 GMT +2019-02-07 18:31:06.237 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:31:06.239 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="k9ZGMJjOOJflJ9zHbwECqhOlPiOjFxT9DpFv7tGN9lc=" +2019-02-07 18:31:06.244 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:31:06.459 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-07 18:31:06.460 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments} +2019-02-07 18:31:06.460 [main] INFO - Response Code: 400 +2019-02-07 18:31:06.461 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_692c25f6-78c3-4194-80e9-d846f04acbdb +uniqueTransactionID: de09801c-c09d-4c44-bcde-2506592eded2 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Thu, 07 Feb 2019 13:01:06 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 5c737b40-e591-40cc-9b94-801e7e16ceb9 +OkHttp-Sent-Millis: 1549544466248 +OkHttp-Received-Millis: 1549544466456 + +2019-02-07 18:31:06.462 [main] INFO - ********* END *********: +2019-02-07 18:31:23.198 [main] INFO - ********* START ********* +2019-02-07 18:31:23.210 [main] INFO - Authentication Type : http_signature +2019-02-07 18:31:23.211 [main] INFO - Request Type: POST +2019-02-07 18:31:23.212 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-07 18:31:23.212 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-07 18:31:23.252 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:31:23.252 [main] INFO - Date: Thu, 7 Feb 2019 13:01:22 GMT +2019-02-07 18:31:23.253 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:31:23.253 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="iK2SS74i691ofG0Zg3io+Ky2iSGpdZXJDLQQxREcIPE=" +2019-02-07 18:31:23.253 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:31:24.490 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-07 18:31:24.490 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments} +2019-02-07 18:31:24.490 [main] INFO - Response Code: 201 +2019-02-07 18:31:24.491 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_06e43efc-85b0-4448-948c-de2fa80c350b +uniqueTransactionID: 69dba477-898e-467e-93bc-4ed4cffead52 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/paymentinstruments/814E708EBAF28A77E05340588D0A4323 +ETag: "fJ2f3txC3nAeZ9ZPvLcJb6tqH1Q5O2fuviTDI2i9yBs=" +instrumentidentifier-created: false +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1001 +Date: Thu, 07 Feb 2019 13:01:24 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 48cd1907-f311-4dd5-9065-bea53c64025f +OkHttp-Sent-Millis: 1549544484149 +OkHttp-Received-Millis: 1549544484470 + +2019-02-07 18:31:24.492 [main] INFO - ********* END *********: +2019-02-07 18:31:24.532 [main] INFO - ********* START ********* +2019-02-07 18:31:24.532 [main] INFO - Authentication Type : http_signature +2019-02-07 18:31:24.533 [main] INFO - Request Type: POST +2019-02-07 18:31:24.533 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-07 18:31:24.533 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-07 18:31:24.534 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:31:24.534 [main] INFO - Date: Thu, 7 Feb 2019 13:01:22 GMT +2019-02-07 18:31:24.534 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:31:24.535 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="iK2SS74i691ofG0Zg3io+Ky2iSGpdZXJDLQQxREcIPE=" +2019-02-07 18:31:24.535 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:31:24.742 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-07 18:31:24.743 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments} +2019-02-07 18:31:24.743 [main] INFO - Response Code: 400 +2019-02-07 18:31:24.744 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_83fc1a62-0f96-497b-8e40-dcf0b25dfe9f +uniqueTransactionID: 7bb827a9-27ba-48aa-9e66-385aabeda664 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Thu, 07 Feb 2019 13:01:24 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: fb0175e9-4a89-41f1-bd7e-c586a569c029 +OkHttp-Sent-Millis: 1549544484541 +OkHttp-Received-Millis: 1549544484741 + +2019-02-07 18:31:24.744 [main] INFO - ********* END *********: +2019-02-07 18:37:17.478 [main] INFO - ********* START ********* +2019-02-07 18:37:17.491 [main] INFO - Authentication Type : http_signature +2019-02-07 18:37:17.493 [main] INFO - Request Type: PATCH +2019-02-07 18:37:17.493 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603, requestType=PATCH} +2019-02-07 18:37:17.494 [main] INFO - Digest: SHA-256=JVhG6cWRtiU/QoMjxKqN0Sqpzxt5BxE40ELswsMV4eU= +2019-02-07 18:37:17.533 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:37:17.534 [main] INFO - Date: Thu, 7 Feb 2019 13:07:17 GMT +2019-02-07 18:37:17.534 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:37:17.534 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="mveeEuKKjrXxo2gg5Rc8bNO76zHsY/RHJ6RrlDk3vHM=" +2019-02-07 18:37:17.535 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:37:18.781 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-07 18:37:18.782 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603} +2019-02-07 18:37:18.782 [main] INFO - Response Code: 200 +2019-02-07 18:37:18.782 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_11e5b29d-cde7-4a63-a255-f1cbdfbd9a9f +uniqueTransactionID: ba862f2d-d88c-44f9-941e-7ed0166fc66a +Pragma: no-cache +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603 +ETag: "1LaP3hgZTdnt/kFPSMsBlxX1hKOInbCaUVsztVuZly0=" +instrumentidentifier-created: false +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1142 +Date: Thu, 07 Feb 2019 13:07:18 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 8bc10c93-b00a-4106-8336-98ccf75d5624 +OkHttp-Sent-Millis: 1549544838378 +OkHttp-Received-Millis: 1549544838762 + +2019-02-07 18:37:18.782 [main] INFO - ********* END *********: +2019-02-07 18:37:18.819 [main] INFO - ********* START ********* +2019-02-07 18:37:18.820 [main] INFO - Authentication Type : http_signature +2019-02-07 18:37:18.820 [main] INFO - Request Type: PATCH +2019-02-07 18:37:18.821 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B124123456789545854565, requestType=PATCH} +2019-02-07 18:37:18.821 [main] INFO - Digest: SHA-256=JVhG6cWRtiU/QoMjxKqN0Sqpzxt5BxE40ELswsMV4eU= +2019-02-07 18:37:18.822 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:37:18.822 [main] INFO - Date: Thu, 7 Feb 2019 13:07:17 GMT +2019-02-07 18:37:18.822 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:37:18.823 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="p8OmY1kbqQxWFJaD2h7dx5Sp34YnUAWvPL/H48nyeno=" +2019-02-07 18:37:18.823 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:37:19.059 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-07 18:37:19.059 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603} +2019-02-07 18:37:19.060 [main] INFO - Response Code: 404 +2019-02-07 18:37:19.061 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_f30d7f4c-a12c-4542-98a6-00d33031963d +uniqueTransactionID: 7cb6fde2-5ed0-42ae-8858-8fbd5fbf9e4c +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 13:07:19 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 2360a12e-6d8e-4840-b642-4d155cc23026 +OkHttp-Sent-Millis: 1549544838828 +OkHttp-Received-Millis: 1549544839058 + +2019-02-07 18:37:19.062 [main] INFO - ********* END *********: +2019-02-07 18:40:45.295 [main] INFO - ********* START ********* +2019-02-07 18:40:45.311 [main] INFO - Authentication Type : http_signature +2019-02-07 18:40:45.312 [main] INFO - Request Type: GET +2019-02-07 18:40:45.313 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603, requestType=GET} +2019-02-07 18:40:45.313 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:40:45.353 [main] INFO - Date: Thu, 7 Feb 2019 13:10:44 GMT +2019-02-07 18:40:45.353 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:40:45.354 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="NjWUKh6M2v4b+wssu2N2nk/XoSB0S1yjCYLGYqf3NG8=" +2019-02-07 18:40:45.354 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:40:46.646 [main] INFO - Request Body: null +2019-02-07 18:40:46.646 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603} +2019-02-07 18:40:46.647 [main] INFO - Response Code: 200 +2019-02-07 18:40:46.647 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_942cc6b4-f549-449d-b570-095ef615a8e6 +uniqueTransactionID: 2c8d5101-e678-4264-9971-42b1ceeaca69 +Pragma: no-cache +X-Application-Context: application +ETag: "1LaP3hgZTdnt/kFPSMsBlxX1hKOInbCaUVsztVuZly0=" +Token-Class: paymentInstrument +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1142 +Date: Thu, 07 Feb 2019 13:10:46 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: ed4d8025-7dd8-47a0-bad8-04c334c912d9 +OkHttp-Sent-Millis: 1549545046330 +OkHttp-Received-Millis: 1549545046625 + +2019-02-07 18:40:46.648 [main] INFO - ********* END *********: +2019-02-07 18:40:46.772 [main] INFO - ********* START ********* +2019-02-07 18:40:46.772 [main] INFO - Authentication Type : http_signature +2019-02-07 18:40:46.772 [main] INFO - Request Type: GET +2019-02-07 18:40:46.772 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7654264589567855546, requestType=GET} +2019-02-07 18:40:46.772 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:40:46.772 [main] INFO - Date: Thu, 7 Feb 2019 13:10:44 GMT +2019-02-07 18:40:46.772 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:40:46.778 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="284hm81Uag8zY0rIs/H7TXQTeLs6fw+PcC/aAeROj9Q=" +2019-02-07 18:40:46.778 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:40:46.984 [main] INFO - Request Body: null +2019-02-07 18:40:46.984 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603} +2019-02-07 18:40:46.985 [main] INFO - Response Code: 404 +2019-02-07 18:40:46.985 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_48c2b6b9-1d1b-4245-a7f5-394f66e2eaa6 +uniqueTransactionID: 51098e0c-27c7-4f98-a447-958fa926c012 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 13:10:46 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 88307ad4-3686-4dfe-9d25-24024081625f +OkHttp-Sent-Millis: 1549545046780 +OkHttp-Received-Millis: 1549545046983 + +2019-02-07 18:40:46.985 [main] INFO - ********* END *********: +2019-02-07 18:46:49.792 [main] INFO - ********* START ********* +2019-02-07 18:46:49.804 [main] INFO - Authentication Type : http_signature +2019-02-07 18:46:49.805 [main] INFO - Request Type: DELETE +2019-02-07 18:46:49.806 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7010000000006721114, requestType=DELETE} +2019-02-07 18:46:49.806 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:46:49.848 [main] INFO - Date: Thu, 7 Feb 2019 13:16:49 GMT +2019-02-07 18:46:49.849 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:46:49.849 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="oTeGn0Sy7F2th6D3wZHXJeByfRdS4rNKdN5UNehFAa8=" +2019-02-07 18:46:49.850 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:46:51.089 [main] INFO - Request Body: null +2019-02-07 18:46:51.089 [main] INFO - Response Message: {"errors":[{"type":"notAvailable","message":"Token not available"}]} +2019-02-07 18:46:51.090 [main] INFO - Response Code: 410 +2019-02-07 18:46:51.090 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_39d749f1-35f7-4c6a-abb9-8f48ad7baee2 +uniqueTransactionID: 78706c53-5018-4430-a0b3-26d0ed97458f +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 68 +Date: Thu, 07 Feb 2019 13:16:51 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 4ecc14da-b3bb-4225-916d-cd0e2e2f4a3e +OkHttp-Sent-Millis: 1549545410785 +OkHttp-Received-Millis: 1549545411066 + +2019-02-07 18:46:51.090 [main] INFO - ********* END *********: +2019-02-07 18:46:51.129 [main] INFO - ********* START ********* +2019-02-07 18:46:51.129 [main] INFO - Authentication Type : http_signature +2019-02-07 18:46:51.130 [main] INFO - Request Type: DELETE +2019-02-07 18:46:51.130 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546, requestType=DELETE} +2019-02-07 18:46:51.131 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:46:51.131 [main] INFO - Date: Thu, 7 Feb 2019 13:16:49 GMT +2019-02-07 18:46:51.132 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:46:51.132 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="jRwLstTHNqL9IV2nk3ZPMz4AsWVWOSbmaVZebY8/rHo=" +2019-02-07 18:46:51.133 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:46:51.384 [main] INFO - Request Body: null +2019-02-07 18:46:51.384 [main] INFO - Response Message: Response{protocol=http/1.1, code=410, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000006721114} +2019-02-07 18:46:51.385 [main] INFO - Response Code: 404 +2019-02-07 18:46:51.385 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_2f03aa56-c2e5-48b5-b1cc-642d7fc14781 +uniqueTransactionID: d7a17cb0-5ad7-4c45-a5f9-db3fcfc4fe71 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 13:16:51 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 221bf4c1-1369-443c-892a-9b5148d8a489 +OkHttp-Sent-Millis: 1549545411137 +OkHttp-Received-Millis: 1549545411383 + +2019-02-07 18:46:51.385 [main] INFO - ********* END *********: +2019-02-07 18:50:51.978 [main] INFO - ********* START ********* +2019-02-07 18:50:51.995 [main] INFO - Authentication Type : http_signature +2019-02-07 18:50:51.996 [main] INFO - Request Type: DELETE +2019-02-07 18:50:51.996 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/80756F4698591109E05341588E0A4B95, requestType=DELETE} +2019-02-07 18:50:51.998 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:50:52.045 [main] INFO - Date: Thu, 7 Feb 2019 13:20:51 GMT +2019-02-07 18:50:52.045 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:50:52.046 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="F+dNmDqbjb4SdgLhT2wZExqqnSZnN245FK+5rH/y+bU=" +2019-02-07 18:50:52.047 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:50:53.306 [main] INFO - Request Body: null +2019-02-07 18:50:53.306 [main] INFO - Response Message: {"errors":[{"type":"notAvailable","message":"Token not available"}]} +2019-02-07 18:50:53.307 [main] INFO - Response Code: 410 +2019-02-07 18:50:53.307 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_b7d4df4e-c214-4873-b87a-2fa727e1d660 +uniqueTransactionID: 5730517b-9247-4414-9da8-035c454bce4b +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 68 +Date: Thu, 07 Feb 2019 13:20:53 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 70da2e51-7aa3-4d72-a758-0433ca3df47f +OkHttp-Sent-Millis: 1549545653022 +OkHttp-Received-Millis: 1549545653276 + +2019-02-07 18:50:53.308 [main] INFO - ********* END *********: +2019-02-07 18:50:53.347 [main] INFO - ********* START ********* +2019-02-07 18:50:53.348 [main] INFO - Authentication Type : http_signature +2019-02-07 18:50:53.348 [main] INFO - Request Type: DELETE +2019-02-07 18:50:53.349 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/76542645895678555464562155478555, requestType=DELETE} +2019-02-07 18:50:53.349 [main] INFO - v-c-merchant-id: testrest +2019-02-07 18:50:53.349 [main] INFO - Date: Thu, 7 Feb 2019 13:20:51 GMT +2019-02-07 18:50:53.350 [main] INFO - Host: apitest.cybersource.com +2019-02-07 18:50:53.350 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="gg/vVWZJsn6VZoF5QTPItlozjyCCXgbIYo7YIU7L5uU=" +2019-02-07 18:50:53.351 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-07 18:50:53.587 [main] INFO - Request Body: null +2019-02-07 18:50:53.587 [main] INFO - Response Message: Response{protocol=http/1.1, code=410, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments/80756F4698591109E05341588E0A4B95} +2019-02-07 18:50:53.588 [main] INFO - Response Code: 404 +2019-02-07 18:50:53.588 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_2fc1e7c0-8ae0-43ae-a928-f7845890449e +uniqueTransactionID: 4e3b6ef3-bc7e-4f2d-9558-4aa43b84d8ba +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Thu, 07 Feb 2019 13:20:53 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 827d17c8-29de-446e-8a7c-49361a85e72f +OkHttp-Sent-Millis: 1549545653354 +OkHttp-Received-Millis: 1549545653587 + +2019-02-07 18:50:53.589 [main] INFO - ********* END *********: +2019-02-08 09:06:17.282 [main] INFO - ********* START ********* +2019-02-08 09:06:17.301 [main] INFO - Authentication Type : http_signature +2019-02-08 09:06:17.301 [main] INFO - Request Type: GET +2019-02-08 09:06:17.301 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-08 09:06:17.301 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:06:17.301 [main] INFO - Date: Fri, 8 Feb 2019 03:36:16 GMT +2019-02-08 09:06:17.301 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:06:17.301 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="j7xgZ2n1uplu7mMGz1k+/Xe7pCEql4nzww8g7RH0s/k=" +2019-02-08 09:06:17.301 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:06:18.782 [main] INFO - Request Body: null +2019-02-08 09:06:18.783 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z} +2019-02-08 09:06:18.783 [main] INFO - Response Code: 200 +2019-02-08 09:06:18.783 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_3bcfdd5a-7960-40c4-ba69-0aed7fc42c82 +X-OPNET-Transaction-Trace: a2_9d9ba68a-956f-454e-bf73-71067281aad7 +Cache-Control: no-cache, no-transform +ETag: "521572317" +Expires: Fri, 08 Feb 2019 03:36:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 03:36:18 GMT +X-Cnection: close +v-c-correlation-id: e98065ce-f2ab-4749-94c8-2699a21dd8a2 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549596978443 +OkHttp-Received-Millis: 1549596978747 + +2019-02-08 09:06:18.784 [main] INFO - ********* END *********: +2019-02-08 09:06:18.850 [main] INFO - ********* START ********* +2019-02-08 09:06:18.851 [main] INFO - Authentication Type : http_signature +2019-02-08 09:06:18.851 [main] INFO - Request Type: GET +2019-02-08 09:06:18.851 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2019-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-08 09:06:18.852 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:06:18.852 [main] INFO - Date: Fri, 8 Feb 2019 03:36:16 GMT +2019-02-08 09:06:18.853 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:06:18.854 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="UjX0VqpXKVwQy0cMH9w58zZgmw5ypAtnDtcfqEC5TIo=" +2019-02-08 09:06:18.854 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:06:19.119 [main] INFO - Request Body: null +2019-02-08 09:06:19.119 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z} +2019-02-08 09:06:19.120 [main] INFO - Response Code: 400 +2019-02-08 09:06:19.120 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d20f7049-9aaf-4f65-9e39-968033ce071d +X-OPNET-Transaction-Trace: a2_c2f631bb-5335-49e0-9805-54ec2c38dc8e +Cache-Control: no-cache, no-transform +ETag: "-1732043611" +Expires: Fri, 08 Feb 2019 03:36:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 03:36:18 GMT +X-Cnection: close +v-c-correlation-id: 32a93af9-9816-4723-81f5-2d2bd98daaf3 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549596978857 +OkHttp-Received-Millis: 1549596979117 + +2019-02-08 09:06:19.121 [main] INFO - ********* END *********: +2019-02-08 09:07:00.426 [main] INFO - ********* START ********* +2019-02-08 09:07:00.444 [main] INFO - Authentication Type : http_signature +2019-02-08 09:07:00.444 [main] INFO - Request Type: GET +2019-02-08 09:07:00.445 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-08 09:07:00.490 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:07:00.491 [main] INFO - Date: Fri, 8 Feb 2019 03:37:00 GMT +2019-02-08 09:07:00.491 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:07:00.492 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="4LXex2uT4WQFkltZPDm3AYwSkGKLc1pXWBZfWBZ1DM8=" +2019-02-08 09:07:00.492 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:07:02.273 [main] INFO - Request Body: null +2019-02-08 09:07:02.273 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z} +2019-02-08 09:07:02.275 [main] INFO - Response Code: 200 +2019-02-08 09:07:02.275 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_87ea8d2b-5b05-4058-b54a-97a41ed64239 +Cache-Control: no-cache, no-transform +ETag: "-1468815412" +Expires: Fri, 08 Feb 2019 03:37:02 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 03:37:02 GMT +X-Cnection: close +v-c-correlation-id: d2b3fe4c-75c1-403e-be9b-1746d0e2bc89 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549597021451 +OkHttp-Received-Millis: 1549597022243 + +2019-02-08 09:07:02.276 [main] INFO - ********* END *********: +2019-02-08 09:07:02.323 [main] INFO - ********* START ********* +2019-02-08 09:07:02.326 [main] INFO - Authentication Type : http_signature +2019-02-08 09:07:02.326 [main] INFO - Request Type: GET +2019-02-08 09:07:02.326 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2019-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-08 09:07:02.326 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:07:02.327 [main] INFO - Date: Fri, 8 Feb 2019 03:37:00 GMT +2019-02-08 09:07:02.327 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:07:02.328 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="B1JaV8KT1ixaZbst4kWWNNiGCQ4Tld/ef1gqozjTvrI=" +2019-02-08 09:07:02.328 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:07:02.592 [main] INFO - Request Body: null +2019-02-08 09:07:02.593 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z} +2019-02-08 09:07:02.593 [main] INFO - Response Code: 400 +2019-02-08 09:07:02.593 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_7e842649-fc13-401a-81af-90cc463cc1d7 +X-OPNET-Transaction-Trace: a2_64376b83-1d6f-417a-8d51-8e8028422c42 +Cache-Control: no-cache, no-transform +ETag: "-1732043611" +Expires: Fri, 08 Feb 2019 03:37:02 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 03:37:02 GMT +X-Cnection: close +v-c-correlation-id: 440f2d9f-f379-4ab7-8cd4-e72b210bf628 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549597022330 +OkHttp-Received-Millis: 1549597022590 + +2019-02-08 09:07:02.593 [main] INFO - ********* END *********: +2019-02-08 09:10:13.645 [main] INFO - ********* START ********* +2019-02-08 09:10:13.658 [main] INFO - Authentication Type : http_signature +2019-02-08 09:10:13.659 [main] INFO - Request Type: GET +2019-02-08 09:10:13.660 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-08 09:10:13.704 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:10:13.704 [main] INFO - Date: Fri, 8 Feb 2019 03:40:13 GMT +2019-02-08 09:10:13.706 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:10:13.706 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="1djxDShQgIun5lTuWx//IqZF+huzsPkUoXfwb0p3mAI=" +2019-02-08 09:10:13.706 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:10:14.992 [main] INFO - Request Body: null +2019-02-08 09:10:14.992 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z} +2019-02-08 09:10:14.993 [main] INFO - Response Code: 200 +2019-02-08 09:10:14.993 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_84e9d404-56f6-492e-953b-a299911c494a +X-OPNET-Transaction-Trace: a2_a79ae3e9-55dd-4d3c-83ac-71f65f0154a3 +Cache-Control: no-cache, no-transform +ETag: "-1335501231" +Expires: Fri, 08 Feb 2019 03:40:14 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 03:40:14 GMT +X-Cnection: close +v-c-correlation-id: 34eda087-229c-477f-8c6e-6a727e1adcab +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549597214668 +OkHttp-Received-Millis: 1549597214965 + +2019-02-08 09:10:14.994 [main] INFO - ********* END *********: +2019-02-08 09:10:15.052 [main] INFO - ********* START ********* +2019-02-08 09:10:15.053 [main] INFO - Authentication Type : http_signature +2019-02-08 09:10:15.053 [main] INFO - Request Type: GET +2019-02-08 09:10:15.054 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2019-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-08 09:10:15.055 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:10:15.055 [main] INFO - Date: Fri, 8 Feb 2019 03:40:13 GMT +2019-02-08 09:10:15.056 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:10:15.056 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ZD8Yjg4g7fjGc9yblpu9HmMWaZWuhd/josxO+KaTZL4=" +2019-02-08 09:10:15.057 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:10:15.287 [main] INFO - Request Body: null +2019-02-08 09:10:15.287 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z} +2019-02-08 09:10:15.288 [main] INFO - Response Code: 400 +2019-02-08 09:10:15.288 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_7087066c-8781-41ad-9184-87d4e3a493c0 +Cache-Control: no-cache, no-transform +ETag: "-1732043611" +Expires: Fri, 08 Feb 2019 03:40:15 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 03:40:15 GMT +X-Cnection: close +v-c-correlation-id: 14d3a586-97b4-48c5-bff7-72deeb8f75e3 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549597215059 +OkHttp-Received-Millis: 1549597215284 + +2019-02-08 09:10:15.289 [main] INFO - ********* END *********: +2019-02-08 09:12:50.012 [main] INFO - ********* START ********* +2019-02-08 09:12:50.029 [main] INFO - Authentication Type : http_signature +2019-02-08 09:12:50.030 [main] INFO - Request Type: GET +2019-02-08 09:12:50.030 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-08 09:12:50.075 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:12:50.076 [main] INFO - Date: Fri, 8 Feb 2019 03:42:49 GMT +2019-02-08 09:12:50.076 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:12:50.077 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="QOaELahy64BTb6pC2ZZdkYX/G9icwIVFZXL+TkDpGw4=" +2019-02-08 09:12:50.077 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:12:51.251 [main] INFO - Request Body: null +2019-02-08 09:12:51.251 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z} +2019-02-08 09:12:51.252 [main] INFO - Response Code: 200 +2019-02-08 09:12:51.252 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_7ec5e491-fdbd-43e6-be39-9956d4f092ee +X-OPNET-Transaction-Trace: a2_05fe2a34-20d8-4e56-b982-734570f348bf +Cache-Control: no-cache, no-transform +ETag: "1155696234" +Expires: Fri, 08 Feb 2019 03:42:51 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 03:42:51 GMT +X-Cnection: close +v-c-correlation-id: 4cf221cb-ceaf-4f62-92da-6187b2966e09 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549597370978 +OkHttp-Received-Millis: 1549597371222 + +2019-02-08 09:12:51.252 [main] INFO - ********* END *********: +2019-02-08 09:15:16.743 [main] INFO - ********* START ********* +2019-02-08 09:15:16.755 [main] INFO - Authentication Type : http_signature +2019-02-08 09:15:16.756 [main] INFO - Request Type: GET +2019-02-08 09:15:16.757 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-08 09:15:16.812 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:15:16.812 [main] INFO - Date: Fri, 8 Feb 2019 03:45:16 GMT +2019-02-08 09:15:16.813 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:15:16.813 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="YBsLZNUb6TjhFDi0/dKMDs1V3P6TRTL1Du4Uoyuvodc=" +2019-02-08 09:15:16.814 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:15:18.022 [main] INFO - Request Body: null +2019-02-08 09:15:18.022 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z} +2019-02-08 09:15:18.023 [main] INFO - Response Code: 200 +2019-02-08 09:15:18.023 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_411ac15b-73fb-4da4-b02b-4e48a898222d +Cache-Control: no-cache, no-transform +ETag: "1124525456" +Expires: Fri, 08 Feb 2019 03:45:17 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 03:45:17 GMT +X-Cnection: close +v-c-correlation-id: 9db1688d-0383-445f-945e-a6bf87d73b4f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549597517724 +OkHttp-Received-Millis: 1549597517984 + +2019-02-08 09:15:18.023 [main] INFO - ********* END *********: +2019-02-08 09:15:18.078 [main] INFO - ********* START ********* +2019-02-08 09:15:18.078 [main] INFO - Authentication Type : http_signature +2019-02-08 09:15:18.078 [main] INFO - Request Type: GET +2019-02-08 09:15:18.080 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2019-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-08 09:15:18.080 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:15:18.080 [main] INFO - Date: Fri, 8 Feb 2019 03:45:16 GMT +2019-02-08 09:15:18.081 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:15:18.081 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="LdIcOGkyhQp2QICpNwvn6N1PRIRnuQKLixJlfPmgLwY=" +2019-02-08 09:15:18.081 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:15:18.293 [main] INFO - Request Body: null +2019-02-08 09:15:18.293 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z} +2019-02-08 09:15:18.293 [main] INFO - Response Code: 400 +2019-02-08 09:15:18.294 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_8b963178-26e5-4244-a24b-baaf8220a44b +X-OPNET-Transaction-Trace: a2_c53b7832-fd68-49a5-bb6c-d59d5c245edd +Cache-Control: no-cache, no-transform +ETag: "-1732043611" +Expires: Fri, 08 Feb 2019 03:45:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 03:45:18 GMT +X-Cnection: close +v-c-correlation-id: 5de1c6c2-1eb6-45a6-b73e-f8889bc5175c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549597518084 +OkHttp-Received-Millis: 1549597518291 + +2019-02-08 09:15:18.294 [main] INFO - ********* END *********: +2019-02-08 09:16:27.090 [main] INFO - ********* START ********* +2019-02-08 09:16:27.103 [main] INFO - Authentication Type : http_signature +2019-02-08 09:16:27.103 [main] INFO - Request Type: GET +2019-02-08 09:16:27.104 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-08 09:16:27.143 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:16:27.144 [main] INFO - Date: Fri, 8 Feb 2019 03:46:26 GMT +2019-02-08 09:16:27.144 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:16:27.145 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="TUw2S5fvM89JJbQYJhh0NSqkP6U26O8KZ2rf6Uxd1yw=" +2019-02-08 09:16:27.145 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:16:28.358 [main] INFO - Request Body: null +2019-02-08 09:16:28.358 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z} +2019-02-08 09:16:28.359 [main] INFO - Response Code: 200 +2019-02-08 09:16:28.360 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_08b6b43c-3ef1-45bc-98a8-6bd0bef0aa37 +Cache-Control: no-cache, no-transform +ETag: "-994852805" +Expires: Fri, 08 Feb 2019 03:46:28 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 03:46:28 GMT +X-Cnection: close +v-c-correlation-id: 7d549ecf-5842-49cc-b830-34720d77a16a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549597588081 +OkHttp-Received-Millis: 1549597588320 + +2019-02-08 09:16:28.361 [main] INFO - ********* END *********: +2019-02-08 09:16:28.441 [main] INFO - ********* START ********* +2019-02-08 09:16:28.442 [main] INFO - Authentication Type : http_signature +2019-02-08 09:16:28.442 [main] INFO - Request Type: GET +2019-02-08 09:16:28.443 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2019-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-08 09:16:28.444 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:16:28.444 [main] INFO - Date: Fri, 8 Feb 2019 03:46:26 GMT +2019-02-08 09:16:28.444 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:16:28.445 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="R38SpBuPjKlm1uHez6OKZYQ1WZAGmcoi8N/WfVNQFiQ=" +2019-02-08 09:16:28.446 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:16:28.699 [main] INFO - Request Body: null +2019-02-08 09:16:28.699 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z} +2019-02-08 09:16:28.700 [main] INFO - Response Code: 400 +2019-02-08 09:16:28.700 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b72cb416-88ec-4355-b163-8480a915c228 +X-OPNET-Transaction-Trace: a2_89a6df2d-4521-42d8-acc3-c6854aa4ad83 +Cache-Control: no-cache, no-transform +ETag: "-1732043611" +Expires: Fri, 08 Feb 2019 03:46:28 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 03:46:28 GMT +X-Cnection: close +v-c-correlation-id: a8d86010-0621-40c2-bb04-c00a3f4171d2 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549597588453 +OkHttp-Received-Millis: 1549597588696 + +2019-02-08 09:16:28.701 [main] INFO - ********* END *********: +2019-02-08 09:23:39.427 [main] INFO - ********* START ********* +2019-02-08 09:23:39.450 [main] INFO - Authentication Type : http_signature +2019-02-08 09:23:39.451 [main] INFO - Request Type: GET +2019-02-08 09:23:39.452 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches/Owcyk6pl, requestType=GET} +2019-02-08 09:23:39.453 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:23:39.521 [main] INFO - Date: Fri, 8 Feb 2019 03:53:38 GMT +2019-02-08 09:23:39.522 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:23:39.523 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="C8iV8YYVem0qGSyeRkXc/VITLGN397Sy4eK83A+BmHY=" +2019-02-08 09:23:39.524 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:23:41.011 [main] INFO - Request Body: null +2019-02-08 09:23:41.011 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches/Owcyk6pl} +2019-02-08 09:23:41.012 [main] INFO - Response Code: 200 +2019-02-08 09:23:41.012 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_181b3bf7-613e-4e56-b355-f05b1fe44f89 +X-OPNET-Transaction-Trace: a2_e9ebbc21-f49b-49bb-a4d6-3fe24076a72e +Cache-Control: no-cache, no-transform +ETag: "-1139639258" +Expires: Fri, 08 Feb 2019 03:53:40 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 03:53:40 GMT +X-Cnection: close +v-c-correlation-id: 5f4c96b7-64fb-42ea-99bc-579eba85062f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549598020673 +OkHttp-Received-Millis: 1549598020973 + +2019-02-08 09:23:41.013 [main] INFO - ********* END *********: +2019-02-08 09:23:41.059 [main] INFO - ********* START ********* +2019-02-08 09:23:41.060 [main] INFO - Authentication Type : http_signature +2019-02-08 09:23:41.060 [main] INFO - Request Type: GET +2019-02-08 09:23:41.060 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches/CYBS123, requestType=GET} +2019-02-08 09:23:41.061 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:23:41.061 [main] INFO - Date: Fri, 8 Feb 2019 03:53:38 GMT +2019-02-08 09:23:41.063 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:23:41.064 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="mtrHOeN72qULDrVmj59fIvF9hbEwjJMRljO7rT3dzhw=" +2019-02-08 09:23:41.064 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:23:41.307 [main] INFO - Request Body: null +2019-02-08 09:23:41.307 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches/Owcyk6pl} +2019-02-08 09:23:41.308 [main] INFO - Response Code: 404 +2019-02-08 09:23:41.308 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_72b60e22-cb6c-49a5-b42e-f50d35c68af2 +X-OPNET-Transaction-Trace: a2_631014a0-8ae0-4d25-8938-0f1eb9504c34 +Cache-Control: no-cache, no-transform +ETag: "-975452876" +Expires: Fri, 08 Feb 2019 03:53:41 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 03:53:41 GMT +X-Cnection: close +v-c-correlation-id: f94c9878-9bd5-4a0c-adf4-a30679030df5 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549598021066 +OkHttp-Received-Millis: 1549598021305 + +2019-02-08 09:23:41.308 [main] INFO - ********* END *********: +2019-02-08 09:28:53.148 [main] INFO - ********* START ********* +2019-02-08 09:28:53.162 [main] INFO - Authentication Type : http_signature +2019-02-08 09:28:53.162 [main] INFO - Request Type: GET +2019-02-08 09:28:53.163 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00, requestType=GET} +2019-02-08 09:28:53.203 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:28:53.203 [main] INFO - Date: Fri, 8 Feb 2019 03:58:52 GMT +2019-02-08 09:28:53.204 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:28:53.204 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="zVS9nWwMe3BFbOSPFeQ4APvVsUAN3YxVUYCqvwaxobo=" +2019-02-08 09:28:53.205 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:28:54.582 [main] INFO - Request Body: null +2019-02-08 09:28:54.583 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"No results found for the given dates"} +2019-02-08 09:28:54.583 [main] INFO - Response Code: 404 +2019-02-08 09:28:54.584 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_1fc9100f-c68f-4f33-8704-97d592b388fa +X-OPNET-Transaction-Trace: a2_0103bf5d-aad1-4e69-ba73-ca0e2a865302 +Cache-Control: no-cache, no-transform +ETag: "1442562825-gzip" +Expires: Fri, 08 Feb 2019 03:58:54 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 03:58:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 22f63f10-9740-4fa1-b7f8-c73e3ca7e11a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549598334083 +OkHttp-Received-Millis: 1549598334556 + +2019-02-08 09:28:54.584 [main] INFO - ********* END *********: +2019-02-08 09:28:54.623 [main] INFO - ********* START ********* +2019-02-08 09:28:54.623 [main] INFO - Authentication Type : http_signature +2019-02-08 09:28:54.623 [main] INFO - Request Type: GET +2019-02-08 09:28:54.624 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/notification-of-changes?startTime=2019-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-05-30T12%3A00%3A00.000-05%3A00, requestType=GET} +2019-02-08 09:28:54.624 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:28:54.624 [main] INFO - Date: Fri, 8 Feb 2019 03:58:52 GMT +2019-02-08 09:28:54.625 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:28:54.625 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="rQ2YHO5QFxxSBodSk8JYTFdOGW4mjU7/GHgDZWXHUbs=" +2019-02-08 09:28:54.625 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:28:55.110 [main] INFO - Request Body: null +2019-02-08 09:28:55.111 [main] INFO - Response Message: Response{protocol=http/1.1, code=404, message=DONE, url=https://apitest.cybersource.com/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00} +2019-02-08 09:28:55.111 [main] INFO - Response Code: 400 +2019-02-08 09:28:55.112 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_63a31fe7-bb6e-4693-a93e-ea7d165e0f1c +X-OPNET-Transaction-Trace: a2_b4fb3a85-fb2c-444b-8760-2f049055f812 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 03:58:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: fc14b4e8-480c-458c-8239-cb53e0268f1a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549598334627 +OkHttp-Received-Millis: 1549598335093 + +2019-02-08 09:28:55.112 [main] INFO - ********* END *********: +2019-02-08 09:29:42.206 [main] INFO - ********* START ********* +2019-02-08 09:29:42.219 [main] INFO - Authentication Type : http_signature +2019-02-08 09:29:42.220 [main] INFO - Request Type: GET +2019-02-08 09:29:42.220 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00, requestType=GET} +2019-02-08 09:29:42.259 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:29:42.260 [main] INFO - Date: Fri, 8 Feb 2019 03:59:41 GMT +2019-02-08 09:29:42.260 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:29:42.260 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ApZG1/IBGi0o4Tif+WshidzEWnh1d5X+iWJIjsEcv0o=" +2019-02-08 09:29:42.261 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:29:43.749 [main] INFO - Request Body: null +2019-02-08 09:29:43.749 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"No results found for the given dates"} +2019-02-08 09:29:43.750 [main] INFO - Response Code: 404 +2019-02-08 09:29:43.751 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_07fc63e9-eee4-4237-9f0b-236a8a41d496 +X-OPNET-Transaction-Trace: a2_09744fc6-0ffa-4637-8cd7-623738c6cdb7 +Cache-Control: no-cache, no-transform +ETag: "1442562825-gzip" +Expires: Fri, 08 Feb 2019 03:59:43 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 03:59:43 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 9c05c880-3af5-4046-8fcd-c4f0b88d419e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549598383259 +OkHttp-Received-Millis: 1549598383693 + +2019-02-08 09:29:43.751 [main] INFO - ********* END *********: +2019-02-08 09:30:23.082 [main] INFO - ********* START ********* +2019-02-08 09:30:23.082 [main] INFO - Authentication Type : http_signature +2019-02-08 09:30:23.082 [main] INFO - Request Type: GET +2019-02-08 09:30:23.083 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/notification-of-changes?startTime=2019-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-05-30T12%3A00%3A00.000-05%3A00, requestType=GET} +2019-02-08 09:30:23.083 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:30:23.084 [main] INFO - Date: Fri, 8 Feb 2019 03:59:41 GMT +2019-02-08 09:30:23.084 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:30:23.085 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="EL6MwIb8SffmaDke1afM+t7SVehC+0H3lt0VtoCUNVg=" +2019-02-08 09:30:23.085 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:30:23.549 [main] INFO - Request Body: null +2019-02-08 09:30:23.550 [main] INFO - Response Message: Response{protocol=http/1.1, code=404, message=DONE, url=https://apitest.cybersource.com/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00} +2019-02-08 09:30:23.550 [main] INFO - Response Code: 400 +2019-02-08 09:30:23.550 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d58b196a-3347-4718-81ed-568d9295daff +X-OPNET-Transaction-Trace: a2_6f945439-3c2c-4425-a3f2-9736688e1da6 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:00:23 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 96cbd356-e6e8-4872-9169-8ace7bb78aff +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549598423087 +OkHttp-Received-Millis: 1549598423526 + +2019-02-08 09:30:23.552 [main] INFO - ********* END *********: +2019-02-08 09:34:43.309 [main] INFO - ********* START ********* +2019-02-08 09:34:43.326 [main] INFO - Authentication Type : http_signature +2019-02-08 09:34:43.327 [main] INFO - Request Type: GET +2019-02-08 09:34:43.328 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-08 09:34:43.375 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:34:43.375 [main] INFO - Date: Fri, 8 Feb 2019 04:04:42 GMT +2019-02-08 09:34:43.375 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:34:43.377 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="P+NmQTW/BTBtje7VmA8xGqQEKaP/mulB3Vrfp8QZ5BQ=" +2019-02-08 09:34:43.378 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:34:44.898 [main] INFO - Request Body: null +2019-02-08 09:34:44.898 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/purchase-refund-details"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-08 09:34:44.899 [main] INFO - Response Code: 400 +2019-02-08 09:34:44.899 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_8d1209d7-1c28-45c2-bfff-5e97717007a9 +X-OPNET-Transaction-Trace: a2_beef0a7f-b266-4b2c-a18a-9d099faeacc3 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:04:44 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: f7e6b8d7-eb90-40d0-9309-901e4bef8d76 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549598684362 +OkHttp-Received-Millis: 1549598684858 + +2019-02-08 09:34:44.900 [main] INFO - ********* END *********: +2019-02-08 09:34:44.959 [main] INFO - ********* START ********* +2019-02-08 09:34:44.959 [main] INFO - Authentication Type : http_signature +2019-02-08 09:34:44.960 [main] INFO - Request Type: GET +2019-02-08 09:34:44.960 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2019-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-08 09:34:44.961 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:34:44.962 [main] INFO - Date: Fri, 8 Feb 2019 04:04:42 GMT +2019-02-08 09:34:44.962 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:34:44.963 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="DKCBBO1fJ2MCAm4AEn9vdSPZB/dyYLWNs3VDgN47MKM=" +2019-02-08 09:34:44.964 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:34:45.383 [main] INFO - Request Body: null +2019-02-08 09:34:45.384 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000} +2019-02-08 09:34:45.385 [main] INFO - Response Code: 400 +2019-02-08 09:34:45.385 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_8e552e03-e3a9-44fe-b23f-609210ed1177 +X-OPNET-Transaction-Trace: a2_cba18e0b-956b-4a1d-86bb-3a91418904ec +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:04:44 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 68feb777-b6ea-4657-8dc0-0eb88ff410ab +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549598684969 +OkHttp-Received-Millis: 1549598685382 + +2019-02-08 09:34:45.386 [main] INFO - ********* END *********: +2019-02-08 09:34:45.405 [main] INFO - ********* START ********* +2019-02-08 09:34:45.405 [main] INFO - Authentication Type : http_signature +2019-02-08 09:34:45.407 [main] INFO - Request Type: GET +2019-02-08 09:34:45.407 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=udapaa&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-08 09:34:45.407 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:34:45.407 [main] INFO - Date: Fri, 8 Feb 2019 04:04:42 GMT +2019-02-08 09:34:45.407 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:34:45.408 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="62kT0otxePSytnNNYCIoRhyT0YgBO2Q12T7IFyPXlco=" +2019-02-08 09:34:45.409 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:34:45.868 [main] INFO - Request Body: null +2019-02-08 09:34:45.868 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/purchase-refund-details?startTime=2019-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000} +2019-02-08 09:34:45.873 [main] INFO - Response Code: 400 +2019-02-08 09:34:45.873 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_bc6616dd-ae6e-4b7e-81e7-eeed88249ba8 +X-OPNET-Transaction-Trace: a2_eb982719-7ee7-4545-a313-1a3b8d8ea6f2 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:04:45 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d205e6d3-074d-4d25-a6a9-90e34aa52397 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549598685410 +OkHttp-Received-Millis: 1549598685867 + +2019-02-08 09:34:45.874 [main] INFO - ********* END *********: +2019-02-08 09:35:30.889 [main] INFO - ********* START ********* +2019-02-08 09:35:30.903 [main] INFO - Authentication Type : http_signature +2019-02-08 09:35:30.904 [main] INFO - Request Type: GET +2019-02-08 09:35:30.904 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-08 09:35:30.951 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:35:30.952 [main] INFO - Date: Fri, 8 Feb 2019 04:05:30 GMT +2019-02-08 09:35:30.952 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:35:30.952 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="zk9cekI2HyBRCdgMxEu8hvvfIEJLQX5D7V82TsM/BQ8=" +2019-02-08 09:35:30.953 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:35:32.420 [main] INFO - Request Body: null +2019-02-08 09:35:32.421 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/purchase-refund-details"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-08 09:35:32.421 [main] INFO - Response Code: 400 +2019-02-08 09:35:32.422 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a59bc07f-337a-44b0-92e3-f30199ad7cab +X-OPNET-Transaction-Trace: a2_6f8721c1-2677-4898-9f60-2ebe64d19563 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:05:32 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 9229f87b-bfbb-418b-abe4-a22011cdc69c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549598731926 +OkHttp-Received-Millis: 1549598732381 + +2019-02-08 09:35:32.422 [main] INFO - ********* END *********: +2019-02-08 09:38:54.407 [main] INFO - ********* START ********* +2019-02-08 09:38:54.408 [main] INFO - Authentication Type : http_signature +2019-02-08 09:38:54.408 [main] INFO - Request Type: GET +2019-02-08 09:38:54.409 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-08 09:38:54.409 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:38:54.410 [main] INFO - Date: Fri, 8 Feb 2019 04:05:30 GMT +2019-02-08 09:38:54.410 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:38:54.411 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="zk9cekI2HyBRCdgMxEu8hvvfIEJLQX5D7V82TsM/BQ8=" +2019-02-08 09:38:54.411 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:38:54.870 [main] INFO - Request Body: null +2019-02-08 09:38:54.871 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000} +2019-02-08 09:38:54.871 [main] INFO - Response Code: 400 +2019-02-08 09:38:54.871 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_f29d07ce-c9d6-465a-93b5-9494ce5294c5 +X-OPNET-Transaction-Trace: a2_3d763032-142f-4ccc-a538-c214ea09fa13 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:08:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 58f1cbd8-2291-42af-a70b-9e113af74faa +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549598934414 +OkHttp-Received-Millis: 1549598934869 + +2019-02-08 09:38:54.872 [main] INFO - ********* END *********: +2019-02-08 09:38:54.951 [main] INFO - ********* START ********* +2019-02-08 09:38:54.952 [main] INFO - Authentication Type : http_signature +2019-02-08 09:38:54.952 [main] INFO - Request Type: GET +2019-02-08 09:38:54.952 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2019-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-08 09:38:54.953 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:38:54.953 [main] INFO - Date: Fri, 8 Feb 2019 04:05:30 GMT +2019-02-08 09:38:54.953 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:38:54.954 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Kx075aE3qylm2uNqnuJjLZCKEuC2N8r5i+eNF4yVUFU=" +2019-02-08 09:38:54.954 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:38:55.388 [main] INFO - Request Body: null +2019-02-08 09:38:55.389 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000} +2019-02-08 09:38:55.390 [main] INFO - Response Code: 400 +2019-02-08 09:38:55.390 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_62d8d3ed-4772-4bc7-9c16-ba7eb93ddb66 +X-OPNET-Transaction-Trace: a2_d7b8645c-977c-4253-9251-67880210ed43 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:08:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 2710aded-5693-4683-afae-073f87be72da +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549598934956 +OkHttp-Received-Millis: 1549598935386 + +2019-02-08 09:38:55.391 [main] INFO - ********* END *********: +2019-02-08 09:38:55.420 [main] INFO - ********* START ********* +2019-02-08 09:38:55.421 [main] INFO - Authentication Type : http_signature +2019-02-08 09:38:55.421 [main] INFO - Request Type: GET +2019-02-08 09:38:55.421 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=udapaa&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-08 09:38:55.422 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:38:55.422 [main] INFO - Date: Fri, 8 Feb 2019 04:05:30 GMT +2019-02-08 09:38:55.423 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:38:55.423 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="7KyEj/WZW6A6oG5Yj95m1AIVCpptwG5vO9uyAtO78Gs=" +2019-02-08 09:38:55.423 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:38:55.837 [main] INFO - Request Body: null +2019-02-08 09:38:55.837 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/purchase-refund-details?startTime=2019-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000} +2019-02-08 09:38:55.838 [main] INFO - Response Code: 400 +2019-02-08 09:38:55.838 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_1d552d9d-ff8d-4782-9802-e9af9ade9362 +X-OPNET-Transaction-Trace: a2_019f66a2-fab8-442b-b078-0ee8c8d23c54 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:08:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: cffba1de-9b97-4355-806a-38b33aacec21 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549598935424 +OkHttp-Received-Millis: 1549598935834 + +2019-02-08 09:38:55.839 [main] INFO - ********* END *********: +2019-02-08 09:39:29.526 [main] INFO - ********* START ********* +2019-02-08 09:39:29.543 [main] INFO - Authentication Type : http_signature +2019-02-08 09:39:29.543 [main] INFO - Request Type: GET +2019-02-08 09:39:29.545 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-08 09:39:29.546 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:39:29.547 [main] INFO - Date: Fri, 8 Feb 2019 04:09:29 GMT +2019-02-08 09:39:29.548 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:39:29.548 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="67qtUscYjDWtE14MxOHSSzm+uXnUg1oVS+Zy+uqVVvI=" +2019-02-08 09:39:29.549 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:39:31.000 [main] INFO - Request Body: null +2019-02-08 09:39:31.000 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/purchase-refund-details"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-08 09:39:31.001 [main] INFO - Response Code: 400 +2019-02-08 09:39:31.001 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_1bdfbcd8-c6ff-4403-8c6b-2d85d76b72e7 +X-OPNET-Transaction-Trace: a2_429e261a-ac26-472a-bb8f-14cd3f74e67d +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:09:30 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 08e43f5a-857a-437d-9f4d-11e0d99ce1a6 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549598970530 +OkHttp-Received-Millis: 1549598970968 + +2019-02-08 09:39:31.002 [main] INFO - ********* END *********: +2019-02-08 09:39:31.061 [main] INFO - ********* START ********* +2019-02-08 09:39:31.061 [main] INFO - Authentication Type : http_signature +2019-02-08 09:39:31.062 [main] INFO - Request Type: GET +2019-02-08 09:39:31.062 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2019-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-08 09:39:31.062 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:39:31.063 [main] INFO - Date: Fri, 8 Feb 2019 04:09:29 GMT +2019-02-08 09:39:31.063 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:39:31.064 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Xc6K2+xPzNe140rzhNx2vmW1UfnNlgnXqd12Z1GsmLQ=" +2019-02-08 09:39:31.065 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:39:31.521 [main] INFO - Request Body: null +2019-02-08 09:39:31.522 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000} +2019-02-08 09:39:31.523 [main] INFO - Response Code: 400 +2019-02-08 09:39:31.523 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_0f158963-4924-447d-b493-6a6da671c929 +X-OPNET-Transaction-Trace: a2_bd98f7c6-2ce9-472d-b8c2-1d12bbf225b1 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:09:31 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: dc42675c-15fd-4620-9500-0bd405ba7040 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549598971068 +OkHttp-Received-Millis: 1549598971504 + +2019-02-08 09:39:31.524 [main] INFO - ********* END *********: +2019-02-08 09:39:31.549 [main] INFO - ********* START ********* +2019-02-08 09:39:31.549 [main] INFO - Authentication Type : http_signature +2019-02-08 09:39:31.549 [main] INFO - Request Type: GET +2019-02-08 09:39:31.550 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=udapaa&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-08 09:39:31.550 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:39:31.550 [main] INFO - Date: Fri, 8 Feb 2019 04:09:29 GMT +2019-02-08 09:39:31.551 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:39:31.551 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="8+XK5KsqJ1cGbkUKG1idcP1QYiGeNzF9wsU+LxdB6h0=" +2019-02-08 09:39:31.551 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:39:31.966 [main] INFO - Request Body: null +2019-02-08 09:39:31.967 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/purchase-refund-details?startTime=2019-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000} +2019-02-08 09:39:31.967 [main] INFO - Response Code: 400 +2019-02-08 09:39:31.968 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e636897e-e6e3-43e2-a7f9-8a97cf6df80d +X-OPNET-Transaction-Trace: a2_babf88a8-7ffc-4ad7-a060-efaeb9dc6f05 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:09:31 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 40ea80be-1c88-4d64-946f-43a0f4e902fa +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549598971552 +OkHttp-Received-Millis: 1549598971964 + +2019-02-08 09:39:31.968 [main] INFO - ********* END *********: +2019-02-08 09:43:33.046 [main] INFO - ********* START ********* +2019-02-08 09:43:33.060 [main] INFO - Authentication Type : http_signature +2019-02-08 09:43:33.060 [main] INFO - Request Type: GET +2019-02-08 09:43:33.061 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=testrest, requestType=GET} +2019-02-08 09:43:33.061 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:43:33.102 [main] INFO - Date: Fri, 8 Feb 2019 04:13:32 GMT +2019-02-08 09:43:33.102 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:43:33.103 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="jok0tria//9Dt3W146Gz4lMeiozf0iFciDRxw98CX2E=" +2019-02-08 09:43:33.103 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:43:34.536 [main] INFO - Request Body: null +2019-02-08 09:43:34.536 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-08 09:43:34.537 [main] INFO - Response Code: 200 +2019-02-08 09:43:34.537 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_4ad46327-2014-422a-a8f1-b3d604d7aed4 +X-OPNET-Transaction-Trace: a2_f4d9e12e-a245-43fb-9d8c-95c867506d0b +Cache-Control: no-cache, no-transform +ETag: "1846674451-gzip" +Expires: Fri, 08 Feb 2019 04:13:34 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:13:33 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d7e9a6d0-906e-4797-9aa7-c46652f2b582 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549599214006 +OkHttp-Received-Millis: 1549599214508 + +2019-02-08 09:43:34.537 [main] INFO - ********* END *********: +2019-02-08 09:43:34.588 [main] INFO - ********* START ********* +2019-02-08 09:43:34.589 [main] INFO - Authentication Type : http_signature +2019-02-08 09:43:34.589 [main] INFO - Request Type: GET +2019-02-08 09:43:34.590 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=bplkmdghd, requestType=GET} +2019-02-08 09:43:34.591 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:43:34.591 [main] INFO - Date: Fri, 8 Feb 2019 04:13:32 GMT +2019-02-08 09:43:34.591 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:43:34.592 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="O4dFb8cVv8qvZ7VpITzS1AK+a+/Sf21sRsA0Hj+c8cU=" +2019-02-08 09:43:34.592 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:43:35.010 [main] INFO - Request Body: null +2019-02-08 09:43:35.010 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-08 09:43:35.011 [main] INFO - Response Code: 400 +2019-02-08 09:43:35.011 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_dd469c14-de64-400b-9092-fcc2a2a5afde +X-OPNET-Transaction-Trace: a2_af9cd132-da42-4e4a-b051-416f7a946382 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:13:34 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d70e598a-18b7-4890-9d9b-8d6fb878c61c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549599214594 +OkHttp-Received-Millis: 1549599215008 + +2019-02-08 09:43:35.011 [main] INFO - ********* END *********: +2019-02-08 09:44:22.677 [main] INFO - ********* START ********* +2019-02-08 09:44:22.690 [main] INFO - Authentication Type : http_signature +2019-02-08 09:44:22.691 [main] INFO - Request Type: GET +2019-02-08 09:44:22.691 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=testrest, requestType=GET} +2019-02-08 09:44:22.692 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:44:22.692 [main] INFO - Date: Fri, 8 Feb 2019 04:14:22 GMT +2019-02-08 09:44:22.692 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:44:22.693 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="IzvvWlyoMjk0mAnhTSklbo1GF7oSId19ph0M4iUPFSo=" +2019-02-08 09:44:22.693 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:44:24.119 [main] INFO - Request Body: null +2019-02-08 09:44:24.120 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-08 09:44:24.129 [main] INFO - Response Code: 200 +2019-02-08 09:44:24.130 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_727ac9bc-c59a-4b9f-8902-5baf09eb51ff +X-OPNET-Transaction-Trace: a2_2a43cc2f-990b-42fd-89ea-a6baf65f52e2 +Cache-Control: no-cache, no-transform +ETag: "1846674451-gzip" +Expires: Fri, 08 Feb 2019 04:14:23 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:14:23 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 717bd145-e811-442e-a287-e31cd45b6f09 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549599263615 +OkHttp-Received-Millis: 1549599264089 + +2019-02-08 09:44:24.130 [main] INFO - ********* END *********: +2019-02-08 09:44:24.178 [main] INFO - ********* START ********* +2019-02-08 09:44:24.178 [main] INFO - Authentication Type : http_signature +2019-02-08 09:44:24.179 [main] INFO - Request Type: GET +2019-02-08 09:44:24.179 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=bplkmdghd, requestType=GET} +2019-02-08 09:44:24.179 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:44:24.180 [main] INFO - Date: Fri, 8 Feb 2019 04:14:22 GMT +2019-02-08 09:44:24.180 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:44:24.180 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="tyOfYcTpzJiXmfRQBv7ClfpUw26XMgzE/+AlVSU6cDo=" +2019-02-08 09:44:24.181 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:44:24.582 [main] INFO - Request Body: null +2019-02-08 09:44:24.582 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-08 09:44:24.583 [main] INFO - Response Code: 400 +2019-02-08 09:44:24.583 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_91a5ef3b-f4c7-4ffb-be97-14ae860fa1aa +X-OPNET-Transaction-Trace: a2_e351f73b-e27d-4a6e-90a8-6f962b90cbb9 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:14:23 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c6016c63-bdac-4349-a62c-0ac0f4d720fa +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549599264182 +OkHttp-Received-Millis: 1549599264580 + +2019-02-08 09:44:24.583 [main] INFO - ********* END *********: +2019-02-08 09:44:43.930 [main] INFO - ********* START ********* +2019-02-08 09:44:43.943 [main] INFO - Authentication Type : http_signature +2019-02-08 09:44:43.944 [main] INFO - Request Type: GET +2019-02-08 09:44:43.944 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=testrest, requestType=GET} +2019-02-08 09:44:43.945 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:44:43.982 [main] INFO - Date: Fri, 8 Feb 2019 04:14:43 GMT +2019-02-08 09:44:43.983 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:44:43.983 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="XnjNRNB2009pBl54ttUyxeaWLTJIqaADP1flpSGi1H0=" +2019-02-08 09:44:43.984 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:44:45.429 [main] INFO - Request Body: null +2019-02-08 09:44:45.430 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-08 09:44:45.430 [main] INFO - Response Code: 200 +2019-02-08 09:44:45.430 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d07d8f83-e2ec-417b-8c7b-f7aa02ce0f3f +X-OPNET-Transaction-Trace: a2_c3284f9f-48fb-453d-ada7-dcf85ae23f66 +Cache-Control: no-cache, no-transform +ETag: "1846674451-gzip" +Expires: Fri, 08 Feb 2019 04:14:45 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:14:44 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: cdea9250-cb28-4ce2-bb56-9316c6c12c23 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549599284917 +OkHttp-Received-Millis: 1549599285383 + +2019-02-08 09:44:45.431 [main] INFO - ********* END *********: +2019-02-08 09:44:45.488 [main] INFO - ********* START ********* +2019-02-08 09:44:45.488 [main] INFO - Authentication Type : http_signature +2019-02-08 09:44:45.489 [main] INFO - Request Type: GET +2019-02-08 09:44:45.489 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=bplkmdghd, requestType=GET} +2019-02-08 09:44:45.490 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:44:45.490 [main] INFO - Date: Fri, 8 Feb 2019 04:14:43 GMT +2019-02-08 09:44:45.491 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:44:45.491 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="3sRVjhAWdcTtnhzCK6UKuWjpyB+/qNtO+X1cfYDhnVQ=" +2019-02-08 09:44:45.492 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:44:45.899 [main] INFO - Request Body: null +2019-02-08 09:44:45.900 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-08 09:44:45.900 [main] INFO - Response Code: 400 +2019-02-08 09:44:45.901 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_2ba29211-8cc3-4d77-82c7-2b7e773bc3b4 +X-OPNET-Transaction-Trace: a2_e41daf64-0cb1-47eb-a586-10218028c8b6 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:14:45 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 8d5e9418-77cd-40e5-be75-d8f7ea78f32d +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549599285497 +OkHttp-Received-Millis: 1549599285896 + +2019-02-08 09:44:45.901 [main] INFO - ********* END *********: +2019-02-08 09:45:41.028 [main] INFO - ********* START ********* +2019-02-08 09:45:41.040 [main] INFO - Authentication Type : http_signature +2019-02-08 09:45:41.041 [main] INFO - Request Type: GET +2019-02-08 09:45:41.041 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=testrest, requestType=GET} +2019-02-08 09:45:41.042 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:45:41.095 [main] INFO - Date: Fri, 8 Feb 2019 04:15:40 GMT +2019-02-08 09:45:41.095 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:45:41.096 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Do2fp2YeNFw1G1czpVrYLmwOfSro2DVK/X/00cD4uFE=" +2019-02-08 09:45:41.096 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:45:42.518 [main] INFO - Request Body: null +2019-02-08 09:45:42.519 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-08 09:45:42.519 [main] INFO - Response Code: 200 +2019-02-08 09:45:42.520 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_df1a5055-6a61-457a-a97b-722aaffbb0ef +X-OPNET-Transaction-Trace: a2_d662fc3f-ed58-42fc-82f3-6c6279ff4539 +Cache-Control: no-cache, no-transform +ETag: "1846674451-gzip" +Expires: Fri, 08 Feb 2019 04:15:42 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:15:42 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: bd23175c-0b72-4f93-9928-df282282a7ed +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549599342019 +OkHttp-Received-Millis: 1549599342470 + +2019-02-08 09:45:42.520 [main] INFO - ********* END *********: +2019-02-08 09:46:08.018 [main] INFO - ********* START ********* +2019-02-08 09:46:08.019 [main] INFO - Authentication Type : http_signature +2019-02-08 09:46:08.020 [main] INFO - Request Type: GET +2019-02-08 09:46:08.021 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=bplkmdghd, requestType=GET} +2019-02-08 09:46:08.022 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:46:08.022 [main] INFO - Date: Fri, 8 Feb 2019 04:15:40 GMT +2019-02-08 09:46:08.023 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:46:08.024 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="mPx0WLjT08CyYxs0qdSEyv4kdDezgejnJuZUJtynSoE=" +2019-02-08 09:46:08.025 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:46:08.454 [main] INFO - Request Body: null +2019-02-08 09:46:08.455 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-08 09:46:08.455 [main] INFO - Response Code: 400 +2019-02-08 09:46:08.455 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_6cbc0c41-8cce-4ac1-88e1-45500802e31b +X-OPNET-Transaction-Trace: a2_75c0be3e-06b9-43e6-9bdd-e6e2e356475c +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:16:07 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 695e0102-de99-4196-889c-8b046734f438 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549599368029 +OkHttp-Received-Millis: 1549599368449 + +2019-02-08 09:46:08.458 [main] INFO - ********* END *********: +2019-02-08 09:47:27.057 [main] INFO - ********* START ********* +2019-02-08 09:47:27.058 [main] INFO - Authentication Type : http_signature +2019-02-08 09:47:27.058 [main] INFO - Request Type: GET +2019-02-08 09:47:27.058 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=testrest, requestType=GET} +2019-02-08 09:47:27.059 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:47:27.059 [main] INFO - Date: Fri, 8 Feb 2019 04:15:40 GMT +2019-02-08 09:47:27.059 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:47:27.060 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Do2fp2YeNFw1G1czpVrYLmwOfSro2DVK/X/00cD4uFE=" +2019-02-08 09:47:27.060 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:47:27.537 [main] INFO - Request Body: null +2019-02-08 09:47:27.537 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-08 09:47:27.537 [main] INFO - Response Code: 200 +2019-02-08 09:47:27.537 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_cf3daf77-0750-43e7-93a6-06daf5e2480b +X-OPNET-Transaction-Trace: a2_d979e3ec-87f7-4e6d-ba82-9dae48daa0da +Cache-Control: no-cache, no-transform +ETag: "1846674451-gzip" +Expires: Fri, 08 Feb 2019 04:17:27 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:17:27 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 881cc65e-abe6-41c8-bbdf-f7559abb6278 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549599447061 +OkHttp-Received-Millis: 1549599447530 + +2019-02-08 09:47:27.537 [main] INFO - ********* END *********: +2019-02-08 09:47:27.559 [main] INFO - ********* START ********* +2019-02-08 09:47:27.560 [main] INFO - Authentication Type : http_signature +2019-02-08 09:47:27.560 [main] INFO - Request Type: GET +2019-02-08 09:47:27.560 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=bplkmdghd, requestType=GET} +2019-02-08 09:47:27.561 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:47:27.561 [main] INFO - Date: Fri, 8 Feb 2019 04:15:40 GMT +2019-02-08 09:47:27.562 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:47:27.562 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="mPx0WLjT08CyYxs0qdSEyv4kdDezgejnJuZUJtynSoE=" +2019-02-08 09:47:27.562 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:47:27.983 [main] INFO - Request Body: null +2019-02-08 09:47:27.983 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-08 09:47:27.983 [main] INFO - Response Code: 400 +2019-02-08 09:47:27.984 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_4dde5c2a-4009-4209-86da-1ff6d16b1b03 +X-OPNET-Transaction-Trace: a2_f7412df4-5f19-41e8-bb90-87a26dbbd48b +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:17:27 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: de5af4e3-97de-4b2b-80d0-3b16d3da3ee0 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549599447563 +OkHttp-Received-Millis: 1549599447981 + +2019-02-08 09:47:27.984 [main] INFO - ********* END *********: +2019-02-08 09:48:11.019 [main] INFO - ********* START ********* +2019-02-08 09:48:11.032 [main] INFO - Authentication Type : http_signature +2019-02-08 09:48:11.033 [main] INFO - Request Type: GET +2019-02-08 09:48:11.033 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=testrest, requestType=GET} +2019-02-08 09:48:11.033 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:48:11.034 [main] INFO - Date: Fri, 8 Feb 2019 04:18:10 GMT +2019-02-08 09:48:11.034 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:48:11.034 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="UV15K2YCykxyAvCVRxoPnjgUPUnqpIESeilutIpWNSY=" +2019-02-08 09:48:11.035 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:48:12.453 [main] INFO - Request Body: null +2019-02-08 09:48:12.453 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-08 09:48:12.454 [main] INFO - Response Code: 200 +2019-02-08 09:48:12.454 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_99cbabb7-d168-4835-96aa-81a3556883ed +X-OPNET-Transaction-Trace: a2_a8ded541-82a8-4358-8d59-813411328a5c +Cache-Control: no-cache, no-transform +ETag: "1846674451-gzip" +Expires: Fri, 08 Feb 2019 04:18:12 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:18:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c64ac4ed-de47-4e3a-b907-1575d494d2fc +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549599491966 +OkHttp-Received-Millis: 1549599492420 + +2019-02-08 09:48:12.455 [main] INFO - ********* END *********: +2019-02-08 09:48:12.515 [main] INFO - ********* START ********* +2019-02-08 09:48:12.515 [main] INFO - Authentication Type : http_signature +2019-02-08 09:48:12.516 [main] INFO - Request Type: GET +2019-02-08 09:48:12.516 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=bplkmdghd, requestType=GET} +2019-02-08 09:48:12.517 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:48:12.517 [main] INFO - Date: Fri, 8 Feb 2019 04:18:10 GMT +2019-02-08 09:48:12.518 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:48:12.518 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="gZyAaY5P8vUbKVqy+ss4X0WoGYSBuWd2GzEtmFRdx0M=" +2019-02-08 09:48:12.519 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:48:12.939 [main] INFO - Request Body: null +2019-02-08 09:48:12.940 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-08 09:48:12.940 [main] INFO - Response Code: 400 +2019-02-08 09:48:12.940 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_df325b3d-38c5-4f18-923d-3727996ded40 +X-OPNET-Transaction-Trace: a2_85651fb6-758b-4088-aece-c8fda935138d +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:18:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6d13df19-3953-49e0-b334-aac4ed8d1e38 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549599492521 +OkHttp-Received-Millis: 1549599492937 + +2019-02-08 09:48:12.941 [main] INFO - ********* END *********: +2019-02-08 09:56:16.520 [main] INFO - ********* START ********* +2019-02-08 09:56:16.534 [main] INFO - Authentication Type : http_signature +2019-02-08 09:56:16.534 [main] INFO - Request Type: GET +2019-02-08 09:56:16.535 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/AcquirerExceptionDetailClass, requestType=GET} +2019-02-08 09:56:16.535 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:56:16.572 [main] INFO - Date: Fri, 8 Feb 2019 04:26:16 GMT +2019-02-08 09:56:16.572 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:56:16.572 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="KF+95nf2IIMnL94/dQOImkfjhXDaUo6MADI/OUyC6Fo=" +2019-02-08 09:56:16.573 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:56:17.941 [main] INFO - Request Body: null +2019-02-08 09:56:17.941 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass} +2019-02-08 09:56:17.942 [main] INFO - Response Code: 200 +2019-02-08 09:56:17.942 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b13c1c42-4410-4fc6-919d-ef697f1ab126 +X-OPNET-Transaction-Trace: a2_63fd3bb7-0fe4-4eb5-8f07-b314d3efa53a +Cache-Control: no-cache, no-transform +ETag: "-78621274-gzip" +Expires: Fri, 08 Feb 2019 04:26:17 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:26:17 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 46f368f8-f43d-4afc-945e-e16fc00ac224 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549599977394 +OkHttp-Received-Millis: 1549599977907 + +2019-02-08 09:56:17.943 [main] INFO - ********* END *********: +2019-02-08 09:56:18.000 [main] INFO - ********* START ********* +2019-02-08 09:56:18.000 [main] INFO - Authentication Type : http_signature +2019-02-08 09:56:18.001 [main] INFO - Request Type: GET +2019-02-08 09:56:18.001 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/SubscDetail, requestType=GET} +2019-02-08 09:56:18.002 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:56:18.002 [main] INFO - Date: Fri, 8 Feb 2019 04:26:16 GMT +2019-02-08 09:56:18.003 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:56:18.003 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="M15kMffZk2LDFkifwb1sGlvGcOKVZbSyyS+abNWoD3g=" +2019-02-08 09:56:18.003 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:56:18.455 [main] INFO - Request Body: null +2019-02-08 09:56:18.455 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass} +2019-02-08 09:56:18.456 [main] INFO - Response Code: 404 +2019-02-08 09:56:18.456 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b53daf75-0b8c-4220-b7ce-58469b3a99ec +X-OPNET-Transaction-Trace: a2_86d042fa-27a7-49d5-8ac0-de4176fc5cfe +Cache-Control: no-cache, no-transform +ETag: "204857944-gzip" +Expires: Fri, 08 Feb 2019 04:26:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:26:17 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e177e12d-4589-44d0-b085-7b37174cae6f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549599978005 +OkHttp-Received-Millis: 1549599978453 + +2019-02-08 09:56:18.457 [main] INFO - ********* END *********: +2019-02-08 09:56:41.231 [main] INFO - ********* START ********* +2019-02-08 09:56:41.245 [main] INFO - Authentication Type : http_signature +2019-02-08 09:56:41.245 [main] INFO - Request Type: GET +2019-02-08 09:56:41.246 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/AcquirerExceptionDetailClass, requestType=GET} +2019-02-08 09:56:41.247 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:56:41.287 [main] INFO - Date: Fri, 8 Feb 2019 04:26:40 GMT +2019-02-08 09:56:41.288 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:56:41.289 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="XLxNtY6L2IOB9K6VIT3kwYqbCQqxqq25oJzK8PqZ0dU=" +2019-02-08 09:56:41.289 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:56:42.639 [main] INFO - Request Body: null +2019-02-08 09:56:42.640 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass} +2019-02-08 09:56:42.640 [main] INFO - Response Code: 200 +2019-02-08 09:56:42.640 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a868ee8f-c0b5-4ecd-9fb7-15f7954f2a17 +X-OPNET-Transaction-Trace: a2_3a2dff4b-a1c2-4eb6-a111-c92d1ae3a9a6 +Cache-Control: no-cache, no-transform +ETag: "-78621274-gzip" +Expires: Fri, 08 Feb 2019 04:26:42 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:26:42 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7a201e25-ff6b-4d61-99ae-8da5a02ee7cf +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549600002184 +OkHttp-Received-Millis: 1549600002604 + +2019-02-08 09:56:42.641 [main] INFO - ********* END *********: +2019-02-08 09:56:42.697 [main] INFO - ********* START ********* +2019-02-08 09:56:42.697 [main] INFO - Authentication Type : http_signature +2019-02-08 09:56:42.698 [main] INFO - Request Type: GET +2019-02-08 09:56:42.698 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/SubscDetail, requestType=GET} +2019-02-08 09:56:42.698 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:56:42.699 [main] INFO - Date: Fri, 8 Feb 2019 04:26:40 GMT +2019-02-08 09:56:42.699 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:56:42.699 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="G6HnBKMbEfNf8cdwmYSOARvQ8ESXF/mgQSsTySNcuT0=" +2019-02-08 09:56:42.700 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:56:43.130 [main] INFO - Request Body: null +2019-02-08 09:56:43.131 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass} +2019-02-08 09:56:43.131 [main] INFO - Response Code: 404 +2019-02-08 09:56:43.131 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_ebe17281-a4ad-4699-8b87-61542210f60c +X-OPNET-Transaction-Trace: a2_cd719ab3-4756-491a-ae45-a8ce9f7099b4 +Cache-Control: no-cache, no-transform +ETag: "204857944-gzip" +Expires: Fri, 08 Feb 2019 04:26:42 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:26:42 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 93502b50-bf17-46ee-b527-b61c9203db15 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549600002702 +OkHttp-Received-Millis: 1549600003129 + +2019-02-08 09:56:43.132 [main] INFO - ********* END *********: +2019-02-08 09:59:12.297 [main] INFO - ********* START ********* +2019-02-08 09:59:12.297 [main] INFO - Authentication Type : http_signature +2019-02-08 09:59:12.298 [main] INFO - Request Type: GET +2019-02-08 09:59:12.298 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/AcquirerExceptionDetailClass, requestType=GET} +2019-02-08 09:59:12.299 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:59:12.299 [main] INFO - Date: Fri, 8 Feb 2019 04:26:40 GMT +2019-02-08 09:59:12.299 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:59:12.300 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="XLxNtY6L2IOB9K6VIT3kwYqbCQqxqq25oJzK8PqZ0dU=" +2019-02-08 09:59:12.300 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:59:12.780 [main] INFO - Request Body: null +2019-02-08 09:59:12.780 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass} +2019-02-08 09:59:12.780 [main] INFO - Response Code: 200 +2019-02-08 09:59:12.780 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_ec5ed049-6169-49df-8adb-9db9cc79f550 +X-OPNET-Transaction-Trace: a2_85d05807-c286-4e19-a014-3e0e4bc58066 +Cache-Control: no-cache, no-transform +ETag: "-78621274-gzip" +Expires: Fri, 08 Feb 2019 04:29:12 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:29:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a8765f99-fb65-447b-98de-f0877e8be7ef +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549600152301 +OkHttp-Received-Millis: 1549600152766 + +2019-02-08 09:59:12.782 [main] INFO - ********* END *********: +2019-02-08 09:59:12.807 [main] INFO - ********* START ********* +2019-02-08 09:59:12.808 [main] INFO - Authentication Type : http_signature +2019-02-08 09:59:12.808 [main] INFO - Request Type: GET +2019-02-08 09:59:12.809 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/SubscDetail, requestType=GET} +2019-02-08 09:59:12.809 [main] INFO - v-c-merchant-id: testrest +2019-02-08 09:59:12.809 [main] INFO - Date: Fri, 8 Feb 2019 04:26:40 GMT +2019-02-08 09:59:12.810 [main] INFO - Host: apitest.cybersource.com +2019-02-08 09:59:12.810 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="G6HnBKMbEfNf8cdwmYSOARvQ8ESXF/mgQSsTySNcuT0=" +2019-02-08 09:59:12.811 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 09:59:13.212 [main] INFO - Request Body: null +2019-02-08 09:59:13.213 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass} +2019-02-08 09:59:13.213 [main] INFO - Response Code: 404 +2019-02-08 09:59:13.214 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_06c4afb4-485a-474e-98a7-f5de768d6635 +X-OPNET-Transaction-Trace: a2_47695ccf-9e02-4371-9fa6-63bc5daca434 +Cache-Control: no-cache, no-transform +ETag: "204857944-gzip" +Expires: Fri, 08 Feb 2019 04:29:13 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:29:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: f3929de0-e348-4730-a9b7-fef9f65183cb +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549600152812 +OkHttp-Received-Millis: 1549600153211 + +2019-02-08 09:59:13.214 [main] INFO - ********* END *********: +2019-02-08 10:00:33.489 [main] INFO - ********* START ********* +2019-02-08 10:00:33.509 [main] INFO - Authentication Type : http_signature +2019-02-08 10:00:33.509 [main] INFO - Request Type: GET +2019-02-08 10:00:33.510 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/AcquirerExceptionDetailClass, requestType=GET} +2019-02-08 10:00:33.511 [main] INFO - v-c-merchant-id: testrest +2019-02-08 10:00:33.557 [main] INFO - Date: Fri, 8 Feb 2019 04:30:33 GMT +2019-02-08 10:00:33.558 [main] INFO - Host: apitest.cybersource.com +2019-02-08 10:00:33.558 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="1xs93+Y0pR6QayhCQ1hoHeo0UILdI+IJXG+JIUaC3tU=" +2019-02-08 10:00:33.559 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 10:00:35.071 [main] INFO - Request Body: null +2019-02-08 10:00:35.072 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass} +2019-02-08 10:00:35.073 [main] INFO - Response Code: 200 +2019-02-08 10:00:35.073 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a6e0926c-dfd2-4e6e-a4bc-21ac26f57542 +X-OPNET-Transaction-Trace: a2_c0fc7357-9895-47b6-b992-dd3799fb395b +Cache-Control: no-cache, no-transform +ETag: "-78621274-gzip" +Expires: Fri, 08 Feb 2019 04:30:34 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:30:34 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e504826d-19d1-4285-a04e-a2642549a25d +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549600234578 +OkHttp-Received-Millis: 1549600235026 + +2019-02-08 10:00:35.074 [main] INFO - ********* END *********: +2019-02-08 10:00:35.128 [main] INFO - ********* START ********* +2019-02-08 10:00:35.128 [main] INFO - Authentication Type : http_signature +2019-02-08 10:00:35.128 [main] INFO - Request Type: GET +2019-02-08 10:00:35.128 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/SubscDetail, requestType=GET} +2019-02-08 10:00:35.128 [main] INFO - v-c-merchant-id: testrest +2019-02-08 10:00:35.128 [main] INFO - Date: Fri, 8 Feb 2019 04:30:33 GMT +2019-02-08 10:00:35.128 [main] INFO - Host: apitest.cybersource.com +2019-02-08 10:00:35.128 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Qg4qjCFyaINu6xWuFk0uvoNgjGGDNDk2DhOD0tEKvkA=" +2019-02-08 10:00:35.128 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 10:00:35.567 [main] INFO - Request Body: null +2019-02-08 10:00:35.568 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass} +2019-02-08 10:00:35.568 [main] INFO - Response Code: 404 +2019-02-08 10:00:35.568 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_c76bc38e-63a3-4504-a781-0d2326a63080 +X-OPNET-Transaction-Trace: a2_24d30189-8336-490b-8988-38189f1d3451 +Cache-Control: no-cache, no-transform +ETag: "204857944-gzip" +Expires: Fri, 08 Feb 2019 04:30:35 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:30:34 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a9d920fa-e97f-4e8d-92ee-b164c91bf516 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549600235138 +OkHttp-Received-Millis: 1549600235566 + +2019-02-08 10:00:35.569 [main] INFO - ********* END *********: +2019-02-08 10:04:59.801 [main] INFO - ********* START ********* +2019-02-08 10:04:59.816 [main] INFO - Authentication Type : http_signature +2019-02-08 10:04:59.817 [main] INFO - Request Type: GET +2019-02-08 10:04:59.818 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=GET} +2019-02-08 10:04:59.818 [main] INFO - v-c-merchant-id: testrest +2019-02-08 10:04:59.863 [main] INFO - Date: Fri, 8 Feb 2019 04:34:59 GMT +2019-02-08 10:04:59.863 [main] INFO - Host: apitest.cybersource.com +2019-02-08 10:04:59.864 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="2CEPEsX7SSZ5H0j8mRvFgNE/JWIcSYXH16EQooLSqT0=" +2019-02-08 10:04:59.864 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 10:05:01.485 [main] INFO - Request Body: null +2019-02-08 10:05:01.485 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-08 10:05:01.486 [main] INFO - Response Code: 200 +2019-02-08 10:05:01.486 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_0cfcdeb5-8fea-4a0c-8d7d-d51cbddc6036 +X-OPNET-Transaction-Trace: a2_bec03993-e38d-4bc5-a474-8edf62e8ddb1 +Cache-Control: no-cache, no-transform +ETag: "-1910736955-gzip" +Expires: Fri, 08 Feb 2019 04:35:01 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:35:01 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: cdfd89f2-6b69-41e5-ac54-90aed04a1a36 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549600500789 +OkHttp-Received-Millis: 1549600501408 + +2019-02-08 10:05:01.487 [main] INFO - ********* END *********: +2019-02-08 10:06:01.999 [main] INFO - ********* START ********* +2019-02-08 10:06:02.021 [main] INFO - Authentication Type : http_signature +2019-02-08 10:06:02.022 [main] INFO - Request Type: GET +2019-02-08 10:06:02.023 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=GET} +2019-02-08 10:06:02.025 [main] INFO - v-c-merchant-id: testrest +2019-02-08 10:06:02.080 [main] INFO - Date: Fri, 8 Feb 2019 04:36:01 GMT +2019-02-08 10:06:02.082 [main] INFO - Host: apitest.cybersource.com +2019-02-08 10:06:02.082 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="zZzt/4SIbOF/Bfp4aCYKT2J8PuYUo1Y50+y7rxXhwVA=" +2019-02-08 10:06:02.083 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 10:06:03.904 [main] INFO - Request Body: null +2019-02-08 10:06:03.905 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-08 10:06:03.906 [main] INFO - Response Code: 200 +2019-02-08 10:06:03.907 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_65fe3ff3-3841-435a-8b17-a7cbfef2c9c4 +X-OPNET-Transaction-Trace: a2_387e8206-4490-42f4-9af6-4021d619628f +Cache-Control: no-cache, no-transform +ETag: "-1910736955-gzip" +Expires: Fri, 08 Feb 2019 04:36:03 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:36:03 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 3fed9442-b72d-44d7-a023-5f3dfe6f54b0 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549600563207 +OkHttp-Received-Millis: 1549600563829 + +2019-02-08 10:06:03.907 [main] INFO - ********* END *********: +2019-02-08 10:06:43.063 [main] INFO - ********* START ********* +2019-02-08 10:06:43.085 [main] INFO - Authentication Type : http_signature +2019-02-08 10:06:43.085 [main] INFO - Request Type: GET +2019-02-08 10:06:43.086 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=GET} +2019-02-08 10:06:43.086 [main] INFO - v-c-merchant-id: testrest +2019-02-08 10:06:43.086 [main] INFO - Date: Fri, 8 Feb 2019 04:36:42 GMT +2019-02-08 10:06:43.087 [main] INFO - Host: apitest.cybersource.com +2019-02-08 10:06:43.087 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Eq3XiQ2KKGcmwXfRRhtZglGhOvnauT9vh4Y2KMbIyjg=" +2019-02-08 10:06:43.088 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 10:06:44.551 [main] INFO - Request Body: null +2019-02-08 10:06:44.551 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-08 10:06:44.551 [main] INFO - Response Code: 200 +2019-02-08 10:06:44.552 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_63272f4d-8f40-4c89-b632-afdba0eb795b +X-OPNET-Transaction-Trace: a2_a4f7336e-aed6-499b-9197-302a19f7dd9d +Cache-Control: no-cache, no-transform +ETag: "-1910736955-gzip" +Expires: Fri, 08 Feb 2019 04:36:44 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:36:43 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 2f2d52d9-40af-4cf0-8d45-bccb4c345ced +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549600603929 +OkHttp-Received-Millis: 1549600604510 + +2019-02-08 10:06:44.552 [main] INFO - ********* END *********: +2019-02-08 10:07:20.045 [main] INFO - ********* START ********* +2019-02-08 10:07:20.068 [main] INFO - Authentication Type : http_signature +2019-02-08 10:07:20.069 [main] INFO - Request Type: GET +2019-02-08 10:07:20.069 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=GET} +2019-02-08 10:07:20.070 [main] INFO - v-c-merchant-id: testrest +2019-02-08 10:07:20.108 [main] INFO - Date: Fri, 8 Feb 2019 04:37:19 GMT +2019-02-08 10:07:20.109 [main] INFO - Host: apitest.cybersource.com +2019-02-08 10:07:20.109 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="4KWow8duqC3MMVPt0ITIsPtPJLbIsNd9kSMvxIkmHKY=" +2019-02-08 10:07:20.110 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 10:07:21.713 [main] INFO - Request Body: null +2019-02-08 10:07:21.713 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-08 10:07:21.713 [main] INFO - Response Code: 200 +2019-02-08 10:07:21.714 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e78c9605-82ef-446c-b5f2-b8e8c36e31d1 +X-OPNET-Transaction-Trace: a2_03899fa2-66fe-46f1-a9d4-93476d9997d3 +Cache-Control: no-cache, no-transform +ETag: "-1910736955-gzip" +Expires: Fri, 08 Feb 2019 04:37:21 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:37:21 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 9ae3bde5-09bf-4df4-867a-20e64f15ae05 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549600641024 +OkHttp-Received-Millis: 1549600641672 + +2019-02-08 10:07:21.714 [main] INFO - ********* END *********: +2019-02-08 10:12:29.916 [main] INFO - ********* START ********* +2019-02-08 10:12:29.932 [main] INFO - Authentication Type : http_signature +2019-02-08 10:12:29.932 [main] INFO - Request Type: GET +2019-02-08 10:12:29.933 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/Texture, requestType=GET} +2019-02-08 10:12:29.933 [main] INFO - v-c-merchant-id: testrest +2019-02-08 10:12:29.973 [main] INFO - Date: Fri, 8 Feb 2019 04:42:29 GMT +2019-02-08 10:12:29.974 [main] INFO - Host: apitest.cybersource.com +2019-02-08 10:12:29.974 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Rcbg5YsPk9FQgYQvI3JGuOmAh9UNYi0UAtYev/CzfDA=" +2019-02-08 10:12:29.974 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 10:12:31.539 [main] INFO - Request Body: null +2019-02-08 10:12:31.541 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture} +2019-02-08 10:12:31.542 [main] INFO - Response Code: 200 +2019-02-08 10:12:31.542 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_9d1d4f4c-affc-4761-802d-59bfe3d04fc9 +X-OPNET-Transaction-Trace: a2_e88fafe8-1d85-40b1-930b-17b401865a5f +Cache-Control: no-cache, no-transform +ETag: "-1844867216-gzip" +Expires: Fri, 08 Feb 2019 04:42:31 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:42:31 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c7748428-d9e6-4e6f-b86e-2f9339690eca +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549600951015 +OkHttp-Received-Millis: 1549600951505 + +2019-02-08 10:12:31.543 [main] INFO - ********* END *********: +2019-02-08 10:14:03.277 [main] INFO - ********* START ********* +2019-02-08 10:14:03.278 [main] INFO - Authentication Type : http_signature +2019-02-08 10:14:03.278 [main] INFO - Request Type: GET +2019-02-08 10:14:03.278 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/bplkmdgsd, requestType=GET} +2019-02-08 10:14:03.279 [main] INFO - v-c-merchant-id: testrest +2019-02-08 10:14:03.279 [main] INFO - Date: Fri, 8 Feb 2019 04:42:29 GMT +2019-02-08 10:14:03.280 [main] INFO - Host: apitest.cybersource.com +2019-02-08 10:14:03.280 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Th8qRYX5GWgHqrYqFdyo5pN9NHyYPiDTl79Jf5kXgPU=" +2019-02-08 10:14:03.280 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 10:14:03.703 [main] INFO - Request Body: null +2019-02-08 10:14:03.704 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture} +2019-02-08 10:14:03.704 [main] INFO - Response Code: 404 +2019-02-08 10:14:03.705 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_4048fe5b-94b0-421a-a3f6-e85e770664b4 +X-OPNET-Transaction-Trace: a2_0e4842d9-c1b8-4740-8c1d-ab8bfbfffa54 +Cache-Control: no-cache, no-transform +ETag: "1764052161-gzip" +Expires: Fri, 08 Feb 2019 04:44:03 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:44:03 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: f6129f3e-0163-4f89-b5db-66e43f3a28ec +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549601043286 +OkHttp-Received-Millis: 1549601043702 + +2019-02-08 10:14:03.705 [main] INFO - ********* END *********: +2019-02-08 10:17:12.250 [main] INFO - ********* START ********* +2019-02-08 10:17:12.268 [main] INFO - Authentication Type : http_signature +2019-02-08 10:17:12.268 [main] INFO - Request Type: GET +2019-02-08 10:17:12.269 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/Texture, requestType=GET} +2019-02-08 10:17:12.269 [main] INFO - v-c-merchant-id: testrest +2019-02-08 10:17:12.270 [main] INFO - Date: Fri, 8 Feb 2019 04:47:11 GMT +2019-02-08 10:17:12.270 [main] INFO - Host: apitest.cybersource.com +2019-02-08 10:17:12.270 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="AVm/nxyOzchKaXncBhx+LRySSZ1v24yH3AJLMpIFxpU=" +2019-02-08 10:17:12.271 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 10:17:13.815 [main] INFO - Request Body: null +2019-02-08 10:17:13.815 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture} +2019-02-08 10:17:13.815 [main] INFO - Response Code: 200 +2019-02-08 10:17:13.816 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a0dde73f-d92c-4b54-af4d-13d0da110e80 +X-OPNET-Transaction-Trace: a2_22160591-d337-448e-91b3-502993dc1ee5 +Cache-Control: no-cache, no-transform +ETag: "-1844867216-gzip" +Expires: Fri, 08 Feb 2019 04:47:13 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:47:13 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e193dc20-d6e8-4ff5-8354-0070b0538ca7 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549601233315 +OkHttp-Received-Millis: 1549601233787 + +2019-02-08 10:17:13.817 [main] INFO - ********* END *********: +2019-02-08 10:17:13.885 [main] INFO - ********* START ********* +2019-02-08 10:17:13.885 [main] INFO - Authentication Type : http_signature +2019-02-08 10:17:13.886 [main] INFO - Request Type: GET +2019-02-08 10:17:13.886 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/bplkmdgsd, requestType=GET} +2019-02-08 10:17:13.887 [main] INFO - v-c-merchant-id: testrest +2019-02-08 10:17:13.888 [main] INFO - Date: Fri, 8 Feb 2019 04:47:11 GMT +2019-02-08 10:17:13.888 [main] INFO - Host: apitest.cybersource.com +2019-02-08 10:17:13.889 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="KiZKH08L+NYd5iwCMCTvueEzvK9168DEz36C1dLRO/g=" +2019-02-08 10:17:13.889 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 10:17:14.316 [main] INFO - Request Body: null +2019-02-08 10:17:14.317 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture} +2019-02-08 10:17:14.319 [main] INFO - Response Code: 404 +2019-02-08 10:17:14.320 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_3f63d244-68f4-4cd6-b74e-7a0a27bb8b20 +X-OPNET-Transaction-Trace: a2_f197a189-93d2-4979-baba-5cdf72ab50e2 +Cache-Control: no-cache, no-transform +ETag: "1764052161-gzip" +Expires: Fri, 08 Feb 2019 04:47:14 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 04:47:13 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 0694b98c-9296-49ce-ab33-909cb03ec065 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549601233891 +OkHttp-Received-Millis: 1549601234313 + +2019-02-08 10:17:14.320 [main] INFO - ********* END *********: +2019-02-08 10:55:32.502 [main] INFO - ********* START ********* +2019-02-08 10:55:32.515 [main] INFO - Authentication Type : http_signature +2019-02-08 10:55:32.515 [main] INFO - Request Type: PUT +2019-02-08 10:55:32.516 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-08 10:55:32.516 [main] INFO - Digest: SHA-256=B/CNo4vGf0K3COzdmREEjeuLmdsPOBHwwJmY0FsUW1I= +2019-02-08 10:55:32.554 [main] INFO - v-c-merchant-id: testrest +2019-02-08 10:55:32.555 [main] INFO - Date: Fri, 8 Feb 2019 05:25:32 GMT +2019-02-08 10:55:32.555 [main] INFO - Host: apitest.cybersource.com +2019-02-08 10:55:32.555 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Y6l2U5m4+6pLK/pQsIBd7qWLFhxwGbAm5Y17QcIe/Bo=" +2019-02-08 10:55:32.556 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 10:55:35.019 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testrest_v604","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-08 10:55:35.020 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-08 10:55:35.020 [main] INFO - Response Code: 201 +2019-02-08 10:55:35.021 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_8999c0e3-83b1-41c7-abad-72979fcfabda +X-OPNET-Transaction-Trace: a2_827590c0-1ff1-499f-a358-f8ab81959cc1 +Cache-Control: no-cache, no-transform +ETag: "689991228-gzip" +Expires: Fri, 08 Feb 2019 05:25:34 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 05:25:34 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: f21842e3-b418-4f3a-80c4-be5eb4287f0a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549603533598 +OkHttp-Received-Millis: 1549603534996 + +2019-02-08 10:55:35.022 [main] INFO - ********* END *********: +2019-02-08 10:55:35.062 [main] INFO - ********* START ********* +2019-02-08 10:55:35.062 [main] INFO - Authentication Type : http_signature +2019-02-08 10:55:35.063 [main] INFO - Request Type: PUT +2019-02-08 10:55:35.064 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-08 10:55:35.064 [main] INFO - Digest: SHA-256=obbqGQ7vcDgZ90wEsXruRpyQJFe9W4E+z7Ervkj3v7c= +2019-02-08 10:55:35.064 [main] INFO - v-c-merchant-id: testrest +2019-02-08 10:55:35.065 [main] INFO - Date: Fri, 8 Feb 2019 05:25:32 GMT +2019-02-08 10:55:35.065 [main] INFO - Host: apitest.cybersource.com +2019-02-08 10:55:35.066 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="UW6i9Ey4WiitAssnfIJCcqMEEjfPq1+Gwvh5L7iugIo=" +2019-02-08 10:55:35.067 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 10:55:35.528 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-08 10:55:35.529 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-08 10:55:35.529 [main] INFO - Response Code: 400 +2019-02-08 10:55:35.530 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a20404f3-9454-42fe-9c03-c141c8bdb3ba +X-OPNET-Transaction-Trace: a2_31d8e218-1a33-4946-9d8c-4fb97a9d3f41 +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Fri, 08 Feb 2019 05:25:35 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 05:25:35 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c851b048-b52b-4f2d-ac5f-f28603261c48 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549603535071 +OkHttp-Received-Millis: 1549603535526 + +2019-02-08 10:55:35.530 [main] INFO - ********* END *********: +2019-02-08 11:01:12.468 [main] INFO - ********* START ********* +2019-02-08 11:01:12.486 [main] INFO - Authentication Type : http_signature +2019-02-08 11:01:12.486 [main] INFO - Request Type: DELETE +2019-02-08 11:01:12.488 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/testrest_v604, requestType=DELETE} +2019-02-08 11:01:12.488 [main] INFO - v-c-merchant-id: testrest +2019-02-08 11:01:12.528 [main] INFO - Date: Fri, 8 Feb 2019 05:31:12 GMT +2019-02-08 11:01:12.528 [main] INFO - Host: apitest.cybersource.com +2019-02-08 11:01:12.529 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="TkZjzSBIFzw9hMjOQP54iJy7G/louxKC/Rt+tLNnWgg=" +2019-02-08 11:01:12.531 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 11:01:14.256 [main] INFO - Request Body: null +2019-02-08 11:01:14.257 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604} +2019-02-08 11:01:14.257 [main] INFO - Response Code: 200 +2019-02-08 11:01:14.258 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_9046f686-fa01-40a1-9c6c-1685c468e217 +X-OPNET-Transaction-Trace: a2_fe48cf12-bbae-49b7-8458-77b23b053091 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Fri, 08 Feb 2019 05:31:14 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 05:31:14 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6df988fb-f654-4bf4-b6ea-8390d3510fa1 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549603873666 +OkHttp-Received-Millis: 1549603874219 + +2019-02-08 11:01:14.258 [main] INFO - ********* END *********: +2019-02-08 11:01:14.289 [main] INFO - ********* START ********* +2019-02-08 11:01:14.289 [main] INFO - Authentication Type : http_signature +2019-02-08 11:01:14.290 [main] INFO - Request Type: DELETE +2019-02-08 11:01:14.291 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/ghsrrawasbhfhcb, requestType=DELETE} +2019-02-08 11:01:14.292 [main] INFO - v-c-merchant-id: testrest +2019-02-08 11:01:14.292 [main] INFO - Date: Fri, 8 Feb 2019 05:31:12 GMT +2019-02-08 11:01:14.293 [main] INFO - Host: apitest.cybersource.com +2019-02-08 11:01:14.293 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="iePkFrieNGmW2QCMlyWnEhERpjM9H3HvC3+fIUUFX28=" +2019-02-08 11:01:14.294 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 11:01:14.757 [main] INFO - Request Body: null +2019-02-08 11:01:14.757 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604} +2019-02-08 11:01:14.757 [main] INFO - Response Code: 404 +2019-02-08 11:01:14.758 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_590ebbc3-3dc2-4e38-b8e0-1eb5f1e22fe4 +X-OPNET-Transaction-Trace: a2_cdb72a2e-1b56-479b-bf3e-c4f05e10431b +Cache-Control: no-cache, no-transform +ETag: "860016692-gzip" +Expires: Fri, 08 Feb 2019 05:31:14 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 05:31:14 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a6f05a74-6290-46ac-b6e5-236ede0c1ba2 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549603874299 +OkHttp-Received-Millis: 1549603874749 + +2019-02-08 11:01:14.758 [main] INFO - ********* END *********: +2019-02-08 11:02:29.185 [main] INFO - ********* START ********* +2019-02-08 11:02:29.200 [main] INFO - Authentication Type : http_signature +2019-02-08 11:02:29.201 [main] INFO - Request Type: DELETE +2019-02-08 11:02:29.201 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/testrest_v604, requestType=DELETE} +2019-02-08 11:02:29.202 [main] INFO - v-c-merchant-id: testrest +2019-02-08 11:02:29.248 [main] INFO - Date: Fri, 8 Feb 2019 05:32:28 GMT +2019-02-08 11:02:29.249 [main] INFO - Host: apitest.cybersource.com +2019-02-08 11:02:29.249 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="UmoITtPJ7Vj6wAA6AFG5XAu6xZRDXanql3UU4qu0V2U=" +2019-02-08 11:02:29.251 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 11:02:30.893 [main] INFO - Request Body: null +2019-02-08 11:02:30.893 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"Requested subscription does not exist."} +2019-02-08 11:02:30.894 [main] INFO - Response Code: 404 +2019-02-08 11:02:30.894 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d92eeb5e-eee9-45c8-b716-bce8e168b697 +X-OPNET-Transaction-Trace: a2_f686b176-a8ab-4695-bc8d-c66eac70785c +Cache-Control: no-cache, no-transform +ETag: "1483526712-gzip" +Expires: Fri, 08 Feb 2019 05:32:30 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 05:32:30 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7fc4b985-dcf4-449f-8bc2-f6f746a10b9b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549603950447 +OkHttp-Received-Millis: 1549603950868 + +2019-02-08 11:02:30.894 [main] INFO - ********* END *********: +2019-02-08 11:02:30.932 [main] INFO - ********* START ********* +2019-02-08 11:02:30.933 [main] INFO - Authentication Type : http_signature +2019-02-08 11:02:30.933 [main] INFO - Request Type: DELETE +2019-02-08 11:02:30.933 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/ghsrrawasbhfhcb, requestType=DELETE} +2019-02-08 11:02:30.934 [main] INFO - v-c-merchant-id: testrest +2019-02-08 11:02:30.934 [main] INFO - Date: Fri, 8 Feb 2019 05:32:28 GMT +2019-02-08 11:02:30.935 [main] INFO - Host: apitest.cybersource.com +2019-02-08 11:02:30.935 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="15eLWVkrfNv9vDEZRabcm5CGW6NnW8/ed2gWoNFmVm4=" +2019-02-08 11:02:30.935 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 11:02:31.335 [main] INFO - Request Body: null +2019-02-08 11:02:31.335 [main] INFO - Response Message: Response{protocol=http/1.1, code=404, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604} +2019-02-08 11:02:31.335 [main] INFO - Response Code: 404 +2019-02-08 11:02:31.335 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_14b13e08-40bb-410b-919b-019ce847baf2 +X-OPNET-Transaction-Trace: a2_a7ea156c-67f1-43f0-bd88-20afb44aced5 +Cache-Control: no-cache, no-transform +ETag: "860016692-gzip" +Expires: Fri, 08 Feb 2019 05:32:31 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 05:32:31 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 1830737b-358a-458b-866d-8f188110ee56 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549603950938 +OkHttp-Received-Millis: 1549603951335 + +2019-02-08 11:02:31.340 [main] INFO - ********* END *********: +2019-02-08 11:38:23.862 [main] INFO - ********* START ********* +2019-02-08 11:38:23.875 [main] INFO - Authentication Type : http_signature +2019-02-08 11:38:23.875 [main] INFO - Request Type: PUT +2019-02-08 11:38:23.876 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-08 11:38:23.877 [main] INFO - Digest: SHA-256=B/CNo4vGf0K3COzdmREEjeuLmdsPOBHwwJmY0FsUW1I= +2019-02-08 11:38:23.928 [main] INFO - v-c-merchant-id: testrest +2019-02-08 11:38:23.929 [main] INFO - Date: Fri, 8 Feb 2019 06:08:23 GMT +2019-02-08 11:38:23.929 [main] INFO - Host: apitest.cybersource.com +2019-02-08 11:38:23.930 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="VU4aMPZ3W5JqVQk2mek99/KQ1eU4bSGOX5RAxde+9Fw=" +2019-02-08 11:38:23.930 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 11:38:25.664 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testrest_v604","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-08 11:38:25.664 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-08 11:38:25.664 [main] INFO - Response Code: 201 +2019-02-08 11:38:25.664 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e2ae7eb9-539f-45a0-a35a-03343e80da21 +X-OPNET-Transaction-Trace: a2_023d11cf-87a7-44e5-8c72-423285d1cc66 +Cache-Control: no-cache, no-transform +ETag: "689991228-gzip" +Expires: Fri, 08 Feb 2019 06:08:25 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:08:25 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7ea97ae6-0608-4476-a828-10222d6c6574 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549606104875 +OkHttp-Received-Millis: 1549606105640 + +2019-02-08 11:38:25.664 [main] INFO - ********* END *********: +2019-02-08 11:38:25.697 [main] INFO - ********* START ********* +2019-02-08 11:38:25.697 [main] INFO - Authentication Type : http_signature +2019-02-08 11:38:25.697 [main] INFO - Request Type: PUT +2019-02-08 11:38:25.698 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-08 11:38:25.698 [main] INFO - Digest: SHA-256=obbqGQ7vcDgZ90wEsXruRpyQJFe9W4E+z7Ervkj3v7c= +2019-02-08 11:38:25.698 [main] INFO - v-c-merchant-id: testrest +2019-02-08 11:38:25.699 [main] INFO - Date: Fri, 8 Feb 2019 06:08:23 GMT +2019-02-08 11:38:25.699 [main] INFO - Host: apitest.cybersource.com +2019-02-08 11:38:25.700 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="NyxTdwZei2X0hjWExweu23rZHHnQk+elOaapI/7yme4=" +2019-02-08 11:38:25.700 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 11:38:26.191 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-08 11:38:26.192 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-08 11:38:26.192 [main] INFO - Response Code: 400 +2019-02-08 11:38:26.193 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_79f77ed3-0262-4771-ba41-585a971673c6 +X-OPNET-Transaction-Trace: a2_5bc44583-6a3e-40db-943d-57acd20fcdec +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Fri, 08 Feb 2019 06:08:26 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:08:26 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 9aec1565-3c83-4e1c-9a3d-5e3ad2cd062e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549606105703 +OkHttp-Received-Millis: 1549606106188 + +2019-02-08 11:38:26.194 [main] INFO - ********* END *********: +2019-02-08 11:38:56.914 [main] INFO - ********* START ********* +2019-02-08 11:38:56.927 [main] INFO - Authentication Type : http_signature +2019-02-08 11:38:56.928 [main] INFO - Request Type: DELETE +2019-02-08 11:38:56.929 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/testrest_v604, requestType=DELETE} +2019-02-08 11:38:56.929 [main] INFO - v-c-merchant-id: testrest +2019-02-08 11:38:56.965 [main] INFO - Date: Fri, 8 Feb 2019 06:08:56 GMT +2019-02-08 11:38:56.966 [main] INFO - Host: apitest.cybersource.com +2019-02-08 11:38:56.966 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="uQdXJIQVq706eijhFim6MLTTEMctx9v1WbYNVq0QCXM=" +2019-02-08 11:38:56.967 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 11:38:58.352 [main] INFO - Request Body: null +2019-02-08 11:38:58.352 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604} +2019-02-08 11:38:58.353 [main] INFO - Response Code: 200 +2019-02-08 11:38:58.353 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_56d7ad66-b1e7-4930-939d-7673bab638f7 +X-OPNET-Transaction-Trace: a2_e2a933a9-7541-4b56-b523-4e98fa55b67d +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Fri, 08 Feb 2019 06:08:58 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:08:57 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d2dd97e3-91d8-4f45-8d7a-044a6d0a4d0b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549606137834 +OkHttp-Received-Millis: 1549606138332 + +2019-02-08 11:38:58.353 [main] INFO - ********* END *********: +2019-02-08 11:38:58.383 [main] INFO - ********* START ********* +2019-02-08 11:38:58.383 [main] INFO - Authentication Type : http_signature +2019-02-08 11:38:58.383 [main] INFO - Request Type: DELETE +2019-02-08 11:38:58.384 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/ghsrrawasbhfhcb, requestType=DELETE} +2019-02-08 11:38:58.384 [main] INFO - v-c-merchant-id: testrest +2019-02-08 11:38:58.384 [main] INFO - Date: Fri, 8 Feb 2019 06:08:56 GMT +2019-02-08 11:38:58.385 [main] INFO - Host: apitest.cybersource.com +2019-02-08 11:38:58.385 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="KVnVLECvjxOWOYclNwlnjsJxB3O6oqhdVfCoJL+vkZ0=" +2019-02-08 11:38:58.385 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 11:38:58.870 [main] INFO - Request Body: null +2019-02-08 11:38:58.870 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604} +2019-02-08 11:38:58.871 [main] INFO - Response Code: 404 +2019-02-08 11:38:58.871 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_21e93841-1a33-426f-8479-3f4be3d4ed9c +X-OPNET-Transaction-Trace: a2_993f103f-6998-4c44-bfff-a42c8453bea4 +Cache-Control: no-cache, no-transform +ETag: "860016692-gzip" +Expires: Fri, 08 Feb 2019 06:08:58 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:08:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 3530e1ca-1833-4bf4-bf34-2eb5844aa2de +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549606138389 +OkHttp-Received-Millis: 1549606138863 + +2019-02-08 11:38:58.871 [main] INFO - ********* END *********: +2019-02-08 11:51:19.304 [main] INFO - ********* START ********* +2019-02-08 11:51:19.318 [main] INFO - Authentication Type : http_signature +2019-02-08 11:51:19.318 [main] INFO - Request Type: GET +2019-02-08 11:51:19.319 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-08 11:51:19.363 [main] INFO - v-c-merchant-id: testrest +2019-02-08 11:51:19.364 [main] INFO - Date: Fri, 8 Feb 2019 06:21:18 GMT +2019-02-08 11:51:19.364 [main] INFO - Host: apitest.cybersource.com +2019-02-08 11:51:19.365 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="WewPPqqs9tzbiHjWHO76ZlC6B2dthB2HSqkuP7575zw=" +2019-02-08 11:51:19.365 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 11:51:26.265 [main] INFO - Request Body: null +2019-02-08 11:51:26.266 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime} +2019-02-08 11:51:26.266 [main] INFO - Response Code: 200 +2019-02-08 11:51:26.267 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_ad2ee8ae-733e-47e1-b938-c8e3bdcf68f8 +X-OPNET-Transaction-Trace: a2_14243a6c-f5c5-4ad0-aeb7-65c3a276e835 +Cache-Control: no-cache, no-transform +ETag: "98577355-gzip" +Expires: Fri, 08 Feb 2019 06:21:26 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:21:26 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a3d64ca0-9ed9-4f98-aea8-1a68715b548f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549606880292 +OkHttp-Received-Millis: 1549606886220 + +2019-02-08 11:51:26.268 [main] INFO - ********* END *********: +2019-02-08 11:51:26.332 [main] INFO - ********* START ********* +2019-02-08 11:51:26.333 [main] INFO - Authentication Type : http_signature +2019-02-08 11:51:26.333 [main] INFO - Request Type: GET +2019-02-08 11:51:26.335 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime, requestType=GET} +2019-02-08 11:51:26.335 [main] INFO - v-c-merchant-id: testrest +2019-02-08 11:51:26.336 [main] INFO - Date: Fri, 8 Feb 2019 06:21:18 GMT +2019-02-08 11:51:26.336 [main] INFO - Host: apitest.cybersource.com +2019-02-08 11:51:26.336 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Yfy3zlhEAtaJvXzv5u9TQ6IO8sFXLxmTzhvw7254dzI=" +2019-02-08 11:51:26.337 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 11:51:26.818 [main] INFO - Request Body: null +2019-02-08 11:51:26.819 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime} +2019-02-08 11:51:26.819 [main] INFO - Response Code: 400 +2019-02-08 11:51:26.819 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d324f176-18e4-4d6f-80f9-c88cf261dc42 +X-OPNET-Transaction-Trace: a2_ade18468-987d-4c59-9188-ae16cb1917a5 +Cache-Control: no-cache, no-transform +ETag: "480352859-gzip" +Expires: Fri, 08 Feb 2019 06:21:26 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:21:26 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 08332e92-91f0-4190-9b44-f9f4fb0910b2 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549606886340 +OkHttp-Received-Millis: 1549606886816 + +2019-02-08 11:51:26.820 [main] INFO - ********* END *********: +2019-02-08 11:51:26.848 [main] INFO - ********* START ********* +2019-02-08 11:51:26.849 [main] INFO - Authentication Type : http_signature +2019-02-08 11:51:26.849 [main] INFO - Request Type: GET +2019-02-08 11:51:26.849 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2019-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-08 11:51:26.850 [main] INFO - v-c-merchant-id: testrest +2019-02-08 11:51:26.850 [main] INFO - Date: Fri, 8 Feb 2019 06:21:18 GMT +2019-02-08 11:51:26.850 [main] INFO - Host: apitest.cybersource.com +2019-02-08 11:51:26.851 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="J8WzdYTMd/KeUoOk4b9Ghwbfr6NPoiGFKDZCa61liW0=" +2019-02-08 11:51:26.851 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 11:51:27.350 [main] INFO - Request Body: null +2019-02-08 11:51:27.350 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime} +2019-02-08 11:51:27.366 [main] INFO - Response Code: 404 +2019-02-08 11:51:27.366 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e591edfc-0d21-4116-bf06-440b0753ebd0 +X-OPNET-Transaction-Trace: a2_648b0d44-a243-4b82-beef-f1f7c1d0306f +Cache-Control: no-cache, no-transform +ETag: "1803701484-gzip" +Expires: Fri, 08 Feb 2019 06:21:27 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:21:27 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: bace02dc-044d-4c27-91f0-f19c867947ef +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549606886852 +OkHttp-Received-Millis: 1549606887348 + +2019-02-08 11:51:27.368 [main] INFO - ********* END *********: +2019-02-08 11:57:20.571 [main] INFO - ********* START ********* +2019-02-08 11:57:20.585 [main] INFO - Authentication Type : http_signature +2019-02-08 11:57:20.585 [main] INFO - Request Type: POST +2019-02-08 11:57:20.586 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-08 11:57:20.627 [main] INFO - Digest: SHA-256=56te2rZ4obeu27jjIHlnbLo8mq/x90zGxSd4tAFSD3E= +2019-02-08 11:57:20.627 [main] INFO - v-c-merchant-id: testrest +2019-02-08 11:57:20.627 [main] INFO - Date: Fri, 8 Feb 2019 06:27:20 GMT +2019-02-08 11:57:20.628 [main] INFO - Host: apitest.cybersource.com +2019-02-08 11:57:20.628 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="BtPDuyHe9EplhbQZQWqYO3gLxF4AHWfRvoor6z6g//c=" +2019-02-08 11:57:20.628 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 11:57:22.525 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v604","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-08 11:57:22.525 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"810d0efc-d818-9334-e053-a2588e0a21db","message":"Task already exists with same report name ","localizationKey":"cybsapi.task.name.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-08 11:57:22.526 [main] INFO - Response Code: 400 +2019-02-08 11:57:22.526 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_0dc9b2b5-4402-4036-aa8e-5459b1cd2c14 +X-OPNET-Transaction-Trace: a2_856abc85-c12c-4adf-bcaf-7df406fb4e13 +Cache-Control: no-cache, no-transform +ETag: "-1528685588-gzip" +Expires: Fri, 08 Feb 2019 06:27:22 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:27:22 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 742f47d6-0720-4371-9284-e4c80f7ee38e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549607241640 +OkHttp-Received-Millis: 1549607242503 + +2019-02-08 11:57:22.526 [main] INFO - ********* END *********: +2019-02-08 11:57:22.572 [main] INFO - ********* START ********* +2019-02-08 11:57:22.572 [main] INFO - Authentication Type : http_signature +2019-02-08 11:57:22.573 [main] INFO - Request Type: POST +2019-02-08 11:57:22.573 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-08 11:57:22.574 [main] INFO - Digest: SHA-256=WRIH+BI7wCOOoyM2il5xk/FPn4NdlvPoyhCGODb0BzU= +2019-02-08 11:57:22.574 [main] INFO - v-c-merchant-id: testrest +2019-02-08 11:57:22.574 [main] INFO - Date: Fri, 8 Feb 2019 06:27:20 GMT +2019-02-08 11:57:22.574 [main] INFO - Host: apitest.cybersource.com +2019-02-08 11:57:22.575 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="bvLLDkp5J2SNSpxCMxWUs8/BGPax6xx0AUW05c3df/E=" +2019-02-08 11:57:22.576 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 11:57:23.110 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequ","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v2","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-08 11:57:23.111 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest} +2019-02-08 11:57:23.111 [main] INFO - Response Code: 400 +2019-02-08 11:57:23.112 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_0453e7de-033d-4377-97a3-c97b2196cd53 +X-OPNET-Transaction-Trace: a2_87460c30-b3de-49dc-a2ee-b4151ff04e88 +Cache-Control: no-cache, no-transform +ETag: "-393622008-gzip" +Expires: Fri, 08 Feb 2019 06:27:22 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:27:22 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: f30ad22c-7064-4a79-afcd-39e449ded9fd +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549607242580 +OkHttp-Received-Millis: 1549607243092 + +2019-02-08 11:57:23.113 [main] INFO - ********* END *********: +2019-02-08 12:01:12.112 [main] INFO - ********* START ********* +2019-02-08 12:01:12.127 [main] INFO - Authentication Type : http_signature +2019-02-08 12:01:12.127 [main] INFO - Request Type: POST +2019-02-08 12:01:12.128 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-08 12:01:12.128 [main] INFO - Digest: SHA-256=56te2rZ4obeu27jjIHlnbLo8mq/x90zGxSd4tAFSD3E= +2019-02-08 12:01:12.129 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:01:12.138 [main] INFO - Date: Fri, 8 Feb 2019 06:31:11 GMT +2019-02-08 12:01:12.139 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:01:12.139 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="9XffVP4SpEbflhSnvZQakRaH/dZuL2kp+P3yhXDwt8c=" +2019-02-08 12:01:12.140 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:01:13.826 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v604","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-08 12:01:13.827 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"810d0efc-d818-9334-e053-a2588e0a21db","message":"Task already exists with same report name ","localizationKey":"cybsapi.task.name.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-08 12:01:13.827 [main] INFO - Response Code: 400 +2019-02-08 12:01:13.827 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_aa69d70e-d155-4d8b-b053-525c705951dc +X-OPNET-Transaction-Trace: a2_fd4ecc4f-fc07-4751-bc0d-bd079427db08 +Cache-Control: no-cache, no-transform +ETag: "-1528685588-gzip" +Expires: Fri, 08 Feb 2019 06:31:13 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:31:13 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 1b549fb8-9695-498f-bac0-5b4495ec8ece +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549607473061 +OkHttp-Received-Millis: 1549607473801 + +2019-02-08 12:01:13.828 [main] INFO - ********* END *********: +2019-02-08 12:01:13.873 [main] INFO - ********* START ********* +2019-02-08 12:01:13.874 [main] INFO - Authentication Type : http_signature +2019-02-08 12:01:13.875 [main] INFO - Request Type: POST +2019-02-08 12:01:13.875 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-08 12:01:13.876 [main] INFO - Digest: SHA-256=WRIH+BI7wCOOoyM2il5xk/FPn4NdlvPoyhCGODb0BzU= +2019-02-08 12:01:13.876 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:01:13.877 [main] INFO - Date: Fri, 8 Feb 2019 06:31:11 GMT +2019-02-08 12:01:13.878 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:01:13.878 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Wps5GJzpQD3NZHKCu9Pavm7pKlJjWHEAb3mm63KMraw=" +2019-02-08 12:01:13.879 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:01:14.411 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequ","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v2","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-08 12:01:14.418 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest} +2019-02-08 12:01:14.419 [main] INFO - Response Code: 400 +2019-02-08 12:01:14.419 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_549f24b6-4eee-476a-9839-7fd8c7e41025 +X-OPNET-Transaction-Trace: a2_4b6ecf7f-631d-48d0-ad42-eb4e8643d31b +Cache-Control: no-cache, no-transform +ETag: "-393622008-gzip" +Expires: Fri, 08 Feb 2019 06:31:14 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:31:13 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: efefec4d-feaa-4611-80ce-1408c14baa79 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549607473882 +OkHttp-Received-Millis: 1549607474389 + +2019-02-08 12:01:14.420 [main] INFO - ********* END *********: +2019-02-08 12:02:31.878 [main] INFO - ********* START ********* +2019-02-08 12:02:31.894 [main] INFO - Authentication Type : http_signature +2019-02-08 12:02:31.894 [main] INFO - Request Type: POST +2019-02-08 12:02:31.895 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-08 12:02:31.942 [main] INFO - Digest: SHA-256=loFSrgLcFUKQZ5yG+wiEAwrYOdwvmVHAUHYgknwquSs= +2019-02-08 12:02:31.943 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:02:31.943 [main] INFO - Date: Fri, 8 Feb 2019 06:32:31 GMT +2019-02-08 12:02:31.944 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:02:31.944 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="EJ+pUhHKvLEzByBOa6iO+k6AycCC97wq9tpCP/auYOI=" +2019-02-08 12:02:31.944 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:02:33.921 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_feb8","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-08 12:02:33.922 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest} +2019-02-08 12:02:33.922 [main] INFO - Response Code: 200 +2019-02-08 12:02:33.923 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_b04803f6-0e52-42f0-939b-055f0414f830 +X-OPNET-Transaction-Trace: a2_c7d08748-1a54-4acb-a0ec-cc1df9d3b8c2 +Cache-Control: no-cache, no-transform +ETag: "1877106787-gzip" +Expires: Fri, 08 Feb 2019 06:32:33 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:32:33 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c1a0d6cc-56ad-4f06-8c3c-c463e7963fd6 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549607553058 +OkHttp-Received-Millis: 1549607553892 + +2019-02-08 12:02:33.924 [main] INFO - ********* END *********: +2019-02-08 12:02:33.956 [main] INFO - ********* START ********* +2019-02-08 12:02:33.956 [main] INFO - Authentication Type : http_signature +2019-02-08 12:02:33.957 [main] INFO - Request Type: POST +2019-02-08 12:02:33.957 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-08 12:02:33.958 [main] INFO - Digest: SHA-256=WRIH+BI7wCOOoyM2il5xk/FPn4NdlvPoyhCGODb0BzU= +2019-02-08 12:02:33.958 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:02:33.958 [main] INFO - Date: Fri, 8 Feb 2019 06:32:31 GMT +2019-02-08 12:02:33.959 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:02:33.959 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="zSoyYo+nd6iTjDkiuQfakkss4Yj76j9LXPgLpYPtD3U=" +2019-02-08 12:02:33.959 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:02:34.487 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequ","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v2","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-08 12:02:34.488 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest} +2019-02-08 12:02:34.488 [main] INFO - Response Code: 400 +2019-02-08 12:02:34.488 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_7baf276c-a417-4c19-94e8-e6daaf7907b7 +X-OPNET-Transaction-Trace: a2_03f9f9fc-b855-40c9-9d9d-bfdf5f55571c +Cache-Control: no-cache, no-transform +ETag: "-393622008-gzip" +Expires: Fri, 08 Feb 2019 06:32:34 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:32:34 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c67d7aef-fd09-42ea-b313-89f14db1af2a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549607553963 +OkHttp-Received-Millis: 1549607554485 + +2019-02-08 12:02:34.489 [main] INFO - ********* END *********: +2019-02-08 12:03:19.673 [main] INFO - ********* START ********* +2019-02-08 12:03:19.699 [main] INFO - Authentication Type : http_signature +2019-02-08 12:03:19.700 [main] INFO - Request Type: PUT +2019-02-08 12:03:19.701 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-08 12:03:19.701 [main] INFO - Digest: SHA-256=B/CNo4vGf0K3COzdmREEjeuLmdsPOBHwwJmY0FsUW1I= +2019-02-08 12:03:19.701 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:03:19.702 [main] INFO - Date: Fri, 8 Feb 2019 06:33:19 GMT +2019-02-08 12:03:19.702 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:03:19.702 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="XRuEAw6HkD7QjLyxt0CQlrq3tVsLKZCkoCLPzt7oBHA=" +2019-02-08 12:03:19.703 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:03:21.399 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testrest_v604","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-08 12:03:21.400 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-08 12:03:21.400 [main] INFO - Response Code: 201 +2019-02-08 12:03:21.401 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_0e4b8fcf-9bbb-45a4-bbd6-34c7f5f488ce +X-OPNET-Transaction-Trace: a2_90ab84a5-2b58-4c5c-b072-1cfccc0dc10e +Cache-Control: no-cache, no-transform +ETag: "689991228-gzip" +Expires: Fri, 08 Feb 2019 06:33:21 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:33:21 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7bc38c1f-e768-4ef1-8ef6-5bd656a97aff +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549607600618 +OkHttp-Received-Millis: 1549607601375 + +2019-02-08 12:03:21.401 [main] INFO - ********* END *********: +2019-02-08 12:03:21.433 [main] INFO - ********* START ********* +2019-02-08 12:03:21.434 [main] INFO - Authentication Type : http_signature +2019-02-08 12:03:21.435 [main] INFO - Request Type: PUT +2019-02-08 12:03:21.436 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-08 12:03:21.436 [main] INFO - Digest: SHA-256=obbqGQ7vcDgZ90wEsXruRpyQJFe9W4E+z7Ervkj3v7c= +2019-02-08 12:03:21.437 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:03:21.438 [main] INFO - Date: Fri, 8 Feb 2019 06:33:19 GMT +2019-02-08 12:03:21.438 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:03:21.438 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ZIwxipyjIsiQrE9qcuiOPb2sekigC1mXzTI6kk8fXgQ=" +2019-02-08 12:03:21.439 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:03:21.981 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-08 12:03:21.982 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-08 12:03:21.982 [main] INFO - Response Code: 400 +2019-02-08 12:03:21.983 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_19fc3929-0103-4bd0-9b7b-4595e47a49fd +X-OPNET-Transaction-Trace: a2_c48bb3cf-a435-4eec-8c79-3c815f320bd4 +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Fri, 08 Feb 2019 06:33:21 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:33:21 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 0c920c23-20f6-4249-b126-38e97eb3572a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549607601442 +OkHttp-Received-Millis: 1549607601979 + +2019-02-08 12:03:21.983 [main] INFO - ********* END *********: +2019-02-08 12:04:01.393 [main] INFO - ********* START ********* +2019-02-08 12:04:01.408 [main] INFO - Authentication Type : http_signature +2019-02-08 12:04:01.409 [main] INFO - Request Type: PUT +2019-02-08 12:04:01.410 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-08 12:04:01.410 [main] INFO - Digest: SHA-256=B/CNo4vGf0K3COzdmREEjeuLmdsPOBHwwJmY0FsUW1I= +2019-02-08 12:04:01.472 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:04:01.472 [main] INFO - Date: Fri, 8 Feb 2019 06:34:01 GMT +2019-02-08 12:04:01.472 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:04:01.472 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="hsTynYWtGOsI6JW5TBTa4xGoD0T2qRXTuT+qzWgoKzA=" +2019-02-08 12:04:01.478 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:04:03.122 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testrest_v604","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-08 12:04:03.123 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"testrest_v604","message":"Report already exists with same fields ","localizationKey":"cybsapi.report.fields.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-08 12:04:03.123 [main] INFO - Response Code: 400 +2019-02-08 12:04:03.124 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_642743e5-1211-497b-9693-b79682d4a6e6 +X-OPNET-Transaction-Trace: a2_5fb86c24-23ee-43b3-8e34-b071769443c0 +Cache-Control: no-cache, no-transform +ETag: "153253739-gzip" +Expires: Fri, 08 Feb 2019 06:34:02 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:34:02 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: cc03a8e1-79ba-4245-819b-36ea63067549 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549607642435 +OkHttp-Received-Millis: 1549607643099 + +2019-02-08 12:04:03.125 [main] INFO - ********* END *********: +2019-02-08 12:04:03.166 [main] INFO - ********* START ********* +2019-02-08 12:04:03.166 [main] INFO - Authentication Type : http_signature +2019-02-08 12:04:03.167 [main] INFO - Request Type: PUT +2019-02-08 12:04:03.167 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-08 12:04:03.167 [main] INFO - Digest: SHA-256=obbqGQ7vcDgZ90wEsXruRpyQJFe9W4E+z7Ervkj3v7c= +2019-02-08 12:04:03.168 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:04:03.168 [main] INFO - Date: Fri, 8 Feb 2019 06:34:01 GMT +2019-02-08 12:04:03.168 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:04:03.169 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="kjC6u9ACJIkx6ZIzPOqPxbYZSd4oi9evoUGBM/97Mtg=" +2019-02-08 12:04:03.169 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:04:03.647 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-08 12:04:03.648 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-08 12:04:03.649 [main] INFO - Response Code: 400 +2019-02-08 12:04:03.649 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_527102bc-8f09-4f28-8ad3-31a3c26f3fbd +X-OPNET-Transaction-Trace: a2_51d96b05-6b67-46df-a909-94f031f12809 +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Fri, 08 Feb 2019 06:34:03 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:34:03 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c5af4c2b-224a-47ef-96f5-81517a786d1b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549607643172 +OkHttp-Received-Millis: 1549607643646 + +2019-02-08 12:04:03.650 [main] INFO - ********* END *********: +2019-02-08 12:04:38.293 [main] INFO - ********* START ********* +2019-02-08 12:04:38.306 [main] INFO - Authentication Type : http_signature +2019-02-08 12:04:38.306 [main] INFO - Request Type: DELETE +2019-02-08 12:04:38.307 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/testrest_v604, requestType=DELETE} +2019-02-08 12:04:38.307 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:04:38.345 [main] INFO - Date: Fri, 8 Feb 2019 06:34:37 GMT +2019-02-08 12:04:38.346 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:04:38.346 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="vq87qn3blq3C72YY9IX1ESXSqRfgh3YXUu8bn1ksAcQ=" +2019-02-08 12:04:38.346 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:04:39.867 [main] INFO - Request Body: null +2019-02-08 12:04:39.867 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604} +2019-02-08 12:04:39.868 [main] INFO - Response Code: 200 +2019-02-08 12:04:39.868 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_0620369c-2450-4b24-ace4-adf4d84cb2a7 +X-OPNET-Transaction-Trace: a2_4291f01d-b7ee-4dbf-b4dc-8ee079583128 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Fri, 08 Feb 2019 06:34:39 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:34:39 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c87ff7d9-3b9d-4641-8dff-ab3a1eb083b9 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549607679336 +OkHttp-Received-Millis: 1549607679848 + +2019-02-08 12:04:39.869 [main] INFO - ********* END *********: +2019-02-08 12:04:39.901 [main] INFO - ********* START ********* +2019-02-08 12:04:39.901 [main] INFO - Authentication Type : http_signature +2019-02-08 12:04:39.901 [main] INFO - Request Type: DELETE +2019-02-08 12:04:39.902 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/ghsrrawasbhfhcb, requestType=DELETE} +2019-02-08 12:04:39.902 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:04:39.903 [main] INFO - Date: Fri, 8 Feb 2019 06:34:37 GMT +2019-02-08 12:04:39.903 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:04:39.903 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="qnEsx4TROkS37TEGzpvhy3Xlp6ycfL4OcjHvM9PnQoU=" +2019-02-08 12:04:39.904 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:04:40.399 [main] INFO - Request Body: null +2019-02-08 12:04:40.400 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604} +2019-02-08 12:04:40.400 [main] INFO - Response Code: 404 +2019-02-08 12:04:40.400 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_019ab9f9-dceb-444b-a26d-63c0f6613181 +X-OPNET-Transaction-Trace: a2_4f3e8f33-1289-4154-98f8-317c6bfd3ddd +Cache-Control: no-cache, no-transform +ETag: "860016692-gzip" +Expires: Fri, 08 Feb 2019 06:34:40 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:34:39 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: b70d407b-ca33-481e-b65a-a04a40856536 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549607679907 +OkHttp-Received-Millis: 1549607680392 + +2019-02-08 12:04:40.401 [main] INFO - ********* END *********: +2019-02-08 12:11:55.347 [main] INFO - ********* START ********* +2019-02-08 12:11:55.359 [main] INFO - Authentication Type : http_signature +2019-02-08 12:11:55.360 [main] INFO - Request Type: GET +2019-02-08 12:11:55.360 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest, requestType=GET} +2019-02-08 12:11:55.361 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:11:55.399 [main] INFO - Date: Fri, 8 Feb 2019 06:41:55 GMT +2019-02-08 12:11:55.400 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:11:55.401 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="7OwrU1e+u26dLIRBWoS+HFv41u1AcGHLo7gFU+u4Jl8=" +2019-02-08 12:11:55.401 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:11:56.964 [main] INFO - Request Body: null +2019-02-08 12:11:56.965 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest} +2019-02-08 12:11:56.965 [main] INFO - Response Code: 200 +2019-02-08 12:11:56.966 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_ba831750-eecb-4613-98cd-17593379636f +X-OPNET-Transaction-Trace: a2_bc8e799e-d9d6-4dc7-81b4-891ab3e36587 +Cache-Control: no-cache, no-transform +ETag: "609183382-gzip" +Expires: Fri, 08 Feb 2019 06:41:56 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:41:56 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 50620980-698b-41e1-8441-079045a525b7 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549608116410 +OkHttp-Received-Millis: 1549608116940 + +2019-02-08 12:11:56.966 [main] INFO - ********* END *********: +2019-02-08 12:11:57.100 [main] INFO - ********* START ********* +2019-02-08 12:11:57.100 [main] INFO - Authentication Type : http_signature +2019-02-08 12:11:57.101 [main] INFO - Request Type: GET +2019-02-08 12:11:57.101 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest, requestType=GET} +2019-02-08 12:11:57.102 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:11:57.102 [main] INFO - Date: Fri, 8 Feb 2019 06:41:55 GMT +2019-02-08 12:11:57.103 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:11:57.104 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="wO/godDNoM4NWdClogkaFt4FFf0IkWi+XS2xoOjoUjM=" +2019-02-08 12:11:57.104 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:11:57.593 [main] INFO - Request Body: null +2019-02-08 12:11:57.594 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest} +2019-02-08 12:11:57.594 [main] INFO - Response Code: 404 +2019-02-08 12:11:57.595 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d1a79c4f-18a8-483f-a93d-078422a819c5 +X-OPNET-Transaction-Trace: a2_50f9e1e9-6e45-4421-adc4-63c6d6f87c63 +Cache-Control: no-cache, no-transform +ETag: "-830509477-gzip" +Expires: Fri, 08 Feb 2019 06:41:57 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:41:56 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d2aa46b2-eca4-43f1-b164-d2c6a65abed9 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549608117106 +OkHttp-Received-Millis: 1549608117592 + +2019-02-08 12:11:57.595 [main] INFO - ********* END *********: +2019-02-08 12:11:57.622 [main] INFO - ********* START ********* +2019-02-08 12:11:57.622 [main] INFO - Authentication Type : http_signature +2019-02-08 12:11:57.623 [main] INFO - Request Type: GET +2019-02-08 12:11:57.623 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=bkalama, requestType=GET} +2019-02-08 12:11:57.623 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:11:57.624 [main] INFO - Date: Fri, 8 Feb 2019 06:41:55 GMT +2019-02-08 12:11:57.624 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:11:57.624 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="xR/XYEDxNn8Jl7P3CP5KOUqj9jHYO2kCPDtlJj3ag8E=" +2019-02-08 12:11:57.625 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:11:58.118 [main] INFO - Request Body: null +2019-02-08 12:11:58.118 [main] INFO - Response Message: Response{protocol=http/1.1, code=404, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest} +2019-02-08 12:11:58.118 [main] INFO - Response Code: 400 +2019-02-08 12:11:58.118 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_6f0feab0-1e53-463e-8152-674dc677414a +X-OPNET-Transaction-Trace: a2_c747f61c-a259-4f42-89ea-118e05e5a047 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:41:57 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: dca753bf-5d71-4bdc-a659-769b4c2429ec +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549608117625 +OkHttp-Received-Millis: 1549608118118 + +2019-02-08 12:11:58.118 [main] INFO - ********* END *********: +2019-02-08 12:12:19.149 [main] INFO - ********* START ********* +2019-02-08 12:12:19.165 [main] INFO - Authentication Type : http_signature +2019-02-08 12:12:19.165 [main] INFO - Request Type: GET +2019-02-08 12:12:19.166 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest, requestType=GET} +2019-02-08 12:12:19.167 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:12:19.168 [main] INFO - Date: Fri, 8 Feb 2019 06:42:18 GMT +2019-02-08 12:12:19.168 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:12:19.168 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="u7Lj65tvTlNaIROyuPGTGQ6R2/2H48Sif0eDCLO5Skw=" +2019-02-08 12:12:19.169 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:12:20.639 [main] INFO - Request Body: null +2019-02-08 12:12:20.640 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest} +2019-02-08 12:12:20.640 [main] INFO - Response Code: 200 +2019-02-08 12:12:20.641 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b975d17e-6f48-4981-b852-bac55e0cab28 +X-OPNET-Transaction-Trace: a2_b9db2792-dddc-465f-9f3b-c2ebe25c9bda +Cache-Control: no-cache, no-transform +ETag: "609183382-gzip" +Expires: Fri, 08 Feb 2019 06:42:20 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:42:20 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 97de6443-c415-49f4-af01-772e2cf584e1 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549608140053 +OkHttp-Received-Millis: 1549608140613 + +2019-02-08 12:12:20.641 [main] INFO - ********* END *********: +2019-02-08 12:12:20.779 [main] INFO - ********* START ********* +2019-02-08 12:12:20.780 [main] INFO - Authentication Type : http_signature +2019-02-08 12:12:20.780 [main] INFO - Request Type: GET +2019-02-08 12:12:20.780 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest, requestType=GET} +2019-02-08 12:12:20.781 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:12:20.781 [main] INFO - Date: Fri, 8 Feb 2019 06:42:18 GMT +2019-02-08 12:12:20.781 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:12:20.782 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="dcMsRv3p7gFeARTI9CTZ648EgtsuRmbSquQezhd+4Uw=" +2019-02-08 12:12:20.782 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:12:21.259 [main] INFO - Request Body: null +2019-02-08 12:12:21.259 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest} +2019-02-08 12:12:21.260 [main] INFO - Response Code: 404 +2019-02-08 12:12:21.260 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_3660f064-3cd6-4f17-ab92-159bdc7db78e +X-OPNET-Transaction-Trace: a2_3b9e8a63-8c1e-4ee3-b4f9-d9d3c1017563 +Cache-Control: no-cache, no-transform +ETag: "-830509477-gzip" +Expires: Fri, 08 Feb 2019 06:42:21 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:42:21 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: f4e265f8-dbb9-4fc8-b66d-d5efe4a8ff9f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549608140783 +OkHttp-Received-Millis: 1549608141258 + +2019-02-08 12:12:21.261 [main] INFO - ********* END *********: +2019-02-08 12:13:19.225 [main] INFO - ********* START ********* +2019-02-08 12:13:19.226 [main] INFO - Authentication Type : http_signature +2019-02-08 12:13:19.226 [main] INFO - Request Type: GET +2019-02-08 12:13:19.227 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=bkalama, requestType=GET} +2019-02-08 12:13:19.227 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:13:19.227 [main] INFO - Date: Fri, 8 Feb 2019 06:42:18 GMT +2019-02-08 12:13:19.230 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:13:19.231 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="hmW0oKjSetx12YLpBEfcFzGHGy8Dn0nZaimViUcy0aQ=" +2019-02-08 12:13:19.232 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:13:19.705 [main] INFO - Request Body: null +2019-02-08 12:13:19.705 [main] INFO - Response Message: Response{protocol=http/1.1, code=404, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest} +2019-02-08 12:13:19.706 [main] INFO - Response Code: 400 +2019-02-08 12:13:19.706 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_82d67b22-d7cb-456e-b9e8-2b4616714724 +X-OPNET-Transaction-Trace: a2_47859dcc-e374-4994-8824-3cd8a605a724 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:43:19 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 764ceafa-590d-460f-94b0-934e4e0ec78e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549608199232 +OkHttp-Received-Millis: 1549608199703 + +2019-02-08 12:13:19.707 [main] INFO - ********* END *********: +2019-02-08 12:13:50.345 [main] INFO - ********* START ********* +2019-02-08 12:13:50.360 [main] INFO - Authentication Type : http_signature +2019-02-08 12:13:50.361 [main] INFO - Request Type: GET +2019-02-08 12:13:50.361 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest, requestType=GET} +2019-02-08 12:13:50.362 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:13:50.404 [main] INFO - Date: Fri, 8 Feb 2019 06:43:50 GMT +2019-02-08 12:13:50.405 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:13:50.405 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="LVLhJ7rnDAp7zjrHXlcBdgMPogzc4A8t8PMn1/cYpLM=" +2019-02-08 12:13:50.405 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:13:51.871 [main] INFO - Request Body: null +2019-02-08 12:13:51.871 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest} +2019-02-08 12:13:51.872 [main] INFO - Response Code: 200 +2019-02-08 12:13:51.872 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_9f7908e2-6e3f-4d7c-8a48-e31ea0a4a0b7 +X-OPNET-Transaction-Trace: a2_69f09f4b-fb0a-4927-9595-4ee5b12b6aeb +Cache-Control: no-cache, no-transform +ETag: "609183382-gzip" +Expires: Fri, 08 Feb 2019 06:43:51 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:43:51 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a2e04ae9-c0f1-431b-ab15-0129f68da28b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549608231339 +OkHttp-Received-Millis: 1549608231843 + +2019-02-08 12:13:51.872 [main] INFO - ********* END *********: +2019-02-08 12:13:52.031 [main] INFO - ********* START ********* +2019-02-08 12:13:52.032 [main] INFO - Authentication Type : http_signature +2019-02-08 12:13:52.032 [main] INFO - Request Type: GET +2019-02-08 12:13:52.032 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest, requestType=GET} +2019-02-08 12:13:52.033 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:13:52.033 [main] INFO - Date: Fri, 8 Feb 2019 06:43:50 GMT +2019-02-08 12:13:52.034 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:13:52.034 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="k8pGfq1oVTY6Y08O5fSMf/47g0QrVtfzyWYqC6oDobY=" +2019-02-08 12:13:52.034 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:13:52.543 [main] INFO - Request Body: null +2019-02-08 12:13:52.544 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest} +2019-02-08 12:13:52.545 [main] INFO - Response Code: 404 +2019-02-08 12:13:52.545 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_bee76939-8417-4d46-a5a1-f037a5c82a95 +X-OPNET-Transaction-Trace: a2_3ab9922d-ed0c-4816-b087-f1e1783e2a5a +Cache-Control: no-cache, no-transform +ETag: "-830509477-gzip" +Expires: Fri, 08 Feb 2019 06:43:52 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:43:52 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 261a0bb0-bd41-4f36-a0ef-66232a2eb0b0 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549608232036 +OkHttp-Received-Millis: 1549608232542 + +2019-02-08 12:13:52.548 [main] INFO - ********* END *********: +2019-02-08 12:13:55.278 [main] INFO - ********* START ********* +2019-02-08 12:13:55.278 [main] INFO - Authentication Type : http_signature +2019-02-08 12:13:55.278 [main] INFO - Request Type: GET +2019-02-08 12:13:55.279 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=bkalama, requestType=GET} +2019-02-08 12:13:55.279 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:13:55.279 [main] INFO - Date: Fri, 8 Feb 2019 06:43:50 GMT +2019-02-08 12:13:55.280 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:13:55.281 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="qWZ6gitcajC6IFWDDCocmcPcDhpti+8+kKa0LU0jDkI=" +2019-02-08 12:13:55.281 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:13:55.744 [main] INFO - Request Body: null +2019-02-08 12:13:55.744 [main] INFO - Response Message: Response{protocol=http/1.1, code=404, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest} +2019-02-08 12:13:55.744 [main] INFO - Response Code: 400 +2019-02-08 12:13:55.745 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_36b21396-0b68-4071-8812-52b9e0e4cdf0 +X-OPNET-Transaction-Trace: a2_d3626a4f-1113-4120-bd8f-e58e0e505dbc +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:43:55 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 8212934f-05f3-4282-8c34-1db4fa0155e1 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549608235282 +OkHttp-Received-Millis: 1549608235742 + +2019-02-08 12:13:55.745 [main] INFO - ********* END *********: +2019-02-08 12:16:23.148 [main] INFO - ********* START ********* +2019-02-08 12:16:23.161 [main] INFO - Authentication Type : http_signature +2019-02-08 12:16:23.162 [main] INFO - Request Type: GET +2019-02-08 12:16:23.162 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest, requestType=GET} +2019-02-08 12:16:23.163 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:16:23.201 [main] INFO - Date: Fri, 8 Feb 2019 06:46:22 GMT +2019-02-08 12:16:23.201 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:16:23.202 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="BN1m18O4UxQBsSY4zZxFxY067lonzVgzm4UTOtPYMqQ=" +2019-02-08 12:16:23.202 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:16:24.623 [main] INFO - Request Body: null +2019-02-08 12:16:24.623 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest} +2019-02-08 12:16:24.623 [main] INFO - Response Code: 200 +2019-02-08 12:16:24.623 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_f1f76997-7c73-44d7-847c-709c7563fb82 +X-OPNET-Transaction-Trace: a2_f860115f-8bf3-4159-be57-77d6ed9ae1e7 +Cache-Control: no-cache, no-transform +ETag: "609183382-gzip" +Expires: Fri, 08 Feb 2019 06:46:24 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:46:24 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 854ef9e3-dab5-4c68-86ad-39fbd716f4ed +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549608384107 +OkHttp-Received-Millis: 1549608384603 + +2019-02-08 12:16:24.623 [main] INFO - ********* END *********: +2019-02-08 12:16:24.758 [main] INFO - ********* START ********* +2019-02-08 12:16:24.758 [main] INFO - Authentication Type : http_signature +2019-02-08 12:16:24.759 [main] INFO - Request Type: GET +2019-02-08 12:16:24.759 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest, requestType=GET} +2019-02-08 12:16:24.760 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:16:24.760 [main] INFO - Date: Fri, 8 Feb 2019 06:46:22 GMT +2019-02-08 12:16:24.761 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:16:24.761 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="qp1y8uKiWPBWGTVg2u9XSPs/hstnVtVUGsjsidsUoWg=" +2019-02-08 12:16:24.761 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:16:25.238 [main] INFO - Request Body: null +2019-02-08 12:16:25.239 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest} +2019-02-08 12:16:25.240 [main] INFO - Response Code: 404 +2019-02-08 12:16:25.241 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_9ac6ec09-c2cb-4c33-a8ff-4eede0aacf42 +X-OPNET-Transaction-Trace: a2_816ebcb8-3a55-4336-983d-88bec407ca55 +Cache-Control: no-cache, no-transform +ETag: "-830509477-gzip" +Expires: Fri, 08 Feb 2019 06:46:25 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:46:25 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7440bfbf-37cb-4870-a339-38936454ee3c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549608384767 +OkHttp-Received-Millis: 1549608385236 + +2019-02-08 12:16:25.241 [main] INFO - ********* END *********: +2019-02-08 12:16:25.269 [main] INFO - ********* START ********* +2019-02-08 12:16:25.269 [main] INFO - Authentication Type : http_signature +2019-02-08 12:16:25.270 [main] INFO - Request Type: GET +2019-02-08 12:16:25.270 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=bkalama, requestType=GET} +2019-02-08 12:16:25.270 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:16:25.271 [main] INFO - Date: Fri, 8 Feb 2019 06:46:22 GMT +2019-02-08 12:16:25.271 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:16:25.271 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="IBVqhOamz3aQZbsmRVQc51kIzj1znWTFgndW8AGwZcI=" +2019-02-08 12:16:25.272 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:16:25.725 [main] INFO - Request Body: null +2019-02-08 12:16:25.725 [main] INFO - Response Message: Response{protocol=http/1.1, code=404, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest} +2019-02-08 12:16:25.725 [main] INFO - Response Code: 400 +2019-02-08 12:16:25.726 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_4e8fcf1d-4231-4cae-8669-937d1131c9de +X-OPNET-Transaction-Trace: a2_6826a18e-efe5-40ef-9f34-2a6d204214ac +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:46:25 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 122eb2ee-96c5-4e6f-88cb-131fbda22c89 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549608385273 +OkHttp-Received-Millis: 1549608385723 + +2019-02-08 12:16:25.726 [main] INFO - ********* END *********: +2019-02-08 12:17:15.935 [main] INFO - ********* START ********* +2019-02-08 12:17:15.949 [main] INFO - Authentication Type : http_signature +2019-02-08 12:17:15.949 [main] INFO - Request Type: GET +2019-02-08 12:17:15.949 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest, requestType=GET} +2019-02-08 12:17:15.949 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:17:15.949 [main] INFO - Date: Fri, 8 Feb 2019 06:47:15 GMT +2019-02-08 12:17:15.949 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:17:15.949 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="SNUr0R8qtbe6qrcEBMmBj72gmNOPRfY6DJmDmyrEIOM=" +2019-02-08 12:17:15.949 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:17:18.599 [main] INFO - Request Body: null +2019-02-08 12:17:18.599 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest} +2019-02-08 12:17:18.600 [main] INFO - Response Code: 200 +2019-02-08 12:17:18.600 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b8d27f16-3cde-4e04-8a07-5b023ac2a766 +X-OPNET-Transaction-Trace: a2_4f3c2f40-a53c-4920-8441-18596158044f +Cache-Control: no-cache, no-transform +ETag: "609183382-gzip" +Expires: Fri, 08 Feb 2019 06:47:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:47:18 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 591ae767-f3f4-4331-990b-bdbb3687fbca +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549608438087 +OkHttp-Received-Millis: 1549608438574 + +2019-02-08 12:17:18.601 [main] INFO - ********* END *********: +2019-02-08 12:17:18.767 [main] INFO - ********* START ********* +2019-02-08 12:17:18.767 [main] INFO - Authentication Type : http_signature +2019-02-08 12:17:18.768 [main] INFO - Request Type: GET +2019-02-08 12:17:18.768 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest, requestType=GET} +2019-02-08 12:17:18.768 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:17:18.769 [main] INFO - Date: Fri, 8 Feb 2019 06:47:15 GMT +2019-02-08 12:17:18.769 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:17:18.770 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="76MW7BvnlIDMrHvyybtF91I6FLyGiQgt0gTNVh+2q50=" +2019-02-08 12:17:18.770 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:17:19.251 [main] INFO - Request Body: null +2019-02-08 12:17:19.251 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest} +2019-02-08 12:17:19.251 [main] INFO - Response Code: 404 +2019-02-08 12:17:19.252 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_cd872d19-ddeb-410b-8b88-169ca0dd0450 +X-OPNET-Transaction-Trace: a2_30df8da3-80c2-49bf-b106-bfd8d279104b +Cache-Control: no-cache, no-transform +ETag: "-830509477-gzip" +Expires: Fri, 08 Feb 2019 06:47:19 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:47:18 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7a33ed58-c395-4fb2-be74-f9b9c6730858 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549608438772 +OkHttp-Received-Millis: 1549608439249 + +2019-02-08 12:17:19.252 [main] INFO - ********* END *********: +2019-02-08 12:17:19.277 [main] INFO - ********* START ********* +2019-02-08 12:17:19.277 [main] INFO - Authentication Type : http_signature +2019-02-08 12:17:19.278 [main] INFO - Request Type: GET +2019-02-08 12:17:19.278 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=bkalama, requestType=GET} +2019-02-08 12:17:19.279 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:17:19.279 [main] INFO - Date: Fri, 8 Feb 2019 06:47:15 GMT +2019-02-08 12:17:19.279 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:17:19.280 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="667Y2yFDq2E3SIRLo1/VBoAkfHd5DQmmx38stp72/vk=" +2019-02-08 12:17:19.280 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:17:19.736 [main] INFO - Request Body: null +2019-02-08 12:17:19.736 [main] INFO - Response Message: Response{protocol=http/1.1, code=404, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest} +2019-02-08 12:17:19.737 [main] INFO - Response Code: 400 +2019-02-08 12:17:19.737 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_79e39181-442f-47b8-8e05-9af6527b8952 +X-OPNET-Transaction-Trace: a2_40427e7a-a417-4bb3-9b7a-0eb64edb3e28 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:47:19 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 0131360f-1724-427b-b302-6435741ccf26 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549608439281 +OkHttp-Received-Millis: 1549608439734 + +2019-02-08 12:17:19.737 [main] INFO - ********* END *********: +2019-02-08 12:18:39.907 [main] INFO - ********* START ********* +2019-02-08 12:18:39.916 [main] INFO - Authentication Type : http_signature +2019-02-08 12:18:39.917 [main] INFO - Request Type: GET +2019-02-08 12:18:39.917 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=testrest, requestType=GET} +2019-02-08 12:18:39.918 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:18:39.918 [main] INFO - Date: Fri, 8 Feb 2019 04:14:43 GMT +2019-02-08 12:18:39.918 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:18:39.919 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="XnjNRNB2009pBl54ttUyxeaWLTJIqaADP1flpSGi1H0=" +2019-02-08 12:18:39.919 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:18:41.036 [main] INFO - Request Body: null +2019-02-08 12:18:41.037 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-08 12:18:41.037 [main] INFO - Response Code: 200 +2019-02-08 12:18:41.038 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b162c98a-45b9-4f45-a5b3-9d854b84a86c +X-OPNET-Transaction-Trace: a2_def4b150-1dcf-4a45-8656-498b4004a454 +Cache-Control: no-cache, no-transform +ETag: "1846674451-gzip" +Expires: Fri, 08 Feb 2019 06:48:40 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:48:40 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 76924739-9818-4e50-87f9-2d234fea195a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549608520525 +OkHttp-Received-Millis: 1549608521033 + +2019-02-08 12:18:41.038 [main] INFO - ********* END *********: +2019-02-08 12:18:41.057 [main] INFO - ********* START ********* +2019-02-08 12:18:41.058 [main] INFO - Authentication Type : http_signature +2019-02-08 12:18:41.058 [main] INFO - Request Type: GET +2019-02-08 12:18:41.059 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=bplkmdghd, requestType=GET} +2019-02-08 12:18:41.059 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:18:41.059 [main] INFO - Date: Fri, 8 Feb 2019 04:14:43 GMT +2019-02-08 12:18:41.060 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:18:41.060 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="3sRVjhAWdcTtnhzCK6UKuWjpyB+/qNtO+X1cfYDhnVQ=" +2019-02-08 12:18:41.060 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:18:41.555 [main] INFO - Request Body: null +2019-02-08 12:18:41.556 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-08 12:18:41.556 [main] INFO - Response Code: 400 +2019-02-08 12:18:41.556 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_7260e834-2cc7-426c-a263-bc7f83d8b338 +X-OPNET-Transaction-Trace: a2_9280127b-bded-4d1b-bfcc-d85fc0536cbf +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 06:48:41 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: db2ace64-d9ce-4e58-9741-36635d7ad5a6 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549608521061 +OkHttp-Received-Millis: 1549608521554 + +2019-02-08 12:18:41.557 [main] INFO - ********* END *********: +2019-02-08 12:27:43.573 [main] INFO - ********* START ********* +2019-02-08 12:27:43.586 [main] INFO - Authentication Type : http_signature +2019-02-08 12:27:43.587 [main] INFO - Request Type: GET +2019-02-08 12:27:43.588 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testrest%20dec%20V70, requestType=GET} +2019-02-08 12:27:43.588 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:27:43.589 [main] INFO - Date: Fri, 8 Feb 2019 06:57:43 GMT +2019-02-08 12:27:43.589 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:27:43.589 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="VoqyomrTeaZRNGS5XSTV62OYli4p5stqX1fYDBIC8uo=" +2019-02-08 12:27:43.590 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:27:45.381 [main] INFO - Request Body: null +2019-02-08 12:27:45.381 [main] INFO - Response Message: + + + + + + + + + + + + +2019-02-08 12:27:45.382 [main] INFO - Response Code: 200 +2019-02-08 12:27:45.382 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e619e204-e5e9-4728-a6c7-9bb0deeb2fec +X-OPNET-Transaction-Trace: a2_65fd7718-6f8d-4bc3-94ec-de60c1a1ca69 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Fri, 08 Feb 2019 06:57:45 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Fri, 08 Feb 2019 06:57:45 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 3c1c40c2-a3d7-43f1-acfb-f7a51c7720c5 +OkHttp-Sent-Millis: 1549609064522 +OkHttp-Received-Millis: 1549609065357 + +2019-02-08 12:27:45.383 [main] INFO - ********* END *********: +2019-02-08 12:27:45.436 [main] INFO - ********* START ********* +2019-02-08 12:27:45.436 [main] INFO - Authentication Type : http_signature +2019-02-08 12:27:45.437 [main] INFO - Request Type: GET +2019-02-08 12:27:45.437 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testre, requestType=GET} +2019-02-08 12:27:45.437 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:27:45.438 [main] INFO - Date: Fri, 8 Feb 2019 06:57:43 GMT +2019-02-08 12:27:45.438 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:27:45.439 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ffC+bS5iECLaJeUyM66oIohenhs1TssSTqYh3uRWHfc=" +2019-02-08 12:27:45.439 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:27:46.021 [main] INFO - Request Body: null +2019-02-08 12:27:46.022 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-08 12:27:46.022 [main] INFO - Response Code: 404 +2019-02-08 12:27:46.022 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_11d3569d-2de6-4dd8-af5a-fb54b4dfeb3d +X-OPNET-Transaction-Trace: a2_e3552f6e-ea8e-4693-b14d-ced1b08db496 +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Fri, 08 Feb 2019 06:57:45 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Fri, 08 Feb 2019 06:57:45 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a20e448c-4109-46dd-bea0-2ea334c22047 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549609065442 +OkHttp-Received-Millis: 1549609066018 + +2019-02-08 12:27:46.023 [main] INFO - ********* END *********: +2019-02-08 12:27:46.054 [main] INFO - ********* START ********* +2019-02-08 12:27:46.054 [main] INFO - Authentication Type : http_signature +2019-02-08 12:27:46.055 [main] INFO - Request Type: GET +2019-02-08 12:27:46.055 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-08-02&reportName=testrest_v2, requestType=GET} +2019-02-08 12:27:46.056 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:27:46.056 [main] INFO - Date: Fri, 8 Feb 2019 06:57:43 GMT +2019-02-08 12:27:46.056 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:27:46.057 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="TO8XXxNSmsGDwKFhrjFW/mRhMmorL/sRsCKOnLNi4AU=" +2019-02-08 12:27:46.058 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:27:46.656 [main] INFO - Request Body: null +2019-02-08 12:27:46.656 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-08 12:27:46.657 [main] INFO - Response Code: 404 +2019-02-08 12:27:46.657 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_7e0cccfd-e56e-4399-b9d1-c487edd9343e +X-OPNET-Transaction-Trace: a2_36f0c6b3-b254-46d2-a931-e1fa78a923bc +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Fri, 08 Feb 2019 06:57:46 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Fri, 08 Feb 2019 06:57:46 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c0ed591f-1488-4a25-a75b-b584dcf9485f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549609066059 +OkHttp-Received-Millis: 1549609066655 + +2019-02-08 12:27:46.657 [main] INFO - ********* END *********: +2019-02-08 12:29:05.015 [main] INFO - ********* START ********* +2019-02-08 12:29:05.027 [main] INFO - Authentication Type : http_signature +2019-02-08 12:29:05.028 [main] INFO - Request Type: GET +2019-02-08 12:29:05.028 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testrest%20dec%20V70, requestType=GET} +2019-02-08 12:29:05.066 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:29:05.067 [main] INFO - Date: Fri, 8 Feb 2019 06:59:04 GMT +2019-02-08 12:29:05.067 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:29:05.067 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="2Gzxq+VQQQ01J9n756ANsW0EG7ivFHy/ztdPsgn+4tM=" +2019-02-08 12:29:05.068 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:29:06.588 [main] INFO - Request Body: null +2019-02-08 12:29:06.589 [main] INFO - Response Message: + + + + + + + + + + + + +2019-02-08 12:29:06.589 [main] INFO - Response Code: 200 +2019-02-08 12:29:06.590 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_082e581c-16f5-42bd-a5e4-bb5524a195d6 +X-OPNET-Transaction-Trace: a2_5e255755-e23f-40ed-a1a1-43493f32555b +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Fri, 08 Feb 2019 06:59:06 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Fri, 08 Feb 2019 06:59:06 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: bd1cc6af-f140-455b-a039-a4020ecd43fe +OkHttp-Sent-Millis: 1549609145938 +OkHttp-Received-Millis: 1549609146568 + +2019-02-08 12:29:06.590 [main] INFO - ********* END *********: +2019-02-08 12:29:06.634 [main] INFO - ********* START ********* +2019-02-08 12:29:06.634 [main] INFO - Authentication Type : http_signature +2019-02-08 12:29:06.635 [main] INFO - Request Type: GET +2019-02-08 12:29:06.635 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testre, requestType=GET} +2019-02-08 12:29:06.636 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:29:06.636 [main] INFO - Date: Fri, 8 Feb 2019 06:59:04 GMT +2019-02-08 12:29:06.636 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:29:06.637 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="5dkL8bnKRuzK7MNEhxMAPTfYtXLihJb9PbyOqRxFclE=" +2019-02-08 12:29:06.637 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:29:07.266 [main] INFO - Request Body: null +2019-02-08 12:29:07.267 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-08 12:29:07.267 [main] INFO - Response Code: 404 +2019-02-08 12:29:07.268 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_45305bb1-5735-421d-ac2e-9aed06b39aad +X-OPNET-Transaction-Trace: a2_60ce4255-3f8f-4341-b37d-cc3ed6944df1 +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Fri, 08 Feb 2019 06:59:07 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Fri, 08 Feb 2019 06:59:06 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 5f331848-d119-4795-819f-17aff08b4b62 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549609146639 +OkHttp-Received-Millis: 1549609147262 + +2019-02-08 12:29:07.268 [main] INFO - ********* END *********: +2019-02-08 12:29:07.301 [main] INFO - ********* START ********* +2019-02-08 12:29:07.302 [main] INFO - Authentication Type : http_signature +2019-02-08 12:29:07.302 [main] INFO - Request Type: GET +2019-02-08 12:29:07.302 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-08-02&reportName=testrest_v2, requestType=GET} +2019-02-08 12:29:07.303 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:29:07.303 [main] INFO - Date: Fri, 8 Feb 2019 06:59:04 GMT +2019-02-08 12:29:07.304 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:29:07.304 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="YukTW6IDeyj6PUH1msBvNLaIgcHPe9/WWsUkDOYgJzI=" +2019-02-08 12:29:07.304 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:29:07.855 [main] INFO - Request Body: null +2019-02-08 12:29:07.855 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-08 12:29:07.856 [main] INFO - Response Code: 404 +2019-02-08 12:29:07.856 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_23cd2960-e34e-4462-97ba-9a7916305a71 +X-OPNET-Transaction-Trace: a2_728eee52-115d-4279-a23f-9cdf14d594cd +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Fri, 08 Feb 2019 06:59:07 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Fri, 08 Feb 2019 06:59:07 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 20f248ab-7e6b-4194-9336-392580428659 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549609147305 +OkHttp-Received-Millis: 1549609147853 + +2019-02-08 12:29:07.856 [main] INFO - ********* END *********: +2019-02-08 12:36:52.800 [main] INFO - ********* START ********* +2019-02-08 12:36:52.812 [main] INFO - Authentication Type : http_signature +2019-02-08 12:36:52.813 [main] INFO - Request Type: GET +2019-02-08 12:36:52.814 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest, requestType=GET} +2019-02-08 12:36:52.814 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:36:52.858 [main] INFO - Date: Fri, 8 Feb 2019 07:06:52 GMT +2019-02-08 12:36:52.858 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:36:52.859 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="61YQ+vBfKWcz3KEqNMJPWsMd6iwWQUa2y6PlQA9SmZU=" +2019-02-08 12:36:52.859 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:36:54.542 [main] INFO - Request Body: null +2019-02-08 12:36:54.543 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest} +2019-02-08 12:36:54.543 [main] INFO - Response Code: 200 +2019-02-08 12:36:54.543 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_8f78118d-0eeb-4d19-badf-bea4e45f1a62 +Cache-Control: no-cache, no-transform +ETag: "-295980675-gzip" +Expires: Fri, 08 Feb 2019 07:06:54 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 07:06:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 3607d899-89e9-42bf-9cff-32f2b17b5511 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549609613785 +OkHttp-Received-Millis: 1549609614501 + +2019-02-08 12:36:54.544 [main] INFO - ********* END *********: +2019-02-08 12:36:54.633 [main] INFO - ********* START ********* +2019-02-08 12:36:54.635 [main] INFO - Authentication Type : http_signature +2019-02-08 12:36:54.635 [main] INFO - Request Type: GET +2019-02-08 12:36:54.635 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testtest, requestType=GET} +2019-02-08 12:36:54.635 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:36:54.635 [main] INFO - Date: Fri, 8 Feb 2019 07:06:52 GMT +2019-02-08 12:36:54.636 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:36:54.636 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="FGSyQc4M6ARx+TUE7rnx0QVVaPW4iYOM5uZCjF5xscA=" +2019-02-08 12:36:54.637 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:36:55.258 [main] INFO - Request Body: null +2019-02-08 12:36:55.259 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest} +2019-02-08 12:36:55.260 [main] INFO - Response Code: 403 +2019-02-08 12:36:55.261 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_63514e4b-70c8-46a2-9b58-32e089b059a6 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 07:06:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d8d5d5ab-4f23-400d-8ba4-4c5534bbec0c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549609614639 +OkHttp-Received-Millis: 1549609615244 + +2019-02-08 12:36:55.261 [main] INFO - ********* END *********: +2019-02-08 12:37:19.408 [main] INFO - ********* START ********* +2019-02-08 12:37:19.421 [main] INFO - Authentication Type : http_signature +2019-02-08 12:37:19.422 [main] INFO - Request Type: GET +2019-02-08 12:37:19.422 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest, requestType=GET} +2019-02-08 12:37:19.423 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:37:19.423 [main] INFO - Date: Fri, 8 Feb 2019 07:07:19 GMT +2019-02-08 12:37:19.423 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:37:19.424 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="e7AEbourOB1MOVYbGCoQkKMBgYiW4LZSTzKV5EnI+bY=" +2019-02-08 12:37:19.424 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:37:21.022 [main] INFO - Request Body: null +2019-02-08 12:37:21.022 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest} +2019-02-08 12:37:21.023 [main] INFO - Response Code: 200 +2019-02-08 12:37:21.023 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_707d0eda-5947-4227-8bd0-c2a17c7cae64 +Cache-Control: no-cache, no-transform +ETag: "-549758957-gzip" +Expires: Fri, 08 Feb 2019 07:07:20 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 07:07:20 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d8a9e6ef-02e7-4031-8c95-89b44e98f47c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549609640318 +OkHttp-Received-Millis: 1549609640966 + +2019-02-08 12:37:21.023 [main] INFO - ********* END *********: +2019-02-08 12:37:21.124 [main] INFO - ********* START ********* +2019-02-08 12:37:21.126 [main] INFO - Authentication Type : http_signature +2019-02-08 12:37:21.126 [main] INFO - Request Type: GET +2019-02-08 12:37:21.126 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testtest, requestType=GET} +2019-02-08 12:37:21.126 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:37:21.127 [main] INFO - Date: Fri, 8 Feb 2019 07:07:19 GMT +2019-02-08 12:37:21.127 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:37:21.128 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="aejV3+GJ3WPRBaZCfLdhAKvc6Lb0/OfnvhgNq7iro40=" +2019-02-08 12:37:21.128 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:37:21.719 [main] INFO - Request Body: null +2019-02-08 12:37:21.719 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest} +2019-02-08 12:37:21.719 [main] INFO - Response Code: 403 +2019-02-08 12:37:21.720 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d4723b6f-bb57-45d8-8124-b1a27195d839 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 07:07:21 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 745fa7b6-872e-4de7-9995-5d2f516afc5d +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549609641131 +OkHttp-Received-Millis: 1549609641717 + +2019-02-08 12:37:21.720 [main] INFO - ********* END *********: +2019-02-08 12:38:11.666 [main] INFO - ********* START ********* +2019-02-08 12:38:11.667 [main] INFO - Authentication Type : http_signature +2019-02-08 12:38:11.667 [main] INFO - Request Type: GET +2019-02-08 12:38:11.668 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest, requestType=GET} +2019-02-08 12:38:11.668 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:38:11.669 [main] INFO - Date: Fri, 8 Feb 2019 07:07:19 GMT +2019-02-08 12:38:11.669 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:38:11.670 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="e7AEbourOB1MOVYbGCoQkKMBgYiW4LZSTzKV5EnI+bY=" +2019-02-08 12:38:11.670 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:38:12.262 [main] INFO - Request Body: null +2019-02-08 12:38:12.262 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest} +2019-02-08 12:38:12.263 [main] INFO - Response Code: 200 +2019-02-08 12:38:12.263 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_573719d9-7874-4816-b7ee-cbd8cb77ea2d +Cache-Control: no-cache, no-transform +ETag: "-1919029161-gzip" +Expires: Fri, 08 Feb 2019 07:08:12 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 07:08:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 871e96ad-5d54-46c4-9e8a-9cabe8d17e4f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549609691671 +OkHttp-Received-Millis: 1549609692253 + +2019-02-08 12:38:12.264 [main] INFO - ********* END *********: +2019-02-08 12:38:12.289 [main] INFO - ********* START ********* +2019-02-08 12:38:12.290 [main] INFO - Authentication Type : http_signature +2019-02-08 12:38:12.290 [main] INFO - Request Type: GET +2019-02-08 12:38:12.291 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testtest, requestType=GET} +2019-02-08 12:38:12.291 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:38:12.292 [main] INFO - Date: Fri, 8 Feb 2019 07:07:19 GMT +2019-02-08 12:38:12.292 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:38:12.331 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="aejV3+GJ3WPRBaZCfLdhAKvc6Lb0/OfnvhgNq7iro40=" +2019-02-08 12:38:12.331 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:38:12.860 [main] INFO - Request Body: null +2019-02-08 12:38:12.860 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest} +2019-02-08 12:38:12.860 [main] INFO - Response Code: 403 +2019-02-08 12:38:12.862 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_3c4f4986-be0b-4722-a5f0-77473326bd41 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 07:08:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6493eefb-7b49-47d3-8814-7555e253b0b3 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549609692332 +OkHttp-Received-Millis: 1549609692858 + +2019-02-08 12:38:12.862 [main] INFO - ********* END *********: +2019-02-08 12:38:37.464 [main] INFO - ********* START ********* +2019-02-08 12:38:37.477 [main] INFO - Authentication Type : http_signature +2019-02-08 12:38:37.477 [main] INFO - Request Type: GET +2019-02-08 12:38:37.477 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest, requestType=GET} +2019-02-08 12:38:37.477 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:38:37.478 [main] INFO - Date: Fri, 8 Feb 2019 07:08:37 GMT +2019-02-08 12:38:37.478 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:38:37.478 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="aEaLynHX8x/WguSqRE6oqIseHNpv8P4JXDAuAM9zR4U=" +2019-02-08 12:38:37.479 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:38:39.094 [main] INFO - Request Body: null +2019-02-08 12:38:39.094 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest} +2019-02-08 12:38:39.095 [main] INFO - Response Code: 200 +2019-02-08 12:38:39.095 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_6ae7ed6d-0c8a-4592-a431-6c5ca303bce7 +Cache-Control: no-cache, no-transform +ETag: "532677634-gzip" +Expires: Fri, 08 Feb 2019 07:08:38 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 07:08:38 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 2ac7b0fb-51ff-45e8-b063-63b378933826 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549609718480 +OkHttp-Received-Millis: 1549609719058 + +2019-02-08 12:38:39.095 [main] INFO - ********* END *********: +2019-02-08 12:38:39.180 [main] INFO - ********* START ********* +2019-02-08 12:38:39.180 [main] INFO - Authentication Type : http_signature +2019-02-08 12:38:39.181 [main] INFO - Request Type: GET +2019-02-08 12:38:39.181 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testtest, requestType=GET} +2019-02-08 12:38:39.181 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:38:39.182 [main] INFO - Date: Fri, 8 Feb 2019 07:08:37 GMT +2019-02-08 12:38:39.182 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:38:39.183 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="EyZw86WIkyTw781l31GHnEhv1jzyFC7bJvNMxtkNa10=" +2019-02-08 12:38:39.183 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:38:39.712 [main] INFO - Request Body: null +2019-02-08 12:38:39.713 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest} +2019-02-08 12:38:39.716 [main] INFO - Response Code: 403 +2019-02-08 12:38:39.716 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_4740bd30-7092-420c-a7ab-4308662df75d +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 07:08:38 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ee712b9f-bc26-4600-9bd9-588a23cac686 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549609719185 +OkHttp-Received-Millis: 1549609719700 + +2019-02-08 12:38:39.717 [main] INFO - ********* END *********: +2019-02-08 12:47:32.494 [main] INFO - ********* START ********* +2019-02-08 12:47:32.506 [main] INFO - Authentication Type : http_signature +2019-02-08 12:47:32.506 [main] INFO - Request Type: GET +2019-02-08 12:47:32.507 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA%3D%3D?organizationId=testrest, requestType=GET} +2019-02-08 12:47:32.507 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:47:32.544 [main] INFO - Date: Fri, 8 Feb 2019 07:17:32 GMT +2019-02-08 12:47:32.545 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:47:32.545 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="zhnwsGNFYR1krFmOcMufaWbdUnk8QgYoTu4lD2sp0Gs=" +2019-02-08 12:47:32.546 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:47:34.098 [main] INFO - Request Body: null +2019-02-08 12:47:34.099 [main] INFO - Response Message: testrest,TRRReport,TransactionRequestReport,1.10,2018-10-19T16:00:00Z to 2018-10-20T16:00:00Z +RequestID,RequestDate,MerchantReferenceNumber,MerchantID +5399662771246550003001,2018-10-19T16:24:37Z,TC50171_3,testrest +5399664781416551403001,2018-10-19T16:27:58Z,TC50171_3,testrest +5399666196306552903001,2018-10-19T16:30:19Z,TC50171_3,testrest +5399666357576981903005,2018-10-19T16:30:35Z,TC50171_3,testrest +5399680347956058103004,2018-10-19T16:53:54Z,TC50171_3,testrest +5399680431216058303004,2018-10-19T16:54:03Z,TC50171_3,testrest +5399684302416000903005,2018-10-19T17:00:30Z,TC50171_3,testrest +5399684505506723403002,2018-10-19T17:00:50Z,TC50171_3,testrest +5399684781686729303003,2018-10-19T17:01:18Z,TC50171_3,testrest +5399742716346290903004,2018-10-19T18:37:51Z,TC50171_3,testrest +5399742808726291703004,2018-10-19T18:38:00Z,TC50171_3,testrest +5399743679866242703005,2018-10-19T18:39:28Z,TC50171_3,testrest +5399751921786020803003,2018-10-19T18:53:12Z,TC50171_3,testrest +5399761919726317303005,2018-10-19T19:09:52Z,TC50171_3,testrest +5399787878246907603001,2018-10-19T19:53:07Z,TC50171_3,testrest +5399793339576405603004,2018-10-19T20:02:14Z,405195660::1,testrest +5399807626196378603005,2018-10-19T20:26:02Z,405195660::1,testrest +5399810449296963303001,2018-10-19T20:30:45Z,33557799,testrest +5399829987226032203001,2018-10-19T21:03:18Z,1234567890,testrest +5399844740286070303001,2018-10-19T21:27:54Z,TC50171_3,testrest +5399845077266611803006,2018-10-19T21:28:27Z,TC50171_3,testrest +5399845139246229503002,2018-10-19T21:28:34Z,TC50171_3,testrest +5399889652786155003001,2018-10-19T22:42:45Z,TC50171_3,testrest +5399900584196720203006,2018-10-19T23:00:58Z,1234567890,testrest + +2019-02-08 12:47:34.100 [main] INFO - Response Code: 200 +2019-02-08 12:47:34.100 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_45dd2b42-e806-4146-b568-4dc6b4851b42 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Fri, 08 Feb 2019 07:17:33 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Fri, 08 Feb 2019 07:17:33 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: de5acfcd-99d0-48fb-a805-fb583f3da192 +OkHttp-Sent-Millis: 1549610253512 +OkHttp-Received-Millis: 1549610254080 + +2019-02-08 12:47:34.101 [main] INFO - ********* END *********: +2019-02-08 12:47:34.153 [main] INFO - ********* START ********* +2019-02-08 12:47:34.154 [main] INFO - Authentication Type : http_signature +2019-02-08 12:47:34.154 [main] INFO - Request Type: GET +2019-02-08 12:47:34.155 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0?organizationId=testrest, requestType=GET} +2019-02-08 12:47:34.156 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:47:34.156 [main] INFO - Date: Fri, 8 Feb 2019 07:17:32 GMT +2019-02-08 12:47:34.157 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:47:34.157 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="/bx3Zqsl1f11hKwiC4RNuJ1ar8NzNNRPQDImtm94EbA=" +2019-02-08 12:47:34.158 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:47:34.734 [main] INFO - Request Body: null +2019-02-08 12:47:34.735 [main] INFO - Response Message: + + Field validation errors + cybsapi.validation.errors + VALIDATION_ERROR + + cybsapi.file.id.invalid + fileId + Invalid File ID + + + +2019-02-08 12:47:34.735 [main] INFO - Response Code: 400 +2019-02-08 12:47:34.735 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_718aad9d-eb17-45da-945b-a3c6635cf5c7 +Cache-Control: no-cache, no-transform +ETag: "-807714005-gzip" +Expires: Fri, 08 Feb 2019 07:17:34 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Fri, 08 Feb 2019 07:17:33 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c0e02aec-081a-4842-8126-563c589e0e2e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549610254161 +OkHttp-Received-Millis: 1549610254732 + +2019-02-08 12:47:34.736 [main] INFO - ********* END *********: +2019-02-08 12:48:30.755 [main] INFO - ********* START ********* +2019-02-08 12:48:30.776 [main] INFO - Authentication Type : http_signature +2019-02-08 12:48:30.777 [main] INFO - Request Type: GET +2019-02-08 12:48:30.777 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA%3D%3D?organizationId=testrest, requestType=GET} +2019-02-08 12:48:30.778 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:48:30.820 [main] INFO - Date: Fri, 8 Feb 2019 07:18:30 GMT +2019-02-08 12:48:30.821 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:48:30.821 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="qb8bq/sAEQ1xMa7WbFoiUqI7HiLomaW9zfx471o8slY=" +2019-02-08 12:48:30.822 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:48:32.375 [main] INFO - Request Body: null +2019-02-08 12:48:32.375 [main] INFO - Response Message: testrest,TRRReport,TransactionRequestReport,1.10,2018-10-19T16:00:00Z to 2018-10-20T16:00:00Z +RequestID,RequestDate,MerchantReferenceNumber,MerchantID +5399662771246550003001,2018-10-19T16:24:37Z,TC50171_3,testrest +5399664781416551403001,2018-10-19T16:27:58Z,TC50171_3,testrest +5399666196306552903001,2018-10-19T16:30:19Z,TC50171_3,testrest +5399666357576981903005,2018-10-19T16:30:35Z,TC50171_3,testrest +5399680347956058103004,2018-10-19T16:53:54Z,TC50171_3,testrest +5399680431216058303004,2018-10-19T16:54:03Z,TC50171_3,testrest +5399684302416000903005,2018-10-19T17:00:30Z,TC50171_3,testrest +5399684505506723403002,2018-10-19T17:00:50Z,TC50171_3,testrest +5399684781686729303003,2018-10-19T17:01:18Z,TC50171_3,testrest +5399742716346290903004,2018-10-19T18:37:51Z,TC50171_3,testrest +5399742808726291703004,2018-10-19T18:38:00Z,TC50171_3,testrest +5399743679866242703005,2018-10-19T18:39:28Z,TC50171_3,testrest +5399751921786020803003,2018-10-19T18:53:12Z,TC50171_3,testrest +5399761919726317303005,2018-10-19T19:09:52Z,TC50171_3,testrest +5399787878246907603001,2018-10-19T19:53:07Z,TC50171_3,testrest +5399793339576405603004,2018-10-19T20:02:14Z,405195660::1,testrest +5399807626196378603005,2018-10-19T20:26:02Z,405195660::1,testrest +5399810449296963303001,2018-10-19T20:30:45Z,33557799,testrest +5399829987226032203001,2018-10-19T21:03:18Z,1234567890,testrest +5399844740286070303001,2018-10-19T21:27:54Z,TC50171_3,testrest +5399845077266611803006,2018-10-19T21:28:27Z,TC50171_3,testrest +5399845139246229503002,2018-10-19T21:28:34Z,TC50171_3,testrest +5399889652786155003001,2018-10-19T22:42:45Z,TC50171_3,testrest +5399900584196720203006,2018-10-19T23:00:58Z,1234567890,testrest + +2019-02-08 12:48:32.376 [main] INFO - Response Code: 200 +2019-02-08 12:48:32.377 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_2d785c3e-0bdf-465b-be9a-37b7ebbe8c79 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Fri, 08 Feb 2019 07:18:32 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Fri, 08 Feb 2019 07:18:32 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7d7fce61-7bd9-4f56-a6e3-7eae2098162d +OkHttp-Sent-Millis: 1549610311771 +OkHttp-Received-Millis: 1549610312325 + +2019-02-08 12:48:32.377 [main] INFO - ********* END *********: +2019-02-08 12:48:32.437 [main] INFO - ********* START ********* +2019-02-08 12:48:32.438 [main] INFO - Authentication Type : http_signature +2019-02-08 12:48:32.438 [main] INFO - Request Type: GET +2019-02-08 12:48:32.439 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0?organizationId=testrest, requestType=GET} +2019-02-08 12:48:32.440 [main] INFO - v-c-merchant-id: testrest +2019-02-08 12:48:32.440 [main] INFO - Date: Fri, 8 Feb 2019 07:18:30 GMT +2019-02-08 12:48:32.441 [main] INFO - Host: apitest.cybersource.com +2019-02-08 12:48:32.441 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="D3/Mjr3i42mvLQWozsXidtZ9Q+BwcCaKI6nVJKIvWMs=" +2019-02-08 12:48:32.442 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 12:48:32.994 [main] INFO - Request Body: null +2019-02-08 12:48:32.995 [main] INFO - Response Message: + + Field validation errors + cybsapi.validation.errors + VALIDATION_ERROR + + cybsapi.file.id.invalid + fileId + Invalid File ID + + + +2019-02-08 12:48:32.996 [main] INFO - Response Code: 400 +2019-02-08 12:48:32.996 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_9207382b-c9df-442e-975d-c1938a30fd8d +Cache-Control: no-cache, no-transform +ETag: "-807714005-gzip" +Expires: Fri, 08 Feb 2019 07:18:32 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Fri, 08 Feb 2019 07:18:32 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 62c92dd6-f651-4e67-85ae-f9e3cdb583b1 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549610312445 +OkHttp-Received-Millis: 1549610312988 + +2019-02-08 12:48:32.997 [main] INFO - ********* END *********: +2019-02-08 14:19:31.324 [main] INFO - ********* START ********* +2019-02-08 14:19:31.340 [main] INFO - Authentication Type : http_signature +2019-02-08 14:19:31.340 [main] INFO - Request Type: GET +2019-02-08 14:19:31.341 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/transactions/5408386919326811103004, requestType=GET} +2019-02-08 14:19:31.341 [main] INFO - v-c-merchant-id: testrest +2019-02-08 14:19:31.381 [main] INFO - Date: Fri, 8 Feb 2019 08:49:30 GMT +2019-02-08 14:19:31.383 [main] INFO - Host: apitest.cybersource.com +2019-02-08 14:19:31.383 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="h275Sv7KvRhK3m8umWW7JBG8WJR58NbzoZdjzoeTbdY=" +2019-02-08 14:19:31.383 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 14:19:32.773 [main] INFO - Request Body: null +2019-02-08 14:19:32.775 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tss/v2/transactions/5408386919326811103004} +2019-02-08 14:19:32.775 [main] INFO - Response Code: 200 +2019-02-08 14:19:32.775 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_721b142c-d638-48c9-9ed1-45006b709a1d +Cache-Control: no-cache, no-transform +ETag: "-1543210418" +Expires: Fri, 08 Feb 2019 08:49:32 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 08:49:32 GMT +X-Cnection: close +v-c-correlation-id: 674acc4b-cc66-4814-8073-9135ceed7e3a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549615772341 +OkHttp-Received-Millis: 1549615772747 + +2019-02-08 14:19:32.775 [main] INFO - ********* END *********: +2019-02-08 14:19:33.020 [main] INFO - ********* START ********* +2019-02-08 14:19:33.020 [main] INFO - Authentication Type : http_signature +2019-02-08 14:19:33.021 [main] INFO - Request Type: GET +2019-02-08 14:19:33.021 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/transactions/1234567898745651235454, requestType=GET} +2019-02-08 14:19:33.022 [main] INFO - v-c-merchant-id: testrest +2019-02-08 14:19:33.022 [main] INFO - Date: Fri, 8 Feb 2019 08:49:30 GMT +2019-02-08 14:19:33.022 [main] INFO - Host: apitest.cybersource.com +2019-02-08 14:19:33.022 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="rS2510xhaq5twAMf496uP/eDlPSRM6kmTD+h3/iH5gg=" +2019-02-08 14:19:33.023 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 14:19:33.253 [main] INFO - Request Body: null +2019-02-08 14:19:33.253 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tss/v2/transactions/5408386919326811103004} +2019-02-08 14:19:33.254 [main] INFO - Response Code: 404 +2019-02-08 14:19:33.254 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_62e1227e-e1cd-425e-b4f7-7ae2f969b31f +Cache-Control: no-cache, no-transform +ETag: "1151868788" +Expires: Fri, 08 Feb 2019 08:49:33 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 08:49:32 GMT +X-Cnection: close +v-c-correlation-id: 5141308b-4cba-45c3-8bc2-46a9d5772b9e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549615773026 +OkHttp-Received-Millis: 1549615773252 + +2019-02-08 14:19:33.255 [main] INFO - ********* END *********: +2019-02-08 14:26:17.986 [main] INFO - ********* START ********* +2019-02-08 14:26:17.999 [main] INFO - Authentication Type : http_signature +2019-02-08 14:26:17.999 [main] INFO - Request Type: POST +2019-02-08 14:26:18.000 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-08 14:26:18.001 [main] INFO - Digest: SHA-256=yv1HHIWB0ukuo0JfNKnkDCUcVm1OrwOQ7U4IgWX3zTs= +2019-02-08 14:26:18.001 [main] INFO - v-c-merchant-id: testrest +2019-02-08 14:26:18.002 [main] INFO - Date: Fri, 8 Feb 2019 08:56:17 GMT +2019-02-08 14:26:18.002 [main] INFO - Host: apitest.cybersource.com +2019-02-08 14:26:18.002 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="+F3mCNhpa4uvTkjNhFXDNwRqzmtpNamWomeS1XiLjBM=" +2019-02-08 14:26:18.003 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 14:26:19.669 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientReferenceInformation.code:12345","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-08 14:26:19.670 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches} +2019-02-08 14:26:19.671 [main] INFO - Response Code: 201 +2019-02-08 14:26:19.671 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_1e52db61-45e3-4fa6-800e-9e42fac9bfac +Cache-Control: no-cache, no-transform +ETag: "-956080470" +Expires: Fri, 08 Feb 2019 08:56:19 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Fri, 08 Feb 2019 08:56:19 GMT +X-Cnection: close +v-c-correlation-id: 8f221bde-a797-4dfb-bceb-d44325fa8df8 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549616178952 +OkHttp-Received-Millis: 1549616179583 + +2019-02-08 14:26:19.673 [main] INFO - ********* END *********: +2019-02-08 14:26:20.047 [main] INFO - ********* START ********* +2019-02-08 14:26:20.048 [main] INFO - Authentication Type : http_signature +2019-02-08 14:26:20.049 [main] INFO - Request Type: POST +2019-02-08 14:26:20.049 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-08 14:26:20.050 [main] INFO - Digest: SHA-256=MvPxo/GwSzPCnxUumNRkM4jYV4dEdR0iQ6mljgTLqrs= +2019-02-08 14:26:20.051 [main] INFO - v-c-merchant-id: testrest +2019-02-08 14:26:20.051 [main] INFO - Date: Fri, 8 Feb 2019 08:56:17 GMT +2019-02-08 14:26:20.052 [main] INFO - Host: apitest.cybersource.com +2019-02-08 14:26:20.052 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="5700oF0iyZQ51A270g0dRABClkjAP/sWyl/hFC8u3EY=" +2019-02-08 14:26:20.053 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 14:26:20.276 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientRefeInfo.code:52465","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-08 14:26:20.277 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches} +2019-02-08 14:26:20.277 [main] INFO - Response Code: 400 +2019-02-08 14:26:20.278 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_c32270d3-ffd2-4438-a8b3-93b29845e677 +X-OPNET-Transaction-Trace: a2_fa78f3ce-39fa-41a8-a4e7-2d6d202be43e +Cache-Control: no-cache, no-transform +ETag: "-652493791" +Expires: Fri, 08 Feb 2019 08:56:20 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Fri, 08 Feb 2019 08:56:20 GMT +X-Cnection: close +v-c-correlation-id: 7895b094-9502-42a6-abe4-95063cafb489 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549616180057 +OkHttp-Received-Millis: 1549616180275 + +2019-02-08 14:26:20.278 [main] INFO - ********* END *********: +2019-02-08 14:27:16.241 [main] INFO - ********* START ********* +2019-02-08 14:27:16.257 [main] INFO - Authentication Type : http_signature +2019-02-08 14:27:16.258 [main] INFO - Request Type: POST +2019-02-08 14:27:16.259 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-08 14:27:16.259 [main] INFO - Digest: SHA-256=yv1HHIWB0ukuo0JfNKnkDCUcVm1OrwOQ7U4IgWX3zTs= +2019-02-08 14:27:16.298 [main] INFO - v-c-merchant-id: testrest +2019-02-08 14:27:16.299 [main] INFO - Date: Fri, 8 Feb 2019 08:57:15 GMT +2019-02-08 14:27:16.300 [main] INFO - Host: apitest.cybersource.com +2019-02-08 14:27:16.300 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="QL7k2YV95Fpg8yhk8nDH5mZv508i4R5myjZYJfNwTDc=" +2019-02-08 14:27:16.301 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 14:27:17.826 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientReferenceInformation.code:12345","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-08 14:27:17.827 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches} +2019-02-08 14:27:17.827 [main] INFO - Response Code: 201 +2019-02-08 14:27:17.827 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_0fe89027-f57a-4200-8595-ca6640423b38 +X-OPNET-Transaction-Trace: a2_3c586d4f-134d-4df0-8786-55881e59ce3c +Cache-Control: no-cache, no-transform +ETag: "-795957299" +Expires: Fri, 08 Feb 2019 08:57:17 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Fri, 08 Feb 2019 08:57:17 GMT +X-Cnection: close +v-c-correlation-id: 7a3338c8-f91a-42fa-b793-9c9782e68e9f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549616237250 +OkHttp-Received-Millis: 1549616237761 + +2019-02-08 14:27:17.829 [main] INFO - ********* END *********: +2019-02-08 14:27:46.940 [main] INFO - ********* START ********* +2019-02-08 14:27:46.941 [main] INFO - Authentication Type : http_signature +2019-02-08 14:27:46.941 [main] INFO - Request Type: POST +2019-02-08 14:27:46.942 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-08 14:27:46.942 [main] INFO - Digest: SHA-256=MvPxo/GwSzPCnxUumNRkM4jYV4dEdR0iQ6mljgTLqrs= +2019-02-08 14:27:46.942 [main] INFO - v-c-merchant-id: testrest +2019-02-08 14:27:46.943 [main] INFO - Date: Fri, 8 Feb 2019 08:57:15 GMT +2019-02-08 14:27:46.943 [main] INFO - Host: apitest.cybersource.com +2019-02-08 14:27:46.943 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="WljknWmhH0zYKhUZAYRNgzoFKLO/vumtlXlc6jm3+ME=" +2019-02-08 14:27:46.943 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 14:27:47.188 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientRefeInfo.code:52465","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-08 14:27:47.188 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches} +2019-02-08 14:27:47.189 [main] INFO - Response Code: 400 +2019-02-08 14:27:47.189 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_d46179fa-3c0b-4f9e-be6f-8e4a8a0b94de +Cache-Control: no-cache, no-transform +ETag: "-652493791" +Expires: Fri, 08 Feb 2019 08:57:47 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Fri, 08 Feb 2019 08:57:47 GMT +X-Cnection: close +v-c-correlation-id: 9e56f8bf-15b8-4a5f-a1ed-39b3919d525d +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549616266947 +OkHttp-Received-Millis: 1549616267186 + +2019-02-08 14:27:47.189 [main] INFO - ********* END *********: +2019-02-08 14:32:18.920 [main] INFO - ********* START ********* +2019-02-08 14:32:18.933 [main] INFO - Authentication Type : http_signature +2019-02-08 14:32:18.933 [main] INFO - Request Type: GET +2019-02-08 14:32:18.934 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc, requestType=GET} +2019-02-08 14:32:18.934 [main] INFO - v-c-merchant-id: testrest +2019-02-08 14:32:18.935 [main] INFO - Date: Fri, 8 Feb 2019 09:02:18 GMT +2019-02-08 14:32:18.935 [main] INFO - Host: apitest.cybersource.com +2019-02-08 14:32:18.936 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="vZMHePWHwatGcfHXiyEpDfVRi+h/E1I896AaPQBHMeM=" +2019-02-08 14:32:18.936 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 14:32:22.824 [main] INFO - Request Body: null +2019-02-08 14:32:22.825 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc} +2019-02-08 14:32:22.826 [main] INFO - Response Code: 200 +2019-02-08 14:32:22.826 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_13467294-8198-445f-b8b9-003b57b1121b +X-OPNET-Transaction-Trace: a2_2ef6b89c-4bc3-4f15-9813-c4508ca137ce +Cache-Control: no-cache, no-transform +ETag: "-1142100191" +Expires: Fri, 08 Feb 2019 09:02:22 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Fri, 08 Feb 2019 09:02:22 GMT +X-Cnection: close +v-c-correlation-id: 87f242f3-67ab-4dac-bc7a-f7d6ee8e5814 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549616539907 +OkHttp-Received-Millis: 1549616542745 + +2019-02-08 14:32:22.827 [main] INFO - ********* END *********: +2019-02-08 14:33:46.138 [main] INFO - ********* START ********* +2019-02-08 14:33:46.138 [main] INFO - Authentication Type : http_signature +2019-02-08 14:33:46.139 [main] INFO - Request Type: GET +2019-02-08 14:33:46.140 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc, requestType=GET} +2019-02-08 14:33:46.140 [main] INFO - v-c-merchant-id: testrest +2019-02-08 14:33:46.141 [main] INFO - Date: Fri, 8 Feb 2019 09:02:18 GMT +2019-02-08 14:33:46.141 [main] INFO - Host: apitest.cybersource.com +2019-02-08 14:33:46.142 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="vZMHePWHwatGcfHXiyEpDfVRi+h/E1I896AaPQBHMeM=" +2019-02-08 14:33:46.142 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 14:33:46.674 [main] INFO - Request Body: null +2019-02-08 14:33:46.674 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc} +2019-02-08 14:33:46.675 [main] INFO - Response Code: 200 +2019-02-08 14:33:46.675 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_4c12f602-cb07-413e-9e5e-8aa76119f367 +X-OPNET-Transaction-Trace: a2_ae2c145b-e803-457d-939c-85123b1896e8 +Cache-Control: no-cache, no-transform +ETag: "-1142100191" +Expires: Fri, 08 Feb 2019 09:03:46 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Fri, 08 Feb 2019 09:03:45 GMT +X-Cnection: close +v-c-correlation-id: 79fa3518-71ef-4474-bf27-d7318c1a1e63 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549616626144 +OkHttp-Received-Millis: 1549616626662 + +2019-02-08 14:33:46.676 [main] INFO - ********* END *********: +2019-02-08 14:33:46.730 [main] INFO - ********* START ********* +2019-02-08 14:33:46.732 [main] INFO - Authentication Type : http_signature +2019-02-08 14:33:46.733 [main] INFO - Request Type: GET +2019-02-08 14:33:46.733 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/343hdgff-88uh-23hh-b6d6-5dfjhdtsufh8, requestType=GET} +2019-02-08 14:33:46.735 [main] INFO - v-c-merchant-id: testrest +2019-02-08 14:33:46.736 [main] INFO - Date: Fri, 8 Feb 2019 09:02:18 GMT +2019-02-08 14:33:46.736 [main] INFO - Host: apitest.cybersource.com +2019-02-08 14:33:46.737 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Vcpl/8pYbUCj8s79npFAkACyxu0guNrnfG9KUY7A5N0=" +2019-02-08 14:33:46.769 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 14:33:47.003 [main] INFO - Request Body: null +2019-02-08 14:33:47.004 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc} +2019-02-08 14:33:47.004 [main] INFO - Response Code: 404 +2019-02-08 14:33:47.004 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b26e406c-87b2-4545-9ef6-063f28cd0ea0 +X-OPNET-Transaction-Trace: a2_08a68b3b-a715-4cc5-ae59-d3578c0f4193 +X-OPNET-Transaction-Trace: a2_abfb504a-27c4-4476-8007-35ffd0be96ea +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Content-Length: 0 +Date: Fri, 08 Feb 2019 09:03:46 GMT +X-Cnection: close +v-c-correlation-id: 45bb772a-0817-4dab-90b9-07f13476e4d9 +OkHttp-Sent-Millis: 1549616626770 +OkHttp-Received-Millis: 1549616627001 + +2019-02-08 14:33:47.005 [main] INFO - ********* END *********: +2019-02-08 14:35:37.956 [main] INFO - ********* START ********* +2019-02-08 14:35:37.969 [main] INFO - Authentication Type : http_signature +2019-02-08 14:35:37.969 [main] INFO - Request Type: GET +2019-02-08 14:35:37.970 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc, requestType=GET} +2019-02-08 14:35:37.970 [main] INFO - v-c-merchant-id: testrest +2019-02-08 14:35:38.012 [main] INFO - Date: Fri, 8 Feb 2019 09:05:37 GMT +2019-02-08 14:35:38.013 [main] INFO - Host: apitest.cybersource.com +2019-02-08 14:35:38.013 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="zfkzFozhq0n3v5m/aU0h1ZF+6afyHq+Pvdp0eXUQfBM=" +2019-02-08 14:35:38.013 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 14:35:39.454 [main] INFO - Request Body: null +2019-02-08 14:35:39.455 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc} +2019-02-08 14:35:39.456 [main] INFO - Response Code: 200 +2019-02-08 14:35:39.456 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_5d6a9c45-0dc7-48da-83fe-ccee42e9365e +X-OPNET-Transaction-Trace: a2_2053b301-87a2-4a00-b494-58c88e313308 +Cache-Control: no-cache, no-transform +ETag: "-1142100191" +Expires: Fri, 08 Feb 2019 09:05:39 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Fri, 08 Feb 2019 09:05:39 GMT +X-Cnection: close +v-c-correlation-id: e91acad1-9bff-4d3b-bc67-63f2bb44d356 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549616738931 +OkHttp-Received-Millis: 1549616739400 + +2019-02-08 14:35:39.456 [main] INFO - ********* END *********: +2019-02-08 14:35:39.634 [main] INFO - ********* START ********* +2019-02-08 14:35:39.634 [main] INFO - Authentication Type : http_signature +2019-02-08 14:35:39.634 [main] INFO - Request Type: GET +2019-02-08 14:35:39.634 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/343hdgff-88uh-23hh-b6d6-5dfjhdtsufh8, requestType=GET} +2019-02-08 14:35:39.635 [main] INFO - v-c-merchant-id: testrest +2019-02-08 14:35:39.635 [main] INFO - Date: Fri, 8 Feb 2019 09:05:37 GMT +2019-02-08 14:35:39.635 [main] INFO - Host: apitest.cybersource.com +2019-02-08 14:35:39.636 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ROByjb2/SDq0jx4/7PEWchgKZyYps8PN/0XDFTa56sg=" +2019-02-08 14:35:39.636 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 14:35:39.872 [main] INFO - Request Body: null +2019-02-08 14:35:39.872 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc} +2019-02-08 14:35:39.873 [main] INFO - Response Code: 404 +2019-02-08 14:35:39.873 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_099cd065-a8a0-4a33-a37b-d2d2a9ed092e +X-OPNET-Transaction-Trace: a2_6129e3bc-9988-4c2d-ba67-8815d04bc29b +X-OPNET-Transaction-Trace: a2_2213b66f-33dd-4739-a040-75d6be7757a4 +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Content-Length: 0 +Date: Fri, 08 Feb 2019 09:05:39 GMT +X-Cnection: close +v-c-correlation-id: ecab5acb-8bc3-4605-876c-bf0d5164a6f9 +OkHttp-Sent-Millis: 1549616739638 +OkHttp-Received-Millis: 1549616739856 + +2019-02-08 14:35:39.874 [main] INFO - ********* END *********: +2019-02-08 14:40:57.615 [main] INFO - ********* START ********* +2019-02-08 14:40:57.628 [main] INFO - Authentication Type : http_signature +2019-02-08 14:40:57.629 [main] INFO - Request Type: GET +2019-02-08 14:40:57.629 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-08 14:40:57.630 [main] INFO - v-c-merchant-id: testrest +2019-02-08 14:40:57.630 [main] INFO - Date: Fri, 8 Feb 2019 09:10:57 GMT +2019-02-08 14:40:57.630 [main] INFO - Host: apitest.cybersource.com +2019-02-08 14:40:57.631 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="NtppaUuMQ7AE8y1b/0Ho12seMwvZDbNTKTzegv6CMgY=" +2019-02-08 14:40:57.631 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 14:41:01.905 [main] INFO - Request Body: null +2019-02-08 14:41:01.905 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-08 14:41:01.906 [main] INFO - Response Code: 200 +2019-02-08 14:41:01.906 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d7abd1d8-7a59-476b-8d03-7611612cb16e +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 09:11:01 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: b9a9e42f-bcac-4c0f-bea9-535c78b474b5 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549617058568 +OkHttp-Received-Millis: 1549617061868 + +2019-02-08 14:41:01.907 [main] INFO - ********* END *********: +2019-02-08 15:01:45.746 [main] INFO - ********* START ********* +2019-02-08 15:01:45.746 [main] INFO - Authentication Type : http_signature +2019-02-08 15:01:45.746 [main] INFO - Request Type: GET +2019-02-08 15:01:45.746 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-08 15:01:45.746 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:01:45.746 [main] INFO - Date: Fri, 8 Feb 2019 09:10:57 GMT +2019-02-08 15:01:45.746 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:01:45.746 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="NtppaUuMQ7AE8y1b/0Ho12seMwvZDbNTKTzegv6CMgY=" +2019-02-08 15:01:45.746 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:01:46.441 [main] INFO - Request Body: null +2019-02-08 15:01:46.441 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-08 15:01:46.441 [main] INFO - Response Code: 200 +2019-02-08 15:01:46.441 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d2240c92-0837-4294-9194-1f760bea45bf +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 09:31:46 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 194aa394-af34-46c2-8124-b899b6792362 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549618306012 +OkHttp-Received-Millis: 1549618306441 + +2019-02-08 15:01:46.441 [main] INFO - ********* END *********: +2019-02-08 15:01:46.503 [main] INFO - ********* START ********* +2019-02-08 15:01:46.503 [main] INFO - Authentication Type : http_signature +2019-02-08 15:01:46.503 [main] INFO - Request Type: GET +2019-02-08 15:01:46.503 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testre&roleId=admin, requestType=GET} +2019-02-08 15:01:46.503 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:01:46.503 [main] INFO - Date: Fri, 8 Feb 2019 09:10:57 GMT +2019-02-08 15:01:46.503 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:01:46.503 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="OqqTDDBpv9ncnvbG+hJjWG40TOvqUOB4JefiP5InuqA=" +2019-02-08 15:01:46.503 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:02:27.129 [main] INFO - ********* START ********* +2019-02-08 15:02:27.145 [main] INFO - Authentication Type : http_signature +2019-02-08 15:02:27.145 [main] INFO - Request Type: GET +2019-02-08 15:02:27.145 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-08 15:02:27.145 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:02:27.192 [main] INFO - Date: Fri, 8 Feb 2019 09:32:26 GMT +2019-02-08 15:02:27.192 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:02:27.192 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="DNmZPOmw0fwVkvM4jgILHa/PCHv7Bb2nqKfjUwnk40U=" +2019-02-08 15:02:27.192 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:02:28.720 [main] INFO - Request Body: null +2019-02-08 15:02:28.720 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-08 15:02:28.720 [main] INFO - Response Code: 200 +2019-02-08 15:02:28.720 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_9abae4df-e80a-4877-93b9-10b256a90334 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 09:32:28 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 0dcb9f8d-04c8-4df3-bff4-b6ca699e9d49 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549618348316 +OkHttp-Received-Millis: 1549618348673 + +2019-02-08 15:02:28.720 [main] INFO - ********* END *********: +2019-02-08 15:02:28.876 [main] INFO - ********* START ********* +2019-02-08 15:02:28.876 [main] INFO - Authentication Type : http_signature +2019-02-08 15:02:28.876 [main] INFO - Request Type: GET +2019-02-08 15:02:28.892 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testre&roleId=admin, requestType=GET} +2019-02-08 15:02:28.892 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:02:28.892 [main] INFO - Date: Fri, 8 Feb 2019 09:32:26 GMT +2019-02-08 15:02:28.892 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:02:28.892 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Q7Lsde++3iKQd8X/JgDKmnf7rcv5cPoQlTfsgDRuYqo=" +2019-02-08 15:02:28.892 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:02:29.316 [main] INFO - Request Body: null +2019-02-08 15:02:29.316 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-08 15:02:29.316 [main] INFO - Response Code: 401 +2019-02-08 15:02:29.316 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_12b55368-a5f8-4ee9-9fe6-f6573f1cd259 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 09:32:29 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ecc4bfac-e8fa-4a0a-ba34-ba8cedfd1eaa +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549618348892 +OkHttp-Received-Millis: 1549618349316 + +2019-02-08 15:02:29.316 [main] INFO - ********* END *********: +2019-02-08 15:05:45.192 [main] INFO - ********* START ********* +2019-02-08 15:05:45.192 [main] INFO - Authentication Type : http_signature +2019-02-08 15:05:45.192 [main] INFO - Request Type: GET +2019-02-08 15:05:45.192 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-08 15:05:45.192 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:05:45.192 [main] INFO - Date: Fri, 8 Feb 2019 09:35:40 GMT +2019-02-08 15:05:45.214 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:05:45.214 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="gjWl2A0JRu17XrErQPQcK3J8IoaPPcOOtujoAm1RdS4=" +2019-02-08 15:05:45.214 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:05:48.658 [main] INFO - Request Body: null +2019-02-08 15:05:48.659 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-08 15:05:48.660 [main] INFO - Response Code: 200 +2019-02-08 15:05:48.661 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_df9a6007-4174-46d3-b58e-42d81cf20a12 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 09:35:48 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 871a88e0-8989-4616-aa56-6737f265871e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549618548256 +OkHttp-Received-Millis: 1549618548583 + +2019-02-08 15:05:48.662 [main] INFO - ********* END *********: +2019-02-08 15:10:09.703 [main] INFO - ********* START ********* +2019-02-08 15:10:09.703 [main] INFO - Authentication Type : http_signature +2019-02-08 15:10:09.703 [main] INFO - Request Type: GET +2019-02-08 15:10:09.703 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-08 15:10:09.703 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:10:09.703 [main] INFO - Date: Fri, 8 Feb 2019 09:35:40 GMT +2019-02-08 15:10:09.703 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:10:09.703 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="gjWl2A0JRu17XrErQPQcK3J8IoaPPcOOtujoAm1RdS4=" +2019-02-08 15:10:09.703 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:10:10.031 [main] INFO - Request Body: null +2019-02-08 15:10:10.031 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-08 15:10:10.031 [main] INFO - Response Code: 200 +2019-02-08 15:10:10.031 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_96ff425c-fa99-4017-a627-cd0299c67fd0 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 09:40:09 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 786d45e2-8dd9-4724-8b47-e365f63cf01a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549618809719 +OkHttp-Received-Millis: 1549618810031 + +2019-02-08 15:10:10.031 [main] INFO - ********* END *********: +2019-02-08 15:10:10.086 [main] INFO - ********* START ********* +2019-02-08 15:10:10.087 [main] INFO - Authentication Type : http_signature +2019-02-08 15:10:10.087 [main] INFO - Request Type: GET +2019-02-08 15:10:10.087 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testre&roleId=admin, requestType=GET} +2019-02-08 15:10:10.088 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:10:10.088 [main] INFO - Date: Fri, 8 Feb 2019 09:35:40 GMT +2019-02-08 15:10:10.088 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:10:10.089 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="DbM5FSBjYaDBFSsuFWCouDyOMqWRKvUo6cqBvdlfvzU=" +2019-02-08 15:10:10.089 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:10:10.351 [main] INFO - Request Body: null +2019-02-08 15:10:10.351 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-08 15:10:10.351 [main] INFO - Response Code: 401 +2019-02-08 15:10:10.351 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_89c1ff6e-0f92-4e12-9499-844f817f486d +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 09:40:10 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ccdd8437-8cd4-4b96-bafe-62001ed24bc1 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549618810091 +OkHttp-Received-Millis: 1549618810335 + +2019-02-08 15:10:10.351 [main] INFO - ********* END *********: +2019-02-08 15:31:28.547 [main] INFO - ********* START ********* +2019-02-08 15:31:28.563 [main] INFO - Authentication Type : http_signature +2019-02-08 15:31:28.563 [main] INFO - Request Type: GET +2019-02-08 15:31:28.563 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-08 15:31:28.563 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:31:28.563 [main] INFO - Date: Fri, 8 Feb 2019 10:01:23 GMT +2019-02-08 15:31:28.579 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:31:28.579 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="KtEaLlXGwATK/ztQx7lejM4XLcDQfERf1F+0LRl8ewY=" +2019-02-08 15:31:28.579 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:31:32.112 [main] INFO - Request Body: null +2019-02-08 15:31:32.113 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-08 15:31:32.114 [main] INFO - Response Code: 200 +2019-02-08 15:31:32.115 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e880fd3c-e3ad-47ff-89bb-84e0e193c111 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 10:01:31 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 9e59b5e7-8e42-48d5-bb8e-2d0eb658efb6 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549620091695 +OkHttp-Received-Millis: 1549620092038 + +2019-02-08 15:31:32.116 [main] INFO - ********* END *********: +2019-02-08 15:33:04.391 [main] INFO - ********* START ********* +2019-02-08 15:33:04.391 [main] INFO - Authentication Type : http_signature +2019-02-08 15:33:04.391 [main] INFO - Request Type: GET +2019-02-08 15:33:04.391 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-08 15:33:04.391 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:33:04.391 [main] INFO - Date: Fri, 8 Feb 2019 10:01:23 GMT +2019-02-08 15:33:04.391 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:33:04.391 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="KtEaLlXGwATK/ztQx7lejM4XLcDQfERf1F+0LRl8ewY=" +2019-02-08 15:33:04.391 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:33:04.704 [main] INFO - Request Body: null +2019-02-08 15:33:04.704 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-08 15:33:04.704 [main] INFO - Response Code: 200 +2019-02-08 15:33:04.704 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_422eaacb-877b-4b4a-afd9-4129c926ae9e +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 10:03:04 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 04176315-0614-4d6f-9cd0-6f8f7a8df0b1 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549620184391 +OkHttp-Received-Millis: 1549620184688 + +2019-02-08 15:33:04.704 [main] INFO - ********* END *********: +2019-02-08 15:33:04.896 [main] INFO - ********* START ********* +2019-02-08 15:33:04.896 [main] INFO - Authentication Type : http_signature +2019-02-08 15:33:04.896 [main] INFO - Request Type: GET +2019-02-08 15:33:04.896 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testre&roleId=admin, requestType=GET} +2019-02-08 15:33:04.896 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:33:04.896 [main] INFO - Date: Fri, 8 Feb 2019 10:01:23 GMT +2019-02-08 15:33:04.896 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:33:04.896 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="RGxtrOKMFCTkemNdmN3CxUJoYLwSumv6nuDzUg3iFpw=" +2019-02-08 15:33:04.896 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:33:05.142 [main] INFO - Request Body: null +2019-02-08 15:33:05.142 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-08 15:33:05.142 [main] INFO - Response Code: 401 +2019-02-08 15:33:05.159 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_98435b93-e330-4fcc-a62c-29bdbf1be200 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 10:03:04 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: b749ff49-db47-489d-92f5-26b72a235164 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549620184896 +OkHttp-Received-Millis: 1549620185142 + +2019-02-08 15:33:05.159 [main] INFO - ********* END *********: +2019-02-08 15:33:38.391 [main] INFO - ********* START ********* +2019-02-08 15:33:38.407 [main] INFO - Authentication Type : http_signature +2019-02-08 15:33:38.422 [main] INFO - Request Type: GET +2019-02-08 15:33:38.422 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-08 15:33:38.422 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:33:38.422 [main] INFO - Date: Fri, 8 Feb 2019 10:03:33 GMT +2019-02-08 15:33:38.422 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:33:38.422 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="HHYfTmxZ7WfOufAi3v3Dtlvm/F6z0KESCoJ8ZxxXq9Q=" +2019-02-08 15:33:38.422 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:33:41.884 [main] INFO - Request Body: null +2019-02-08 15:33:41.884 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-08 15:33:41.884 [main] INFO - Response Code: 200 +2019-02-08 15:33:41.884 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_0f9a10fe-f60a-4f0f-8853-b0702f0d7193 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 10:03:41 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ff5db741-cb41-49d0-8aa5-e02484a344e0 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549620221485 +OkHttp-Received-Millis: 1549620221790 + +2019-02-08 15:33:41.884 [main] INFO - ********* END *********: +2019-02-08 15:34:27.745 [main] INFO - ********* START ********* +2019-02-08 15:34:27.745 [main] INFO - Authentication Type : http_signature +2019-02-08 15:34:27.745 [main] INFO - Request Type: GET +2019-02-08 15:34:27.745 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-08 15:34:27.745 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:34:27.745 [main] INFO - Date: Fri, 8 Feb 2019 10:03:33 GMT +2019-02-08 15:34:27.745 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:34:27.762 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="HHYfTmxZ7WfOufAi3v3Dtlvm/F6z0KESCoJ8ZxxXq9Q=" +2019-02-08 15:34:27.762 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:34:28.042 [main] INFO - Request Body: null +2019-02-08 15:34:28.042 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-08 15:34:28.042 [main] INFO - Response Code: 200 +2019-02-08 15:34:28.042 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_cf4ee653-ff66-458f-a7e4-2b94450e03d4 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 10:04:27 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 0d093def-8cc8-49e5-b661-1816bea35428 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549620267762 +OkHttp-Received-Millis: 1549620268042 + +2019-02-08 15:34:28.042 [main] INFO - ********* END *********: +2019-02-08 15:34:28.219 [main] INFO - ********* START ********* +2019-02-08 15:34:28.219 [main] INFO - Authentication Type : http_signature +2019-02-08 15:34:28.219 [main] INFO - Request Type: GET +2019-02-08 15:34:28.219 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testre&roleId=admin, requestType=GET} +2019-02-08 15:34:28.219 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:34:28.219 [main] INFO - Date: Fri, 8 Feb 2019 10:03:33 GMT +2019-02-08 15:34:28.219 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:34:28.219 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="AbANud9NPoKanNrUngFtddRge9DzIRfo4QGddSP1FxU=" +2019-02-08 15:34:28.219 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:34:28.454 [main] INFO - Request Body: null +2019-02-08 15:34:28.454 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-08 15:34:28.454 [main] INFO - Response Code: 401 +2019-02-08 15:34:28.454 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_645c3300-4b2c-4b4a-be21-ac5bbb822e86 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 10:04:27 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: b1ea850f-b3ab-416a-8dd4-8c977d472702 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549620268219 +OkHttp-Received-Millis: 1549620268454 + +2019-02-08 15:34:28.454 [main] INFO - ********* END *********: +2019-02-08 15:35:03.129 [main] INFO - ********* START ********* +2019-02-08 15:35:03.142 [main] INFO - Authentication Type : http_signature +2019-02-08 15:35:03.142 [main] INFO - Request Type: GET +2019-02-08 15:35:03.142 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-08 15:35:03.142 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:35:03.189 [main] INFO - Date: Fri, 8 Feb 2019 10:05:02 GMT +2019-02-08 15:35:03.189 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:35:03.189 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ClI5sa48vJRPOg+Rm5AB7P+klOrw29p2RysplHtPOXs=" +2019-02-08 15:35:03.189 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:35:04.455 [main] INFO - Request Body: null +2019-02-08 15:35:04.455 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-08 15:35:04.455 [main] INFO - Response Code: 200 +2019-02-08 15:35:04.455 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_dd5d8183-a513-43e7-a295-f268e6ea23f3 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 10:05:04 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a49cf2e5-f859-4ce4-8b2e-02cb10193596 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549620304135 +OkHttp-Received-Millis: 1549620304423 + +2019-02-08 15:35:04.455 [main] INFO - ********* END *********: +2019-02-08 15:36:23.929 [main] INFO - ********* START ********* +2019-02-08 15:36:23.929 [main] INFO - Authentication Type : http_signature +2019-02-08 15:36:23.929 [main] INFO - Request Type: GET +2019-02-08 15:36:23.929 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-08 15:36:23.929 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:36:23.929 [main] INFO - Date: Fri, 8 Feb 2019 10:05:02 GMT +2019-02-08 15:36:23.929 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:36:23.929 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ClI5sa48vJRPOg+Rm5AB7P+klOrw29p2RysplHtPOXs=" +2019-02-08 15:36:23.929 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:36:24.205 [main] INFO - Request Body: null +2019-02-08 15:36:24.205 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-08 15:36:24.205 [main] INFO - Response Code: 200 +2019-02-08 15:36:24.205 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d84b2a2d-6a06-494b-bc9e-5f00077bf14a +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 10:06:24 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 450bd94a-9e30-4f74-bc63-9e89569c520f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549620383941 +OkHttp-Received-Millis: 1549620384205 + +2019-02-08 15:36:24.205 [main] INFO - ********* END *********: +2019-02-08 15:36:24.253 [main] INFO - ********* START ********* +2019-02-08 15:36:24.253 [main] INFO - Authentication Type : http_signature +2019-02-08 15:36:24.253 [main] INFO - Request Type: GET +2019-02-08 15:36:24.253 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testre&roleId=admin, requestType=GET} +2019-02-08 15:36:24.253 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:36:24.253 [main] INFO - Date: Fri, 8 Feb 2019 10:05:02 GMT +2019-02-08 15:36:24.253 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:36:24.253 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="VWcXf8qawD+Nq5IL7c7CyqTMRrchNtr8F8xnMgak4bI=" +2019-02-08 15:36:24.253 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:36:24.518 [main] INFO - Request Body: null +2019-02-08 15:36:24.518 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-08 15:36:24.518 [main] INFO - Response Code: 401 +2019-02-08 15:36:24.518 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_bf2bc927-8727-423c-bf21-1a8c5bdb03f0 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 10:06:24 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: dfe0083c-ad6b-46bd-bcf3-1d6252101721 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549620384253 +OkHttp-Received-Millis: 1549620384502 + +2019-02-08 15:36:24.518 [main] INFO - ********* END *********: +2019-02-08 15:36:55.917 [main] INFO - ********* START ********* +2019-02-08 15:36:55.933 [main] INFO - Authentication Type : http_signature +2019-02-08 15:36:55.933 [main] INFO - Request Type: GET +2019-02-08 15:36:55.948 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-08 15:36:55.948 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:36:55.981 [main] INFO - Date: Fri, 8 Feb 2019 10:06:55 GMT +2019-02-08 15:36:55.981 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:36:55.981 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="XEBYKkiqvvI9EETPJ6gYX8v1u2sm6oRsPoRjwoJ+6do=" +2019-02-08 15:36:55.981 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:36:57.236 [main] INFO - Request Body: null +2019-02-08 15:36:57.252 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-08 15:36:57.252 [main] INFO - Response Code: 200 +2019-02-08 15:36:57.252 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b5b4f46a-67dc-49f8-882e-bdda4894f482 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 10:06:57 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 888a279c-633f-4805-8a67-1921cb9be841 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549620416915 +OkHttp-Received-Millis: 1549620417221 + +2019-02-08 15:36:57.252 [main] INFO - ********* END *********: +2019-02-08 15:36:57.377 [main] INFO - ********* START ********* +2019-02-08 15:36:57.377 [main] INFO - Authentication Type : http_signature +2019-02-08 15:36:57.377 [main] INFO - Request Type: GET +2019-02-08 15:36:57.377 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testre&roleId=admin, requestType=GET} +2019-02-08 15:36:57.377 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:36:57.377 [main] INFO - Date: Fri, 8 Feb 2019 10:06:55 GMT +2019-02-08 15:36:57.377 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:36:57.377 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="lVkt0vNqmtHvP2VNTXcqYTQGxGDrSbkSHQwo7vesD5I=" +2019-02-08 15:36:57.377 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:36:57.607 [main] INFO - Request Body: null +2019-02-08 15:36:57.608 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-08 15:36:57.608 [main] INFO - Response Code: 401 +2019-02-08 15:36:57.609 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_4e6d3c62-0149-40b8-af10-203ecab1a970 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Fri, 08 Feb 2019 10:06:57 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 48bb4ba0-d57d-438b-b983-d52af238369f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549620417377 +OkHttp-Received-Millis: 1549620417606 + +2019-02-08 15:36:57.609 [main] INFO - ********* END *********: +2019-02-08 15:55:49.400 [main] INFO - ********* START ********* +2019-02-08 15:55:49.430 [main] INFO - Authentication Type : http_signature +2019-02-08 15:55:49.430 [main] INFO - Request Type: POST +2019-02-08 15:55:49.430 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-08 15:55:49.430 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-08 15:55:49.477 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:55:49.477 [main] INFO - Date: Fri, 8 Feb 2019 10:25:49 GMT +2019-02-08 15:55:49.477 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:55:49.477 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="yBF4kmFK6MpFb18SAPxXl2RKNoH8Znjc0zkaz/qWSMY=" +2019-02-08 15:55:49.477 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:55:50.719 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-08 15:55:50.719 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-08 15:55:50.719 [main] INFO - Response Code: 200 +2019-02-08 15:55:50.719 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_9c81e130-6fb3-49ef-b812-8979c266804d +uniqueTransactionID: 1e899d65-a254-4066-a68f-2d105a423b90 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Fri, 08 Feb 2019 10:25:50 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: af1dc1e0-a2f1-4912-b0e3-499bbc28b464 +OkHttp-Sent-Millis: 1549621550400 +OkHttp-Received-Millis: 1549621550680 + +2019-02-08 15:55:50.719 [main] INFO - ********* END *********: +2019-02-08 15:55:50.750 [main] INFO - ********* START ********* +2019-02-08 15:55:50.766 [main] INFO - Authentication Type : http_signature +2019-02-08 15:55:50.766 [main] INFO - Request Type: POST +2019-02-08 15:55:50.766 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-08 15:55:50.766 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-08 15:55:50.766 [main] INFO - v-c-merchant-id: testrest +2019-02-08 15:55:50.766 [main] INFO - Date: Fri, 8 Feb 2019 10:25:49 GMT +2019-02-08 15:55:50.766 [main] INFO - Host: apitest.cybersource.com +2019-02-08 15:55:50.766 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="yBF4kmFK6MpFb18SAPxXl2RKNoH8Znjc0zkaz/qWSMY=" +2019-02-08 15:55:50.766 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-08 15:55:51.017 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-08 15:55:51.017 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-08 15:55:51.017 [main] INFO - Response Code: 400 +2019-02-08 15:55:51.017 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_203d8f4e-6e01-4d74-9136-0142b7166e41 +uniqueTransactionID: dc9bf4d7-86d6-42d0-b06d-02c57aef2e65 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Fri, 08 Feb 2019 10:25:50 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 1d6b953e-749b-4834-a53b-6276a9caf3cc +OkHttp-Sent-Millis: 1549621550782 +OkHttp-Received-Millis: 1549621551000 + +2019-02-08 15:55:51.017 [main] INFO - ********* END *********: +2019-02-11 10:54:00.915 [main] INFO - ********* START ********* +2019-02-11 10:54:00.931 [main] INFO - Authentication Type : http_signature +2019-02-11 10:54:00.931 [main] INFO - Request Type: POST +2019-02-11 10:54:00.931 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-11 10:54:00.931 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-11 10:54:00.931 [main] INFO - v-c-merchant-id: testrest +2019-02-11 10:54:00.931 [main] INFO - Date: Mon, 11 Feb 2019 05:24:00 GMT +2019-02-11 10:54:00.931 [main] INFO - Host: apitest.cybersource.com +2019-02-11 10:54:00.931 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="8p+XqUUH1dz+nA95uslmUj62Ijy/krfbxtE/ZgVbhzs=" +2019-02-11 10:54:00.931 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 10:54:02.462 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-11 10:54:02.462 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-11 10:54:02.462 [main] INFO - Response Code: 200 +2019-02-11 10:54:02.462 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_9d7f9788-cc3b-44c0-93e0-587ef7d07142 +uniqueTransactionID: 2bb32f78-8fb2-47ee-aa76-3bbab48f7b52 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 11 Feb 2019 05:24:02 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 86fd4378-e661-417f-8e41-2d45f681470d +OkHttp-Sent-Millis: 1549862642150 +OkHttp-Received-Millis: 1549862642446 + +2019-02-11 10:54:02.462 [main] INFO - ********* END *********: +2019-02-11 10:54:02.496 [main] INFO - ********* START ********* +2019-02-11 10:54:02.496 [main] INFO - Authentication Type : http_signature +2019-02-11 10:54:02.496 [main] INFO - Request Type: POST +2019-02-11 10:54:02.496 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-11 10:54:02.496 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-11 10:54:02.496 [main] INFO - v-c-merchant-id: testrest +2019-02-11 10:54:02.496 [main] INFO - Date: Mon, 11 Feb 2019 05:24:00 GMT +2019-02-11 10:54:02.496 [main] INFO - Host: apitest.cybersource.com +2019-02-11 10:54:02.496 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="8p+XqUUH1dz+nA95uslmUj62Ijy/krfbxtE/ZgVbhzs=" +2019-02-11 10:54:02.496 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 10:54:02.712 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-11 10:54:02.712 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-11 10:54:02.712 [main] INFO - Response Code: 400 +2019-02-11 10:54:02.712 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_736971ac-56c8-4042-98e3-673a09d8bd91 +uniqueTransactionID: f35acc10-730c-4ee3-8059-e6c813b9e9d6 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Mon, 11 Feb 2019 05:24:02 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 8884d01d-eeb7-4f06-92a3-99073be98206 +OkHttp-Sent-Millis: 1549862642525 +OkHttp-Received-Millis: 1549862642712 + +2019-02-11 10:54:02.712 [main] INFO - ********* END *********: +2019-02-11 12:07:24.249 [main] INFO - ********* START ********* +2019-02-11 12:07:24.264 [main] INFO - Authentication Type : http_signature +2019-02-11 12:07:24.264 [main] INFO - Request Type: POST +2019-02-11 12:07:24.264 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-11 12:07:24.264 [main] INFO - Digest: SHA-256=YljtibTei+du4xVIDxMr3HBsyLAEDuiYaag9TcU9jHA= +2019-02-11 12:07:24.296 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:07:24.296 [main] INFO - Date: Mon, 11 Feb 2019 06:37:23 GMT +2019-02-11 12:07:24.296 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:07:24.296 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="3u0Zcmi2aq9snu3mGqqnasAgaJHTOCmUDP++pu7wLNo=" +2019-02-11 12:07:24.296 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:07:25.312 [main] INFO - Request Body: {"encryptionType":"RsaOaep256"} +2019-02-11 12:07:25.312 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-11 12:07:25.312 [main] INFO - Response Code: 200 +2019-02-11 12:07:25.312 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=CwANFLPvTjSBX6f2Vt9YpYwvPnfrRyM4oeAKgAzJ8P8= +Content-Type: application/json;charset=UTF-8 +Content-Length: 927 +Date: Mon, 11 Feb 2019 06:37:25 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: be2a9420-10dc-4aae-ac22-3f4121e971cb +OkHttp-Sent-Millis: 1549867045111 +OkHttp-Received-Millis: 1549867045296 + +2019-02-11 12:07:25.312 [main] INFO - ********* END *********: +2019-02-11 12:07:25.358 [main] INFO - ********* START ********* +2019-02-11 12:07:25.358 [main] INFO - Authentication Type : http_signature +2019-02-11 12:07:25.358 [main] INFO - Request Type: POST +2019-02-11 12:07:25.358 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-11 12:07:25.358 [main] INFO - Digest: SHA-256=gEZo4PozZVgCrpNd3JKwGruwMOoyFI70wP0aDjupsBk= +2019-02-11 12:07:25.358 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:07:25.358 [main] INFO - Date: Mon, 11 Feb 2019 06:37:23 GMT +2019-02-11 12:07:25.358 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:07:25.358 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="7IuJAnR6GNUHDZE6vL6cF9l2ZFKKfyc7/pK9OV/RExE=" +2019-02-11 12:07:25.358 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:07:25.546 [main] INFO - Request Body: {"encryptionType":"PqaPabc255"} +2019-02-11 12:07:25.546 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-11 12:07:25.546 [main] INFO - Response Code: 400 +2019-02-11 12:07:25.546 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Mon, 11 Feb 2019 06:37:25 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a6f51f55-5648-419c-b4ca-29e30ebffdf4 +OkHttp-Sent-Millis: 1549867045374 +OkHttp-Received-Millis: 1549867045546 + +2019-02-11 12:07:25.546 [main] INFO - ********* END *********: +2019-02-11 12:08:57.889 [main] INFO - ********* START ********* +2019-02-11 12:08:57.905 [main] INFO - Authentication Type : http_signature +2019-02-11 12:08:57.905 [main] INFO - Request Type: POST +2019-02-11 12:08:57.905 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-11 12:08:57.905 [main] INFO - Digest: SHA-256=NTEgGTO0S/Q4uLa31n32FPLByTOx0Y4C4nAozKMXflE= +2019-02-11 12:08:57.936 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:08:57.952 [main] INFO - Date: Mon, 11 Feb 2019 06:38:57 GMT +2019-02-11 12:08:57.952 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:08:57.952 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="9RY9+OgufNBHSb0rkTO2SL3LHV5DbuhvmqV0b5otFfw=" +2019-02-11 12:08:57.952 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:08:58.952 [main] INFO - Request Body: {"keyId":"078cNRFLmTIrTCeW24GHiFSBDPLRjjQ0","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-11 12:08:58.952 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [078cNRFLmTIrTCeW24GHiFSBDPLRjjQ0]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-11 12:08:58.952 [main] INFO - Response Code: 400 +2019-02-11 12:08:58.952 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=LlgcY4w4k87ewaeYzJLhjKlMgpExFnNaCj6NDVSqwnw= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Mon, 11 Feb 2019 06:38:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 62749384-6c31-4890-9c26-2a3721a179f6 +OkHttp-Sent-Millis: 1549867138780 +OkHttp-Received-Millis: 1549867138936 + +2019-02-11 12:08:58.952 [main] INFO - ********* END *********: +2019-02-11 12:08:58.983 [main] INFO - ********* START ********* +2019-02-11 12:08:58.983 [main] INFO - Authentication Type : http_signature +2019-02-11 12:08:58.983 [main] INFO - Request Type: POST +2019-02-11 12:08:58.983 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-11 12:08:58.999 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-02-11 12:08:58.999 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:08:58.999 [main] INFO - Date: Mon, 11 Feb 2019 06:38:57 GMT +2019-02-11 12:08:58.999 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:08:58.999 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="1660jHTIk+RbfACTvRTUOYaQbjTRW8X7Dtfuid8tHFI=" +2019-02-11 12:08:58.999 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:08:59.155 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-11 12:08:59.155 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-02-11 12:08:59.155 [main] INFO - Response Code: 400 +2019-02-11 12:08:59.155 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Mon, 11 Feb 2019 06:38:59 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 74238118-cb04-4859-8bf8-3e16c857a985 +OkHttp-Sent-Millis: 1549867139014 +OkHttp-Received-Millis: 1549867139139 + +2019-02-11 12:08:59.155 [main] INFO - ********* END *********: +2019-02-11 12:09:20.174 [main] INFO - ********* START ********* +2019-02-11 12:09:20.174 [main] INFO - Authentication Type : http_signature +2019-02-11 12:09:20.174 [main] INFO - Request Type: POST +2019-02-11 12:09:20.190 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-11 12:09:20.190 [main] INFO - Digest: SHA-256=bena9bhB3Jy4uPvfu1tAC0uN8AuzzM+xjqmDwR5//EA= +2019-02-11 12:09:20.221 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:09:20.221 [main] INFO - Date: Mon, 11 Feb 2019 06:39:19 GMT +2019-02-11 12:09:20.221 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:09:20.221 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ha4Vn5wgi+ih/YxVXvrHtzr+mFwJ1clUhffGs9yLckI=" +2019-02-11 12:09:20.221 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:09:21.299 [main] INFO - Request Body: {"encryptionType":"None"} +2019-02-11 12:09:21.299 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-11 12:09:21.299 [main] INFO - Response Code: 200 +2019-02-11 12:09:21.299 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=sPSnmb8FlKY+Zcv0K5903I1lAowD3OpFzI00ebf2ksU= +Content-Type: application/json;charset=UTF-8 +Content-Length: 505 +Date: Mon, 11 Feb 2019 06:39:21 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 9f72ba43-7214-4190-849a-6bd31cb15f12 +OkHttp-Sent-Millis: 1549867161080 +OkHttp-Received-Millis: 1549867161283 + +2019-02-11 12:09:21.299 [main] INFO - ********* END *********: +2019-02-11 12:09:21.347 [main] INFO - ********* START ********* +2019-02-11 12:09:21.347 [main] INFO - Authentication Type : http_signature +2019-02-11 12:09:21.347 [main] INFO - Request Type: POST +2019-02-11 12:09:21.347 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-11 12:09:21.347 [main] INFO - Digest: SHA-256=RGxc6GDM4hd0Lz1J24GEBLuX6JSK+r0fZi1/r0x/0Xo= +2019-02-11 12:09:21.347 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:09:21.347 [main] INFO - Date: Mon, 11 Feb 2019 06:39:19 GMT +2019-02-11 12:09:21.347 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:09:21.347 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="DxB6lJJl2ftoAgwbviJQqoRJrweZRtTsj8lUCvtWSeY=" +2019-02-11 12:09:21.347 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:09:21.533 [main] INFO - Request Body: {"encryptionType":"SDMP"} +2019-02-11 12:09:21.533 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-11 12:09:21.533 [main] INFO - Response Code: 400 +2019-02-11 12:09:21.533 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Mon, 11 Feb 2019 06:39:21 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: f80e8531-5c93-475c-877a-63fbb45c18bb +OkHttp-Sent-Millis: 1549867161377 +OkHttp-Received-Millis: 1549867161533 + +2019-02-11 12:09:21.549 [main] INFO - ********* END *********: +2019-02-11 12:09:39.916 [main] INFO - ********* START ********* +2019-02-11 12:09:39.932 [main] INFO - Authentication Type : http_signature +2019-02-11 12:09:39.932 [main] INFO - Request Type: POST +2019-02-11 12:09:39.932 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-02-11 12:09:39.932 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-02-11 12:09:39.979 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:09:39.979 [main] INFO - Date: Mon, 11 Feb 2019 06:39:39 GMT +2019-02-11 12:09:39.979 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:09:39.979 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="7RzOuThTdeyT+U5dVMCro4quUuwdo8Z+SzGpjuXilms=" +2019-02-11 12:09:39.979 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:09:41.401 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-11 12:09:41.401 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207982366112103002/captures} +2019-02-11 12:09:41.401 [main] INFO - Response Code: 201 +2019-02-11 12:09:41.401 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 360ms +v-c-correlation-id: f5c1c54c-862e-4b88-a54d-9048061013d5 +OkHttp-Sent-Millis: 1549867180822 +OkHttp-Received-Millis: 1549867181385 + +2019-02-11 12:09:41.401 [main] INFO - ********* END *********: +2019-02-11 12:09:41.468 [main] INFO - ********* START ********* +2019-02-11 12:09:41.469 [main] INFO - Authentication Type : http_signature +2019-02-11 12:09:41.469 [main] INFO - Request Type: POST +2019-02-11 12:09:41.469 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-02-11 12:09:41.469 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-02-11 12:09:41.469 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:09:41.469 [main] INFO - Date: Mon, 11 Feb 2019 06:39:39 GMT +2019-02-11 12:09:41.469 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:09:41.469 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="7rUVfzvlnnTgO8ENs4Gnh66c5jZerPyvcLHArl19jdQ=" +2019-02-11 12:09:41.469 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:09:42.063 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-11 12:09:42.063 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-11 12:09:42.063 [main] INFO - Response Code: 201 +2019-02-11 12:09:42.063 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 401ms +v-c-correlation-id: cbd36973-1e19-44dc-a237-df9720e83115 +OkHttp-Sent-Millis: 1549867181485 +OkHttp-Received-Millis: 1549867182063 + +2019-02-11 12:09:42.063 [main] INFO - ********* END *********: +2019-02-11 12:09:42.094 [main] INFO - ********* START ********* +2019-02-11 12:09:42.094 [main] INFO - Authentication Type : http_signature +2019-02-11 12:09:42.094 [main] INFO - Request Type: POST +2019-02-11 12:09:42.094 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-02-11 12:09:42.094 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-02-11 12:09:42.094 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:09:42.094 [main] INFO - Date: Mon, 11 Feb 2019 06:39:39 GMT +2019-02-11 12:09:42.094 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:09:42.094 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="U+EXHoL9eTIUeP+Wdj8S/zSSvRkxTAbatRDIi6bvvww=" +2019-02-11 12:09:42.094 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:09:42.610 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-11 12:09:42.625 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-11 12:09:42.625 [main] INFO - Response Code: 400 +2019-02-11 12:09:42.625 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 335ms +v-c-correlation-id: cef849ad-3871-4eb0-a1de-56144edb32fb +OkHttp-Sent-Millis: 1549867182110 +OkHttp-Received-Millis: 1549867182610 + +2019-02-11 12:09:42.625 [main] INFO - ********* END *********: +2019-02-11 12:10:29.789 [main] INFO - ********* START ********* +2019-02-11 12:10:29.804 [main] INFO - Authentication Type : http_signature +2019-02-11 12:10:29.804 [main] INFO - Request Type: POST +2019-02-11 12:10:29.804 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490042042466283603005/reversals, requestType=POST} +2019-02-11 12:10:29.804 [main] INFO - Digest: SHA-256=+nVNWFcK5wejoED726n/0CNM4MAETj2u1DH6s02VUIk= +2019-02-11 12:10:29.804 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:10:29.804 [main] INFO - Date: Mon, 11 Feb 2019 06:40:29 GMT +2019-02-11 12:10:29.820 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:10:29.820 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="VwkKe89N00e0jJWCEUh2yuLGXhcTt3/BDXS5E2s+Npw=" +2019-02-11 12:10:29.820 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:10:31.304 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"100.00"},"reason":"testing"}} +2019-02-11 12:10:31.304 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-11T06:40:31Z","status":"INVALID_REQUEST","reason":"TRANSACTION_ALREADY_REVERSED_OR_SETTLED","message":"Decline - The transaction has already been settled or reversed."} +2019-02-11 12:10:31.304 [main] INFO - Response Code: 400 +2019-02-11 12:10:31.304 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 194 +X-Cnection: close +x-response-time: 400ms +v-c-correlation-id: c57e7337-c93d-44ae-9ae4-ac55a177b99a +OkHttp-Sent-Millis: 1549867230679 +OkHttp-Received-Millis: 1549867231289 + +2019-02-11 12:10:31.304 [main] INFO - ********* END *********: +2019-02-11 12:10:31.353 [main] INFO - ********* START ********* +2019-02-11 12:10:31.354 [main] INFO - Authentication Type : http_signature +2019-02-11 12:10:31.354 [main] INFO - Request Type: POST +2019-02-11 12:10:31.355 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490042042466283603005/reversals, requestType=POST} +2019-02-11 12:10:31.355 [main] INFO - Digest: SHA-256=pAGeIXg2n5jV3A6rwpZbKaLbAzo/U73Yk5w2Zu0QX4M= +2019-02-11 12:10:31.355 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:10:31.355 [main] INFO - Date: Mon, 11 Feb 2019 06:40:29 GMT +2019-02-11 12:10:31.355 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:10:31.355 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="dIpvo67877bjfD307gTKc1MWRxLkZ/kNiySFZOz1z/M=" +2019-02-11 12:10:31.355 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:10:31.901 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"200"},"reason":"testing"}} +2019-02-11 12:10:31.901 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490042042466283603005/reversals} +2019-02-11 12:10:31.901 [main] INFO - Response Code: 400 +2019-02-11 12:10:31.901 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 264 +X-Cnection: close +x-response-time: 345ms +v-c-correlation-id: 505bec8d-3507-457e-93c6-775e96401073 +OkHttp-Sent-Millis: 1549867231370 +OkHttp-Received-Millis: 1549867231901 + +2019-02-11 12:10:31.901 [main] INFO - ********* END *********: +2019-02-11 12:10:31.917 [main] INFO - ********* START ********* +2019-02-11 12:10:31.917 [main] INFO - Authentication Type : http_signature +2019-02-11 12:10:31.917 [main] INFO - Request Type: POST +2019-02-11 12:10:31.917 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/reversals, requestType=POST} +2019-02-11 12:10:31.917 [main] INFO - Digest: SHA-256=EmbUNBQ6YMXxCj2Ldp/J/yZkqbcqi/7w3Qh/cGHWZ54= +2019-02-11 12:10:31.917 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:10:31.917 [main] INFO - Date: Mon, 11 Feb 2019 06:40:29 GMT +2019-02-11 12:10:31.917 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:10:31.917 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="zJBX+96tOupuq+++e++opi8UqpIq8LwC2SRvGb11c9w=" +2019-02-11 12:10:31.917 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:10:32.401 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"102.21"},"reason":"testing"}} +2019-02-11 12:10:32.401 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490042042466283603005/reversals} +2019-02-11 12:10:32.417 [main] INFO - Response Code: 400 +2019-02-11 12:10:32.417 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 292ms +v-c-correlation-id: 1c11950f-d0ac-486b-96a0-0661f1e97d42 +OkHttp-Sent-Millis: 1549867231933 +OkHttp-Received-Millis: 1549867232401 + +2019-02-11 12:10:32.417 [main] INFO - ********* END *********: +2019-02-11 12:11:10.350 [main] INFO - ********* START ********* +2019-02-11 12:11:10.366 [main] INFO - Authentication Type : http_signature +2019-02-11 12:11:10.366 [main] INFO - Request Type: POST +2019-02-11 12:11:10.366 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-11 12:11:10.366 [main] INFO - Digest: SHA-256=zxGx3jITWtX9QIzslmEjtRBRSY1fB9P+o4iF5tlE4Oo= +2019-02-11 12:11:10.366 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:11:10.366 [main] INFO - Date: Mon, 11 Feb 2019 06:41:10 GMT +2019-02-11 12:11:10.366 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:11:10.366 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="9LEKuA9UbfK4CRQOpksVMpGMN6nK5KTphj5wfR2U0SA=" +2019-02-11 12:11:10.381 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:11:11.897 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-11 12:11:11.897 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/credits/} +2019-02-11 12:11:11.897 [main] INFO - Response Code: 201 +2019-02-11 12:11:11.897 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 463 +X-Cnection: close +x-response-time: 352ms +v-c-correlation-id: d69552f3-6ba7-407b-a164-3d85b35540f0 +OkHttp-Sent-Millis: 1549867271334 +OkHttp-Received-Millis: 1549867271881 + +2019-02-11 12:11:11.897 [main] INFO - ********* END *********: +2019-02-11 12:11:11.967 [main] INFO - ********* START ********* +2019-02-11 12:11:11.967 [main] INFO - Authentication Type : http_signature +2019-02-11 12:11:11.967 [main] INFO - Request Type: POST +2019-02-11 12:11:11.968 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-11 12:11:11.968 [main] INFO - Digest: SHA-256=uT4XJKlq0xIzVkS9dGPs0tcDwyAp7ONh+358ol986cw= +2019-02-11 12:11:11.968 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:11:11.968 [main] INFO - Date: Mon, 11 Feb 2019 06:41:10 GMT +2019-02-11 12:11:11.968 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:11:11.968 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="uQ58D+koOVWr8G9EtZ43cNB0J37lvaQCp5/uYERMMKI=" +2019-02-11 12:11:11.968 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:11:12.452 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-11 12:11:12.452 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/credits/} +2019-02-11 12:11:12.452 [main] INFO - Response Code: 201 +2019-02-11 12:11:12.452 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 463 +X-Cnection: close +x-response-time: 280ms +v-c-correlation-id: ef93e721-8944-4fc2-b015-17b369bbecfc +OkHttp-Sent-Millis: 1549867271983 +OkHttp-Received-Millis: 1549867272452 + +2019-02-11 12:11:12.452 [main] INFO - ********* END *********: +2019-02-11 12:11:12.468 [main] INFO - ********* START ********* +2019-02-11 12:11:12.468 [main] INFO - Authentication Type : http_signature +2019-02-11 12:11:12.468 [main] INFO - Request Type: POST +2019-02-11 12:11:12.468 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-11 12:11:12.468 [main] INFO - Digest: SHA-256=4d6LdcAephqc3ZxTiCs5DRzvla4hZ9OijS7F7lbH+MA= +2019-02-11 12:11:12.468 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:11:12.468 [main] INFO - Date: Mon, 11 Feb 2019 06:41:10 GMT +2019-02-11 12:11:12.468 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:11:12.468 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="6KVwyI61bO0X6Ph8Ms+onLvzE328m0K+68NRjXwjwfg=" +2019-02-11 12:11:12.468 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:11:12.968 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"GHTR25","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-11 12:11:12.968 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/credits/} +2019-02-11 12:11:12.968 [main] INFO - Response Code: 400 +2019-02-11 12:11:12.968 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 305ms +v-c-correlation-id: 31adcdf9-47f1-40ac-b129-048834be089d +OkHttp-Sent-Millis: 1549867272483 +OkHttp-Received-Millis: 1549867272968 + +2019-02-11 12:11:12.968 [main] INFO - ********* END *********: +2019-02-11 12:12:12.510 [main] INFO - ********* START ********* +2019-02-11 12:12:12.526 [main] INFO - Authentication Type : http_signature +2019-02-11 12:12:12.526 [main] INFO - Request Type: POST +2019-02-11 12:12:12.526 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-11 12:12:12.526 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-11 12:12:12.557 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:12:12.557 [main] INFO - Date: Mon, 11 Feb 2019 06:42:12 GMT +2019-02-11 12:12:12.557 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:12:12.557 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="mVJv20zpFug/v5ktT6KInaz7rmQix6c6gQhJoHuIDPY=" +2019-02-11 12:12:12.557 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:12:14.088 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-11 12:12:14.088 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-11 12:12:14.088 [main] INFO - Response Code: 201 +2019-02-11 12:12:14.088 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 371ms +v-c-correlation-id: d3065a66-8a5e-4993-af43-3e50d1e93fd5 +OkHttp-Sent-Millis: 1549867333510 +OkHttp-Received-Millis: 1549867334073 + +2019-02-11 12:12:14.088 [main] INFO - ********* END *********: +2019-02-11 12:12:14.229 [main] INFO - ********* START ********* +2019-02-11 12:12:14.229 [main] INFO - Authentication Type : http_signature +2019-02-11 12:12:14.229 [main] INFO - Request Type: POST +2019-02-11 12:12:14.229 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-11 12:12:14.229 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-11 12:12:14.229 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:12:14.229 [main] INFO - Date: Mon, 11 Feb 2019 06:42:12 GMT +2019-02-11 12:12:14.229 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:12:14.229 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="l76Pw2WkB8emNg3ianR9yFfBnCDGVgHEksxNFq+0p9s=" +2019-02-11 12:12:14.229 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:12:14.729 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-11 12:12:14.729 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-11 12:12:14.729 [main] INFO - Response Code: 201 +2019-02-11 12:12:14.729 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 323ms +v-c-correlation-id: e353e04a-2b3d-4a30-99e2-3041808d3d46 +OkHttp-Sent-Millis: 1549867334244 +OkHttp-Received-Millis: 1549867334729 + +2019-02-11 12:12:14.729 [main] INFO - ********* END *********: +2019-02-11 12:12:14.776 [main] INFO - ********* START ********* +2019-02-11 12:12:14.776 [main] INFO - Authentication Type : http_signature +2019-02-11 12:12:14.776 [main] INFO - Request Type: POST +2019-02-11 12:12:14.776 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-11 12:12:14.776 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-11 12:12:14.776 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:12:14.776 [main] INFO - Date: Mon, 11 Feb 2019 06:42:12 GMT +2019-02-11 12:12:14.776 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:12:14.776 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="X2FqHFWen/UTmw/u3Pf1Kte13+41i2XoV4+VXPJNzxQ=" +2019-02-11 12:12:14.776 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:12:15.291 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-11 12:12:15.291 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-11 12:12:15.291 [main] INFO - Response Code: 400 +2019-02-11 12:12:15.291 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 336ms +v-c-correlation-id: 3676ecf1-d502-481e-a27a-5752d749b818 +OkHttp-Sent-Millis: 1549867334791 +OkHttp-Received-Millis: 1549867335291 + +2019-02-11 12:12:15.291 [main] INFO - ********* END *********: +2019-02-11 12:12:45.809 [main] INFO - ********* START ********* +2019-02-11 12:12:45.825 [main] INFO - Authentication Type : http_signature +2019-02-11 12:12:45.825 [main] INFO - Request Type: POST +2019-02-11 12:12:45.825 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490048369806834703002/refunds, requestType=POST} +2019-02-11 12:12:45.825 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-11 12:12:45.825 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:12:45.840 [main] INFO - Date: Mon, 11 Feb 2019 06:42:45 GMT +2019-02-11 12:12:45.840 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:12:45.840 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="hF8sBa++NoiRWumllFrutY+3N5HcsTPbbGKqlSC63as=" +2019-02-11 12:12:45.840 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:12:47.371 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-11 12:12:47.371 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/5490048369806834703002/refunds} +2019-02-11 12:12:47.371 [main] INFO - Response Code: 201 +2019-02-11 12:12:47.371 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 392ms +v-c-correlation-id: 253951f0-b5a6-42e2-8c4b-e94c6128bdfb +OkHttp-Sent-Millis: 1549867366778 +OkHttp-Received-Millis: 1549867367356 + +2019-02-11 12:12:47.371 [main] INFO - ********* END *********: +2019-02-11 12:12:47.454 [main] INFO - ********* START ********* +2019-02-11 12:12:47.455 [main] INFO - Authentication Type : http_signature +2019-02-11 12:12:47.455 [main] INFO - Request Type: POST +2019-02-11 12:12:47.455 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490048369806834703002/refunds, requestType=POST} +2019-02-11 12:12:47.455 [main] INFO - Digest: SHA-256=wpSGzbtW0BUOhzWs7lfUWgOPwslWGPDCGWzRLNsbsWk= +2019-02-11 12:12:47.455 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:12:47.455 [main] INFO - Date: Mon, 11 Feb 2019 06:42:45 GMT +2019-02-11 12:12:47.455 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:12:47.455 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="49xR2TsgCIn71PIlKimC/rlucIBPpsuz87wB1ZUdpPE=" +2019-02-11 12:12:47.455 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:12:47.955 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-11 12:12:47.955 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/5490048369806834703002/refunds} +2019-02-11 12:12:47.955 [main] INFO - Response Code: 201 +2019-02-11 12:12:47.955 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 302ms +v-c-correlation-id: 45e6bfe3-4fea-40e0-9e64-137db588621a +OkHttp-Sent-Millis: 1549867367470 +OkHttp-Received-Millis: 1549867367955 + +2019-02-11 12:12:47.955 [main] INFO - ********* END *********: +2019-02-11 12:12:47.971 [main] INFO - ********* START ********* +2019-02-11 12:12:47.971 [main] INFO - Authentication Type : http_signature +2019-02-11 12:12:47.971 [main] INFO - Request Type: POST +2019-02-11 12:12:47.971 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/1234567898745632145698/refunds, requestType=POST} +2019-02-11 12:12:47.971 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-11 12:12:47.971 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:12:47.971 [main] INFO - Date: Mon, 11 Feb 2019 06:42:45 GMT +2019-02-11 12:12:47.971 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:12:47.971 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="g7Yo069xs5fJSmRv3/qlXxdY/WibWgrIBE/TiTsFkv0=" +2019-02-11 12:12:47.971 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:12:48.455 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-11 12:12:48.455 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/5490048369806834703002/refunds} +2019-02-11 12:12:48.455 [main] INFO - Response Code: 400 +2019-02-11 12:12:48.455 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 296ms +v-c-correlation-id: 39c9676a-1c15-4210-a5a7-5461d7260189 +OkHttp-Sent-Millis: 1549867367986 +OkHttp-Received-Millis: 1549867368455 + +2019-02-11 12:12:48.455 [main] INFO - ********* END *********: +2019-02-11 12:13:23.647 [main] INFO - ********* START ********* +2019-02-11 12:13:23.663 [main] INFO - Authentication Type : http_signature +2019-02-11 12:13:23.663 [main] INFO - Request Type: POST +2019-02-11 12:13:23.663 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490056228246693603006/refunds, requestType=POST} +2019-02-11 12:13:23.663 [main] INFO - Digest: SHA-256=I+1qD0zhOoAiatjE27A6YBxkUKBTRSBoS6VKc2mS8Bc= +2019-02-11 12:13:23.713 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:13:23.713 [main] INFO - Date: Mon, 11 Feb 2019 06:43:23 GMT +2019-02-11 12:13:23.713 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:13:23.713 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ok64JcrrWkEmQOZCix59I6PCORoVVV2Rl6T8szT+AP8=" +2019-02-11 12:13:23.713 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:13:25.350 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}}} +2019-02-11 12:13:25.350 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490056228246693603006/refunds} +2019-02-11 12:13:25.350 [main] INFO - Response Code: 201 +2019-02-11 12:13:25.350 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 514ms +v-c-correlation-id: 1fb0710f-f23f-402e-99df-9d4d66b78a2e +OkHttp-Sent-Millis: 1549867404616 +OkHttp-Received-Millis: 1549867405319 + +2019-02-11 12:13:25.350 [main] INFO - ********* END *********: +2019-02-11 12:13:25.411 [main] INFO - ********* START ********* +2019-02-11 12:13:25.412 [main] INFO - Authentication Type : http_signature +2019-02-11 12:13:25.412 [main] INFO - Request Type: POST +2019-02-11 12:13:25.412 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490056228246693603006/refunds, requestType=POST} +2019-02-11 12:13:25.412 [main] INFO - Digest: SHA-256=k43sFGLkconY+lZ+qk3SH20ZjY4hdnzlhh7bkAtP+34= +2019-02-11 12:13:25.412 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:13:25.412 [main] INFO - Date: Mon, 11 Feb 2019 06:43:23 GMT +2019-02-11 12:13:25.412 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:13:25.412 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="28dFkzSI8ywe1bQbprHAfE2xRn/3ibqKyyPBAGe2kWg=" +2019-02-11 12:13:25.412 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:13:26.006 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}}} +2019-02-11 12:13:26.006 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490056228246693603006/refunds} +2019-02-11 12:13:26.006 [main] INFO - Response Code: 201 +2019-02-11 12:13:26.006 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 381ms +v-c-correlation-id: b5354e98-cfcf-48a6-aa38-3b8b3ad97211 +OkHttp-Sent-Millis: 1549867405428 +OkHttp-Received-Millis: 1549867406006 + +2019-02-11 12:13:26.006 [main] INFO - ********* END *********: +2019-02-11 12:13:26.037 [main] INFO - ********* START ********* +2019-02-11 12:13:26.037 [main] INFO - Authentication Type : http_signature +2019-02-11 12:13:26.037 [main] INFO - Request Type: POST +2019-02-11 12:13:26.037 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567890123456789123/refunds, requestType=POST} +2019-02-11 12:13:26.037 [main] INFO - Digest: SHA-256=3OkTv9EQccMckYHiNHUzAweMWa91L1CQXTmCvjjQHoU= +2019-02-11 12:13:26.037 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:13:26.037 [main] INFO - Date: Mon, 11 Feb 2019 06:43:23 GMT +2019-02-11 12:13:26.037 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:13:26.037 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="dXpLPCxB3T6hsmMTxu3sJDn6EFRoGkaYOltv48NuqQ4=" +2019-02-11 12:13:26.037 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:13:47.436 [main] INFO - ********* START ********* +2019-02-11 12:13:47.451 [main] INFO - Authentication Type : http_signature +2019-02-11 12:13:47.451 [main] INFO - Request Type: POST +2019-02-11 12:13:47.451 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490173455496897903002/voids, requestType=POST} +2019-02-11 12:13:47.451 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-11 12:13:47.451 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:13:47.451 [main] INFO - Date: Mon, 11 Feb 2019 06:43:47 GMT +2019-02-11 12:13:47.451 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:13:47.451 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="YIi2sLuqz1zFcG+AnyHKXkNafkQygUtJFrpk9AtcRDg=" +2019-02-11 12:13:47.451 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:13:49.045 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture_void"}} +2019-02-11 12:13:49.045 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-11T06:43:48Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-11 12:13:49.045 [main] INFO - Response Code: 400 +2019-02-11 12:13:49.045 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 384ms +v-c-correlation-id: a229fc19-6f6a-44a5-8f28-c3026b5689cf +OkHttp-Sent-Millis: 1549867428436 +OkHttp-Received-Millis: 1549867429029 + +2019-02-11 12:13:49.045 [main] INFO - ********* END *********: +2019-02-11 12:13:49.092 [main] INFO - ********* START ********* +2019-02-11 12:13:49.092 [main] INFO - Authentication Type : http_signature +2019-02-11 12:13:49.092 [main] INFO - Request Type: POST +2019-02-11 12:13:49.092 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/8964213433126812344644/voids, requestType=POST} +2019-02-11 12:13:49.092 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-11 12:13:49.092 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:13:49.092 [main] INFO - Date: Mon, 11 Feb 2019 06:43:47 GMT +2019-02-11 12:13:49.092 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:13:49.092 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="L1gQ0JQo0Za9pXYyJRAFfpcGly4++hhsF+qqekZzBlE=" +2019-02-11 12:13:49.092 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:14:26.319 [main] INFO - ********* START ********* +2019-02-11 12:14:26.335 [main] INFO - Authentication Type : http_signature +2019-02-11 12:14:26.335 [main] INFO - Request Type: POST +2019-02-11 12:14:26.335 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/5492620832556049904004/voids, requestType=POST} +2019-02-11 12:14:26.335 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-11 12:14:26.366 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:14:26.366 [main] INFO - Date: Mon, 11 Feb 2019 06:44:26 GMT +2019-02-11 12:14:26.366 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:14:26.366 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="+tDeUvYn3qEn73CVSxYg5b/mrzB1R76BRXvlibLhvf4=" +2019-02-11 12:14:26.366 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:14:27.960 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credit_void"}} +2019-02-11 12:14:27.960 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-11T06:44:27Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-11 12:14:27.960 [main] INFO - Response Code: 400 +2019-02-11 12:14:27.960 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 378ms +v-c-correlation-id: 1282b73c-dab7-4fbe-8948-b409f9b7b789 +OkHttp-Sent-Millis: 1549867467366 +OkHttp-Received-Millis: 1549867467944 + +2019-02-11 12:14:27.960 [main] INFO - ********* END *********: +2019-02-11 12:14:27.991 [main] INFO - ********* START ********* +2019-02-11 12:14:27.991 [main] INFO - Authentication Type : http_signature +2019-02-11 12:14:27.991 [main] INFO - Request Type: POST +2019-02-11 12:14:27.991 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/8964213433846812344644/voids, requestType=POST} +2019-02-11 12:14:27.991 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-11 12:14:27.991 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:14:27.991 [main] INFO - Date: Mon, 11 Feb 2019 06:44:26 GMT +2019-02-11 12:14:27.991 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:14:27.991 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="2T0U2JDEjuY9hF1WIXIaWFY00BQWm5SNOYAiqmeJJAU=" +2019-02-11 12:14:27.991 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:15:07.223 [main] INFO - ********* START ********* +2019-02-11 12:15:07.238 [main] INFO - Authentication Type : http_signature +2019-02-11 12:15:07.238 [main] INFO - Request Type: POST +2019-02-11 12:15:07.238 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5492620832556049904004/voids, requestType=POST} +2019-02-11 12:15:07.238 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-11 12:15:07.238 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:15:07.238 [main] INFO - Date: Mon, 11 Feb 2019 06:45:06 GMT +2019-02-11 12:15:07.238 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:15:07.238 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="kCDiOVaBsjMm1vWGKquaoDx2XX7yj0UzAKsQjYMnWZE=" +2019-02-11 12:15:07.238 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:15:08.691 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-02-11 12:15:08.691 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-11T06:45:08Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-11 12:15:08.691 [main] INFO - Response Code: 400 +2019-02-11 12:15:08.691 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 320ms +v-c-correlation-id: 2a3a8f92-aa3c-477e-b5b5-95a5a9bcb5be +OkHttp-Sent-Millis: 1549867508160 +OkHttp-Received-Millis: 1549867508676 + +2019-02-11 12:15:08.691 [main] INFO - ********* END *********: +2019-02-11 12:15:08.723 [main] INFO - ********* START ********* +2019-02-11 12:15:08.723 [main] INFO - Authentication Type : http_signature +2019-02-11 12:15:08.723 [main] INFO - Request Type: POST +2019-02-11 12:15:08.723 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-02-11 12:15:08.723 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-11 12:15:08.739 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:15:08.739 [main] INFO - Date: Mon, 11 Feb 2019 06:45:06 GMT +2019-02-11 12:15:08.739 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:15:08.739 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="eObAM+HLUl+xy9+0vHv5khpO7pd80sTNExtN79r9GmQ=" +2019-02-11 12:15:08.739 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:15:39.333 [main] INFO - ********* START ********* +2019-02-11 12:15:39.348 [main] INFO - Authentication Type : http_signature +2019-02-11 12:15:39.348 [main] INFO - Request Type: POST +2019-02-11 12:15:39.348 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/5492624390506057904003/voids, requestType=POST} +2019-02-11 12:15:39.348 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-11 12:15:39.379 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:15:39.379 [main] INFO - Date: Mon, 11 Feb 2019 06:45:39 GMT +2019-02-11 12:15:39.379 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:15:39.379 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="DkoUvbGrxrzFslF30AvuUy/n4/xNb0k5Owze/3fFJDU=" +2019-02-11 12:15:39.379 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:15:40.895 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_void"}} +2019-02-11 12:15:40.895 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-11T06:45:40Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-11 12:15:40.895 [main] INFO - Response Code: 400 +2019-02-11 12:15:40.895 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 377ms +v-c-correlation-id: 41dad8df-5c06-44ed-ae3b-3a82f106be50 +OkHttp-Sent-Millis: 1549867540301 +OkHttp-Received-Millis: 1549867540879 + +2019-02-11 12:15:40.895 [main] INFO - ********* END *********: +2019-02-11 12:15:40.942 [main] INFO - ********* START ********* +2019-02-11 12:15:40.942 [main] INFO - Authentication Type : http_signature +2019-02-11 12:15:40.942 [main] INFO - Request Type: POST +2019-02-11 12:15:40.942 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/8964213433846812344644/voids, requestType=POST} +2019-02-11 12:15:40.942 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-11 12:15:40.942 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:15:40.942 [main] INFO - Date: Mon, 11 Feb 2019 06:45:39 GMT +2019-02-11 12:15:40.942 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:15:40.942 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="l7FW203AIl6vLOXKzlBM2C+ILyZnWwJZsCogoxpm460=" +2019-02-11 12:15:40.942 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:16:15.765 [main] INFO - ********* START ********* +2019-02-11 12:16:15.780 [main] INFO - Authentication Type : http_signature +2019-02-11 12:16:15.780 [main] INFO - Request Type: POST +2019-02-11 12:16:15.780 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-11 12:16:15.780 [main] INFO - Digest: SHA-256=rp59HYGOOXP6bWKiVpWMNgj4QjYai6gMk27yt69dPh8= +2019-02-11 12:16:15.827 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:16:15.827 [main] INFO - Date: Mon, 11 Feb 2019 06:46:15 GMT +2019-02-11 12:16:15.827 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:16:15.827 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="lbvfnjjoiU1M3NjbwaPnRuO1XowgXIaaqs/BjdCLJfM=" +2019-02-11 12:16:15.827 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:16:17.484 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"33557799"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"FD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-11 12:16:17.484 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-11 12:16:17.484 [main] INFO - Response Code: 201 +2019-02-11 12:16:17.484 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 493 +X-Cnection: close +x-response-time: 522ms +v-c-correlation-id: 29685bee-4f44-4698-8714-f90124f4b196 +OkHttp-Sent-Millis: 1549867576750 +OkHttp-Received-Millis: 1549867577452 + +2019-02-11 12:16:17.484 [main] INFO - ********* END *********: +2019-02-11 12:16:17.515 [main] INFO - ********* START ********* +2019-02-11 12:16:17.515 [main] INFO - Authentication Type : http_signature +2019-02-11 12:16:17.515 [main] INFO - Request Type: POST +2019-02-11 12:16:17.515 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-11 12:16:17.515 [main] INFO - Digest: SHA-256=WV4kmV6NZQKID4sN4WMbFxFXqbg/hn8kxL7FOS4jQXk= +2019-02-11 12:16:17.530 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:16:17.530 [main] INFO - Date: Mon, 11 Feb 2019 06:46:15 GMT +2019-02-11 12:16:17.530 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:16:17.530 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="L77cXDtutVvgUd6N6hqNHccz7fDNnnN62QIcFYj2/zI=" +2019-02-11 12:16:17.530 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:16:18.187 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"12345"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"GD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-11 12:16:18.187 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-11 12:16:18.187 [main] INFO - Response Code: 201 +2019-02-11 12:16:18.187 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 490 +X-Cnection: close +x-response-time: 478ms +v-c-correlation-id: 3bf58077-78d5-4aca-aae3-cd45ee7638ea +OkHttp-Sent-Millis: 1549867577546 +OkHttp-Received-Millis: 1549867578187 + +2019-02-11 12:16:18.187 [main] INFO - ********* END *********: +2019-02-11 12:16:18.202 [main] INFO - ********* START ********* +2019-02-11 12:16:18.202 [main] INFO - Authentication Type : http_signature +2019-02-11 12:16:18.202 [main] INFO - Request Type: POST +2019-02-11 12:16:18.218 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-11 12:16:18.218 [main] INFO - Digest: SHA-256=w9ZjmtCKOCPKH6OZhKI9VKNlfIK5wZLl6ZxwHbxFJsQ= +2019-02-11 12:16:18.218 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:16:18.218 [main] INFO - Date: Mon, 11 Feb 2019 06:46:15 GMT +2019-02-11 12:16:18.218 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:16:18.218 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="lXEUchpuJllowu6DdNaGcCGSxBfqikmAypiU0DyQcRY=" +2019-02-11 12:16:18.218 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:16:18.718 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"6789"},"orderInformation":{"amountDetails":{"totalAmount":"DSWAZ1","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"MD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-11 12:16:18.718 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-11 12:16:18.718 [main] INFO - Response Code: 400 +2019-02-11 12:16:18.718 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 316ms +v-c-correlation-id: 9ed6d57b-ebf6-42c3-9ae3-1ecd2c201440 +OkHttp-Sent-Millis: 1549867578234 +OkHttp-Received-Millis: 1549867578702 + +2019-02-11 12:16:18.718 [main] INFO - ********* END *********: +2019-02-11 12:16:42.725 [main] INFO - ********* START ********* +2019-02-11 12:16:42.741 [main] INFO - Authentication Type : http_signature +2019-02-11 12:16:42.741 [main] INFO - Request Type: POST +2019-02-11 12:16:42.741 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-11 12:16:42.788 [main] INFO - Digest: SHA-256=loFSrgLcFUKQZ5yG+wiEAwrYOdwvmVHAUHYgknwquSs= +2019-02-11 12:16:42.788 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:16:42.788 [main] INFO - Date: Mon, 11 Feb 2019 06:46:42 GMT +2019-02-11 12:16:42.788 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:16:42.788 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="S8WD+BBC9WVDhElSVOMJrdMbPjXYMvbdAy5xORLdu+s=" +2019-02-11 12:16:42.788 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:16:44.413 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_feb8","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-11 12:16:44.413 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"815d1fc7-5ca6-9241-e053-a2588e0a46c1","message":"Task already exists with same report name ","localizationKey":"cybsapi.task.name.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-11 12:16:44.429 [main] INFO - Response Code: 400 +2019-02-11 12:16:44.429 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_0ed90829-b56b-48ff-a71e-88715edffaee +X-OPNET-Transaction-Trace: a2_c3349c70-89cd-4194-b8c4-b7feb1a8129a +Cache-Control: no-cache, no-transform +ETag: "1012578100-gzip" +Expires: Mon, 11 Feb 2019 06:46:44 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:46:44 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 2dcbefcd-16a4-4abc-a9e7-ae854d3f779e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867603632 +OkHttp-Received-Millis: 1549867604397 + +2019-02-11 12:16:44.429 [main] INFO - ********* END *********: +2019-02-11 12:16:44.479 [main] INFO - ********* START ********* +2019-02-11 12:16:44.479 [main] INFO - Authentication Type : http_signature +2019-02-11 12:16:44.479 [main] INFO - Request Type: POST +2019-02-11 12:16:44.479 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-11 12:16:44.479 [main] INFO - Digest: SHA-256=WRIH+BI7wCOOoyM2il5xk/FPn4NdlvPoyhCGODb0BzU= +2019-02-11 12:16:44.479 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:16:44.479 [main] INFO - Date: Mon, 11 Feb 2019 06:46:42 GMT +2019-02-11 12:16:44.479 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:16:44.479 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="u4hzEqI8DuejJTQKto4w0C9vJnBup8nfDGfqDoe7TH0=" +2019-02-11 12:16:44.479 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:16:44.917 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequ","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v2","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-11 12:16:44.917 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest} +2019-02-11 12:16:44.917 [main] INFO - Response Code: 400 +2019-02-11 12:16:44.917 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_bd117617-af00-4799-bf18-049e9f9798ca +X-OPNET-Transaction-Trace: a2_8ccce066-d894-4a9f-9c9e-387a500b7133 +Cache-Control: no-cache, no-transform +ETag: "-393622008-gzip" +Expires: Mon, 11 Feb 2019 06:46:44 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:46:44 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 21eed308-a4a0-4957-9a7e-ea0e0a095b74 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867604495 +OkHttp-Received-Millis: 1549867604917 + +2019-02-11 12:16:44.917 [main] INFO - ********* END *********: +2019-02-11 12:17:15.945 [main] INFO - ********* START ********* +2019-02-11 12:17:15.961 [main] INFO - Authentication Type : http_signature +2019-02-11 12:17:15.961 [main] INFO - Request Type: PUT +2019-02-11 12:17:15.961 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-11 12:17:15.961 [main] INFO - Digest: SHA-256=B/CNo4vGf0K3COzdmREEjeuLmdsPOBHwwJmY0FsUW1I= +2019-02-11 12:17:16.008 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:17:16.008 [main] INFO - Date: Mon, 11 Feb 2019 06:47:15 GMT +2019-02-11 12:17:16.008 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:17:16.008 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="gYQ1kBmyNE1lkS1nVhhPdQvJs6VB4yI4bTYMEtX6FGI=" +2019-02-11 12:17:16.008 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:17:17.601 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testrest_v604","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-11 12:17:17.601 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-11 12:17:17.617 [main] INFO - Response Code: 201 +2019-02-11 12:17:17.617 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_7786ac29-3872-4ebb-944a-92fd84cae1df +X-OPNET-Transaction-Trace: a2_fdc0fe6b-214e-450c-bcb6-cc0d50d98ebf +Cache-Control: no-cache, no-transform +ETag: "689991228-gzip" +Expires: Mon, 11 Feb 2019 06:47:17 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:47:17 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c57c08bb-491d-4568-8f21-eb3fff09b10c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867636914 +OkHttp-Received-Millis: 1549867637586 + +2019-02-11 12:17:17.617 [main] INFO - ********* END *********: +2019-02-11 12:17:17.633 [main] INFO - ********* START ********* +2019-02-11 12:17:17.633 [main] INFO - Authentication Type : http_signature +2019-02-11 12:17:17.633 [main] INFO - Request Type: PUT +2019-02-11 12:17:17.633 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-11 12:17:17.633 [main] INFO - Digest: SHA-256=obbqGQ7vcDgZ90wEsXruRpyQJFe9W4E+z7Ervkj3v7c= +2019-02-11 12:17:17.633 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:17:17.633 [main] INFO - Date: Mon, 11 Feb 2019 06:47:15 GMT +2019-02-11 12:17:17.633 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:17:17.633 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ioK4BR2/Ed9Nhz1b5iH71WVMH/FwpU6ZZDHF2ZGbil0=" +2019-02-11 12:17:17.648 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:17:18.086 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-11 12:17:18.086 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-11 12:17:18.086 [main] INFO - Response Code: 400 +2019-02-11 12:17:18.102 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_05e8e30e-baf4-42fe-bacf-a54a96567f39 +X-OPNET-Transaction-Trace: a2_d0d8c346-6a49-4396-a007-23b6b3ea6588 +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Mon, 11 Feb 2019 06:47:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:47:17 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a13e680c-d2bb-45f9-a7a6-ba8be874781d +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867637664 +OkHttp-Received-Millis: 1549867638086 + +2019-02-11 12:17:18.102 [main] INFO - ********* END *********: +2019-02-11 12:17:35.816 [main] INFO - ********* START ********* +2019-02-11 12:17:35.816 [main] INFO - Authentication Type : http_signature +2019-02-11 12:17:35.816 [main] INFO - Request Type: DELETE +2019-02-11 12:17:35.816 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/testrest_v604, requestType=DELETE} +2019-02-11 12:17:35.816 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:17:35.863 [main] INFO - Date: Mon, 11 Feb 2019 06:47:35 GMT +2019-02-11 12:17:35.863 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:17:35.863 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="8m6HQl9WMJ+suV10iu2Kp59CIflqDpC5vaGpHDqffHk=" +2019-02-11 12:17:35.863 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:17:37.191 [main] INFO - Request Body: null +2019-02-11 12:17:37.191 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604} +2019-02-11 12:17:37.191 [main] INFO - Response Code: 200 +2019-02-11 12:17:37.191 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_9dea4533-7a0e-474a-acdd-ad552a01a50f +X-OPNET-Transaction-Trace: a2_f59fd7d7-8b39-406b-b08d-41c493719944 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 11 Feb 2019 06:47:37 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:47:36 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e0bdff0c-a91e-4786-b727-4a44ce242ada +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867656724 +OkHttp-Received-Millis: 1549867657160 + +2019-02-11 12:17:37.191 [main] INFO - ********* END *********: +2019-02-11 12:17:37.207 [main] INFO - ********* START ********* +2019-02-11 12:17:37.222 [main] INFO - Authentication Type : http_signature +2019-02-11 12:17:37.222 [main] INFO - Request Type: DELETE +2019-02-11 12:17:37.222 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/ghsrrawasbhfhcb, requestType=DELETE} +2019-02-11 12:17:37.222 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:17:37.222 [main] INFO - Date: Mon, 11 Feb 2019 06:47:35 GMT +2019-02-11 12:17:37.222 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:17:37.222 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="DMZjCQFQOCKd+OI9893dikMXvkPjjgDRnyfOEE9LG5Q=" +2019-02-11 12:17:37.222 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:17:37.660 [main] INFO - Request Body: null +2019-02-11 12:17:37.660 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604} +2019-02-11 12:17:37.660 [main] INFO - Response Code: 404 +2019-02-11 12:17:37.660 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_f5e19035-994e-4276-ba92-617874dd15a4 +X-OPNET-Transaction-Trace: a2_bfa051f1-3159-4a05-81d5-3c3c9fe4bcc0 +Cache-Control: no-cache, no-transform +ETag: "860016692-gzip" +Expires: Mon, 11 Feb 2019 06:47:37 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:47:37 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 8be99d12-a836-4938-a0e8-efa7406cb152 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867657238 +OkHttp-Received-Millis: 1549867657644 + +2019-02-11 12:17:37.660 [main] INFO - ********* END *********: +2019-02-11 12:17:54.070 [main] INFO - ********* START ********* +2019-02-11 12:17:54.086 [main] INFO - Authentication Type : http_signature +2019-02-11 12:17:54.086 [main] INFO - Request Type: GET +2019-02-11 12:17:54.086 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testrest%20dec%20V70, requestType=GET} +2019-02-11 12:17:54.086 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:17:54.086 [main] INFO - Date: Mon, 11 Feb 2019 06:47:53 GMT +2019-02-11 12:17:54.086 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:17:54.086 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="LzdZZVtknCfpBCVkvw6OZ7DEslqvgOXJ4x8Cur3Zvns=" +2019-02-11 12:17:54.086 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:17:55.476 [main] INFO - Request Body: null +2019-02-11 12:17:55.476 [main] INFO - Response Message: + + + + + + + + + + + + +2019-02-11 12:17:55.476 [main] INFO - Response Code: 200 +2019-02-11 12:17:55.492 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_0c90aa00-5857-4d10-873b-8951ed930c91 +X-OPNET-Transaction-Trace: a2_55f1de4e-6ee1-4659-92ff-da4c7e594e40 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 11 Feb 2019 06:47:55 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 11 Feb 2019 06:47:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ecdf935c-9969-427f-b0d8-1108f8cfde39 +OkHttp-Sent-Millis: 1549867674914 +OkHttp-Received-Millis: 1549867675461 + +2019-02-11 12:17:55.492 [main] INFO - ********* END *********: +2019-02-11 12:17:55.523 [main] INFO - ********* START ********* +2019-02-11 12:17:55.523 [main] INFO - Authentication Type : http_signature +2019-02-11 12:17:55.523 [main] INFO - Request Type: GET +2019-02-11 12:17:55.523 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testre, requestType=GET} +2019-02-11 12:17:55.523 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:17:55.523 [main] INFO - Date: Mon, 11 Feb 2019 06:47:53 GMT +2019-02-11 12:17:55.523 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:17:55.523 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ilndp+TZz3lU1K3Ah7jjOy1f1rwWQsMNofb49PC9i10=" +2019-02-11 12:17:55.523 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:17:56.054 [main] INFO - Request Body: null +2019-02-11 12:17:56.054 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-11 12:17:56.054 [main] INFO - Response Code: 404 +2019-02-11 12:17:56.054 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_33a79d92-760c-4620-ab58-3dc61b22ab03 +X-OPNET-Transaction-Trace: a2_66fe6791-b88a-44ff-baa1-3188bb9aa78b +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Mon, 11 Feb 2019 06:47:55 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 11 Feb 2019 06:47:55 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 1e870159-90a8-4aa6-b1c0-d7f32b09f4fa +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867675539 +OkHttp-Received-Millis: 1549867676054 + +2019-02-11 12:17:56.054 [main] INFO - ********* END *********: +2019-02-11 12:17:56.073 [main] INFO - ********* START ********* +2019-02-11 12:17:56.073 [main] INFO - Authentication Type : http_signature +2019-02-11 12:17:56.073 [main] INFO - Request Type: GET +2019-02-11 12:17:56.073 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-08-02&reportName=testrest_v2, requestType=GET} +2019-02-11 12:17:56.088 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:17:56.088 [main] INFO - Date: Mon, 11 Feb 2019 06:47:53 GMT +2019-02-11 12:17:56.088 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:17:56.088 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="BpXxIA527OA2ckGDuW3VR/YTpx80QNB7aZJ1jgLNOnE=" +2019-02-11 12:17:56.088 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:17:56.573 [main] INFO - Request Body: null +2019-02-11 12:17:56.573 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-11 12:17:56.588 [main] INFO - Response Code: 404 +2019-02-11 12:17:56.588 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_4f7e5e65-5e11-4052-8bf5-04d24338e1c5 +X-OPNET-Transaction-Trace: a2_fd8652f3-12b1-4492-b5da-5b2ec8f76703 +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Mon, 11 Feb 2019 06:47:56 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 11 Feb 2019 06:47:56 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7eaf24d6-b537-4ee0-b658-a2f55b5dd004 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867676088 +OkHttp-Received-Millis: 1549867676573 + +2019-02-11 12:17:56.588 [main] INFO - ********* END *********: +2019-02-11 12:18:41.477 [main] INFO - ********* START ********* +2019-02-11 12:18:41.477 [main] INFO - Authentication Type : http_signature +2019-02-11 12:18:41.477 [main] INFO - Request Type: GET +2019-02-11 12:18:41.493 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testrest%20dec%20V70, requestType=GET} +2019-02-11 12:18:41.493 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:18:41.493 [main] INFO - Date: Mon, 11 Feb 2019 06:48:41 GMT +2019-02-11 12:18:41.493 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:18:41.493 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="FmNOU0P5FDEaFRYJ3Gw8fqr/vK9vby9TJK0Hf3U7tbk=" +2019-02-11 12:18:41.493 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:18:42.837 [main] INFO - Request Body: null +2019-02-11 12:18:42.837 [main] INFO - Response Message: + + + + + + + + + + + + +2019-02-11 12:18:42.837 [main] INFO - Response Code: 200 +2019-02-11 12:18:42.852 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_f5ba9e11-225c-4c08-bee5-79e647e4c1dd +X-OPNET-Transaction-Trace: a2_02c62148-9a97-42dd-8060-e1bb99770c57 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 11 Feb 2019 06:48:42 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 11 Feb 2019 06:48:42 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: aeaf3193-e8f2-46e2-87a1-0cf473c1ad0f +OkHttp-Sent-Millis: 1549867722305 +OkHttp-Received-Millis: 1549867722821 + +2019-02-11 12:18:42.852 [main] INFO - ********* END *********: +2019-02-11 12:18:50.665 [main] INFO - ********* START ********* +2019-02-11 12:18:50.665 [main] INFO - Authentication Type : http_signature +2019-02-11 12:18:50.665 [main] INFO - Request Type: GET +2019-02-11 12:18:50.665 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testre, requestType=GET} +2019-02-11 12:18:50.665 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:18:50.665 [main] INFO - Date: Mon, 11 Feb 2019 06:48:41 GMT +2019-02-11 12:18:50.665 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:18:50.665 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="r4bG2MkcjJjLeiBd7ki35UxVrXI3cCpFRCKi7DYiLYk=" +2019-02-11 12:18:50.665 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:18:51.180 [main] INFO - Request Body: null +2019-02-11 12:18:51.180 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-11 12:18:51.180 [main] INFO - Response Code: 404 +2019-02-11 12:18:51.180 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_685da60c-fdaa-4a87-b897-2168dc6d8456 +X-OPNET-Transaction-Trace: a2_92809d1d-4481-4378-b024-ea72389683c1 +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Mon, 11 Feb 2019 06:48:51 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 11 Feb 2019 06:48:51 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 100ff8d9-9044-4216-b0eb-f17f39b30ee1 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867730665 +OkHttp-Received-Millis: 1549867731180 + +2019-02-11 12:18:51.180 [main] INFO - ********* END *********: +2019-02-11 12:18:55.151 [main] INFO - ********* START ********* +2019-02-11 12:18:55.151 [main] INFO - Authentication Type : http_signature +2019-02-11 12:18:55.151 [main] INFO - Request Type: GET +2019-02-11 12:18:55.151 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-08-02&reportName=testrest_v2, requestType=GET} +2019-02-11 12:18:55.151 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:18:55.151 [main] INFO - Date: Mon, 11 Feb 2019 06:48:41 GMT +2019-02-11 12:18:55.151 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:18:55.151 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="l/OIp7xniKqRNbQQLOTPRv3Ty9mnNnfVo4fUwZVdaLs=" +2019-02-11 12:18:55.151 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:18:55.634 [main] INFO - Request Body: null +2019-02-11 12:18:55.634 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-11 12:18:55.634 [main] INFO - Response Code: 404 +2019-02-11 12:18:55.634 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_402c9b31-bd22-42b7-a8b1-6d19786e73bc +X-OPNET-Transaction-Trace: a2_62aefbf3-ad34-4fdc-abc0-3b0dd9f4e937 +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Mon, 11 Feb 2019 06:48:55 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 11 Feb 2019 06:48:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a0ed2b1e-990d-40cc-815a-90fa34bc489e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867735151 +OkHttp-Received-Millis: 1549867735634 + +2019-02-11 12:18:55.634 [main] INFO - ********* END *********: +2019-02-11 12:19:23.458 [main] INFO - ********* START ********* +2019-02-11 12:19:23.458 [main] INFO - Authentication Type : http_signature +2019-02-11 12:19:23.473 [main] INFO - Request Type: GET +2019-02-11 12:19:23.473 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testrest%20dec%20V70, requestType=GET} +2019-02-11 12:19:23.473 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:19:23.473 [main] INFO - Date: Mon, 11 Feb 2019 06:49:23 GMT +2019-02-11 12:19:23.473 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:19:23.473 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="kcSmkmQTHUZKgsPhHIL2nDL+2aAyEv/QntjSjllFL60=" +2019-02-11 12:19:23.473 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:19:24.817 [main] INFO - Request Body: null +2019-02-11 12:19:24.817 [main] INFO - Response Message: + + + + + + + + + + + + +2019-02-11 12:19:24.817 [main] INFO - Response Code: 200 +2019-02-11 12:19:24.817 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_66d17fb7-2cd6-4c91-89f0-ba9c45352d4e +X-OPNET-Transaction-Trace: a2_5f839bf8-373f-4a33-814c-5309a2420dbb +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 11 Feb 2019 06:49:24 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 11 Feb 2019 06:49:24 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4a58c68c-4f25-45ea-8f38-af122d25eb11 +OkHttp-Sent-Millis: 1549867764286 +OkHttp-Received-Millis: 1549867764802 + +2019-02-11 12:19:24.817 [main] INFO - ********* END *********: +2019-02-11 12:19:33.130 [main] INFO - ********* START ********* +2019-02-11 12:19:33.145 [main] INFO - Authentication Type : http_signature +2019-02-11 12:19:33.145 [main] INFO - Request Type: GET +2019-02-11 12:19:33.145 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testre, requestType=GET} +2019-02-11 12:19:33.145 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:19:33.145 [main] INFO - Date: Mon, 11 Feb 2019 06:49:23 GMT +2019-02-11 12:19:33.145 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:19:33.145 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="J0bu3YKKCdTnjgVbM+5skazDEdrNrQ3xDh1rTvQY4jg=" +2019-02-11 12:19:33.145 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:19:33.645 [main] INFO - Request Body: null +2019-02-11 12:19:33.645 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-11 12:19:33.645 [main] INFO - Response Code: 404 +2019-02-11 12:19:33.645 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a13284a8-017f-4594-856e-f34c36d3852e +X-OPNET-Transaction-Trace: a2_8fcaacaa-8f6c-4f74-82d7-f2bf3749ced9 +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Mon, 11 Feb 2019 06:49:33 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 11 Feb 2019 06:49:32 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 00cbbb92-eb99-4475-a859-e280e0a01144 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867773145 +OkHttp-Received-Millis: 1549867773645 + +2019-02-11 12:19:33.645 [main] INFO - ********* END *********: +2019-02-11 12:20:17.641 [main] INFO - ********* START ********* +2019-02-11 12:20:17.641 [main] INFO - Authentication Type : http_signature +2019-02-11 12:20:17.641 [main] INFO - Request Type: GET +2019-02-11 12:20:17.641 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-08-02&reportName=testrest_v2, requestType=GET} +2019-02-11 12:20:17.641 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:20:17.641 [main] INFO - Date: Mon, 11 Feb 2019 06:49:23 GMT +2019-02-11 12:20:17.641 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:20:17.641 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="zqNXTya3LbFVS8oiTfBpLfLbqiRjA1l1qe/B6LT24nU=" +2019-02-11 12:20:17.641 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:20:18.141 [main] INFO - Request Body: null +2019-02-11 12:20:18.141 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-11 12:20:18.141 [main] INFO - Response Code: 404 +2019-02-11 12:20:18.141 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_fbfa5a02-dbb5-4ea6-a1d1-a0fe1c7a965c +X-OPNET-Transaction-Trace: a2_b1bb3e9a-9eb3-47f1-8d9d-8182537fd88e +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Mon, 11 Feb 2019 06:50:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 11 Feb 2019 06:50:17 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c0d52b00-f2a9-44c3-bb0c-bf8b3815aa9a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867817641 +OkHttp-Received-Millis: 1549867818141 + +2019-02-11 12:20:18.141 [main] INFO - ********* END *********: +2019-02-11 12:20:29.044 [main] INFO - ********* START ********* +2019-02-11 12:20:29.060 [main] INFO - Authentication Type : http_signature +2019-02-11 12:20:29.060 [main] INFO - Request Type: GET +2019-02-11 12:20:29.060 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=GET} +2019-02-11 12:20:29.060 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:20:29.091 [main] INFO - Date: Mon, 11 Feb 2019 06:50:28 GMT +2019-02-11 12:20:29.091 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:20:29.107 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="iIZYJLAAxLmaiDRpyMc2MJ7fFFfMdjwfMaJHP/DGS3s=" +2019-02-11 12:20:29.107 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:20:30.638 [main] INFO - Request Body: null +2019-02-11 12:20:30.638 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-11 12:20:30.638 [main] INFO - Response Code: 200 +2019-02-11 12:20:30.638 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_1e6c685b-7c3e-42bc-b8cf-32da542d9204 +X-OPNET-Transaction-Trace: a2_c2f41b28-c988-4625-8dec-d40ad6be9de1 +Cache-Control: no-cache, no-transform +ETag: "-1767230507-gzip" +Expires: Mon, 11 Feb 2019 06:50:30 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:50:30 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e7064d27-6dcb-414f-80ea-31813a98d271 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867829966 +OkHttp-Received-Millis: 1549867830591 + +2019-02-11 12:20:30.638 [main] INFO - ********* END *********: +2019-02-11 12:21:16.230 [main] INFO - ********* START ********* +2019-02-11 12:21:16.230 [main] INFO - Authentication Type : http_signature +2019-02-11 12:21:16.230 [main] INFO - Request Type: GET +2019-02-11 12:21:16.230 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00, requestType=GET} +2019-02-11 12:21:16.276 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:21:16.276 [main] INFO - Date: Mon, 11 Feb 2019 06:51:15 GMT +2019-02-11 12:21:16.276 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:21:16.276 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="oQU5/ezEZOfhpIWy9FNqZF4RJAIHanb8UKnZa+UcbQE=" +2019-02-11 12:21:16.276 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:21:17.511 [main] INFO - Request Body: null +2019-02-11 12:21:17.511 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"No results found for the given dates"} +2019-02-11 12:21:17.511 [main] INFO - Response Code: 404 +2019-02-11 12:21:17.511 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_5e8d0832-fc31-4064-b2a1-8372af6d89d4 +X-OPNET-Transaction-Trace: a2_dca5989f-a987-4dbe-b08a-805b592d78e5 +Cache-Control: no-cache, no-transform +ETag: "1442562825-gzip" +Expires: Mon, 11 Feb 2019 06:51:17 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:51:16 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 1008dc11-37e1-4e75-8514-5d969babf33d +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867877058 +OkHttp-Received-Millis: 1549867877480 + +2019-02-11 12:21:17.511 [main] INFO - ********* END *********: +2019-02-11 12:21:17.549 [main] INFO - ********* START ********* +2019-02-11 12:21:17.549 [main] INFO - Authentication Type : http_signature +2019-02-11 12:21:17.549 [main] INFO - Request Type: GET +2019-02-11 12:21:17.549 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/notification-of-changes?startTime=2019-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-05-30T12%3A00%3A00.000-05%3A00, requestType=GET} +2019-02-11 12:21:17.549 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:21:17.549 [main] INFO - Date: Mon, 11 Feb 2019 06:51:15 GMT +2019-02-11 12:21:17.549 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:21:17.549 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="cc3t6RqlE1/X2R45ZDMTIyTP5VIaOu0tX1yjtvdBm1o=" +2019-02-11 12:21:17.549 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:21:17.956 [main] INFO - Request Body: null +2019-02-11 12:21:17.956 [main] INFO - Response Message: Response{protocol=http/1.1, code=404, message=DONE, url=https://apitest.cybersource.com/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00} +2019-02-11 12:21:17.956 [main] INFO - Response Code: 400 +2019-02-11 12:21:17.956 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_da9238d9-08e2-463a-8f2a-f6fc6288c14d +X-OPNET-Transaction-Trace: a2_aaa7ff11-77c9-48dc-9824-656da9341123 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:51:17 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c6a021cc-65e7-4e5d-997e-5bbf27ccc68c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867877549 +OkHttp-Received-Millis: 1549867877956 + +2019-02-11 12:21:17.956 [main] INFO - ********* END *********: +2019-02-11 12:21:44.823 [main] INFO - ********* START ********* +2019-02-11 12:21:44.837 [main] INFO - Authentication Type : http_signature +2019-02-11 12:21:44.837 [main] INFO - Request Type: GET +2019-02-11 12:21:44.837 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-11 12:21:44.884 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:21:44.884 [main] INFO - Date: Mon, 11 Feb 2019 06:51:44 GMT +2019-02-11 12:21:44.884 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:21:44.884 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="E97oqn67Lnu+f+u5GB+NgsQESqhdEQAD9/dYURUBTUE=" +2019-02-11 12:21:44.884 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:21:46.197 [main] INFO - Request Body: null +2019-02-11 12:21:46.197 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/purchase-refund-details"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-11 12:21:46.197 [main] INFO - Response Code: 400 +2019-02-11 12:21:46.197 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_214c2ece-b6bb-4222-b81a-d40064b6c39d +X-OPNET-Transaction-Trace: a2_1b0641c5-11eb-41bf-be65-fca7fa4a17ea +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:51:46 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 1a052766-39f9-4bba-beec-8fc0ff6f9d53 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867905716 +OkHttp-Received-Millis: 1549867906165 + +2019-02-11 12:21:46.197 [main] INFO - ********* END *********: +2019-02-11 12:21:46.239 [main] INFO - ********* START ********* +2019-02-11 12:21:46.239 [main] INFO - Authentication Type : http_signature +2019-02-11 12:21:46.239 [main] INFO - Request Type: GET +2019-02-11 12:21:46.239 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2019-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-11 12:21:46.239 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:21:46.239 [main] INFO - Date: Mon, 11 Feb 2019 06:51:44 GMT +2019-02-11 12:21:46.239 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:21:46.239 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="WnUB1Ooor9MxxVwThR4n4Bo/A64VMpJjWIYWyabzU2Y=" +2019-02-11 12:21:46.239 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:21:46.661 [main] INFO - Request Body: null +2019-02-11 12:21:46.661 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000} +2019-02-11 12:21:46.661 [main] INFO - Response Code: 400 +2019-02-11 12:21:46.661 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_ad4648df-d953-47af-be04-ea825266c855 +X-OPNET-Transaction-Trace: a2_c8efa1f3-99cd-437f-9b96-39a27c0f17df +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:51:46 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a8c6c0af-60c8-4c9d-9879-a0608936c796 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867906239 +OkHttp-Received-Millis: 1549867906645 + +2019-02-11 12:21:46.661 [main] INFO - ********* END *********: +2019-02-11 12:21:46.676 [main] INFO - ********* START ********* +2019-02-11 12:21:46.676 [main] INFO - Authentication Type : http_signature +2019-02-11 12:21:46.676 [main] INFO - Request Type: GET +2019-02-11 12:21:46.676 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=udapaa&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-11 12:21:46.676 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:21:46.676 [main] INFO - Date: Mon, 11 Feb 2019 06:51:44 GMT +2019-02-11 12:21:46.676 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:21:46.676 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="wQMxOfng7MQbhheGDVEe7AdJUctMdFUX/NAcE3+ZBuY=" +2019-02-11 12:21:46.676 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:21:47.082 [main] INFO - Request Body: null +2019-02-11 12:21:47.082 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/purchase-refund-details?startTime=2019-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000} +2019-02-11 12:21:47.082 [main] INFO - Response Code: 400 +2019-02-11 12:21:47.082 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_bab8e382-9fbc-42b8-9cba-0224a9a727a8 +X-OPNET-Transaction-Trace: a2_fd1874c5-1f2e-4b51-a6f0-13c5edc05056 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:51:46 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: bb83f46d-623f-40de-b522-460c7701fb74 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867906692 +OkHttp-Received-Millis: 1549867907082 + +2019-02-11 12:21:47.082 [main] INFO - ********* END *********: +2019-02-11 12:22:09.872 [main] INFO - ********* START ********* +2019-02-11 12:22:09.872 [main] INFO - Authentication Type : http_signature +2019-02-11 12:22:09.872 [main] INFO - Request Type: GET +2019-02-11 12:22:09.887 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest, requestType=GET} +2019-02-11 12:22:09.887 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:22:09.918 [main] INFO - Date: Mon, 11 Feb 2019 06:52:09 GMT +2019-02-11 12:22:09.918 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:22:09.918 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ETsqJVWRchjkhJCOM1CxEPKZQiUZOHQTDMvDKfNFH2g=" +2019-02-11 12:22:09.918 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:22:11.246 [main] INFO - Request Body: null +2019-02-11 12:22:11.246 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest} +2019-02-11 12:22:11.246 [main] INFO - Response Code: 200 +2019-02-11 12:22:11.246 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_ad344a8b-95f5-4f62-b152-d9e02b72fc40 +X-OPNET-Transaction-Trace: a2_a6463b6f-44fc-4756-aa10-334db2b2bf20 +Cache-Control: no-cache, no-transform +ETag: "609183382-gzip" +Expires: Mon, 11 Feb 2019 06:52:11 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:52:11 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 08539398-8edd-4b91-a153-303b87c28347 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867930762 +OkHttp-Received-Millis: 1549867931215 + +2019-02-11 12:22:11.246 [main] INFO - ********* END *********: +2019-02-11 12:22:11.371 [main] INFO - ********* START ********* +2019-02-11 12:22:11.371 [main] INFO - Authentication Type : http_signature +2019-02-11 12:22:11.371 [main] INFO - Request Type: GET +2019-02-11 12:22:11.371 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest, requestType=GET} +2019-02-11 12:22:11.371 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:22:11.371 [main] INFO - Date: Mon, 11 Feb 2019 06:52:09 GMT +2019-02-11 12:22:11.371 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:22:11.371 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="lQFwaFbZ9wcjVwu11oCmiskNiHm7BRyvrXop7inCJvM=" +2019-02-11 12:22:11.371 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:22:11.793 [main] INFO - Request Body: null +2019-02-11 12:22:11.793 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest} +2019-02-11 12:22:11.793 [main] INFO - Response Code: 404 +2019-02-11 12:22:11.793 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_ceeb919e-71f2-4d75-a959-7ff2169af6c3 +X-OPNET-Transaction-Trace: a2_82f461ed-5a84-4a59-8424-58bab5fd2616 +Cache-Control: no-cache, no-transform +ETag: "-830509477-gzip" +Expires: Mon, 11 Feb 2019 06:52:11 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:52:11 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ad5bf0ba-21bb-479c-b7a4-f4448f746340 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867931371 +OkHttp-Received-Millis: 1549867931793 + +2019-02-11 12:22:11.793 [main] INFO - ********* END *********: +2019-02-11 12:22:11.819 [main] INFO - ********* START ********* +2019-02-11 12:22:11.819 [main] INFO - Authentication Type : http_signature +2019-02-11 12:22:11.819 [main] INFO - Request Type: GET +2019-02-11 12:22:11.819 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=bkalama, requestType=GET} +2019-02-11 12:22:11.819 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:22:11.819 [main] INFO - Date: Mon, 11 Feb 2019 06:52:09 GMT +2019-02-11 12:22:11.819 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:22:11.819 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="X6fuin6tAMgTYSGGDIlp/TegLDpCnbgD2S5H1dSmrso=" +2019-02-11 12:22:11.819 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:22:12.225 [main] INFO - Request Body: null +2019-02-11 12:22:12.225 [main] INFO - Response Message: Response{protocol=http/1.1, code=404, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest} +2019-02-11 12:22:12.225 [main] INFO - Response Code: 400 +2019-02-11 12:22:12.225 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_3f3f4db4-313b-4d13-a595-1859c8573c69 +X-OPNET-Transaction-Trace: a2_56643f36-21fe-4b4d-ae8c-d757502f01e3 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:52:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4570f761-1566-4a7e-8bc0-534cf289f372 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867931819 +OkHttp-Received-Millis: 1549867932225 + +2019-02-11 12:22:12.225 [main] INFO - ********* END *********: +2019-02-11 12:22:33.996 [main] INFO - ********* START ********* +2019-02-11 12:22:34.012 [main] INFO - Authentication Type : http_signature +2019-02-11 12:22:34.012 [main] INFO - Request Type: GET +2019-02-11 12:22:34.012 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/AcquirerExceptionDetailClass, requestType=GET} +2019-02-11 12:22:34.012 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:22:34.012 [main] INFO - Date: Mon, 11 Feb 2019 06:52:33 GMT +2019-02-11 12:22:34.012 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:22:34.012 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="X2aWfPNr3YHkjiM7oXw09Zc6fHIFAZw4pveSs+cpE/A=" +2019-02-11 12:22:34.012 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:22:35.294 [main] INFO - Request Body: null +2019-02-11 12:22:35.294 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass} +2019-02-11 12:22:35.294 [main] INFO - Response Code: 200 +2019-02-11 12:22:35.294 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_55f9fd07-061f-4c6d-90d4-3800728fe1f9 +X-OPNET-Transaction-Trace: a2_c5b4e729-31ba-42af-83b3-fae15c562c5b +Cache-Control: no-cache, no-transform +ETag: "-78621274-gzip" +Expires: Mon, 11 Feb 2019 06:52:35 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:52:34 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4ff1f2fd-6fd1-4ef8-97f2-3dcd7d11a9a9 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867954840 +OkHttp-Received-Millis: 1549867955262 + +2019-02-11 12:22:35.294 [main] INFO - ********* END *********: +2019-02-11 12:22:35.355 [main] INFO - ********* START ********* +2019-02-11 12:22:35.355 [main] INFO - Authentication Type : http_signature +2019-02-11 12:22:35.355 [main] INFO - Request Type: GET +2019-02-11 12:22:35.355 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/SubscDetail, requestType=GET} +2019-02-11 12:22:35.355 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:22:35.355 [main] INFO - Date: Mon, 11 Feb 2019 06:52:33 GMT +2019-02-11 12:22:35.355 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:22:35.355 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="s0ck76yVa4ParjsqnXU9NvWy/s10EI+SDTDytdX2nLY=" +2019-02-11 12:22:35.355 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:22:35.762 [main] INFO - Request Body: null +2019-02-11 12:22:35.762 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass} +2019-02-11 12:22:35.762 [main] INFO - Response Code: 404 +2019-02-11 12:22:35.762 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_372f2fb5-ded0-4684-a04a-86e1cd97cdc5 +X-OPNET-Transaction-Trace: a2_d7795564-16a6-4d9f-896a-8e1b17e08176 +Cache-Control: no-cache, no-transform +ETag: "204857944-gzip" +Expires: Mon, 11 Feb 2019 06:52:35 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:52:34 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c11beee3-e125-4f15-9d40-9039533c6ae5 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549867955355 +OkHttp-Received-Millis: 1549867955762 + +2019-02-11 12:22:35.762 [main] INFO - ********* END *********: +2019-02-11 12:23:22.899 [main] INFO - ********* START ********* +2019-02-11 12:23:22.914 [main] INFO - Authentication Type : http_signature +2019-02-11 12:23:22.914 [main] INFO - Request Type: GET +2019-02-11 12:23:22.914 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/AcquirerExceptionDetailClass, requestType=GET} +2019-02-11 12:23:22.914 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:23:22.961 [main] INFO - Date: Mon, 11 Feb 2019 06:53:22 GMT +2019-02-11 12:23:22.961 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:23:22.961 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="YSNJT5qt5RX2pAKEuG+yJOHNRtt8EL8B8Pf7jBqNqSE=" +2019-02-11 12:23:22.961 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:23:26.711 [main] INFO - Request Body: null +2019-02-11 12:23:26.711 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass} +2019-02-11 12:23:26.711 [main] INFO - Response Code: 200 +2019-02-11 12:23:26.711 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_505abd26-0adc-4e05-bbe4-bcc391c526f5 +X-OPNET-Transaction-Trace: a2_266e226c-33d6-4e4a-9b07-aa9d8d64c872 +Cache-Control: no-cache, no-transform +ETag: "-78621274-gzip" +Expires: Mon, 11 Feb 2019 06:53:26 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:53:26 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: b47b03bc-4c2c-4b07-a168-99ed4fad2824 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868004962 +OkHttp-Received-Millis: 1549868006586 + +2019-02-11 12:23:26.711 [main] INFO - ********* END *********: +2019-02-11 12:24:07.993 [main] INFO - ********* START ********* +2019-02-11 12:24:07.993 [main] INFO - Authentication Type : http_signature +2019-02-11 12:24:07.993 [main] INFO - Request Type: GET +2019-02-11 12:24:07.993 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/SubscDetail, requestType=GET} +2019-02-11 12:24:07.993 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:24:07.993 [main] INFO - Date: Mon, 11 Feb 2019 06:53:22 GMT +2019-02-11 12:24:07.993 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:24:07.993 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="LvhBmFcbJ2ayvjpGu4omaaKx2f7jLXPMIpZTjwl0Xx8=" +2019-02-11 12:24:07.993 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:24:08.399 [main] INFO - Request Body: null +2019-02-11 12:24:08.399 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass} +2019-02-11 12:24:08.399 [main] INFO - Response Code: 404 +2019-02-11 12:24:08.399 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_1d0b4a22-4ddd-465a-b125-d6181251b019 +X-OPNET-Transaction-Trace: a2_bb1d00b3-ad14-46ac-a59b-7fdda16a3143 +Cache-Control: no-cache, no-transform +ETag: "204857944-gzip" +Expires: Mon, 11 Feb 2019 06:54:08 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:54:07 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 1480696f-67c2-4520-8966-57389995a697 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868047993 +OkHttp-Received-Millis: 1549868048399 + +2019-02-11 12:24:08.399 [main] INFO - ********* END *********: +2019-02-11 12:25:09.328 [main] INFO - ********* START ********* +2019-02-11 12:25:09.343 [main] INFO - Authentication Type : http_signature +2019-02-11 12:25:09.343 [main] INFO - Request Type: GET +2019-02-11 12:25:09.343 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=testrest, requestType=GET} +2019-02-11 12:25:09.343 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:25:09.343 [main] INFO - Date: Mon, 11 Feb 2019 06:55:08 GMT +2019-02-11 12:25:09.343 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:25:09.343 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="+h+Y1xrKaqpIBVucbM96qenJ6tPW9nxtQA7BVxT4og8=" +2019-02-11 12:25:09.343 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:25:10.812 [main] INFO - Request Body: null +2019-02-11 12:25:10.812 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-11 12:25:10.812 [main] INFO - Response Code: 200 +2019-02-11 12:25:10.812 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_90b36b49-ea3c-426b-989a-7260ef43c1ef +X-OPNET-Transaction-Trace: a2_686ff63f-6480-4e79-a4ce-e6790d28fb5c +Cache-Control: no-cache, no-transform +ETag: "1846674451-gzip" +Expires: Mon, 11 Feb 2019 06:55:10 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:55:09 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 96190e22-9164-4eae-aa11-9af1341563c4 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868110343 +OkHttp-Received-Millis: 1549868110781 + +2019-02-11 12:25:10.812 [main] INFO - ********* END *********: +2019-02-11 12:25:10.859 [main] INFO - ********* START ********* +2019-02-11 12:25:10.859 [main] INFO - Authentication Type : http_signature +2019-02-11 12:25:10.874 [main] INFO - Request Type: GET +2019-02-11 12:25:10.874 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=bplkmdghd, requestType=GET} +2019-02-11 12:25:10.874 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:25:10.874 [main] INFO - Date: Mon, 11 Feb 2019 06:55:08 GMT +2019-02-11 12:25:10.874 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:25:10.874 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="/X94vLxxBPV0oC6aFQ1NOUlLurbBpFCSZmJQN1C8TKA=" +2019-02-11 12:25:10.874 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:25:11.281 [main] INFO - Request Body: null +2019-02-11 12:25:11.281 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-11 12:25:11.281 [main] INFO - Response Code: 400 +2019-02-11 12:25:11.281 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_c098e306-3def-4820-876e-9a0670e8994e +X-OPNET-Transaction-Trace: a2_6825c9a7-7240-4e3f-904c-6c55dc7b14cf +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:55:11 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 2f25ad08-5afd-42aa-b050-fa03dc9b3881 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868110874 +OkHttp-Received-Millis: 1549868111265 + +2019-02-11 12:25:11.281 [main] INFO - ********* END *********: +2019-02-11 12:25:40.046 [main] INFO - ********* START ********* +2019-02-11 12:25:40.061 [main] INFO - Authentication Type : http_signature +2019-02-11 12:25:40.061 [main] INFO - Request Type: GET +2019-02-11 12:25:40.061 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/Texture, requestType=GET} +2019-02-11 12:25:40.061 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:25:40.092 [main] INFO - Date: Mon, 11 Feb 2019 06:55:39 GMT +2019-02-11 12:25:40.092 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:25:40.092 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="FkAHks1vi+8qpCYttlorWbymbeRP2pmKNsMDGNrRHZI=" +2019-02-11 12:25:40.092 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:25:41.561 [main] INFO - Request Body: null +2019-02-11 12:25:41.561 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture} +2019-02-11 12:25:41.561 [main] INFO - Response Code: 200 +2019-02-11 12:25:41.561 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_4a66f45f-1b96-4aa8-9aa7-187ce366dadc +X-OPNET-Transaction-Trace: a2_852bfb40-8f42-4ce1-a4ec-631c0a50027d +Cache-Control: no-cache, no-transform +ETag: "-1844867216-gzip" +Expires: Mon, 11 Feb 2019 06:55:41 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:55:41 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 227b7b1c-3027-417a-8020-37ccacbcadfb +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868141077 +OkHttp-Received-Millis: 1549868141530 + +2019-02-11 12:25:41.561 [main] INFO - ********* END *********: +2019-02-11 12:25:41.624 [main] INFO - ********* START ********* +2019-02-11 12:25:41.624 [main] INFO - Authentication Type : http_signature +2019-02-11 12:25:41.624 [main] INFO - Request Type: GET +2019-02-11 12:25:41.624 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/bplkmdgsd, requestType=GET} +2019-02-11 12:25:41.624 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:25:41.624 [main] INFO - Date: Mon, 11 Feb 2019 06:55:39 GMT +2019-02-11 12:25:41.624 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:25:41.624 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="YhnXQh7LXLkP2zm4HY6DeTMzWhYVSGHBizmh6hDK6Nw=" +2019-02-11 12:25:41.624 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:25:42.046 [main] INFO - Request Body: null +2019-02-11 12:25:42.046 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture} +2019-02-11 12:25:42.046 [main] INFO - Response Code: 404 +2019-02-11 12:25:42.046 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_c804e05c-4596-483e-bead-9d3962dade5f +X-OPNET-Transaction-Trace: a2_33babfa9-7993-44a9-996f-c797420b0689 +Cache-Control: no-cache, no-transform +ETag: "1764052161-gzip" +Expires: Mon, 11 Feb 2019 06:55:41 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:55:41 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: f1c794d3-7440-4f2a-af0c-992b544df92d +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868141624 +OkHttp-Received-Millis: 1549868142046 + +2019-02-11 12:25:42.046 [main] INFO - ********* END *********: +2019-02-11 12:26:02.223 [main] INFO - ********* START ********* +2019-02-11 12:26:02.239 [main] INFO - Authentication Type : http_signature +2019-02-11 12:26:02.239 [main] INFO - Request Type: GET +2019-02-11 12:26:02.239 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-11 12:26:02.288 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:26:02.288 [main] INFO - Date: Mon, 11 Feb 2019 06:56:01 GMT +2019-02-11 12:26:02.288 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:26:02.288 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="DAz26rNOkuIfTsC7ZuEda//aPmEhzF1fLvtkhc5QAb8=" +2019-02-11 12:26:02.288 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:26:10.551 [main] INFO - Request Body: null +2019-02-11 12:26:10.551 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime} +2019-02-11 12:26:10.551 [main] INFO - Response Code: 200 +2019-02-11 12:26:10.551 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_54b1282d-838d-4ad8-834e-437d8e5a5328 +X-OPNET-Transaction-Trace: a2_a105dff2-dda1-438c-82a4-36ba7a3c5010 +Cache-Control: no-cache, no-transform +ETag: "98577355-gzip" +Expires: Mon, 11 Feb 2019 06:56:10 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:56:09 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 5920ae9a-d08d-4391-b48a-4514cc054552 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868163301 +OkHttp-Received-Millis: 1549868170520 + +2019-02-11 12:26:10.551 [main] INFO - ********* END *********: +2019-02-11 12:26:10.614 [main] INFO - ********* START ********* +2019-02-11 12:26:10.614 [main] INFO - Authentication Type : http_signature +2019-02-11 12:26:10.614 [main] INFO - Request Type: GET +2019-02-11 12:26:10.614 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime, requestType=GET} +2019-02-11 12:26:10.614 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:26:10.614 [main] INFO - Date: Mon, 11 Feb 2019 06:56:01 GMT +2019-02-11 12:26:10.614 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:26:10.614 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="bRBmJVPCVicvL7frvxC9luFCh2QcusA+qm8UYJjwph8=" +2019-02-11 12:26:10.614 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:26:11.067 [main] INFO - Request Body: null +2019-02-11 12:26:11.067 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime} +2019-02-11 12:26:11.067 [main] INFO - Response Code: 400 +2019-02-11 12:26:11.067 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_7a024f1f-804e-4fb5-84a3-58a774a75228 +X-OPNET-Transaction-Trace: a2_bc43d6ec-0580-4268-8708-0fb7e7e613d3 +Cache-Control: no-cache, no-transform +ETag: "480352859-gzip" +Expires: Mon, 11 Feb 2019 06:56:10 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:56:10 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: dd4a7dfa-350d-417b-a57e-76d617975105 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868170614 +OkHttp-Received-Millis: 1549868171051 + +2019-02-11 12:26:11.067 [main] INFO - ********* END *********: +2019-02-11 12:26:11.098 [main] INFO - ********* START ********* +2019-02-11 12:26:11.098 [main] INFO - Authentication Type : http_signature +2019-02-11 12:26:11.098 [main] INFO - Request Type: GET +2019-02-11 12:26:11.098 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2019-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-11 12:26:11.098 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:26:11.098 [main] INFO - Date: Mon, 11 Feb 2019 06:56:01 GMT +2019-02-11 12:26:11.098 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:26:11.098 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="wgTmbZkZQX4XAvtbYi18FeDv0/1fJKoekW5vWvweNM8=" +2019-02-11 12:26:11.098 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:26:11.567 [main] INFO - Request Body: null +2019-02-11 12:26:11.567 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime} +2019-02-11 12:26:11.567 [main] INFO - Response Code: 404 +2019-02-11 12:26:11.567 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_8b906d8b-cefc-4128-ad81-347921f288c7 +X-OPNET-Transaction-Trace: a2_d50cb917-1927-4b02-b096-2dadf4e21b72 +Cache-Control: no-cache, no-transform +ETag: "1803701484-gzip" +Expires: Mon, 11 Feb 2019 06:56:11 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:56:11 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: bbcd53f9-fde2-4710-9337-76da25e8bc45 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868171098 +OkHttp-Received-Millis: 1549868171567 + +2019-02-11 12:26:11.567 [main] INFO - ********* END *********: +2019-02-11 12:26:39.372 [main] INFO - ********* START ********* +2019-02-11 12:26:39.387 [main] INFO - Authentication Type : http_signature +2019-02-11 12:26:39.387 [main] INFO - Request Type: GET +2019-02-11 12:26:39.387 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA%3D%3D?organizationId=testrest, requestType=GET} +2019-02-11 12:26:39.387 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:26:39.387 [main] INFO - Date: Mon, 11 Feb 2019 06:56:39 GMT +2019-02-11 12:26:39.387 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:26:39.387 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="HS8Va7GKLWrJRXBS+eNlSSiXAnW4yWpe+t41HBNjnlE=" +2019-02-11 12:26:39.387 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:26:40.887 [main] INFO - Request Body: null +2019-02-11 12:26:40.887 [main] INFO - Response Message: testrest,TRRReport,TransactionRequestReport,1.10,2018-10-19T16:00:00Z to 2018-10-20T16:00:00Z +RequestID,RequestDate,MerchantReferenceNumber,MerchantID +5399662771246550003001,2018-10-19T16:24:37Z,TC50171_3,testrest +5399664781416551403001,2018-10-19T16:27:58Z,TC50171_3,testrest +5399666196306552903001,2018-10-19T16:30:19Z,TC50171_3,testrest +5399666357576981903005,2018-10-19T16:30:35Z,TC50171_3,testrest +5399680347956058103004,2018-10-19T16:53:54Z,TC50171_3,testrest +5399680431216058303004,2018-10-19T16:54:03Z,TC50171_3,testrest +5399684302416000903005,2018-10-19T17:00:30Z,TC50171_3,testrest +5399684505506723403002,2018-10-19T17:00:50Z,TC50171_3,testrest +5399684781686729303003,2018-10-19T17:01:18Z,TC50171_3,testrest +5399742716346290903004,2018-10-19T18:37:51Z,TC50171_3,testrest +5399742808726291703004,2018-10-19T18:38:00Z,TC50171_3,testrest +5399743679866242703005,2018-10-19T18:39:28Z,TC50171_3,testrest +5399751921786020803003,2018-10-19T18:53:12Z,TC50171_3,testrest +5399761919726317303005,2018-10-19T19:09:52Z,TC50171_3,testrest +5399787878246907603001,2018-10-19T19:53:07Z,TC50171_3,testrest +5399793339576405603004,2018-10-19T20:02:14Z,405195660::1,testrest +5399807626196378603005,2018-10-19T20:26:02Z,405195660::1,testrest +5399810449296963303001,2018-10-19T20:30:45Z,33557799,testrest +5399829987226032203001,2018-10-19T21:03:18Z,1234567890,testrest +5399844740286070303001,2018-10-19T21:27:54Z,TC50171_3,testrest +5399845077266611803006,2018-10-19T21:28:27Z,TC50171_3,testrest +5399845139246229503002,2018-10-19T21:28:34Z,TC50171_3,testrest +5399889652786155003001,2018-10-19T22:42:45Z,TC50171_3,testrest +5399900584196720203006,2018-10-19T23:00:58Z,1234567890,testrest + +2019-02-11 12:26:40.887 [main] INFO - Response Code: 200 +2019-02-11 12:26:40.887 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_15d52a89-5f48-41a3-97b2-02f44e2c5f7e +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 11 Feb 2019 06:56:40 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Mon, 11 Feb 2019 06:56:40 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e11fb2de-335b-4d76-bb01-45602ae764c5 +OkHttp-Sent-Millis: 1549868200372 +OkHttp-Received-Millis: 1549868200872 + +2019-02-11 12:26:40.887 [main] INFO - ********* END *********: +2019-02-11 12:26:40.934 [main] INFO - ********* START ********* +2019-02-11 12:26:40.934 [main] INFO - Authentication Type : http_signature +2019-02-11 12:26:40.934 [main] INFO - Request Type: GET +2019-02-11 12:26:40.934 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0?organizationId=testrest, requestType=GET} +2019-02-11 12:26:40.934 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:26:40.934 [main] INFO - Date: Mon, 11 Feb 2019 06:56:39 GMT +2019-02-11 12:26:40.934 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:26:40.934 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="c/g5XyXju37odNH7cG7uE2wzNivmBpXhfPeS5qcWj44=" +2019-02-11 12:26:40.934 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:26:41.419 [main] INFO - Request Body: null +2019-02-11 12:26:41.419 [main] INFO - Response Message: + + Field validation errors + cybsapi.validation.errors + VALIDATION_ERROR + + cybsapi.file.id.invalid + fileId + Invalid File ID + + + +2019-02-11 12:26:41.419 [main] INFO - Response Code: 400 +2019-02-11 12:26:41.419 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_cdac7746-0b45-4176-b13d-211564687178 +Cache-Control: no-cache, no-transform +ETag: "-807714005-gzip" +Expires: Mon, 11 Feb 2019 06:56:41 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Mon, 11 Feb 2019 06:56:40 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 8b61cee4-1279-42fa-8654-87f523d3a054 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868200934 +OkHttp-Received-Millis: 1549868201419 + +2019-02-11 12:26:41.419 [main] INFO - ********* END *********: +2019-02-11 12:27:20.959 [main] INFO - ********* START ********* +2019-02-11 12:27:20.975 [main] INFO - Authentication Type : http_signature +2019-02-11 12:27:20.975 [main] INFO - Request Type: GET +2019-02-11 12:27:20.975 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest, requestType=GET} +2019-02-11 12:27:21.006 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:27:21.028 [main] INFO - Date: Mon, 11 Feb 2019 06:57:20 GMT +2019-02-11 12:27:21.028 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:27:21.028 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="7E0jrF7CyuETfivJxoDJjobatNh/57xkUsGyt3pRAuM=" +2019-02-11 12:27:21.028 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:27:22.616 [main] INFO - Request Body: null +2019-02-11 12:27:22.616 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest} +2019-02-11 12:27:22.616 [main] INFO - Response Code: 200 +2019-02-11 12:27:22.616 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_21aea73b-5518-4662-baec-e1b5aecad5df +Cache-Control: no-cache, no-transform +ETag: "1318548619-gzip" +Expires: Mon, 11 Feb 2019 06:57:22 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:57:22 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 10781663-fce5-4e64-87aa-cee3cd419eaf +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868242006 +OkHttp-Received-Millis: 1549868242584 + +2019-02-11 12:27:22.616 [main] INFO - ********* END *********: +2019-02-11 12:27:22.725 [main] INFO - ********* START ********* +2019-02-11 12:27:22.725 [main] INFO - Authentication Type : http_signature +2019-02-11 12:27:22.725 [main] INFO - Request Type: GET +2019-02-11 12:27:22.725 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testtest, requestType=GET} +2019-02-11 12:27:22.725 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:27:22.725 [main] INFO - Date: Mon, 11 Feb 2019 06:57:20 GMT +2019-02-11 12:27:22.725 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:27:22.725 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="jNwLGvkye7Uaj64HCXxwjM5jCB4e3MHGIajiQqz0bCg=" +2019-02-11 12:27:22.725 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:27:23.209 [main] INFO - Request Body: null +2019-02-11 12:27:23.209 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest} +2019-02-11 12:27:23.209 [main] INFO - Response Code: 403 +2019-02-11 12:27:23.209 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e5848b6d-ca3a-4913-ba71-0f2cbcd93743 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:57:23 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c24572cb-58a7-4f8f-8830-9c7dc96437c2 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868242725 +OkHttp-Received-Millis: 1549868243209 + +2019-02-11 12:27:23.209 [main] INFO - ********* END *********: +2019-02-11 12:27:43.847 [main] INFO - ********* START ********* +2019-02-11 12:27:43.863 [main] INFO - Authentication Type : http_signature +2019-02-11 12:27:43.863 [main] INFO - Request Type: POST +2019-02-11 12:27:43.863 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-11 12:27:43.863 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-11 12:27:43.863 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:27:43.863 [main] INFO - Date: Mon, 11 Feb 2019 06:57:43 GMT +2019-02-11 12:27:43.863 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:27:43.863 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="LzDu+KZPuX9Yi2wk6Fdvsf+3/aHr2L/aF5ZhHZx5+NI=" +2019-02-11 12:27:43.863 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:27:45.050 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-11 12:27:45.050 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-11 12:27:45.050 [main] INFO - Response Code: 200 +2019-02-11 12:27:45.066 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_24627900-ffd0-4081-bf66-de7d346058cd +uniqueTransactionID: 321e0549-db3d-44c7-973d-e98734b6c9e0 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 11 Feb 2019 06:57:44 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 67e2b3d8-3e50-4778-9f71-6dfb187210d4 +OkHttp-Sent-Millis: 1549868264738 +OkHttp-Received-Millis: 1549868265035 + +2019-02-11 12:27:45.066 [main] INFO - ********* END *********: +2019-02-11 12:27:45.098 [main] INFO - ********* START ********* +2019-02-11 12:27:45.098 [main] INFO - Authentication Type : http_signature +2019-02-11 12:27:45.113 [main] INFO - Request Type: POST +2019-02-11 12:27:45.113 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-11 12:27:45.113 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-11 12:27:45.113 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:27:45.113 [main] INFO - Date: Mon, 11 Feb 2019 06:57:43 GMT +2019-02-11 12:27:45.113 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:27:45.113 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="LzDu+KZPuX9Yi2wk6Fdvsf+3/aHr2L/aF5ZhHZx5+NI=" +2019-02-11 12:27:45.113 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:27:45.316 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-11 12:27:45.316 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-11 12:27:45.316 [main] INFO - Response Code: 400 +2019-02-11 12:27:45.316 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_5ce8f93a-eea5-4e04-9eb2-f2d69f69d263 +uniqueTransactionID: fb867293-8061-446e-ad40-5605409cab3d +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Mon, 11 Feb 2019 06:57:44 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 2f0819e9-0c9c-4c71-8d6d-2a32b6568754 +OkHttp-Sent-Millis: 1549868265128 +OkHttp-Received-Millis: 1549868265316 + +2019-02-11 12:27:45.316 [main] INFO - ********* END *********: +2019-02-11 12:28:08.775 [main] INFO - ********* START ********* +2019-02-11 12:28:08.791 [main] INFO - Authentication Type : http_signature +2019-02-11 12:28:08.791 [main] INFO - Request Type: PUT +2019-02-11 12:28:08.791 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-11 12:28:08.791 [main] INFO - Digest: SHA-256=B/CNo4vGf0K3COzdmREEjeuLmdsPOBHwwJmY0FsUW1I= +2019-02-11 12:28:08.822 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:28:08.822 [main] INFO - Date: Mon, 11 Feb 2019 06:58:08 GMT +2019-02-11 12:28:08.822 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:28:08.822 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="IAZuyBZuFJ+DlSPn7Sxm2WJ0B/IEX1V7M9MwBeET2Pw=" +2019-02-11 12:28:08.822 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:28:10.322 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testrest_v604","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-11 12:28:10.322 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-11 12:28:10.322 [main] INFO - Response Code: 201 +2019-02-11 12:28:10.322 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_142756c6-c764-44ce-a82a-4d930640d607 +X-OPNET-Transaction-Trace: a2_a6ed1e57-922a-4a6b-9d51-0fd5236935af +Cache-Control: no-cache, no-transform +ETag: "689991228-gzip" +Expires: Mon, 11 Feb 2019 06:58:10 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:58:09 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 71f48273-f586-4922-96ca-c2657f3695aa +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868289635 +OkHttp-Received-Millis: 1549868290291 + +2019-02-11 12:28:10.322 [main] INFO - ********* END *********: +2019-02-11 12:28:10.356 [main] INFO - ********* START ********* +2019-02-11 12:28:10.356 [main] INFO - Authentication Type : http_signature +2019-02-11 12:28:10.356 [main] INFO - Request Type: PUT +2019-02-11 12:28:10.356 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-11 12:28:10.356 [main] INFO - Digest: SHA-256=obbqGQ7vcDgZ90wEsXruRpyQJFe9W4E+z7Ervkj3v7c= +2019-02-11 12:28:10.356 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:28:10.356 [main] INFO - Date: Mon, 11 Feb 2019 06:58:08 GMT +2019-02-11 12:28:10.356 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:28:10.356 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="8LkUJrhvHaK81gGq8c5sxN0tX13eZnWjfubcoOcdphE=" +2019-02-11 12:28:10.356 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:28:10.807 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-11 12:28:10.807 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-11 12:28:10.807 [main] INFO - Response Code: 400 +2019-02-11 12:28:10.807 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_7d961f09-f557-4709-9239-b5567acf9a76 +X-OPNET-Transaction-Trace: a2_f4c843e8-c96a-47a7-8267-7c83473527b7 +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Mon, 11 Feb 2019 06:58:10 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:58:10 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a6f61a6a-ed61-4a11-9405-813f967f5054 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868290385 +OkHttp-Received-Millis: 1549868290807 + +2019-02-11 12:28:10.807 [main] INFO - ********* END *********: +2019-02-11 12:28:28.713 [main] INFO - ********* START ********* +2019-02-11 12:28:28.728 [main] INFO - Authentication Type : http_signature +2019-02-11 12:28:28.728 [main] INFO - Request Type: DELETE +2019-02-11 12:28:28.728 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/testrest_v604, requestType=DELETE} +2019-02-11 12:28:28.728 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:28:28.759 [main] INFO - Date: Mon, 11 Feb 2019 06:58:28 GMT +2019-02-11 12:28:28.759 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:28:28.759 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="GoHTYpKUlPnIl4cqr0TQq/01YLduEkun0o3PhFV6cok=" +2019-02-11 12:28:28.759 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:28:30.134 [main] INFO - Request Body: null +2019-02-11 12:28:30.134 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604} +2019-02-11 12:28:30.134 [main] INFO - Response Code: 200 +2019-02-11 12:28:30.134 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_ae1ecff0-8615-4955-bf73-df4fa9ab0890 +X-OPNET-Transaction-Trace: a2_f1ee3f31-38be-4c09-98ab-bfbde0b800a0 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 11 Feb 2019 06:58:30 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:58:29 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 1dcb9634-2209-4563-b50a-0592ae40f036 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868309650 +OkHttp-Received-Millis: 1549868310119 + +2019-02-11 12:28:30.134 [main] INFO - ********* END *********: +2019-02-11 12:28:30.166 [main] INFO - ********* START ********* +2019-02-11 12:28:30.166 [main] INFO - Authentication Type : http_signature +2019-02-11 12:28:30.166 [main] INFO - Request Type: DELETE +2019-02-11 12:28:30.166 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/ghsrrawasbhfhcb, requestType=DELETE} +2019-02-11 12:28:30.166 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:28:30.166 [main] INFO - Date: Mon, 11 Feb 2019 06:58:28 GMT +2019-02-11 12:28:30.166 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:28:30.166 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="CWRkDnn5MrEQeWJ18ildCuNjSTXyJDK11gzTXIiR6kU=" +2019-02-11 12:28:30.166 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:28:30.588 [main] INFO - Request Body: null +2019-02-11 12:28:30.588 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604} +2019-02-11 12:28:30.588 [main] INFO - Response Code: 404 +2019-02-11 12:28:30.588 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_9e5bd71c-4cda-437f-9442-cdd6b2e55ba5 +X-OPNET-Transaction-Trace: a2_e50d2063-f80b-4f77-87b3-5538ce365c7a +Cache-Control: no-cache, no-transform +ETag: "860016692-gzip" +Expires: Mon, 11 Feb 2019 06:58:30 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 06:58:29 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d99f1c21-95d2-4f65-b2f3-5ae7c0624dd7 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868310181 +OkHttp-Received-Millis: 1549868310572 + +2019-02-11 12:28:30.588 [main] INFO - ********* END *********: +2019-02-11 12:29:09.512 [main] INFO - ********* START ********* +2019-02-11 12:29:09.528 [main] INFO - Authentication Type : http_signature +2019-02-11 12:29:09.528 [main] INFO - Request Type: POST +2019-02-11 12:29:09.528 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-11 12:29:09.528 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-11 12:29:09.575 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:29:09.575 [main] INFO - Date: Mon, 11 Feb 2019 06:59:09 GMT +2019-02-11 12:29:09.575 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:29:09.575 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="O61UkWd1W8Kgsa3I2fU6Cb9oU/hKMDK2tV+9ojJyXHk=" +2019-02-11 12:29:09.575 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:29:10.762 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-11 12:29:10.762 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments} +2019-02-11 12:29:10.762 [main] INFO - Response Code: 201 +2019-02-11 12:29:10.762 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_b0e11546-f35f-4cf0-a2dd-91601a7eb5a7 +uniqueTransactionID: f1a6a307-de1a-4ba1-9f7c-8cbf1b9aca45 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/paymentinstruments/8199D6C295B23014E05340588D0A68EF +ETag: "wyD6Btco2klRQxfE5CXQFEPc8YJth4hUKtiVW/D6ECE=" +instrumentidentifier-created: false +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1001 +Date: Mon, 11 Feb 2019 06:59:10 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 9261aa8a-9ceb-4926-a37a-d30551dce29c +OkHttp-Sent-Millis: 1549868350497 +OkHttp-Received-Millis: 1549868350747 + +2019-02-11 12:29:10.762 [main] INFO - ********* END *********: +2019-02-11 12:29:10.794 [main] INFO - ********* START ********* +2019-02-11 12:29:10.794 [main] INFO - Authentication Type : http_signature +2019-02-11 12:29:10.794 [main] INFO - Request Type: POST +2019-02-11 12:29:10.794 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-11 12:29:10.794 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-11 12:29:10.794 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:29:10.794 [main] INFO - Date: Mon, 11 Feb 2019 06:59:09 GMT +2019-02-11 12:29:10.794 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:29:10.794 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="O61UkWd1W8Kgsa3I2fU6Cb9oU/hKMDK2tV+9ojJyXHk=" +2019-02-11 12:29:10.794 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:29:11.012 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-11 12:29:11.012 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments} +2019-02-11 12:29:11.012 [main] INFO - Response Code: 400 +2019-02-11 12:29:11.012 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_ddc56474-080a-49f4-827c-c4683f967427 +uniqueTransactionID: 1ec5fbef-e066-4fc2-be94-60a56db918b5 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Mon, 11 Feb 2019 06:59:10 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 41daa2de-6bb2-4453-a566-3690baea7159 +OkHttp-Sent-Millis: 1549868350841 +OkHttp-Received-Millis: 1549868351012 + +2019-02-11 12:29:11.012 [main] INFO - ********* END *********: +2019-02-11 12:29:28.613 [main] INFO - ********* START ********* +2019-02-11 12:29:28.629 [main] INFO - Authentication Type : http_signature +2019-02-11 12:29:28.629 [main] INFO - Request Type: DELETE +2019-02-11 12:29:28.629 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7010000000006721114, requestType=DELETE} +2019-02-11 12:29:28.629 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:29:28.676 [main] INFO - Date: Mon, 11 Feb 2019 06:59:28 GMT +2019-02-11 12:29:28.676 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:29:28.676 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ynmIAD3x3MACQNqLJy1FrBJ3I2xUgUmRjEohE3mKh6M=" +2019-02-11 12:29:28.676 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:29:29.723 [main] INFO - Request Body: null +2019-02-11 12:29:29.723 [main] INFO - Response Message: {"errors":[{"type":"notAvailable","message":"Token not available"}]} +2019-02-11 12:29:29.723 [main] INFO - Response Code: 410 +2019-02-11 12:29:29.723 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_e43b02c7-235e-40e5-a23b-c3f366099e02 +uniqueTransactionID: de18a588-622d-46b4-b2e0-d14eaae9e723 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 68 +Date: Mon, 11 Feb 2019 06:59:29 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 5808f9a1-987a-49e8-a3eb-020160f7b2c8 +OkHttp-Sent-Millis: 1549868369457 +OkHttp-Received-Millis: 1549868369692 + +2019-02-11 12:29:29.723 [main] INFO - ********* END *********: +2019-02-11 12:29:29.754 [main] INFO - ********* START ********* +2019-02-11 12:29:29.754 [main] INFO - Authentication Type : http_signature +2019-02-11 12:29:29.754 [main] INFO - Request Type: DELETE +2019-02-11 12:29:29.754 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546, requestType=DELETE} +2019-02-11 12:29:29.754 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:29:29.754 [main] INFO - Date: Mon, 11 Feb 2019 06:59:28 GMT +2019-02-11 12:29:29.754 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:29:29.754 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="SeRpjJkJwDHq+gvQ5DG/Bs+JDzRVZlrHxYIBWUAaZnE=" +2019-02-11 12:29:29.754 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:29:29.957 [main] INFO - Request Body: null +2019-02-11 12:29:29.957 [main] INFO - Response Message: Response{protocol=http/1.1, code=410, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000006721114} +2019-02-11 12:29:29.957 [main] INFO - Response Code: 404 +2019-02-11 12:29:29.957 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_741daa37-9f2e-47c0-b9c7-720a72650643 +uniqueTransactionID: 35f50d87-2503-428e-ba53-5ac55aa1fdbc +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 11 Feb 2019 06:59:29 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: ea1ab259-5c9c-4d59-b0f0-f400bcdb5007 +OkHttp-Sent-Millis: 1549868369770 +OkHttp-Received-Millis: 1549868369957 + +2019-02-11 12:29:29.957 [main] INFO - ********* END *********: +2019-02-11 12:29:51.926 [main] INFO - ********* START ********* +2019-02-11 12:29:51.926 [main] INFO - Authentication Type : http_signature +2019-02-11 12:29:51.926 [main] INFO - Request Type: DELETE +2019-02-11 12:29:51.941 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/80756F4698591109E05341588E0A4B95, requestType=DELETE} +2019-02-11 12:29:51.941 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:29:51.973 [main] INFO - Date: Mon, 11 Feb 2019 06:59:51 GMT +2019-02-11 12:29:51.973 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:29:51.973 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ShkKaDAqbVL3sWstbx2fCAkzpUIbGjROVYMHlFEi2+w=" +2019-02-11 12:29:51.973 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:29:53.066 [main] INFO - Request Body: null +2019-02-11 12:29:53.066 [main] INFO - Response Message: {"errors":[{"type":"notAvailable","message":"Token not available"}]} +2019-02-11 12:29:53.066 [main] INFO - Response Code: 410 +2019-02-11 12:29:53.066 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_40eb8387-c43d-413b-b18d-93d02417955a +uniqueTransactionID: 2181650f-6086-406d-86ed-6a70b65e098d +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 68 +Date: Mon, 11 Feb 2019 06:59:52 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: edc3dbdc-895e-4e37-9015-fce3b62a59ce +OkHttp-Sent-Millis: 1549868392801 +OkHttp-Received-Millis: 1549868393051 + +2019-02-11 12:29:53.066 [main] INFO - ********* END *********: +2019-02-11 12:29:53.113 [main] INFO - ********* START ********* +2019-02-11 12:29:53.113 [main] INFO - Authentication Type : http_signature +2019-02-11 12:29:53.113 [main] INFO - Request Type: DELETE +2019-02-11 12:29:53.113 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/76542645895678555464562155478555, requestType=DELETE} +2019-02-11 12:29:53.113 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:29:53.113 [main] INFO - Date: Mon, 11 Feb 2019 06:59:51 GMT +2019-02-11 12:29:53.113 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:29:53.113 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="0xzPqxs80nJcu17hki80qDJ2CoHX1btXuJAQmtph3TE=" +2019-02-11 12:29:53.113 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:29:53.301 [main] INFO - Request Body: null +2019-02-11 12:29:53.301 [main] INFO - Response Message: Response{protocol=http/1.1, code=410, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments/80756F4698591109E05341588E0A4B95} +2019-02-11 12:29:53.301 [main] INFO - Response Code: 404 +2019-02-11 12:29:53.301 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_e5224ebe-8c46-41dc-b998-89309113d3eb +uniqueTransactionID: 91670697-1755-4bdd-b9e6-09a5d032943c +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 11 Feb 2019 06:59:53 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 50630ac3-b607-4f12-a665-4c101e09983d +OkHttp-Sent-Millis: 1549868393129 +OkHttp-Received-Millis: 1549868393301 + +2019-02-11 12:29:53.301 [main] INFO - ********* END *********: +2019-02-11 12:30:14.750 [main] INFO - ********* START ********* +2019-02-11 12:30:14.750 [main] INFO - Authentication Type : http_signature +2019-02-11 12:30:14.750 [main] INFO - Request Type: GET +2019-02-11 12:30:14.750 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-11 12:30:14.765 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:30:14.797 [main] INFO - Date: Mon, 11 Feb 2019 07:00:14 GMT +2019-02-11 12:30:14.797 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:30:14.797 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="4cYHT0x7x10umT6Bua6UMhFLu24w+WZUunkafHRKVII=" +2019-02-11 12:30:14.797 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:30:16.375 [main] INFO - Request Body: null +2019-02-11 12:30:16.375 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-11 12:30:16.375 [main] INFO - Response Code: 200 +2019-02-11 12:30:16.375 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_0c374d47-76bd-4d50-a24a-0e048874faac +uniqueTransactionID: d5ff18c0-6b01-4e76-95b1-1b63eea15173 +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 131 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Mon, 11 Feb 2019 07:00:16 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: bafe095d-b7ce-43b4-99c5-56acb0c24f3d +OkHttp-Sent-Millis: 1549868415656 +OkHttp-Received-Millis: 1549868416109 + +2019-02-11 12:30:16.375 [main] INFO - ********* END *********: +2019-02-11 12:30:16.453 [main] INFO - ********* START ********* +2019-02-11 12:30:16.453 [main] INFO - Authentication Type : http_signature +2019-02-11 12:30:16.453 [main] INFO - Request Type: GET +2019-02-11 12:30:16.453 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-11 12:30:16.453 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:30:16.453 [main] INFO - Date: Mon, 11 Feb 2019 07:00:14 GMT +2019-02-11 12:30:16.453 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:30:16.453 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="q7MeyHd1fomTT0bJld/176FD8oXuuJcVdw5SRUmY6lQ=" +2019-02-11 12:30:16.453 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:30:16.656 [main] INFO - Request Body: null +2019-02-11 12:30:16.656 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-11 12:30:16.656 [main] INFO - Response Code: 404 +2019-02-11 12:30:16.656 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_500cc930-58d7-4301-9d71-a41dbfae403a +uniqueTransactionID: 8cef5149-7efe-4e29-a0d3-0b788e9f9e2e +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 11 Feb 2019 07:00:16 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 39f2d890-adf5-4a4b-bfdf-c84b13d56765 +OkHttp-Sent-Millis: 1549868416453 +OkHttp-Received-Millis: 1549868416656 + +2019-02-11 12:30:16.656 [main] INFO - ********* END *********: +2019-02-11 12:30:33.694 [main] INFO - ********* START ********* +2019-02-11 12:30:33.710 [main] INFO - Authentication Type : http_signature +2019-02-11 12:30:33.710 [main] INFO - Request Type: GET +2019-02-11 12:30:33.710 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7010000000016241111, requestType=GET} +2019-02-11 12:30:33.710 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:30:33.757 [main] INFO - Date: Mon, 11 Feb 2019 07:00:33 GMT +2019-02-11 12:30:33.757 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:30:33.757 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="VtxQ0pENTcctkvC/BH5CHsco6vVK/3s+RGpVX4vhWF4=" +2019-02-11 12:30:33.757 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:30:34.866 [main] INFO - Request Body: null +2019-02-11 12:30:34.866 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111} +2019-02-11 12:30:34.866 [main] INFO - Response Code: 200 +2019-02-11 12:30:34.866 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_800b4091-740b-4ff4-9c1c-004038f5533c +uniqueTransactionID: 5ccf9fa1-5df7-421e-b56f-5f6227179e29 +Pragma: no-cache +X-Application-Context: application +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +Token-Class: instrumentIdentifier +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 11 Feb 2019 07:00:34 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: ba44a428-afeb-4758-aa4c-e898765e4c54 +OkHttp-Sent-Millis: 1549868434601 +OkHttp-Received-Millis: 1549868434835 + +2019-02-11 12:30:34.866 [main] INFO - ********* END *********: +2019-02-11 12:30:34.929 [main] INFO - ********* START ********* +2019-02-11 12:30:34.929 [main] INFO - Authentication Type : http_signature +2019-02-11 12:30:34.929 [main] INFO - Request Type: GET +2019-02-11 12:30:34.929 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546, requestType=GET} +2019-02-11 12:30:34.929 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:30:34.929 [main] INFO - Date: Mon, 11 Feb 2019 07:00:33 GMT +2019-02-11 12:30:34.929 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:30:34.929 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="GuDaGvjoj5QG/b7AP0b66clAD6vMGEOiG68tYyTx3TE=" +2019-02-11 12:30:34.929 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:30:35.132 [main] INFO - Request Body: null +2019-02-11 12:30:35.132 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111} +2019-02-11 12:30:35.132 [main] INFO - Response Code: 404 +2019-02-11 12:30:35.132 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_32ae67cb-3880-4003-b9df-e7c69c8de117 +uniqueTransactionID: 6eec6b0d-fded-42d0-b4b2-46d16ebf0476 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 11 Feb 2019 07:00:35 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 465693fd-8cfe-4fbb-b3af-0838b7465690 +OkHttp-Sent-Millis: 1549868434929 +OkHttp-Received-Millis: 1549868435132 + +2019-02-11 12:30:35.132 [main] INFO - ********* END *********: +2019-02-11 12:30:51.107 [main] INFO - ********* START ********* +2019-02-11 12:30:51.122 [main] INFO - Authentication Type : http_signature +2019-02-11 12:30:51.122 [main] INFO - Request Type: PATCH +2019-02-11 12:30:51.122 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654, requestType=PATCH} +2019-02-11 12:30:51.122 [main] INFO - Digest: SHA-256=8WWAL+hDoWtF/EyxX3M/HpCKmkkPnnqbqKxbc3iH/JY= +2019-02-11 12:30:51.169 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:30:51.169 [main] INFO - Date: Mon, 11 Feb 2019 07:00:50 GMT +2019-02-11 12:30:51.169 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:30:51.169 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="YKMU2J3npJEDiRR29zFxBoKNfLe1MeOGOxktDHATHFU=" +2019-02-11 12:30:51.169 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:30:52.310 [main] INFO - Request Body: {"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-11 12:30:52.310 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654} +2019-02-11 12:30:52.310 [main] INFO - Response Code: 200 +2019-02-11 12:30:52.310 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_db2936c3-762e-48db-9781-962ab3ad4732 +uniqueTransactionID: bdb226c4-5002-4e82-a921-06bb046dec41 +Pragma: no-cache +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654 +ETag: "wxiWrNFI1UPp7W3TDn/B8HXcRxfryIfMmeWztixM+cQ=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 11 Feb 2019 07:00:51 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 32767c8b-0db1-46b4-a084-721d24e223d5 +OkHttp-Sent-Millis: 1549868452060 +OkHttp-Received-Millis: 1549868452294 + +2019-02-11 12:30:52.310 [main] INFO - ********* END *********: +2019-02-11 12:30:52.357 [main] INFO - ********* START ********* +2019-02-11 12:30:52.357 [main] INFO - Authentication Type : http_signature +2019-02-11 12:30:52.357 [main] INFO - Request Type: PATCH +2019-02-11 12:30:52.357 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000123455, requestType=PATCH} +2019-02-11 12:30:52.357 [main] INFO - Digest: SHA-256=8WWAL+hDoWtF/EyxX3M/HpCKmkkPnnqbqKxbc3iH/JY= +2019-02-11 12:30:52.357 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:30:52.357 [main] INFO - Date: Mon, 11 Feb 2019 07:00:50 GMT +2019-02-11 12:30:52.357 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:30:52.357 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="EZWRfmDFD1/hR75Uv3ljXdnY9034oLZcWulGS4VjAZM=" +2019-02-11 12:30:52.357 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:30:52.591 [main] INFO - Request Body: {"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-11 12:30:52.591 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654} +2019-02-11 12:30:52.591 [main] INFO - Response Code: 404 +2019-02-11 12:30:52.591 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_bf1b3d9a-7f59-4014-a7c5-a0cc7d1dcf33 +uniqueTransactionID: c29635c8-74a6-45d7-82ce-86e307f64108 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 11 Feb 2019 07:00:51 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: b035d1a6-74ab-4ca8-b4ed-53a136738201 +OkHttp-Sent-Millis: 1549868452372 +OkHttp-Received-Millis: 1549868452591 + +2019-02-11 12:30:52.591 [main] INFO - ********* END *********: +2019-02-11 12:31:09.966 [main] INFO - ********* START ********* +2019-02-11 12:31:09.982 [main] INFO - Authentication Type : http_signature +2019-02-11 12:31:09.982 [main] INFO - Request Type: PATCH +2019-02-11 12:31:09.982 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603, requestType=PATCH} +2019-02-11 12:31:09.982 [main] INFO - Digest: SHA-256=JVhG6cWRtiU/QoMjxKqN0Sqpzxt5BxE40ELswsMV4eU= +2019-02-11 12:31:10.013 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:31:10.013 [main] INFO - Date: Mon, 11 Feb 2019 07:01:09 GMT +2019-02-11 12:31:10.013 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:31:10.013 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="cJ0XODtikemZE2Bq86xTIxiQEODDnap+uRSznBmueCw=" +2019-02-11 12:31:10.013 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:31:11.185 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-11 12:31:11.185 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603} +2019-02-11 12:31:11.185 [main] INFO - Response Code: 200 +2019-02-11 12:31:11.185 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_0829616b-8de1-411b-a06b-4839c3763d16 +uniqueTransactionID: 589ff6e2-3484-45d2-8ca3-aa11d4dbc603 +Pragma: no-cache +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603 +ETag: "05kx6u1ESFU48BNPnLWXNpLsJSfyXUAp9mL/mgIOFfk=" +instrumentidentifier-created: false +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1142 +Date: Mon, 11 Feb 2019 07:01:11 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 9a7320bb-fba9-4e5b-a7e5-a5cdb088f3d8 +OkHttp-Sent-Millis: 1549868470904 +OkHttp-Received-Millis: 1549868471170 + +2019-02-11 12:31:11.185 [main] INFO - ********* END *********: +2019-02-11 12:31:11.216 [main] INFO - ********* START ********* +2019-02-11 12:31:11.216 [main] INFO - Authentication Type : http_signature +2019-02-11 12:31:11.216 [main] INFO - Request Type: PATCH +2019-02-11 12:31:11.216 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B124123456789545854565, requestType=PATCH} +2019-02-11 12:31:11.216 [main] INFO - Digest: SHA-256=JVhG6cWRtiU/QoMjxKqN0Sqpzxt5BxE40ELswsMV4eU= +2019-02-11 12:31:11.216 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:31:11.216 [main] INFO - Date: Mon, 11 Feb 2019 07:01:09 GMT +2019-02-11 12:31:11.216 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:31:11.216 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="+thnXUdsSQFVS1d6oCSNlSnaM6Uaf9UD4sjC8y/SoC8=" +2019-02-11 12:31:11.216 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:31:11.435 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-11 12:31:11.435 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603} +2019-02-11 12:31:11.435 [main] INFO - Response Code: 404 +2019-02-11 12:31:11.435 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_b834f723-1035-4e96-aaac-5f92a760d7fb +uniqueTransactionID: e93adfab-8364-47ad-be03-74480c7f495f +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 11 Feb 2019 07:01:11 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 57201f02-ee10-46d8-9f1d-41b0997ac937 +OkHttp-Sent-Millis: 1549868471232 +OkHttp-Received-Millis: 1549868471435 + +2019-02-11 12:31:11.435 [main] INFO - ********* END *********: +2019-02-11 12:31:44.256 [main] INFO - ********* START ********* +2019-02-11 12:31:44.256 [main] INFO - Authentication Type : http_signature +2019-02-11 12:31:44.270 [main] INFO - Request Type: GET +2019-02-11 12:31:44.270 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches/Owcyk6pl, requestType=GET} +2019-02-11 12:31:44.270 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:31:44.301 [main] INFO - Date: Mon, 11 Feb 2019 07:01:43 GMT +2019-02-11 12:31:44.301 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:31:44.301 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="qqfNiAmddDLwW3KkmQC37eGxRoMC/1DkUD8fQ/hkz8Q=" +2019-02-11 12:31:44.301 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:31:45.410 [main] INFO - Request Body: null +2019-02-11 12:31:45.410 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches/Owcyk6pl} +2019-02-11 12:31:45.410 [main] INFO - Response Code: 200 +2019-02-11 12:31:45.426 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_8c0c78da-87f6-4e7c-a25d-8ab9afbc6916 +X-OPNET-Transaction-Trace: a2_91a93ee7-9db0-405a-be56-43c6f417330d +Cache-Control: no-cache, no-transform +ETag: "-1139639258" +Expires: Mon, 11 Feb 2019 07:01:45 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:01:45 GMT +X-Cnection: close +v-c-correlation-id: 31d692b4-6520-4e26-abfb-4748212750b5 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868505160 +OkHttp-Received-Millis: 1549868505395 + +2019-02-11 12:31:45.426 [main] INFO - ********* END *********: +2019-02-11 12:31:45.457 [main] INFO - ********* START ********* +2019-02-11 12:31:45.457 [main] INFO - Authentication Type : http_signature +2019-02-11 12:31:45.457 [main] INFO - Request Type: GET +2019-02-11 12:31:45.457 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches/CYBS123, requestType=GET} +2019-02-11 12:31:45.457 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:31:45.457 [main] INFO - Date: Mon, 11 Feb 2019 07:01:43 GMT +2019-02-11 12:31:45.457 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:31:45.457 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="O4FZ3s9PxK4uNKbRMUmpFQuJAw+hdxfbWEfiBFu5+SE=" +2019-02-11 12:31:45.457 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:31:45.676 [main] INFO - Request Body: null +2019-02-11 12:31:45.676 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches/Owcyk6pl} +2019-02-11 12:31:45.676 [main] INFO - Response Code: 404 +2019-02-11 12:31:45.692 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e6af1809-c2db-4fd6-96a8-651306676571 +Cache-Control: no-cache, no-transform +ETag: "-975452876" +Expires: Mon, 11 Feb 2019 07:01:45 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:01:45 GMT +X-Cnection: close +v-c-correlation-id: 12346171-e046-49c7-8dad-08ac6b31133a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868505457 +OkHttp-Received-Millis: 1549868505676 + +2019-02-11 12:31:45.692 [main] INFO - ********* END *********: +2019-02-11 12:32:05.922 [main] INFO - ********* START ********* +2019-02-11 12:32:05.938 [main] INFO - Authentication Type : http_signature +2019-02-11 12:32:05.938 [main] INFO - Request Type: GET +2019-02-11 12:32:05.938 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-11 12:32:05.969 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:32:05.969 [main] INFO - Date: Mon, 11 Feb 2019 07:02:05 GMT +2019-02-11 12:32:05.969 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:32:05.969 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="qvB+bF0hjtjFny1eoGcIMwVRedXeiuPyxuCt20pgzzo=" +2019-02-11 12:32:05.969 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:32:07.032 [main] INFO - Request Body: null +2019-02-11 12:32:07.032 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z} +2019-02-11 12:32:07.032 [main] INFO - Response Code: 200 +2019-02-11 12:32:07.032 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_29db13b1-0c85-42d4-aa5d-e1b1f09e0298 +X-OPNET-Transaction-Trace: a2_278e2baf-fb0a-452a-8576-74588ae50602 +Cache-Control: no-cache, no-transform +ETag: "1798404362" +Expires: Mon, 11 Feb 2019 07:02:06 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:02:06 GMT +X-Cnection: close +v-c-correlation-id: d52f2047-647c-4b4c-b0ba-34ea9ff964c5 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868526782 +OkHttp-Received-Millis: 1549868527000 + +2019-02-11 12:32:07.032 [main] INFO - ********* END *********: +2019-02-11 12:32:07.078 [main] INFO - ********* START ********* +2019-02-11 12:32:07.078 [main] INFO - Authentication Type : http_signature +2019-02-11 12:32:07.078 [main] INFO - Request Type: GET +2019-02-11 12:32:07.078 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2019-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-11 12:32:07.078 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:32:07.078 [main] INFO - Date: Mon, 11 Feb 2019 07:02:05 GMT +2019-02-11 12:32:07.078 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:32:07.078 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="GgibMqLqicrrIyOsn+UBA2O+W+44s/JJ9onb23ANgZY=" +2019-02-11 12:32:07.078 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:32:07.297 [main] INFO - Request Body: null +2019-02-11 12:32:07.297 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z} +2019-02-11 12:32:07.297 [main] INFO - Response Code: 400 +2019-02-11 12:32:07.297 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_565b758a-54c1-44b7-ae58-ce64cbe048ef +X-OPNET-Transaction-Trace: a2_7077165f-f1cf-44bc-b02c-598a980de263 +Cache-Control: no-cache, no-transform +ETag: "-1732043611" +Expires: Mon, 11 Feb 2019 07:02:07 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:02:06 GMT +X-Cnection: close +v-c-correlation-id: 12114f07-fa35-4869-8991-b929d243582e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868527078 +OkHttp-Received-Millis: 1549868527282 + +2019-02-11 12:32:07.297 [main] INFO - ********* END *********: +2019-02-11 12:32:30.751 [main] INFO - ********* START ********* +2019-02-11 12:32:30.767 [main] INFO - Authentication Type : http_signature +2019-02-11 12:32:30.767 [main] INFO - Request Type: GET +2019-02-11 12:32:30.767 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/transactions/5408386919326811103004, requestType=GET} +2019-02-11 12:32:30.767 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:32:30.798 [main] INFO - Date: Mon, 11 Feb 2019 07:02:30 GMT +2019-02-11 12:32:30.798 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:32:30.798 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="lo5ab8tFRfN/ckiSO81a/J9TQeCM34iexIs03NNax/U=" +2019-02-11 12:32:30.798 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:32:32.704 [main] INFO - Request Body: null +2019-02-11 12:32:32.704 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tss/v2/transactions/5408386919326811103004} +2019-02-11 12:32:32.704 [main] INFO - Response Code: 200 +2019-02-11 12:32:32.704 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_c7569344-7853-47c1-9dde-6fc0da52d7b2 +X-OPNET-Transaction-Trace: a2_c231f257-8ba3-4673-adea-6de24453f67d +Cache-Control: no-cache, no-transform +ETag: "-1543210418" +Expires: Mon, 11 Feb 2019 07:02:32 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:02:32 GMT +X-Cnection: close +v-c-correlation-id: bed5c1e0-da5b-4500-9413-1c3dd1226dd6 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868551610 +OkHttp-Received-Millis: 1549868552689 + +2019-02-11 12:32:32.704 [main] INFO - ********* END *********: +2019-02-11 12:32:32.970 [main] INFO - ********* START ********* +2019-02-11 12:32:32.970 [main] INFO - Authentication Type : http_signature +2019-02-11 12:32:32.970 [main] INFO - Request Type: GET +2019-02-11 12:32:32.970 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/transactions/1234567898745651235454, requestType=GET} +2019-02-11 12:32:32.970 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:32:32.970 [main] INFO - Date: Mon, 11 Feb 2019 07:02:30 GMT +2019-02-11 12:32:32.970 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:32:32.970 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="6R/O6FlVWoKCxgCoiwek+gykATiG44neUV3yQVxlT5Q=" +2019-02-11 12:32:32.970 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:32:33.673 [main] INFO - Request Body: null +2019-02-11 12:32:33.673 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tss/v2/transactions/5408386919326811103004} +2019-02-11 12:32:33.673 [main] INFO - Response Code: 404 +2019-02-11 12:32:33.673 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_65ca453f-1b42-4f56-b57a-0234e5ca08e9 +Cache-Control: no-cache, no-transform +ETag: "1151868788" +Expires: Mon, 11 Feb 2019 07:02:33 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:02:33 GMT +X-Cnection: close +v-c-correlation-id: 25dc0531-8f8f-4f7e-9eba-11713083782d +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868552970 +OkHttp-Received-Millis: 1549868553673 + +2019-02-11 12:32:33.673 [main] INFO - ********* END *********: +2019-02-11 12:32:50.231 [main] INFO - ********* START ********* +2019-02-11 12:32:50.246 [main] INFO - Authentication Type : http_signature +2019-02-11 12:32:50.246 [main] INFO - Request Type: POST +2019-02-11 12:32:50.246 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-11 12:32:50.246 [main] INFO - Digest: SHA-256=yv1HHIWB0ukuo0JfNKnkDCUcVm1OrwOQ7U4IgWX3zTs= +2019-02-11 12:32:50.246 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:32:50.246 [main] INFO - Date: Mon, 11 Feb 2019 07:02:49 GMT +2019-02-11 12:32:50.246 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:32:50.246 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="8M9Og6pWTbMQnSmBQyO01OeLzoZBREsJmybTPk+moKw=" +2019-02-11 12:32:50.246 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:32:52.715 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientReferenceInformation.code:12345","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-11 12:32:52.715 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches} +2019-02-11 12:32:52.715 [main] INFO - Response Code: 201 +2019-02-11 12:32:52.715 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_3b749480-077a-46f8-b5bb-5639f0d62d0d +X-OPNET-Transaction-Trace: a2_0b59cc5e-33b6-41cb-981b-48df78b943ad +Cache-Control: no-cache, no-transform +ETag: "-578559543" +Expires: Mon, 11 Feb 2019 07:02:52 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 11 Feb 2019 07:02:52 GMT +X-Cnection: close +v-c-correlation-id: bffdf30c-c64f-4150-bf39-e67d3181edf1 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868571059 +OkHttp-Received-Millis: 1549868572668 + +2019-02-11 12:32:52.715 [main] INFO - ********* END *********: +2019-02-11 12:32:52.887 [main] INFO - ********* START ********* +2019-02-11 12:32:52.887 [main] INFO - Authentication Type : http_signature +2019-02-11 12:32:52.887 [main] INFO - Request Type: POST +2019-02-11 12:32:52.887 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-11 12:32:52.887 [main] INFO - Digest: SHA-256=MvPxo/GwSzPCnxUumNRkM4jYV4dEdR0iQ6mljgTLqrs= +2019-02-11 12:32:52.887 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:32:52.887 [main] INFO - Date: Mon, 11 Feb 2019 07:02:49 GMT +2019-02-11 12:32:52.887 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:32:52.887 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="oQLh/QnJfwqLjBO4Wd3mNtG16WmTGjGtCFc4gzjVZX0=" +2019-02-11 12:32:52.887 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:32:53.153 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientRefeInfo.code:52465","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-11 12:32:53.153 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches} +2019-02-11 12:32:53.153 [main] INFO - Response Code: 400 +2019-02-11 12:32:53.153 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_11e1ae26-f924-45f3-8daa-bed25df535f5 +Cache-Control: no-cache, no-transform +ETag: "-652493791" +Expires: Mon, 11 Feb 2019 07:02:53 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 11 Feb 2019 07:02:53 GMT +X-Cnection: close +v-c-correlation-id: 4c5029d0-bd31-4dcb-aa6f-38b2848735e4 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868572918 +OkHttp-Received-Millis: 1549868573153 + +2019-02-11 12:32:53.153 [main] INFO - ********* END *********: +2019-02-11 12:33:10.150 [main] INFO - ********* START ********* +2019-02-11 12:33:10.166 [main] INFO - Authentication Type : http_signature +2019-02-11 12:33:10.166 [main] INFO - Request Type: GET +2019-02-11 12:33:10.166 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc, requestType=GET} +2019-02-11 12:33:10.166 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:33:10.197 [main] INFO - Date: Mon, 11 Feb 2019 07:03:09 GMT +2019-02-11 12:33:10.197 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:33:10.197 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="lD0EOSzQlgFsc7HNaIWA/B9q0YAEJTNlpkNXMIycO8U=" +2019-02-11 12:33:10.197 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:33:11.370 [main] INFO - Request Body: null +2019-02-11 12:33:11.370 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc"}},"invalidFields":null,"message":"search Id not fount.","messageKey":null,"missingFields":null} +2019-02-11 12:33:11.370 [main] INFO - Response Code: 400 +2019-02-11 12:33:11.370 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b7d998f1-0524-4f87-b67d-d41883d4d9f1 +X-OPNET-Transaction-Trace: a2_4405479a-9144-4876-a9bd-ba5f61210736 +Cache-Control: no-cache, no-transform +ETag: "-1662750822" +Expires: Mon, 11 Feb 2019 07:03:11 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 11 Feb 2019 07:03:11 GMT +X-Cnection: close +v-c-correlation-id: b775bbf2-dc50-4e94-bef5-2afeaaaae0f8 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868591119 +OkHttp-Received-Millis: 1549868591338 + +2019-02-11 12:33:11.370 [main] INFO - ********* END *********: +2019-02-11 12:33:11.414 [main] INFO - ********* START ********* +2019-02-11 12:33:11.414 [main] INFO - Authentication Type : http_signature +2019-02-11 12:33:11.414 [main] INFO - Request Type: GET +2019-02-11 12:33:11.414 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/343hdgff-88uh-23hh-b6d6-5dfjhdtsufh8, requestType=GET} +2019-02-11 12:33:11.414 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:33:11.414 [main] INFO - Date: Mon, 11 Feb 2019 07:03:09 GMT +2019-02-11 12:33:11.414 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:33:11.414 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="m8BvnHA/vPonYfuBl1cVNJfEDnMwtFbMtqXKSSpK6zQ=" +2019-02-11 12:33:11.414 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:33:11.633 [main] INFO - Request Body: null +2019-02-11 12:33:11.633 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc} +2019-02-11 12:33:11.633 [main] INFO - Response Code: 404 +2019-02-11 12:33:11.633 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_f6c84d46-973d-4313-8f49-6c53486b67a5 +X-OPNET-Transaction-Trace: a2_e225ed97-0925-4cb5-b046-1440d7022d94 +X-OPNET-Transaction-Trace: a2_452b5e12-4f79-49e5-9f12-fd81735c6a19 +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Content-Length: 0 +Date: Mon, 11 Feb 2019 07:03:11 GMT +X-Cnection: close +v-c-correlation-id: 1a8fae4c-09d8-46f7-b63d-0cd8816fbc0a +OkHttp-Sent-Millis: 1549868591414 +OkHttp-Received-Millis: 1549868591633 + +2019-02-11 12:33:11.633 [main] INFO - ********* END *********: +2019-02-11 12:33:37.389 [main] INFO - ********* START ********* +2019-02-11 12:33:37.389 [main] INFO - Authentication Type : http_signature +2019-02-11 12:33:37.389 [main] INFO - Request Type: GET +2019-02-11 12:33:37.389 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-11 12:33:37.405 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:33:37.436 [main] INFO - Date: Mon, 11 Feb 2019 07:03:37 GMT +2019-02-11 12:33:37.436 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:33:37.436 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="mhhnzBPYeHP6MzHUomcMAdYtzPD9zjcFvqPcY0rV9As=" +2019-02-11 12:33:37.436 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:33:38.717 [main] INFO - Request Body: null +2019-02-11 12:33:38.717 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-11 12:33:38.717 [main] INFO - Response Code: 200 +2019-02-11 12:33:38.717 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_5cb8fc79-aed6-416a-afac-a1c7300f3f83 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:03:38 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 66eec1de-1db5-4cc0-b7cc-9ecca1792d92 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868618405 +OkHttp-Received-Millis: 1549868618702 + +2019-02-11 12:33:38.717 [main] INFO - ********* END *********: +2019-02-11 12:33:38.858 [main] INFO - ********* START ********* +2019-02-11 12:33:38.858 [main] INFO - Authentication Type : http_signature +2019-02-11 12:33:38.858 [main] INFO - Request Type: GET +2019-02-11 12:33:38.858 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testre&roleId=admin, requestType=GET} +2019-02-11 12:33:38.858 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:33:38.858 [main] INFO - Date: Mon, 11 Feb 2019 07:03:37 GMT +2019-02-11 12:33:38.858 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:33:38.858 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="fBk38FWMSu2d8NdmIRN58zPGR/xtj4sbJTz5ngJth8I=" +2019-02-11 12:33:38.858 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:33:39.108 [main] INFO - Request Body: null +2019-02-11 12:33:39.108 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-11 12:33:39.108 [main] INFO - Response Code: 401 +2019-02-11 12:33:39.108 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_ce73f1bc-4456-42c7-8390-5a485ddb59b6 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:03:39 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 98b4d4a4-ec54-4536-865d-02447b56e8a1 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868618858 +OkHttp-Received-Millis: 1549868619108 + +2019-02-11 12:33:39.108 [main] INFO - ********* END *********: +2019-02-11 12:37:51.511 [main] INFO - ********* START ********* +2019-02-11 12:37:51.527 [main] INFO - Authentication Type : http_signature +2019-02-11 12:37:51.527 [main] INFO - Request Type: POST +2019-02-11 12:37:51.527 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-11 12:37:51.527 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-11 12:37:51.605 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:37:51.605 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:37:51.605 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:37:51.605 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="HSkKvT0rCraYiIYrElxDnMrxnVvRklgOiHUvsMcExmc=" +2019-02-11 12:37:51.605 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:37:53.089 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-11 12:37:53.089 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-11 12:37:53.089 [main] INFO - Response Code: 201 +2019-02-11 12:37:53.089 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 377ms +v-c-correlation-id: aba15651-d352-4860-aed6-f151d5e52e74 +OkHttp-Sent-Millis: 1549868872495 +OkHttp-Received-Millis: 1549868873074 + +2019-02-11 12:37:53.089 [main] INFO - ********* END *********: +2019-02-11 12:37:53.199 [main] INFO - ********* START ********* +2019-02-11 12:37:53.199 [main] INFO - Authentication Type : http_signature +2019-02-11 12:37:53.199 [main] INFO - Request Type: POST +2019-02-11 12:37:53.199 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-11 12:37:53.199 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-11 12:37:53.199 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:37:53.199 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:37:53.199 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:37:53.199 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="fqgPWcDDAKi1mjj7Vu0feUIn1dYkStTuMmfrwjZQ5Js=" +2019-02-11 12:37:53.199 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:37:53.730 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-11 12:37:53.730 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-11 12:37:53.730 [main] INFO - Response Code: 201 +2019-02-11 12:37:53.730 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 328ms +v-c-correlation-id: 9f5bace6-c364-4d30-863f-2378ca8dafe5 +OkHttp-Sent-Millis: 1549868873214 +OkHttp-Received-Millis: 1549868873730 + +2019-02-11 12:37:53.730 [main] INFO - ********* END *********: +2019-02-11 12:37:53.745 [main] INFO - ********* START ********* +2019-02-11 12:37:53.745 [main] INFO - Authentication Type : http_signature +2019-02-11 12:37:53.745 [main] INFO - Request Type: POST +2019-02-11 12:37:53.745 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-11 12:37:53.745 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-11 12:37:53.745 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:37:53.745 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:37:53.745 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:37:53.745 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="nP/Aeh/y+OEVt07ibNefm54EvSQi8+mFrgMRbyxRWOI=" +2019-02-11 12:37:53.745 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:37:54.245 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-11 12:37:54.245 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/} +2019-02-11 12:37:54.245 [main] INFO - Response Code: 400 +2019-02-11 12:37:54.245 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 299ms +v-c-correlation-id: 5a8d0b75-ab45-4391-9a82-68b7af6ca4ec +OkHttp-Sent-Millis: 1549868873761 +OkHttp-Received-Millis: 1549868874245 + +2019-02-11 12:37:54.245 [main] INFO - ********* END *********: +2019-02-11 12:37:54.324 [main] INFO - ********* START ********* +2019-02-11 12:37:54.324 [main] INFO - Authentication Type : http_signature +2019-02-11 12:37:54.324 [main] INFO - Request Type: POST +2019-02-11 12:37:54.324 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-02-11 12:37:54.324 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-02-11 12:37:54.324 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:37:54.324 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:37:54.324 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:37:54.324 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="hixJGkJ7s9FpQFF78Bx4VVEL1ig+8pfY20RxPBQs+hg=" +2019-02-11 12:37:54.324 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:37:54.902 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-11 12:37:54.902 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207982366112103002/captures} +2019-02-11 12:37:54.902 [main] INFO - Response Code: 201 +2019-02-11 12:37:54.902 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 377ms +v-c-correlation-id: 65846364-7bf4-483b-b8fc-3965b658bb56 +OkHttp-Sent-Millis: 1549868874339 +OkHttp-Received-Millis: 1549868874902 + +2019-02-11 12:37:54.902 [main] INFO - ********* END *********: +2019-02-11 12:37:54.949 [main] INFO - ********* START ********* +2019-02-11 12:37:54.949 [main] INFO - Authentication Type : http_signature +2019-02-11 12:37:54.949 [main] INFO - Request Type: POST +2019-02-11 12:37:54.949 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-02-11 12:37:54.949 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-02-11 12:37:54.949 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:37:54.949 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:37:54.949 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:37:54.949 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="GFZ1xcKQJgHi438CFi+5ODkeeQwzLkej/n4pMSkRXSE=" +2019-02-11 12:37:54.949 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:37:55.480 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-11 12:37:55.480 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-11 12:37:55.480 [main] INFO - Response Code: 201 +2019-02-11 12:37:55.480 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 304ms +v-c-correlation-id: 5e155ef3-34ae-48c0-852e-de832a51b1e4 +OkHttp-Sent-Millis: 1549868874964 +OkHttp-Received-Millis: 1549868875480 + +2019-02-11 12:37:55.480 [main] INFO - ********* END *********: +2019-02-11 12:37:55.495 [main] INFO - ********* START ********* +2019-02-11 12:37:55.495 [main] INFO - Authentication Type : http_signature +2019-02-11 12:37:55.495 [main] INFO - Request Type: POST +2019-02-11 12:37:55.495 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-02-11 12:37:55.495 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-02-11 12:37:55.495 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:37:55.495 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:37:55.495 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:37:55.495 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="asOnOPKwPkeGr08s4YcmWraDRjK55kQptFSvKs3rTDE=" +2019-02-11 12:37:55.511 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:37:56.027 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-11 12:37:56.027 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-11 12:37:56.027 [main] INFO - Response Code: 400 +2019-02-11 12:37:56.027 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 308ms +v-c-correlation-id: cd5fb897-9e75-442d-9a27-05f4a23e3653 +OkHttp-Sent-Millis: 1549868875527 +OkHttp-Received-Millis: 1549868876027 + +2019-02-11 12:37:56.027 [main] INFO - ********* END *********: +2019-02-11 12:37:56.074 [main] INFO - ********* START ********* +2019-02-11 12:37:56.074 [main] INFO - Authentication Type : http_signature +2019-02-11 12:37:56.074 [main] INFO - Request Type: POST +2019-02-11 12:37:56.074 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490042042466283603005/reversals, requestType=POST} +2019-02-11 12:37:56.074 [main] INFO - Digest: SHA-256=+nVNWFcK5wejoED726n/0CNM4MAETj2u1DH6s02VUIk= +2019-02-11 12:37:56.074 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:37:56.074 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:37:56.074 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:37:56.074 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="mBw+g/msQEe1HE/3j97/9L7sIQDE/K6sbEmYCSYuLBI=" +2019-02-11 12:37:56.074 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:37:56.636 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"100.00"},"reason":"testing"}} +2019-02-11 12:37:56.636 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/1234567898726221234599/captures} +2019-02-11 12:37:56.636 [main] INFO - Response Code: 400 +2019-02-11 12:37:56.636 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 194 +X-Cnection: close +x-response-time: 378ms +v-c-correlation-id: 7fbbf177-d47c-4895-9f87-3020fe6926f0 +OkHttp-Sent-Millis: 1549868876089 +OkHttp-Received-Millis: 1549868876636 + +2019-02-11 12:37:56.636 [main] INFO - ********* END *********: +2019-02-11 12:37:56.667 [main] INFO - ********* START ********* +2019-02-11 12:37:56.667 [main] INFO - Authentication Type : http_signature +2019-02-11 12:37:56.667 [main] INFO - Request Type: POST +2019-02-11 12:37:56.667 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490042042466283603005/reversals, requestType=POST} +2019-02-11 12:37:56.667 [main] INFO - Digest: SHA-256=pAGeIXg2n5jV3A6rwpZbKaLbAzo/U73Yk5w2Zu0QX4M= +2019-02-11 12:37:56.667 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:37:56.667 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:37:56.667 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:37:56.667 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="0ZcX2mr6UHkz6mwbnuz5+xkUYl68/66NO6bs1ddG/H0=" +2019-02-11 12:37:56.667 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:37:57.277 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"200"},"reason":"testing"}} +2019-02-11 12:37:57.277 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490042042466283603005/reversals} +2019-02-11 12:37:57.277 [main] INFO - Response Code: 400 +2019-02-11 12:37:57.277 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 264 +X-Cnection: close +x-response-time: 412ms +v-c-correlation-id: bc2e4703-5e94-4ded-863b-0f181104a1d6 +OkHttp-Sent-Millis: 1549868876684 +OkHttp-Received-Millis: 1549868877277 + +2019-02-11 12:37:57.277 [main] INFO - ********* END *********: +2019-02-11 12:37:57.294 [main] INFO - ********* START ********* +2019-02-11 12:37:57.294 [main] INFO - Authentication Type : http_signature +2019-02-11 12:37:57.308 [main] INFO - Request Type: POST +2019-02-11 12:37:57.308 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/reversals, requestType=POST} +2019-02-11 12:37:57.308 [main] INFO - Digest: SHA-256=EmbUNBQ6YMXxCj2Ldp/J/yZkqbcqi/7w3Qh/cGHWZ54= +2019-02-11 12:37:57.308 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:37:57.308 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:37:57.308 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:37:57.308 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="7lAxuFDAiQVmM/NEOCEOijDut75szSfzopbvtiAQBs8=" +2019-02-11 12:37:57.308 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:37:57.824 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"102.21"},"reason":"testing"}} +2019-02-11 12:37:57.824 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490042042466283603005/reversals} +2019-02-11 12:37:57.824 [main] INFO - Response Code: 400 +2019-02-11 12:37:57.824 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 306ms +v-c-correlation-id: d7ab74b4-e7b7-4e36-9b59-df3d00aaffac +OkHttp-Sent-Millis: 1549868877324 +OkHttp-Received-Millis: 1549868877824 + +2019-02-11 12:37:57.824 [main] INFO - ********* END *********: +2019-02-11 12:37:57.870 [main] INFO - ********* START ********* +2019-02-11 12:37:57.870 [main] INFO - Authentication Type : http_signature +2019-02-11 12:37:57.870 [main] INFO - Request Type: POST +2019-02-11 12:37:57.870 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-11 12:37:57.870 [main] INFO - Digest: SHA-256=zxGx3jITWtX9QIzslmEjtRBRSY1fB9P+o4iF5tlE4Oo= +2019-02-11 12:37:57.870 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:37:57.870 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:37:57.870 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:37:57.870 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="kpHmNnIeM3WA09q/S3tluz3Clw8NnNIcjaq492zsoLE=" +2019-02-11 12:37:57.870 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:37:58.386 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-11 12:37:58.386 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/credits/} +2019-02-11 12:37:58.386 [main] INFO - Response Code: 201 +2019-02-11 12:37:58.386 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 463 +X-Cnection: close +x-response-time: 324ms +v-c-correlation-id: f19b51bd-a3e2-47a3-8e0f-54fb5edb1e3a +OkHttp-Sent-Millis: 1549868877886 +OkHttp-Received-Millis: 1549868878386 + +2019-02-11 12:37:58.386 [main] INFO - ********* END *********: +2019-02-11 12:37:58.417 [main] INFO - ********* START ********* +2019-02-11 12:37:58.417 [main] INFO - Authentication Type : http_signature +2019-02-11 12:37:58.417 [main] INFO - Request Type: POST +2019-02-11 12:37:58.417 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-11 12:37:58.417 [main] INFO - Digest: SHA-256=uT4XJKlq0xIzVkS9dGPs0tcDwyAp7ONh+358ol986cw= +2019-02-11 12:37:58.417 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:37:58.417 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:37:58.417 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:37:58.417 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="PeqJmGA7znNNL2nySOlS0RjaNtqzr0RII76BuCHv0qY=" +2019-02-11 12:37:58.417 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:37:58.964 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-11 12:37:58.964 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/credits/} +2019-02-11 12:37:58.964 [main] INFO - Response Code: 201 +2019-02-11 12:37:58.964 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 463 +X-Cnection: close +x-response-time: 344ms +v-c-correlation-id: 2c27bc8b-9326-43fb-9515-c39ad9b570d9 +OkHttp-Sent-Millis: 1549868878433 +OkHttp-Received-Millis: 1549868878964 + +2019-02-11 12:37:58.964 [main] INFO - ********* END *********: +2019-02-11 12:37:58.980 [main] INFO - ********* START ********* +2019-02-11 12:37:58.980 [main] INFO - Authentication Type : http_signature +2019-02-11 12:37:58.980 [main] INFO - Request Type: POST +2019-02-11 12:37:58.980 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-11 12:37:58.980 [main] INFO - Digest: SHA-256=4d6LdcAephqc3ZxTiCs5DRzvla4hZ9OijS7F7lbH+MA= +2019-02-11 12:37:58.980 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:37:58.980 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:37:58.980 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:37:58.980 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="T5Oed8DuZP/TzW6oCwegn22RIRV307C3BMIfqPEMrBQ=" +2019-02-11 12:37:58.980 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:37:59.464 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"GHTR25","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-11 12:37:59.464 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/credits/} +2019-02-11 12:37:59.464 [main] INFO - Response Code: 400 +2019-02-11 12:37:59.464 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 293ms +v-c-correlation-id: 48065390-566d-480f-9feb-a348526a3522 +OkHttp-Sent-Millis: 1549868878995 +OkHttp-Received-Millis: 1549868879464 + +2019-02-11 12:37:59.464 [main] INFO - ********* END *********: +2019-02-11 12:37:59.495 [main] INFO - ********* START ********* +2019-02-11 12:37:59.495 [main] INFO - Authentication Type : http_signature +2019-02-11 12:37:59.495 [main] INFO - Request Type: POST +2019-02-11 12:37:59.495 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490056228246693603006/refunds, requestType=POST} +2019-02-11 12:37:59.495 [main] INFO - Digest: SHA-256=I+1qD0zhOoAiatjE27A6YBxkUKBTRSBoS6VKc2mS8Bc= +2019-02-11 12:37:59.495 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:37:59.495 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:37:59.495 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:37:59.495 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="TAIf6msdUJATidOVTCNf3SiDU3lHAEMlM4okBGbFans=" +2019-02-11 12:37:59.495 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:00.089 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}}} +2019-02-11 12:38:00.089 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490056228246693603006/refunds} +2019-02-11 12:38:00.089 [main] INFO - Response Code: 201 +2019-02-11 12:38:00.089 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 390ms +v-c-correlation-id: 81e4504d-2877-433a-91c1-1f53c2c5626f +OkHttp-Sent-Millis: 1549868879511 +OkHttp-Received-Millis: 1549868880089 + +2019-02-11 12:38:00.089 [main] INFO - ********* END *********: +2019-02-11 12:38:00.105 [main] INFO - ********* START ********* +2019-02-11 12:38:00.105 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:00.105 [main] INFO - Request Type: POST +2019-02-11 12:38:00.105 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490056228246693603006/refunds, requestType=POST} +2019-02-11 12:38:00.105 [main] INFO - Digest: SHA-256=k43sFGLkconY+lZ+qk3SH20ZjY4hdnzlhh7bkAtP+34= +2019-02-11 12:38:00.105 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:00.105 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:00.105 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:00.105 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="J0ZIPerWk65G35DuqMwzOyzM321QnmKydr5x6QWLvN0=" +2019-02-11 12:38:00.105 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:00.745 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}}} +2019-02-11 12:38:00.745 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5490056228246693603006/refunds} +2019-02-11 12:38:00.745 [main] INFO - Response Code: 201 +2019-02-11 12:38:00.745 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 434ms +v-c-correlation-id: 52fae1f9-2965-422a-b83d-dec28badabae +OkHttp-Sent-Millis: 1549868880120 +OkHttp-Received-Millis: 1549868880745 + +2019-02-11 12:38:00.745 [main] INFO - ********* END *********: +2019-02-11 12:38:00.761 [main] INFO - ********* START ********* +2019-02-11 12:38:00.761 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:00.761 [main] INFO - Request Type: POST +2019-02-11 12:38:00.761 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567890123456789123/refunds, requestType=POST} +2019-02-11 12:38:00.761 [main] INFO - Digest: SHA-256=3OkTv9EQccMckYHiNHUzAweMWa91L1CQXTmCvjjQHoU= +2019-02-11 12:38:00.761 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:00.761 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:00.761 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:00.761 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="w+JWL6CyWuPtlkVfleHgAqlF4INEL/wNUMkh3Phc0g0=" +2019-02-11 12:38:00.761 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:10.792 [main] INFO - ********* START ********* +2019-02-11 12:38:10.792 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:10.792 [main] INFO - Request Type: POST +2019-02-11 12:38:10.792 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490048369806834703002/refunds, requestType=POST} +2019-02-11 12:38:10.792 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-11 12:38:10.792 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:10.792 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:10.792 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:10.792 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="34PG17pxu+1y4DdyO/sNBXOH66uEd563aNLxCLldxP0=" +2019-02-11 12:38:10.792 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:11.511 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-11 12:38:11.511 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/5490048369806834703002/refunds} +2019-02-11 12:38:11.511 [main] INFO - Response Code: 201 +2019-02-11 12:38:11.511 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 322ms +v-c-correlation-id: 0d4038e5-aa21-43ab-ab63-cefb2b479394 +OkHttp-Sent-Millis: 1549868891011 +OkHttp-Received-Millis: 1549868891511 + +2019-02-11 12:38:11.511 [main] INFO - ********* END *********: +2019-02-11 12:38:11.527 [main] INFO - ********* START ********* +2019-02-11 12:38:11.527 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:11.527 [main] INFO - Request Type: POST +2019-02-11 12:38:11.527 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490048369806834703002/refunds, requestType=POST} +2019-02-11 12:38:11.527 [main] INFO - Digest: SHA-256=wpSGzbtW0BUOhzWs7lfUWgOPwslWGPDCGWzRLNsbsWk= +2019-02-11 12:38:11.527 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:11.527 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:11.527 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:11.527 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="PQVlXnENrhuvGsfW1tAgBv4odJj6SgWCiv4G3nFlFYA=" +2019-02-11 12:38:11.527 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:12.058 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-11 12:38:12.058 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/5490048369806834703002/refunds} +2019-02-11 12:38:12.058 [main] INFO - Response Code: 201 +2019-02-11 12:38:12.058 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 470 +X-Cnection: close +x-response-time: 355ms +v-c-correlation-id: 32b5017a-bf5c-48f1-9c21-4b45f64610e4 +OkHttp-Sent-Millis: 1549868891542 +OkHttp-Received-Millis: 1549868892058 + +2019-02-11 12:38:12.058 [main] INFO - ********* END *********: +2019-02-11 12:38:12.076 [main] INFO - ********* START ********* +2019-02-11 12:38:12.076 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:12.076 [main] INFO - Request Type: POST +2019-02-11 12:38:12.076 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/1234567898745632145698/refunds, requestType=POST} +2019-02-11 12:38:12.076 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-11 12:38:12.076 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:12.076 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:12.076 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:12.076 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="xT7NOwQN4n65qcjAfh0CI54/9v2ohobyNKKbTLgB4Cg=" +2019-02-11 12:38:12.076 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:12.589 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-11 12:38:12.589 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/5490048369806834703002/refunds} +2019-02-11 12:38:12.589 [main] INFO - Response Code: 400 +2019-02-11 12:38:12.589 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 320ms +v-c-correlation-id: f1642d7a-6d37-4108-96fd-59084e1fa3bd +OkHttp-Sent-Millis: 1549868892105 +OkHttp-Received-Millis: 1549868892589 + +2019-02-11 12:38:12.589 [main] INFO - ********* END *********: +2019-02-11 12:38:12.621 [main] INFO - ********* START ********* +2019-02-11 12:38:12.621 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:12.621 [main] INFO - Request Type: POST +2019-02-11 12:38:12.621 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5492620832556049904004/voids, requestType=POST} +2019-02-11 12:38:12.621 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-11 12:38:12.621 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:12.621 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:12.621 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:12.621 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="W2M2h/KK5idANd3+S+tcC9ZAMzDVBSdf7LNs8g+E+IA=" +2019-02-11 12:38:12.621 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:13.121 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-02-11 12:38:13.121 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/1234567898745632145698/refunds} +2019-02-11 12:38:13.121 [main] INFO - Response Code: 400 +2019-02-11 12:38:13.121 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 303ms +v-c-correlation-id: e1e07aa4-c0af-4ef5-a6bd-7307a9f1d105 +OkHttp-Sent-Millis: 1549868892652 +OkHttp-Received-Millis: 1549868893121 + +2019-02-11 12:38:13.121 [main] INFO - ********* END *********: +2019-02-11 12:38:13.136 [main] INFO - ********* START ********* +2019-02-11 12:38:13.136 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:13.136 [main] INFO - Request Type: POST +2019-02-11 12:38:13.136 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-02-11 12:38:13.136 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-11 12:38:13.136 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:13.136 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:13.136 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:13.136 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="S4uJnmxM/IE8JQ9IZi4TorS1hNINTlkjriuCNZX5ti4=" +2019-02-11 12:38:13.136 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:23.168 [main] INFO - ********* START ********* +2019-02-11 12:38:23.168 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:23.168 [main] INFO - Request Type: POST +2019-02-11 12:38:23.168 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490173455496897903002/voids, requestType=POST} +2019-02-11 12:38:23.168 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-11 12:38:23.168 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:23.168 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:23.168 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:23.168 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="N/oZn2ESOkDvM8is38Vy62pnKOrzpjFmuXX//Sk9I74=" +2019-02-11 12:38:23.168 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:24.027 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture_void"}} +2019-02-11 12:38:24.027 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5492620832556049904004/voids} +2019-02-11 12:38:24.027 [main] INFO - Response Code: 400 +2019-02-11 12:38:24.027 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 308ms +v-c-correlation-id: 28b764df-3c25-4123-9a08-ab1ed50f2113 +OkHttp-Sent-Millis: 1549868903418 +OkHttp-Received-Millis: 1549868904027 + +2019-02-11 12:38:24.027 [main] INFO - ********* END *********: +2019-02-11 12:38:24.043 [main] INFO - ********* START ********* +2019-02-11 12:38:24.043 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:24.043 [main] INFO - Request Type: POST +2019-02-11 12:38:24.043 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/8964213433126812344644/voids, requestType=POST} +2019-02-11 12:38:24.043 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-11 12:38:24.043 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:24.043 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:24.043 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:24.043 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="4DMkj20t0bEBEIVIlDS6ehXb8v2shMeIUz0IrDHCstY=" +2019-02-11 12:38:24.043 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:34.105 [main] INFO - ********* START ********* +2019-02-11 12:38:34.105 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:34.105 [main] INFO - Request Type: POST +2019-02-11 12:38:34.105 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/5492620832556049904004/voids, requestType=POST} +2019-02-11 12:38:34.105 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-11 12:38:34.105 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:34.105 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:34.105 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:34.105 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="GVVpx854DxdJ/8OaTTuyIjtkCL8+7P/rsRGA+Y1ANd8=" +2019-02-11 12:38:34.105 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:34.965 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credit_void"}} +2019-02-11 12:38:34.965 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/captures/5490173455496897903002/voids} +2019-02-11 12:38:34.965 [main] INFO - Response Code: 400 +2019-02-11 12:38:34.965 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 311ms +v-c-correlation-id: ca86f5b6-216d-4c5b-aa1e-cb64bf068c5c +OkHttp-Sent-Millis: 1549868914355 +OkHttp-Received-Millis: 1549868914965 + +2019-02-11 12:38:34.965 [main] INFO - ********* END *********: +2019-02-11 12:38:34.980 [main] INFO - ********* START ********* +2019-02-11 12:38:34.980 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:34.980 [main] INFO - Request Type: POST +2019-02-11 12:38:34.980 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/8964213433846812344644/voids, requestType=POST} +2019-02-11 12:38:34.980 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-11 12:38:34.980 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:34.980 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:34.996 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:34.996 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Qfvd2/9+t3iwsYG2OUY+ZMIAulFxQnYBZJdQcZRwT6A=" +2019-02-11 12:38:34.996 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:45.038 [main] INFO - ********* START ********* +2019-02-11 12:38:45.038 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:45.038 [main] INFO - Request Type: POST +2019-02-11 12:38:45.038 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/5492624390506057904003/voids, requestType=POST} +2019-02-11 12:38:45.038 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-11 12:38:45.038 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:45.038 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:45.038 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:45.038 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="2HwffSqhmO5lenC7PAlmJ97pIlIxrmo47HL2lyWechk=" +2019-02-11 12:38:45.038 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:45.881 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_void"}} +2019-02-11 12:38:45.881 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/pts/v2/credits/5492620832556049904004/voids} +2019-02-11 12:38:45.881 [main] INFO - Response Code: 400 +2019-02-11 12:38:45.881 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 342ms +v-c-correlation-id: 0e967d58-a032-43bf-a394-3b6439027c90 +OkHttp-Sent-Millis: 1549868925256 +OkHttp-Received-Millis: 1549868925881 + +2019-02-11 12:38:45.881 [main] INFO - ********* END *********: +2019-02-11 12:38:45.897 [main] INFO - ********* START ********* +2019-02-11 12:38:45.897 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:45.897 [main] INFO - Request Type: POST +2019-02-11 12:38:45.897 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/8964213433846812344644/voids, requestType=POST} +2019-02-11 12:38:45.897 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-11 12:38:45.897 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:45.897 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:45.897 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:45.897 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="RkiKb8+3zchyzwLxeiLY5fUxpHhcYer7HoZW+iYaT8o=" +2019-02-11 12:38:45.897 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:55.991 [main] INFO - ********* START ********* +2019-02-11 12:38:55.991 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:55.991 [main] INFO - Request Type: POST +2019-02-11 12:38:55.991 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-11 12:38:55.991 [main] INFO - Digest: SHA-256=rp59HYGOOXP6bWKiVpWMNgj4QjYai6gMk27yt69dPh8= +2019-02-11 12:38:55.991 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:55.991 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:55.991 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:55.991 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="vbeoAclo6XpeZ1LskypErSUfZhubmY8Kld4gUC1wO3o=" +2019-02-11 12:38:55.991 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:56.975 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"33557799"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"FD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-11 12:38:56.975 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-11 12:38:56.975 [main] INFO - Response Code: 201 +2019-02-11 12:38:56.975 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 493 +X-Cnection: close +x-response-time: 554ms +v-c-correlation-id: e49d5c53-f3cd-4136-98a9-d49bf6e59e7b +OkHttp-Sent-Millis: 1549868936241 +OkHttp-Received-Millis: 1549868936975 + +2019-02-11 12:38:56.975 [main] INFO - ********* END *********: +2019-02-11 12:38:56.995 [main] INFO - ********* START ********* +2019-02-11 12:38:56.995 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:56.995 [main] INFO - Request Type: POST +2019-02-11 12:38:56.995 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-11 12:38:56.995 [main] INFO - Digest: SHA-256=WV4kmV6NZQKID4sN4WMbFxFXqbg/hn8kxL7FOS4jQXk= +2019-02-11 12:38:56.995 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:56.995 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:56.995 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:56.995 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="OLHDd6zFV/WHuKxqEAV1mUW3TRmUdzwMgQlSZrsQByI=" +2019-02-11 12:38:56.995 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:57.710 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"12345"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"GD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-11 12:38:57.710 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-11 12:38:57.710 [main] INFO - Response Code: 201 +2019-02-11 12:38:57.710 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 490 +X-Cnection: close +x-response-time: 527ms +v-c-correlation-id: 47a2b996-c87e-4380-ac88-118c174eec7a +OkHttp-Sent-Millis: 1549868937022 +OkHttp-Received-Millis: 1549868937710 + +2019-02-11 12:38:57.710 [main] INFO - ********* END *********: +2019-02-11 12:38:57.741 [main] INFO - ********* START ********* +2019-02-11 12:38:57.741 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:57.741 [main] INFO - Request Type: POST +2019-02-11 12:38:57.741 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-11 12:38:57.741 [main] INFO - Digest: SHA-256=w9ZjmtCKOCPKH6OZhKI9VKNlfIK5wZLl6ZxwHbxFJsQ= +2019-02-11 12:38:57.741 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:57.741 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:57.741 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:57.741 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="AUrKB2RK41LeEJwGA3WW9jp9+NIQmoHPbn3joAwtS/E=" +2019-02-11 12:38:57.741 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:58.257 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"6789"},"orderInformation":{"amountDetails":{"totalAmount":"DSWAZ1","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"MD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-11 12:38:58.257 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payouts/} +2019-02-11 12:38:58.257 [main] INFO - Response Code: 400 +2019-02-11 12:38:58.257 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 329ms +v-c-correlation-id: e0e2b181-0ed9-4275-b8a2-41fd113b1132 +OkHttp-Sent-Millis: 1549868937757 +OkHttp-Received-Millis: 1549868938257 + +2019-02-11 12:38:58.257 [main] INFO - ********* END *********: +2019-02-11 12:38:58.288 [main] INFO - ********* START ********* +2019-02-11 12:38:58.288 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:58.288 [main] INFO - Request Type: POST +2019-02-11 12:38:58.288 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-11 12:38:58.288 [main] INFO - Digest: SHA-256=YljtibTei+du4xVIDxMr3HBsyLAEDuiYaag9TcU9jHA= +2019-02-11 12:38:58.288 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:58.288 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:58.288 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:58.288 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ixZVtjV3MtpAAVqoFTl8XyhiG+xuD+F+gjzeDi6c2+o=" +2019-02-11 12:38:58.288 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:58.491 [main] INFO - Request Body: {"encryptionType":"RsaOaep256"} +2019-02-11 12:38:58.491 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-11 12:38:58.491 [main] INFO - Response Code: 200 +2019-02-11 12:38:58.491 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=bvMGuYx+LkUzL49xwmmX7TZYICCI+/fyLtf37M/e+Ok= +Content-Type: application/json;charset=UTF-8 +Content-Length: 927 +Date: Mon, 11 Feb 2019 07:08:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: cc09b92f-2472-4ed1-a83b-7ffb98705e5f +OkHttp-Sent-Millis: 1549868938303 +OkHttp-Received-Millis: 1549868938491 + +2019-02-11 12:38:58.491 [main] INFO - ********* END *********: +2019-02-11 12:38:58.522 [main] INFO - ********* START ********* +2019-02-11 12:38:58.522 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:58.522 [main] INFO - Request Type: POST +2019-02-11 12:38:58.522 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-11 12:38:58.522 [main] INFO - Digest: SHA-256=gEZo4PozZVgCrpNd3JKwGruwMOoyFI70wP0aDjupsBk= +2019-02-11 12:38:58.522 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:58.522 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:58.522 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:58.522 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="YzJ41Cmp3Hq5trpc0ZjmNrUKgyseN7EdGxzi2oY/xWc=" +2019-02-11 12:38:58.522 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:58.710 [main] INFO - Request Body: {"encryptionType":"PqaPabc255"} +2019-02-11 12:38:58.710 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-11 12:38:58.710 [main] INFO - Response Code: 400 +2019-02-11 12:38:58.710 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Mon, 11 Feb 2019 07:08:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 68ae06ab-af53-4564-b98d-e25e7fa4546c +OkHttp-Sent-Millis: 1549868938538 +OkHttp-Received-Millis: 1549868938710 + +2019-02-11 12:38:58.710 [main] INFO - ********* END *********: +2019-02-11 12:38:58.726 [main] INFO - ********* START ********* +2019-02-11 12:38:58.726 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:58.726 [main] INFO - Request Type: POST +2019-02-11 12:38:58.726 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-11 12:38:58.726 [main] INFO - Digest: SHA-256=bena9bhB3Jy4uPvfu1tAC0uN8AuzzM+xjqmDwR5//EA= +2019-02-11 12:38:58.741 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:58.741 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:58.741 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:58.741 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="nbirNzmkr9qC0iJz2/zN/alXHIvRWymKxQL1BIYTKIQ=" +2019-02-11 12:38:58.741 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:58.928 [main] INFO - Request Body: {"encryptionType":"None"} +2019-02-11 12:38:58.928 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-11 12:38:58.928 [main] INFO - Response Code: 200 +2019-02-11 12:38:58.928 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=amAIXKsmSLDyfGIoNZ+xZaSa0BUuxW2gLGFwLy5It3s= +Content-Type: application/json;charset=UTF-8 +Content-Length: 505 +Date: Mon, 11 Feb 2019 07:08:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e79dab9f-0e4f-4f3b-9f87-3fa75769259d +OkHttp-Sent-Millis: 1549868938757 +OkHttp-Received-Millis: 1549868938928 + +2019-02-11 12:38:58.928 [main] INFO - ********* END *********: +2019-02-11 12:38:58.944 [main] INFO - ********* START ********* +2019-02-11 12:38:58.944 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:58.944 [main] INFO - Request Type: POST +2019-02-11 12:38:58.944 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-11 12:38:58.944 [main] INFO - Digest: SHA-256=RGxc6GDM4hd0Lz1J24GEBLuX6JSK+r0fZi1/r0x/0Xo= +2019-02-11 12:38:58.944 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:58.944 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:58.944 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:58.944 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="1YW0UWXZUzrJis91MUEBeyTABnI8BrlhqnqH0f4UPqc=" +2019-02-11 12:38:58.944 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:59.132 [main] INFO - Request Body: {"encryptionType":"SDMP"} +2019-02-11 12:38:59.132 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-11 12:38:59.132 [main] INFO - Response Code: 400 +2019-02-11 12:38:59.132 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Mon, 11 Feb 2019 07:08:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 3a965bd5-071c-420f-a7dc-b7dca7f8cbb5 +OkHttp-Sent-Millis: 1549868938960 +OkHttp-Received-Millis: 1549868939132 + +2019-02-11 12:38:59.132 [main] INFO - ********* END *********: +2019-02-11 12:38:59.163 [main] INFO - ********* START ********* +2019-02-11 12:38:59.163 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:59.163 [main] INFO - Request Type: POST +2019-02-11 12:38:59.163 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-11 12:38:59.163 [main] INFO - Digest: SHA-256=NTEgGTO0S/Q4uLa31n32FPLByTOx0Y4C4nAozKMXflE= +2019-02-11 12:38:59.163 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:59.163 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:59.163 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:59.163 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="7BqodiPXx0HJ8YWqmtWv8P3owhxIvkHVN2vYfptEUk8=" +2019-02-11 12:38:59.163 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:59.303 [main] INFO - Request Body: {"keyId":"078cNRFLmTIrTCeW24GHiFSBDPLRjjQ0","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-11 12:38:59.303 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/flex/v1/keys/} +2019-02-11 12:38:59.303 [main] INFO - Response Code: 400 +2019-02-11 12:38:59.303 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=LlgcY4w4k87ewaeYzJLhjKlMgpExFnNaCj6NDVSqwnw= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Mon, 11 Feb 2019 07:08:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: bcdfdb81-893f-4033-9606-17897b89d24f +OkHttp-Sent-Millis: 1549868939178 +OkHttp-Received-Millis: 1549868939303 + +2019-02-11 12:38:59.303 [main] INFO - ********* END *********: +2019-02-11 12:38:59.335 [main] INFO - ********* START ********* +2019-02-11 12:38:59.335 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:59.335 [main] INFO - Request Type: POST +2019-02-11 12:38:59.335 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-11 12:38:59.335 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-02-11 12:38:59.335 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:59.335 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:59.335 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:59.335 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="o/8tLmcdI9wevmDLK/QptzXng6UpOR2OIo0dLyqkgqk=" +2019-02-11 12:38:59.335 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:59.475 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-11 12:38:59.475 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-02-11 12:38:59.475 [main] INFO - Response Code: 400 +2019-02-11 12:38:59.475 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Mon, 11 Feb 2019 07:08:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 33f12271-667e-4773-ab84-7340701c58f3 +OkHttp-Sent-Millis: 1549868939350 +OkHttp-Received-Millis: 1549868939475 + +2019-02-11 12:38:59.475 [main] INFO - ********* END *********: +2019-02-11 12:38:59.522 [main] INFO - ********* START ********* +2019-02-11 12:38:59.522 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:59.522 [main] INFO - Request Type: POST +2019-02-11 12:38:59.522 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-11 12:38:59.522 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-11 12:38:59.522 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:59.522 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:59.522 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:59.522 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="TBbqpucFw1WxmJQTV1enieioIVi92MiVAWWaGXp/V38=" +2019-02-11 12:38:59.522 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:59.757 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-11 12:38:59.757 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-11 12:38:59.757 [main] INFO - Response Code: 200 +2019-02-11 12:38:59.757 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_42d4c5e0-b090-4d79-a947-dba803bbd80a +uniqueTransactionID: 58e1fe6c-9084-48be-a52c-6b1d8b4044fe +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 11 Feb 2019 07:08:59 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 7862618c-6aa7-4df6-884b-7f540e65e685 +OkHttp-Sent-Millis: 1549868939553 +OkHttp-Received-Millis: 1549868939757 + +2019-02-11 12:38:59.757 [main] INFO - ********* END *********: +2019-02-11 12:38:59.788 [main] INFO - ********* START ********* +2019-02-11 12:38:59.788 [main] INFO - Authentication Type : http_signature +2019-02-11 12:38:59.788 [main] INFO - Request Type: POST +2019-02-11 12:38:59.788 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-11 12:38:59.788 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-11 12:38:59.788 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:38:59.788 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:38:59.788 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:38:59.788 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="TBbqpucFw1WxmJQTV1enieioIVi92MiVAWWaGXp/V38=" +2019-02-11 12:38:59.788 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:38:59.975 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-11 12:38:59.975 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-11 12:38:59.975 [main] INFO - Response Code: 400 +2019-02-11 12:38:59.975 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_9348702c-c6c0-4efa-9b0b-5d735f94ce5a +uniqueTransactionID: f0778e8a-eed3-4588-98dc-f28a401c44bf +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Mon, 11 Feb 2019 07:08:59 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 30830c25-e6db-4d54-abb5-7caa22aa6b80 +OkHttp-Sent-Millis: 1549868939803 +OkHttp-Received-Millis: 1549868939975 + +2019-02-11 12:38:59.975 [main] INFO - ********* END *********: +2019-02-11 12:39:00.038 [main] INFO - ********* START ********* +2019-02-11 12:39:00.038 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:00.038 [main] INFO - Request Type: POST +2019-02-11 12:39:00.038 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-11 12:39:00.038 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-11 12:39:00.038 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:00.038 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:00.038 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:00.038 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Eh1Nk8IIZlIahkaWxookSSDazxNfFkGnUQODtvkp1KY=" +2019-02-11 12:39:00.038 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:00.897 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-11 12:39:00.897 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments} +2019-02-11 12:39:00.897 [main] INFO - Response Code: 201 +2019-02-11 12:39:00.897 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_67feda72-64b1-45a9-bf6d-76ef23ad9f05 +uniqueTransactionID: 3b811f4c-f357-4026-95ea-ec4988593d1c +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/paymentinstruments/8199FBAA51EA5EC7E05340588D0AB084 +ETag: "mWrGI0xyPi/WVtl4yEQTZLW8wcrP+I+XTROmr+cvPGM=" +instrumentidentifier-created: false +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1001 +Date: Mon, 11 Feb 2019 07:09:00 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: d536625c-8bf4-4886-b870-0e1c0f196517 +OkHttp-Sent-Millis: 1549868940069 +OkHttp-Received-Millis: 1549868940897 + +2019-02-11 12:39:00.897 [main] INFO - ********* END *********: +2019-02-11 12:39:00.913 [main] INFO - ********* START ********* +2019-02-11 12:39:00.913 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:00.928 [main] INFO - Request Type: POST +2019-02-11 12:39:00.928 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-11 12:39:00.928 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-11 12:39:00.928 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:00.928 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:00.928 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:00.928 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Eh1Nk8IIZlIahkaWxookSSDazxNfFkGnUQODtvkp1KY=" +2019-02-11 12:39:00.928 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:01.132 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-11 12:39:01.132 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments} +2019-02-11 12:39:01.132 [main] INFO - Response Code: 400 +2019-02-11 12:39:01.132 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_938be10a-ab58-4e1c-9eff-99f952c06917 +uniqueTransactionID: 8513cabc-eb1d-4c20-a188-0c7c20c8c60a +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Mon, 11 Feb 2019 07:09:00 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 5571efe0-3967-41e6-80fa-87b4c9992960 +OkHttp-Sent-Millis: 1549868940944 +OkHttp-Received-Millis: 1549868941132 + +2019-02-11 12:39:01.132 [main] INFO - ********* END *********: +2019-02-11 12:39:01.163 [main] INFO - ********* START ********* +2019-02-11 12:39:01.163 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:01.163 [main] INFO - Request Type: GET +2019-02-11 12:39:01.163 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7010000000016241111, requestType=GET} +2019-02-11 12:39:01.163 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:01.163 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:01.163 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:01.163 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="p3vEH9O8fMZj9rApiRYYYXAYHGEsVigEFZJRXjr5ga0=" +2019-02-11 12:39:01.163 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:01.382 [main] INFO - Request Body: null +2019-02-11 12:39:01.382 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111} +2019-02-11 12:39:01.382 [main] INFO - Response Code: 200 +2019-02-11 12:39:01.382 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_fc9c815a-1013-4ebe-ba6a-19fecdbbf93d +uniqueTransactionID: d38c3893-fb07-49f6-be14-755079fc23c5 +Pragma: no-cache +X-Application-Context: application +ETag: "qRTTqLoS8r04N6Fc3N08YMbY5bjbRTeVxwLkmHxu0M0=" +Token-Class: instrumentIdentifier +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 11 Feb 2019 07:09:01 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 4da6230f-4cea-4d31-81fc-bc977832a580 +OkHttp-Sent-Millis: 1549868941163 +OkHttp-Received-Millis: 1549868941382 + +2019-02-11 12:39:01.382 [main] INFO - ********* END *********: +2019-02-11 12:39:01.397 [main] INFO - ********* START ********* +2019-02-11 12:39:01.397 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:01.397 [main] INFO - Request Type: GET +2019-02-11 12:39:01.397 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546, requestType=GET} +2019-02-11 12:39:01.397 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:01.397 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:01.397 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:01.397 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="e8lwjhVvlATlgsM3o+/jxhPBLjiONTWYIm573ZlZpbc=" +2019-02-11 12:39:01.397 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:01.585 [main] INFO - Request Body: null +2019-02-11 12:39:01.585 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111} +2019-02-11 12:39:01.600 [main] INFO - Response Code: 404 +2019-02-11 12:39:01.600 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_ed466fd3-ad12-4988-b47f-e96a4aef6734 +uniqueTransactionID: d49e4e96-61d4-45e1-ab14-fb8eab670d88 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 11 Feb 2019 07:09:00 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 97a8db14-6ae1-40c8-bdbf-1156d6225811 +OkHttp-Sent-Millis: 1549868941397 +OkHttp-Received-Millis: 1549868941585 + +2019-02-11 12:39:01.600 [main] INFO - ********* END *********: +2019-02-11 12:39:01.616 [main] INFO - ********* START ********* +2019-02-11 12:39:01.616 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:01.616 [main] INFO - Request Type: PATCH +2019-02-11 12:39:01.616 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654, requestType=PATCH} +2019-02-11 12:39:01.616 [main] INFO - Digest: SHA-256=8WWAL+hDoWtF/EyxX3M/HpCKmkkPnnqbqKxbc3iH/JY= +2019-02-11 12:39:01.616 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:01.616 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:01.616 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:01.616 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="3vgEG8WgUVqp9KTX9zDvRSH0YjbhSVTOSMjapJ3Inag=" +2019-02-11 12:39:01.616 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:01.835 [main] INFO - Request Body: {"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-11 12:39:01.835 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654} +2019-02-11 12:39:01.835 [main] INFO - Response Code: 200 +2019-02-11 12:39:01.835 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_06d074be-e0a3-46f4-b937-b7caf22201d0 +uniqueTransactionID: bbde5f39-7abf-449d-a7a1-3a7fe97c4f46 +Pragma: no-cache +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654 +ETag: "XMRhPW5H5IBM60SqUFZAF0xnXQvNMGrYmND+E73bTaU=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 11 Feb 2019 07:09:00 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 0e62f211-8dde-491b-82f8-ee16c633028d +OkHttp-Sent-Millis: 1549868941632 +OkHttp-Received-Millis: 1549868941835 + +2019-02-11 12:39:01.835 [main] INFO - ********* END *********: +2019-02-11 12:39:01.850 [main] INFO - ********* START ********* +2019-02-11 12:39:01.850 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:01.850 [main] INFO - Request Type: PATCH +2019-02-11 12:39:01.850 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000123455, requestType=PATCH} +2019-02-11 12:39:01.850 [main] INFO - Digest: SHA-256=8WWAL+hDoWtF/EyxX3M/HpCKmkkPnnqbqKxbc3iH/JY= +2019-02-11 12:39:01.850 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:01.850 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:01.850 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:01.850 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="tzz64F6aJUEE1zO5Eo0EW0zjbRP9fAUTIX/jKMWsMJQ=" +2019-02-11 12:39:01.850 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:02.053 [main] INFO - Request Body: {"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-11 12:39:02.053 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654} +2019-02-11 12:39:02.053 [main] INFO - Response Code: 404 +2019-02-11 12:39:02.053 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_a4f36834-7758-4bbb-a04b-79e0d81db278 +uniqueTransactionID: b95055e3-e16c-45ac-b206-d7c6e1e7c16d +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 11 Feb 2019 07:09:01 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 598c31fe-d453-4996-b8cd-ea426c39811b +OkHttp-Sent-Millis: 1549868941866 +OkHttp-Received-Millis: 1549868942053 + +2019-02-11 12:39:02.053 [main] INFO - ********* END *********: +2019-02-11 12:39:02.069 [main] INFO - ********* START ********* +2019-02-11 12:39:02.069 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:02.069 [main] INFO - Request Type: DELETE +2019-02-11 12:39:02.069 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7010000000006721114, requestType=DELETE} +2019-02-11 12:39:02.069 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:02.069 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:02.069 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:02.069 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Bg07Pq6j8aHd7M//47Q2WC17Km/UCItAxCTd3P+2TKA=" +2019-02-11 12:39:02.069 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:02.257 [main] INFO - Request Body: null +2019-02-11 12:39:02.257 [main] INFO - Response Message: Response{protocol=http/1.1, code=404, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000123455} +2019-02-11 12:39:02.257 [main] INFO - Response Code: 410 +2019-02-11 12:39:02.257 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_94aaa80a-01a8-44d0-903e-efd7b4f8634f +uniqueTransactionID: c5c1689d-9139-4098-9025-c170cf643e30 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 68 +Date: Mon, 11 Feb 2019 07:09:02 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 250c1610-b4f0-4232-9e61-1534c90e45a5 +OkHttp-Sent-Millis: 1549868942085 +OkHttp-Received-Millis: 1549868942257 + +2019-02-11 12:39:02.257 [main] INFO - ********* END *********: +2019-02-11 12:39:02.288 [main] INFO - ********* START ********* +2019-02-11 12:39:02.288 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:02.288 [main] INFO - Request Type: DELETE +2019-02-11 12:39:02.288 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546, requestType=DELETE} +2019-02-11 12:39:02.288 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:02.288 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:02.288 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:02.288 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="U1ENUVIVY4UYGnCCXJFhjSJLx5JshSrTr327uT37Gp4=" +2019-02-11 12:39:02.288 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:02.475 [main] INFO - Request Body: null +2019-02-11 12:39:02.475 [main] INFO - Response Message: Response{protocol=http/1.1, code=410, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000006721114} +2019-02-11 12:39:02.475 [main] INFO - Response Code: 404 +2019-02-11 12:39:02.475 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_728b5080-7fbd-4034-9ee2-9ed646e3c052 +uniqueTransactionID: 5219559b-922a-4ee1-970c-a25422ae4156 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 11 Feb 2019 07:09:02 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: c1ed1021-e03a-445d-8626-f2c015630c83 +OkHttp-Sent-Millis: 1549868942303 +OkHttp-Received-Millis: 1549868942475 + +2019-02-11 12:39:02.475 [main] INFO - ********* END *********: +2019-02-11 12:39:02.507 [main] INFO - ********* START ********* +2019-02-11 12:39:02.507 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:02.507 [main] INFO - Request Type: GET +2019-02-11 12:39:02.507 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603, requestType=GET} +2019-02-11 12:39:02.507 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:02.507 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:02.507 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:02.507 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="GM7WvQQ231nLBmH08rwwzvNnCp0Nwgn1WFLXqzKH4nA=" +2019-02-11 12:39:02.507 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:02.694 [main] INFO - Request Body: null +2019-02-11 12:39:02.694 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603} +2019-02-11 12:39:02.694 [main] INFO - Response Code: 200 +2019-02-11 12:39:02.694 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_64aad859-35ff-48fc-9a42-6c5d52fb06af +uniqueTransactionID: 95c98f84-c02c-4789-aef4-33c92d1c6d56 +Pragma: no-cache +X-Application-Context: application +ETag: "05kx6u1ESFU48BNPnLWXNpLsJSfyXUAp9mL/mgIOFfk=" +Token-Class: paymentInstrument +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1142 +Date: Mon, 11 Feb 2019 07:09:02 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 8e59a607-f9f7-42d3-9871-ca2cd2f7b248 +OkHttp-Sent-Millis: 1549868942507 +OkHttp-Received-Millis: 1549868942694 + +2019-02-11 12:39:02.694 [main] INFO - ********* END *********: +2019-02-11 12:39:02.725 [main] INFO - ********* START ********* +2019-02-11 12:39:02.725 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:02.725 [main] INFO - Request Type: GET +2019-02-11 12:39:02.725 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7654264589567855546, requestType=GET} +2019-02-11 12:39:02.725 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:02.725 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:02.725 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:02.725 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="zSuxV/s5/yt07tuWk5+dpqx6nT3P3p/kFFKLsUomjT4=" +2019-02-11 12:39:02.725 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:02.897 [main] INFO - Request Body: null +2019-02-11 12:39:02.897 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603} +2019-02-11 12:39:02.897 [main] INFO - Response Code: 404 +2019-02-11 12:39:02.897 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_9ca9cc77-8a80-43c4-8bcc-8da898ae0729 +uniqueTransactionID: 4a8ba475-5b09-4dc7-b3e1-43cd1b24a062 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 11 Feb 2019 07:09:02 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: f6311546-8d9b-401f-8d8c-031da35e5b2f +OkHttp-Sent-Millis: 1549868942725 +OkHttp-Received-Millis: 1549868942897 + +2019-02-11 12:39:02.897 [main] INFO - ********* END *********: +2019-02-11 12:39:02.928 [main] INFO - ********* START ********* +2019-02-11 12:39:02.928 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:02.928 [main] INFO - Request Type: PATCH +2019-02-11 12:39:02.928 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603, requestType=PATCH} +2019-02-11 12:39:02.928 [main] INFO - Digest: SHA-256=JVhG6cWRtiU/QoMjxKqN0Sqpzxt5BxE40ELswsMV4eU= +2019-02-11 12:39:02.928 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:02.928 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:02.928 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:02.928 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="rQpCWi7IGPmeFBDcz2CJDOW5KPs/pkYOmHHinGUDAo8=" +2019-02-11 12:39:02.928 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:03.178 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-11 12:39:03.178 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603} +2019-02-11 12:39:03.178 [main] INFO - Response Code: 200 +2019-02-11 12:39:03.178 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_6a5e457d-b07e-45e8-a958-68821af338cf +uniqueTransactionID: cd115144-95fb-4f88-963e-0d166249b2c4 +Pragma: no-cache +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603 +ETag: "8gjVqwCa8tZKtp5sgdHAnJaC7CgE3leGQtT69u+TuTg=" +instrumentidentifier-created: false +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1142 +Date: Mon, 11 Feb 2019 07:09:02 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 6bea3430-abda-4501-ad16-b7c5f9a3d2a2 +OkHttp-Sent-Millis: 1549868942944 +OkHttp-Received-Millis: 1549868943178 + +2019-02-11 12:39:03.178 [main] INFO - ********* END *********: +2019-02-11 12:39:03.197 [main] INFO - ********* START ********* +2019-02-11 12:39:03.197 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:03.197 [main] INFO - Request Type: PATCH +2019-02-11 12:39:03.197 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B124123456789545854565, requestType=PATCH} +2019-02-11 12:39:03.197 [main] INFO - Digest: SHA-256=JVhG6cWRtiU/QoMjxKqN0Sqpzxt5BxE40ELswsMV4eU= +2019-02-11 12:39:03.197 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:03.197 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:03.197 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:03.197 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="T7HBCKuusjzdN95Ny6zOg/8/fX7aTpyR6JKsZoUcI+w=" +2019-02-11 12:39:03.197 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:03.413 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-11 12:39:03.413 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603} +2019-02-11 12:39:03.413 [main] INFO - Response Code: 404 +2019-02-11 12:39:03.413 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_0292042b-3e15-49ea-9a88-c6ad4cba41b0 +uniqueTransactionID: 9c67ed8d-280e-4e81-8233-d0354f89897c +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 11 Feb 2019 07:09:03 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 3cb2cf9e-5794-4345-8adb-753061dacacf +OkHttp-Sent-Millis: 1549868943225 +OkHttp-Received-Millis: 1549868943413 + +2019-02-11 12:39:03.413 [main] INFO - ********* END *********: +2019-02-11 12:39:03.428 [main] INFO - ********* START ********* +2019-02-11 12:39:03.428 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:03.428 [main] INFO - Request Type: DELETE +2019-02-11 12:39:03.428 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/80756F4698591109E05341588E0A4B95, requestType=DELETE} +2019-02-11 12:39:03.428 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:03.428 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:03.428 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:03.428 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="NcYxRDOMbhRp+10xlOgaK7Hk2jtUOaYAWoD9T11mCSU=" +2019-02-11 12:39:03.428 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:03.632 [main] INFO - Request Body: null +2019-02-11 12:39:03.632 [main] INFO - Response Message: Response{protocol=http/1.1, code=404, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B124123456789545854565} +2019-02-11 12:39:03.632 [main] INFO - Response Code: 410 +2019-02-11 12:39:03.632 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_5a38384c-4eeb-4948-9f8d-4d6535587dda +uniqueTransactionID: 3f948396-a348-419c-98bc-0f0d27c73c1d +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 68 +Date: Mon, 11 Feb 2019 07:09:03 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 475b0d6c-1256-44ba-8351-c51f3afa4100 +OkHttp-Sent-Millis: 1549868943444 +OkHttp-Received-Millis: 1549868943632 + +2019-02-11 12:39:03.632 [main] INFO - ********* END *********: +2019-02-11 12:39:03.647 [main] INFO - ********* START ********* +2019-02-11 12:39:03.647 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:03.647 [main] INFO - Request Type: DELETE +2019-02-11 12:39:03.647 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/76542645895678555464562155478555, requestType=DELETE} +2019-02-11 12:39:03.647 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:03.647 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:03.647 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:03.647 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="JK952cKTgLnzXH45a+yUFVnpk38jHsKDE4mIlX1fmGk=" +2019-02-11 12:39:03.647 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:03.850 [main] INFO - Request Body: null +2019-02-11 12:39:03.850 [main] INFO - Response Message: Response{protocol=http/1.1, code=410, message=DONE, url=https://apitest.cybersource.com/tms/v1/paymentinstruments/80756F4698591109E05341588E0A4B95} +2019-02-11 12:39:03.850 [main] INFO - Response Code: 404 +2019-02-11 12:39:03.850 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_43ebe846-4799-450e-bc6d-93a357bdcd2b +uniqueTransactionID: f7f8be5a-2a5b-4639-9712-c1244e940063 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 11 Feb 2019 07:09:03 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 79ca087e-f2a9-43cc-959d-9bd381f2b02b +OkHttp-Sent-Millis: 1549868943663 +OkHttp-Received-Millis: 1549868943850 + +2019-02-11 12:39:03.850 [main] INFO - ********* END *********: +2019-02-11 12:39:03.866 [main] INFO - ********* START ********* +2019-02-11 12:39:03.866 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:03.866 [main] INFO - Request Type: GET +2019-02-11 12:39:03.866 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-11 12:39:03.866 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:03.866 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:03.866 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:03.866 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="dRvuVQsh3WXp9erbnzVcHjQBXdDQZRsa7GRbDkWx5TM=" +2019-02-11 12:39:03.866 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:04.210 [main] INFO - Request Body: null +2019-02-11 12:39:04.210 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-11 12:39:04.210 [main] INFO - Response Code: 200 +2019-02-11 12:39:04.210 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_9fb87386-56aa-4206-9fb9-1260d1882bd4 +uniqueTransactionID: 30ce2529-b848-4a16-ad2f-4255028ed2b0 +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 131 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Mon, 11 Feb 2019 07:09:03 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 5107164e-7d86-4a6c-910f-6146189f0f7e +OkHttp-Sent-Millis: 1549868943866 +OkHttp-Received-Millis: 1549868944210 + +2019-02-11 12:39:04.210 [main] INFO - ********* END *********: +2019-02-11 12:39:04.241 [main] INFO - ********* START ********* +2019-02-11 12:39:04.241 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:04.241 [main] INFO - Request Type: GET +2019-02-11 12:39:04.241 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-11 12:39:04.241 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:04.241 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:04.257 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:04.257 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="VqA7zYo0KVbC13xBXiZED5W9FiZZ2H2GGDNhN6d2iDk=" +2019-02-11 12:39:04.257 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:04.444 [main] INFO - Request Body: null +2019-02-11 12:39:04.444 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments} +2019-02-11 12:39:04.444 [main] INFO - Response Code: 404 +2019-02-11 12:39:04.444 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_c15a5c50-1983-4881-a1f2-28de41d2e0c6 +uniqueTransactionID: 24eb14ca-d09f-47f4-adc0-89b4a2fa0955 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 11 Feb 2019 07:09:04 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: d23c11ce-841e-4b38-86c4-bb1bd8b7086c +OkHttp-Sent-Millis: 1549868944257 +OkHttp-Received-Millis: 1549868944444 + +2019-02-11 12:39:04.444 [main] INFO - ********* END *********: +2019-02-11 12:39:04.475 [main] INFO - ********* START ********* +2019-02-11 12:39:04.475 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:04.475 [main] INFO - Request Type: GET +2019-02-11 12:39:04.475 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches/Owcyk6pl, requestType=GET} +2019-02-11 12:39:04.475 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:04.475 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:04.475 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:04.475 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="eEJLDaoaFEbHNiw+lMhXuqQngu28iooTynZkcCoHt2M=" +2019-02-11 12:39:04.475 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:04.711 [main] INFO - Request Body: null +2019-02-11 12:39:04.711 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches/Owcyk6pl} +2019-02-11 12:39:04.711 [main] INFO - Response Code: 200 +2019-02-11 12:39:04.711 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_1c10a896-49d5-4a76-a773-9c3188c5eeb2 +Cache-Control: no-cache, no-transform +ETag: "-1139639258" +Expires: Mon, 11 Feb 2019 07:09:04 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:04 GMT +X-Cnection: close +v-c-correlation-id: e092b14e-8a26-4c92-a469-ec63182a97af +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868944475 +OkHttp-Received-Millis: 1549868944694 + +2019-02-11 12:39:04.711 [main] INFO - ********* END *********: +2019-02-11 12:39:04.725 [main] INFO - ********* START ********* +2019-02-11 12:39:04.725 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:04.725 [main] INFO - Request Type: GET +2019-02-11 12:39:04.725 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches/CYBS123, requestType=GET} +2019-02-11 12:39:04.725 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:04.725 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:04.725 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:04.725 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="TeUb1RW5QcWX5mAkU+E3CQLLTbrYohoOADYBcnhT5LY=" +2019-02-11 12:39:04.725 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:04.944 [main] INFO - Request Body: null +2019-02-11 12:39:04.944 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches/Owcyk6pl} +2019-02-11 12:39:04.944 [main] INFO - Response Code: 404 +2019-02-11 12:39:04.944 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_5b9f88e3-b65f-493f-8fa2-040d455d6162 +X-OPNET-Transaction-Trace: a2_2516b3b1-7a43-4141-a520-a3bf64a5fae5 +Cache-Control: no-cache, no-transform +ETag: "-975452876" +Expires: Mon, 11 Feb 2019 07:09:04 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:04 GMT +X-Cnection: close +v-c-correlation-id: 2ada3dee-071d-405e-bb52-e9fd7794b7d0 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868944725 +OkHttp-Received-Millis: 1549868944944 + +2019-02-11 12:39:04.944 [main] INFO - ********* END *********: +2019-02-11 12:39:05.075 [main] INFO - ********* START ********* +2019-02-11 12:39:05.075 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:05.075 [main] INFO - Request Type: GET +2019-02-11 12:39:05.075 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-11 12:39:05.075 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:05.075 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:05.075 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:05.075 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="uZu4zkjOGlU2r8tHBA3pnQCwerI9S1UNnaxZWYprlNA=" +2019-02-11 12:39:05.075 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:05.293 [main] INFO - Request Body: null +2019-02-11 12:39:05.293 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z} +2019-02-11 12:39:05.293 [main] INFO - Response Code: 200 +2019-02-11 12:39:05.293 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_f9f6a804-dddc-41d5-9e03-224fb00716d8 +X-OPNET-Transaction-Trace: a2_99cad814-afdf-49e7-a7ee-202eb822a7f4 +Cache-Control: no-cache, no-transform +ETag: "1091611122" +Expires: Mon, 11 Feb 2019 07:09:05 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:04 GMT +X-Cnection: close +v-c-correlation-id: 374d6c02-7e72-49e0-8811-f8e3c1624069 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868945075 +OkHttp-Received-Millis: 1549868945278 + +2019-02-11 12:39:05.293 [main] INFO - ********* END *********: +2019-02-11 12:39:05.310 [main] INFO - ********* START ********* +2019-02-11 12:39:05.310 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:05.310 [main] INFO - Request Type: GET +2019-02-11 12:39:05.310 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2019-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-11 12:39:05.310 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:05.310 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:05.310 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:05.310 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="2U60kpor7DPcq70YJDxJZ3OxJfAuStovUhqAixLC31Q=" +2019-02-11 12:39:05.310 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:05.528 [main] INFO - Request Body: null +2019-02-11 12:39:05.528 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z} +2019-02-11 12:39:05.528 [main] INFO - Response Code: 400 +2019-02-11 12:39:05.528 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_87aaf252-87a7-40ba-aa97-6137deb161f0 +X-OPNET-Transaction-Trace: a2_2897a628-14a7-4907-93b5-76da4bff11b0 +Cache-Control: no-cache, no-transform +ETag: "-1732043611" +Expires: Mon, 11 Feb 2019 07:09:05 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:05 GMT +X-Cnection: close +v-c-correlation-id: 863bc776-2f83-4373-badd-023430b37a44 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868945310 +OkHttp-Received-Millis: 1549868945528 + +2019-02-11 12:39:05.528 [main] INFO - ********* END *********: +2019-02-11 12:39:05.543 [main] INFO - ********* START ********* +2019-02-11 12:39:05.543 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:05.543 [main] INFO - Request Type: GET +2019-02-11 12:39:05.543 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/transactions/5408386919326811103004, requestType=GET} +2019-02-11 12:39:05.543 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:05.543 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:05.543 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:05.543 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="IeTRIU+fv7usf8XHB3jXajb90pTzecId9vxmOePd8Ps=" +2019-02-11 12:39:05.543 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:06.622 [main] INFO - Request Body: null +2019-02-11 12:39:06.622 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tss/v2/transactions/5408386919326811103004} +2019-02-11 12:39:06.622 [main] INFO - Response Code: 200 +2019-02-11 12:39:06.622 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_3776d353-863f-4001-9d1e-ac777cfe9147 +Cache-Control: no-cache, no-transform +ETag: "-1543210418" +Expires: Mon, 11 Feb 2019 07:09:06 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:06 GMT +X-Cnection: close +v-c-correlation-id: cf369202-a593-485c-8be7-29240282dcf2 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868945559 +OkHttp-Received-Millis: 1549868946606 + +2019-02-11 12:39:06.622 [main] INFO - ********* END *********: +2019-02-11 12:39:06.825 [main] INFO - ********* START ********* +2019-02-11 12:39:06.825 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:06.825 [main] INFO - Request Type: GET +2019-02-11 12:39:06.825 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/transactions/1234567898745651235454, requestType=GET} +2019-02-11 12:39:06.825 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:06.825 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:06.825 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:06.825 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="gtqoPcfKEvwa7b1txNQoMEJp/AylPI5tNHLX5C67Dbc=" +2019-02-11 12:39:06.825 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:07.043 [main] INFO - Request Body: null +2019-02-11 12:39:07.043 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tss/v2/transactions/5408386919326811103004} +2019-02-11 12:39:07.043 [main] INFO - Response Code: 404 +2019-02-11 12:39:07.043 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_9731b30c-d203-44df-b161-4ee514073698 +X-OPNET-Transaction-Trace: a2_94198c67-418f-4aae-bdf0-591f9595e7c2 +Cache-Control: no-cache, no-transform +ETag: "1151868788" +Expires: Mon, 11 Feb 2019 07:09:06 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:06 GMT +X-Cnection: close +v-c-correlation-id: 522b7e4f-1ca6-4452-a6c1-f8cab91255d9 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868946825 +OkHttp-Received-Millis: 1549868947028 + +2019-02-11 12:39:07.043 [main] INFO - ********* END *********: +2019-02-11 12:39:07.078 [main] INFO - ********* START ********* +2019-02-11 12:39:07.078 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:07.078 [main] INFO - Request Type: POST +2019-02-11 12:39:07.078 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-11 12:39:07.078 [main] INFO - Digest: SHA-256=yv1HHIWB0ukuo0JfNKnkDCUcVm1OrwOQ7U4IgWX3zTs= +2019-02-11 12:39:07.078 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:07.078 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:07.078 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:07.078 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="DtShhA0ptlSIH1XYQobh5gUoXXJkz1X3QWlVCbBAKLI=" +2019-02-11 12:39:07.078 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:07.767 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientReferenceInformation.code:12345","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-11 12:39:07.767 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches} +2019-02-11 12:39:07.767 [main] INFO - Response Code: 201 +2019-02-11 12:39:07.767 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_36a39610-dc16-47f6-8dd4-0c71978cf632 +X-OPNET-Transaction-Trace: a2_ac57b098-b749-46c9-9de0-47262c30a97c +Cache-Control: no-cache, no-transform +ETag: "-1737813658" +Expires: Mon, 11 Feb 2019 07:09:07 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 11 Feb 2019 07:09:07 GMT +X-Cnection: close +v-c-correlation-id: 551f5a4e-36a7-4237-9c14-dc028eb01035 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868947094 +OkHttp-Received-Millis: 1549868947767 + +2019-02-11 12:39:07.767 [main] INFO - ********* END *********: +2019-02-11 12:39:07.860 [main] INFO - ********* START ********* +2019-02-11 12:39:07.860 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:07.860 [main] INFO - Request Type: POST +2019-02-11 12:39:07.860 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-11 12:39:07.860 [main] INFO - Digest: SHA-256=MvPxo/GwSzPCnxUumNRkM4jYV4dEdR0iQ6mljgTLqrs= +2019-02-11 12:39:07.860 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:07.860 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:07.860 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:07.860 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="4gVUITaMPWKfdqi/wAgKdw8KwqMAD27cjAGmuhctIEY=" +2019-02-11 12:39:07.860 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:08.110 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientRefeInfo.code:52465","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-11 12:39:08.110 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches} +2019-02-11 12:39:08.110 [main] INFO - Response Code: 400 +2019-02-11 12:39:08.110 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_17cfd5d4-82ed-41ab-8229-471b5ac368cd +X-OPNET-Transaction-Trace: a2_50d74c84-bedc-4cca-bec3-86602c70aac5 +Cache-Control: no-cache, no-transform +ETag: "-652493791" +Expires: Mon, 11 Feb 2019 07:09:08 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 11 Feb 2019 07:09:08 GMT +X-Cnection: close +v-c-correlation-id: 3e71091d-a575-4708-9832-0c350a726ed4 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868947875 +OkHttp-Received-Millis: 1549868948094 + +2019-02-11 12:39:08.110 [main] INFO - ********* END *********: +2019-02-11 12:39:08.128 [main] INFO - ********* START ********* +2019-02-11 12:39:08.128 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:08.128 [main] INFO - Request Type: GET +2019-02-11 12:39:08.128 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc, requestType=GET} +2019-02-11 12:39:08.128 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:08.128 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:08.128 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:08.128 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="UksxzG0Ux0sgYvQk2qF2KNuULuy/dv40qxSDu3bM3fY=" +2019-02-11 12:39:08.128 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:08.347 [main] INFO - Request Body: null +2019-02-11 12:39:08.347 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches} +2019-02-11 12:39:08.347 [main] INFO - Response Code: 400 +2019-02-11 12:39:08.347 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a1b68c9b-e758-403b-b58f-74f9b604aeef +Cache-Control: no-cache, no-transform +ETag: "-1662750822" +Expires: Mon, 11 Feb 2019 07:09:08 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 11 Feb 2019 07:09:08 GMT +X-Cnection: close +v-c-correlation-id: 30f67aaa-098b-4962-8038-aa88667bf408 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868948128 +OkHttp-Received-Millis: 1549868948347 + +2019-02-11 12:39:08.347 [main] INFO - ********* END *********: +2019-02-11 12:39:08.363 [main] INFO - ********* START ********* +2019-02-11 12:39:08.363 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:08.363 [main] INFO - Request Type: GET +2019-02-11 12:39:08.363 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/343hdgff-88uh-23hh-b6d6-5dfjhdtsufh8, requestType=GET} +2019-02-11 12:39:08.363 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:08.363 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:08.363 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:08.363 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="y1Cx6O3guJShnbjktlSSJ2PpYBB3u0g3NNPqov7l3n8=" +2019-02-11 12:39:08.363 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:08.566 [main] INFO - Request Body: null +2019-02-11 12:39:08.566 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc} +2019-02-11 12:39:08.566 [main] INFO - Response Code: 404 +2019-02-11 12:39:08.566 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a6360639-5e6c-4c36-bfcb-0244c3b904b5 +X-OPNET-Transaction-Trace: a2_827322c9-882d-4f7e-8e07-362d2f487cd5 +X-OPNET-Transaction-Trace: a2_f304b18e-bcfd-4882-acb5-82634dd71487 +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Content-Length: 0 +Date: Mon, 11 Feb 2019 07:09:07 GMT +X-Cnection: close +v-c-correlation-id: ecc849f7-6f59-47f0-bfce-00cd9350c8cd +OkHttp-Sent-Millis: 1549868948363 +OkHttp-Received-Millis: 1549868948566 + +2019-02-11 12:39:08.566 [main] INFO - ********* END *********: +2019-02-11 12:39:08.581 [main] INFO - ********* START ********* +2019-02-11 12:39:08.581 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:08.581 [main] INFO - Request Type: GET +2019-02-11 12:39:08.581 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-11 12:39:08.581 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:08.581 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:08.581 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:08.581 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="FYPnHg8srslQ2Nc6oqQbgJYIMUwKikRMIyPZCE7CqR0=" +2019-02-11 12:39:08.581 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:08.847 [main] INFO - Request Body: null +2019-02-11 12:39:08.847 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-11 12:39:08.847 [main] INFO - Response Code: 200 +2019-02-11 12:39:08.847 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_48003e01-d70e-4e9a-9c5c-405ee23f702a +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:08 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: b36f86fe-d0cf-4f42-a2ac-9455f4c84ff4 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868948581 +OkHttp-Received-Millis: 1549868948847 + +2019-02-11 12:39:08.847 [main] INFO - ********* END *********: +2019-02-11 12:39:08.878 [main] INFO - ********* START ********* +2019-02-11 12:39:08.878 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:08.878 [main] INFO - Request Type: GET +2019-02-11 12:39:08.878 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testre&roleId=admin, requestType=GET} +2019-02-11 12:39:08.878 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:08.878 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:08.878 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:08.878 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="R8EQirywOv/yvp1HHdUlplQGX6N2aPUxWDL3tq0fqAU=" +2019-02-11 12:39:08.878 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:09.081 [main] INFO - Request Body: null +2019-02-11 12:39:09.081 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-11 12:39:09.081 [main] INFO - Response Code: 401 +2019-02-11 12:39:09.081 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_3cb016c0-c1ed-4633-ac72-6535b32b4c41 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:08 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a9692fa1-70ff-4ad0-9294-f408a5e24bf8 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868948878 +OkHttp-Received-Millis: 1549868949081 + +2019-02-11 12:39:09.081 [main] INFO - ********* END *********: +2019-02-11 12:39:09.128 [main] INFO - ********* START ********* +2019-02-11 12:39:09.128 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:09.128 [main] INFO - Request Type: GET +2019-02-11 12:39:09.128 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest, requestType=GET} +2019-02-11 12:39:09.128 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:09.128 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:09.128 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:09.128 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="gebeF++rnKLFq3zMD8PVpI1ORuqY6LX9veYtnq3NFOw=" +2019-02-11 12:39:09.128 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:09.691 [main] INFO - Request Body: null +2019-02-11 12:39:09.691 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest} +2019-02-11 12:39:09.691 [main] INFO - Response Code: 200 +2019-02-11 12:39:09.691 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_06adcb80-2a23-4d47-bcf0-8523ac3ea55e +Cache-Control: no-cache, no-transform +ETag: "-1787758933-gzip" +Expires: Mon, 11 Feb 2019 07:09:09 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:09 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 95efd17b-6bfe-4d5a-8072-13f1b03e97c3 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868949128 +OkHttp-Received-Millis: 1549868949691 + +2019-02-11 12:39:09.691 [main] INFO - ********* END *********: +2019-02-11 12:39:09.753 [main] INFO - ********* START ********* +2019-02-11 12:39:09.753 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:09.753 [main] INFO - Request Type: GET +2019-02-11 12:39:09.753 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testtest, requestType=GET} +2019-02-11 12:39:09.753 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:09.753 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:09.753 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:09.753 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="zLunawBEC2U5C2xbzw0D5mt97tM/m67sgpuNlCVY1Bo=" +2019-02-11 12:39:09.753 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:10.206 [main] INFO - Request Body: null +2019-02-11 12:39:10.206 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest} +2019-02-11 12:39:10.206 [main] INFO - Response Code: 403 +2019-02-11 12:39:10.206 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_21fc2215-b5eb-4090-996c-0531bd720e6e +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:09 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 021c793a-1fe8-4a1b-b33c-d335c896fc69 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868949753 +OkHttp-Received-Millis: 1549868950206 + +2019-02-11 12:39:10.206 [main] INFO - ********* END *********: +2019-02-11 12:39:10.233 [main] INFO - ********* START ********* +2019-02-11 12:39:10.233 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:10.233 [main] INFO - Request Type: GET +2019-02-11 12:39:10.233 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA%3D%3D?organizationId=testrest, requestType=GET} +2019-02-11 12:39:10.233 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:10.233 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:10.233 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:10.233 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="8eC23LcKnht5S/PL1QUr3GkX5TDxtam4o/Z7Vx1zfqU=" +2019-02-11 12:39:10.233 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:10.717 [main] INFO - Request Body: null +2019-02-11 12:39:10.717 [main] INFO - Response Message: testrest,TRRReport,TransactionRequestReport,1.10,2018-10-19T16:00:00Z to 2018-10-20T16:00:00Z +RequestID,RequestDate,MerchantReferenceNumber,MerchantID +5399662771246550003001,2018-10-19T16:24:37Z,TC50171_3,testrest +5399664781416551403001,2018-10-19T16:27:58Z,TC50171_3,testrest +5399666196306552903001,2018-10-19T16:30:19Z,TC50171_3,testrest +5399666357576981903005,2018-10-19T16:30:35Z,TC50171_3,testrest +5399680347956058103004,2018-10-19T16:53:54Z,TC50171_3,testrest +5399680431216058303004,2018-10-19T16:54:03Z,TC50171_3,testrest +5399684302416000903005,2018-10-19T17:00:30Z,TC50171_3,testrest +5399684505506723403002,2018-10-19T17:00:50Z,TC50171_3,testrest +5399684781686729303003,2018-10-19T17:01:18Z,TC50171_3,testrest +5399742716346290903004,2018-10-19T18:37:51Z,TC50171_3,testrest +5399742808726291703004,2018-10-19T18:38:00Z,TC50171_3,testrest +5399743679866242703005,2018-10-19T18:39:28Z,TC50171_3,testrest +5399751921786020803003,2018-10-19T18:53:12Z,TC50171_3,testrest +5399761919726317303005,2018-10-19T19:09:52Z,TC50171_3,testrest +5399787878246907603001,2018-10-19T19:53:07Z,TC50171_3,testrest +5399793339576405603004,2018-10-19T20:02:14Z,405195660::1,testrest +5399807626196378603005,2018-10-19T20:26:02Z,405195660::1,testrest +5399810449296963303001,2018-10-19T20:30:45Z,33557799,testrest +5399829987226032203001,2018-10-19T21:03:18Z,1234567890,testrest +5399844740286070303001,2018-10-19T21:27:54Z,TC50171_3,testrest +5399845077266611803006,2018-10-19T21:28:27Z,TC50171_3,testrest +5399845139246229503002,2018-10-19T21:28:34Z,TC50171_3,testrest +5399889652786155003001,2018-10-19T22:42:45Z,TC50171_3,testrest +5399900584196720203006,2018-10-19T23:00:58Z,1234567890,testrest + +2019-02-11 12:39:10.717 [main] INFO - Response Code: 200 +2019-02-11 12:39:10.717 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_8ca6fc8a-5eb5-4a26-975b-744fe7d295ba +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 11 Feb 2019 07:09:10 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Mon, 11 Feb 2019 07:09:10 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: da1fb7ba-6383-407c-849c-7b22f09ffcc8 +OkHttp-Sent-Millis: 1549868950233 +OkHttp-Received-Millis: 1549868950717 + +2019-02-11 12:39:10.717 [main] INFO - ********* END *********: +2019-02-11 12:39:10.749 [main] INFO - ********* START ********* +2019-02-11 12:39:10.749 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:10.749 [main] INFO - Request Type: GET +2019-02-11 12:39:10.749 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0?organizationId=testrest, requestType=GET} +2019-02-11 12:39:10.749 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:10.749 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:10.749 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:10.749 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="BHsNcBcGBfdxpDA7/OYGMQTxWLkmEG+yI9EIaqWcLfI=" +2019-02-11 12:39:10.749 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:11.217 [main] INFO - Request Body: null +2019-02-11 12:39:11.217 [main] INFO - Response Message: + + Field validation errors + cybsapi.validation.errors + VALIDATION_ERROR + + cybsapi.file.id.invalid + fileId + Invalid File ID + + + +2019-02-11 12:39:11.217 [main] INFO - Response Code: 400 +2019-02-11 12:39:11.217 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_4c0b5d97-077d-4737-9910-3ebad9580ca0 +Cache-Control: no-cache, no-transform +ETag: "-807714005-gzip" +Expires: Mon, 11 Feb 2019 07:09:11 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Mon, 11 Feb 2019 07:09:11 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 1da84978-f8da-47ce-9fb2-ba00a6afd09c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868950749 +OkHttp-Received-Millis: 1549868951217 + +2019-02-11 12:39:11.217 [main] INFO - ********* END *********: +2019-02-11 12:39:11.245 [main] INFO - ********* START ********* +2019-02-11 12:39:11.261 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:11.261 [main] INFO - Request Type: GET +2019-02-11 12:39:11.261 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/Texture, requestType=GET} +2019-02-11 12:39:11.261 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:11.261 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:11.261 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:11.261 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="TMw6FItIKUrIbTpKtgr8QiPSc/YCHY8LzWw//x/2EEE=" +2019-02-11 12:39:11.261 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:11.698 [main] INFO - Request Body: null +2019-02-11 12:39:11.698 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture} +2019-02-11 12:39:11.698 [main] INFO - Response Code: 200 +2019-02-11 12:39:11.698 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_4599d3f0-7ad3-40da-9ed6-54dbe2233c31 +X-OPNET-Transaction-Trace: a2_cd52dbf6-3f25-40a9-8023-c8bbf0f58090 +Cache-Control: no-cache, no-transform +ETag: "-1844867216-gzip" +Expires: Mon, 11 Feb 2019 07:09:11 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:11 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c10e00d7-8a4d-40e5-82e4-cb298f6e2925 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868951261 +OkHttp-Received-Millis: 1549868951682 + +2019-02-11 12:39:11.698 [main] INFO - ********* END *********: +2019-02-11 12:39:11.729 [main] INFO - ********* START ********* +2019-02-11 12:39:11.729 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:11.729 [main] INFO - Request Type: GET +2019-02-11 12:39:11.729 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/bplkmdgsd, requestType=GET} +2019-02-11 12:39:11.729 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:11.729 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:11.729 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:11.729 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="lxJep9Q9uECmL7vfLNPJ8bl0O8YVU3fB/iRdMMjSA4A=" +2019-02-11 12:39:11.729 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:12.136 [main] INFO - Request Body: null +2019-02-11 12:39:12.136 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture} +2019-02-11 12:39:12.136 [main] INFO - Response Code: 404 +2019-02-11 12:39:12.136 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_455e6d82-6fa8-4eeb-a8d2-39fa749c6ffc +X-OPNET-Transaction-Trace: a2_5c5a616e-67c2-4d3e-a5fc-e3c43529ec2a +Cache-Control: no-cache, no-transform +ETag: "1764052161-gzip" +Expires: Mon, 11 Feb 2019 07:09:12 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7ca7a5c5-5d37-48c0-8f34-60a8b1af5547 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868951729 +OkHttp-Received-Millis: 1549868952136 + +2019-02-11 12:39:12.136 [main] INFO - ********* END *********: +2019-02-11 12:39:12.167 [main] INFO - ********* START ********* +2019-02-11 12:39:12.167 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:12.167 [main] INFO - Request Type: GET +2019-02-11 12:39:12.167 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=testrest, requestType=GET} +2019-02-11 12:39:12.167 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:12.167 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:12.167 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:12.167 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="G+rgdng2YFj66EMSw4TtFys/Pian22zKfCj0yejw9M4=" +2019-02-11 12:39:12.167 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:12.573 [main] INFO - Request Body: null +2019-02-11 12:39:12.573 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-11 12:39:12.573 [main] INFO - Response Code: 200 +2019-02-11 12:39:12.573 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_0d6577cc-8a53-47c0-88af-d5dae1a26af8 +X-OPNET-Transaction-Trace: a2_1d9aa2cd-f9c9-4885-99a0-7ffe3bad6fc9 +Cache-Control: no-cache, no-transform +ETag: "1846674451-gzip" +Expires: Mon, 11 Feb 2019 07:09:12 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:11 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 71170e15-6827-4691-9ec9-003e5edbff11 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868952167 +OkHttp-Received-Millis: 1549868952573 + +2019-02-11 12:39:12.573 [main] INFO - ********* END *********: +2019-02-11 12:39:12.604 [main] INFO - ********* START ********* +2019-02-11 12:39:12.604 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:12.604 [main] INFO - Request Type: GET +2019-02-11 12:39:12.604 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=bplkmdghd, requestType=GET} +2019-02-11 12:39:12.604 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:12.604 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:12.604 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:12.604 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="p7i63BYcrg5xyrbf1Bs6Fk9Ha8VmnJbfQObQbYCuiEA=" +2019-02-11 12:39:12.604 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:12.995 [main] INFO - Request Body: null +2019-02-11 12:39:12.995 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest} +2019-02-11 12:39:12.995 [main] INFO - Response Code: 400 +2019-02-11 12:39:12.995 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_754bb411-e6df-4b26-85c1-c776778835a5 +X-OPNET-Transaction-Trace: a2_7e4f82f5-66ea-4203-b3bb-ec2b7deb28ae +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: be70cb1b-7be7-41a5-a7dd-5e033feab727 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868952604 +OkHttp-Received-Millis: 1549868952995 + +2019-02-11 12:39:12.995 [main] INFO - ********* END *********: +2019-02-11 12:39:13.027 [main] INFO - ********* START ********* +2019-02-11 12:39:13.027 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:13.027 [main] INFO - Request Type: GET +2019-02-11 12:39:13.027 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/AcquirerExceptionDetailClass, requestType=GET} +2019-02-11 12:39:13.027 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:13.027 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:13.027 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:13.027 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="PXEJhLrduiY9YCHu+CiyKLCYFJXxvbpTeEcMollE03s=" +2019-02-11 12:39:13.027 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:13.449 [main] INFO - Request Body: null +2019-02-11 12:39:13.449 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass} +2019-02-11 12:39:13.449 [main] INFO - Response Code: 200 +2019-02-11 12:39:13.449 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d8cc07ff-7874-4e42-9195-84d2c9d165b3 +X-OPNET-Transaction-Trace: a2_3b27b731-3424-437c-96bb-6dd314fe8201 +Cache-Control: no-cache, no-transform +ETag: "-78621274-gzip" +Expires: Mon, 11 Feb 2019 07:09:13 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:13 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 32da1777-2878-4f6e-bf2c-a75d968d9b13 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868953027 +OkHttp-Received-Millis: 1549868953449 + +2019-02-11 12:39:13.449 [main] INFO - ********* END *********: +2019-02-11 12:39:13.480 [main] INFO - ********* START ********* +2019-02-11 12:39:13.480 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:13.480 [main] INFO - Request Type: GET +2019-02-11 12:39:13.480 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/SubscDetail, requestType=GET} +2019-02-11 12:39:13.480 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:13.480 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:13.480 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:13.480 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="K3SW9mLuV9yoIxSEk8xnbQjc10w3frgn2seEaqsFIbo=" +2019-02-11 12:39:13.480 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:13.902 [main] INFO - Request Body: null +2019-02-11 12:39:13.902 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass} +2019-02-11 12:39:13.902 [main] INFO - Response Code: 404 +2019-02-11 12:39:13.902 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_1758c224-1a2b-4cc6-8cad-14b5bfac5c24 +X-OPNET-Transaction-Trace: a2_0ed87f4e-e6fd-4b7d-862a-610be0612416 +Cache-Control: no-cache, no-transform +ETag: "204857944-gzip" +Expires: Mon, 11 Feb 2019 07:09:13 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:13 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 742464ce-ace3-4c1a-8979-514a403e3b57 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868953480 +OkHttp-Received-Millis: 1549868953902 + +2019-02-11 12:39:13.902 [main] INFO - ********* END *********: +2019-02-11 12:39:13.918 [main] INFO - ********* START ********* +2019-02-11 12:39:13.918 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:13.918 [main] INFO - Request Type: GET +2019-02-11 12:39:13.918 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest, requestType=GET} +2019-02-11 12:39:13.918 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:13.918 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:13.918 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:13.918 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="25qK+wsG7VM6e0IxMGaLwp7OC3oIJFNlFMxfzJ0I+yY=" +2019-02-11 12:39:13.918 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:14.371 [main] INFO - Request Body: null +2019-02-11 12:39:14.371 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest} +2019-02-11 12:39:14.371 [main] INFO - Response Code: 200 +2019-02-11 12:39:14.371 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_525563f5-9519-4a6b-ae26-78bf6a3a9eaf +X-OPNET-Transaction-Trace: a2_5aed857a-c487-4d03-8433-0c57e8ebb7ec +Cache-Control: no-cache, no-transform +ETag: "609183382-gzip" +Expires: Mon, 11 Feb 2019 07:09:14 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:13 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: fd2aa1db-309c-4c9d-8725-62630d4d9622 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868953933 +OkHttp-Received-Millis: 1549868954371 + +2019-02-11 12:39:14.371 [main] INFO - ********* END *********: +2019-02-11 12:39:14.386 [main] INFO - ********* START ********* +2019-02-11 12:39:14.386 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:14.386 [main] INFO - Request Type: GET +2019-02-11 12:39:14.386 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest, requestType=GET} +2019-02-11 12:39:14.386 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:14.386 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:14.386 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:14.386 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="7UQzWKri9YQygApwFUKz7Uf3wFemjjx0Ph+XvM1w/3A=" +2019-02-11 12:39:14.386 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:14.808 [main] INFO - Request Body: null +2019-02-11 12:39:14.808 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest} +2019-02-11 12:39:14.808 [main] INFO - Response Code: 404 +2019-02-11 12:39:14.808 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_9a24b7b1-58f6-4a68-a46a-8aba9f76e29f +X-OPNET-Transaction-Trace: a2_047094eb-1b9e-45dc-aa88-2871fe15af00 +Cache-Control: no-cache, no-transform +ETag: "-830509477-gzip" +Expires: Mon, 11 Feb 2019 07:09:14 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:14 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 2ba8696d-0b86-4944-8479-f995c59e9895 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868954386 +OkHttp-Received-Millis: 1549868954808 + +2019-02-11 12:39:14.808 [main] INFO - ********* END *********: +2019-02-11 12:39:14.837 [main] INFO - ********* START ********* +2019-02-11 12:39:14.837 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:14.837 [main] INFO - Request Type: GET +2019-02-11 12:39:14.837 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=bkalama, requestType=GET} +2019-02-11 12:39:14.837 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:14.837 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:14.837 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:14.837 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="xPJojUs+rf6DfGtZeZUiWrQypVMCBnIsL5GQEenSlS4=" +2019-02-11 12:39:14.837 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:15.228 [main] INFO - Request Body: null +2019-02-11 12:39:15.228 [main] INFO - Response Message: Response{protocol=http/1.1, code=404, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest} +2019-02-11 12:39:15.228 [main] INFO - Response Code: 400 +2019-02-11 12:39:15.228 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_81d101b6-1b7d-476b-9c70-e47f6b6c36c1 +X-OPNET-Transaction-Trace: a2_d5d95042-cb1b-4021-93d8-ab98fe925f70 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:15 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 2d9706e5-577f-47f4-86a2-dad58b3eb8d1 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868954837 +OkHttp-Received-Millis: 1549868955228 + +2019-02-11 12:39:15.228 [main] INFO - ********* END *********: +2019-02-11 12:39:15.243 [main] INFO - ********* START ********* +2019-02-11 12:39:15.243 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:15.243 [main] INFO - Request Type: GET +2019-02-11 12:39:15.243 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=GET} +2019-02-11 12:39:15.243 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:15.243 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:15.243 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:15.243 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="9N966CqBaqRkeYb91DVSEZHKokwUqhq1O6xVkOJhMEA=" +2019-02-11 12:39:15.243 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:15.837 [main] INFO - Request Body: null +2019-02-11 12:39:15.837 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-11 12:39:15.837 [main] INFO - Response Code: 200 +2019-02-11 12:39:15.837 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_bae94fae-1c97-46a1-9395-370e626e5a4e +X-OPNET-Transaction-Trace: a2_627b87cd-e16a-44b5-b9fd-610ca15edd4e +Cache-Control: no-cache, no-transform +ETag: "-1767230507-gzip" +Expires: Mon, 11 Feb 2019 07:09:15 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:15 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 80987243-5765-409f-b8e1-1d0bc3994697 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868955259 +OkHttp-Received-Millis: 1549868955837 + +2019-02-11 12:39:15.837 [main] INFO - ********* END *********: +2019-02-11 12:39:15.868 [main] INFO - ********* START ********* +2019-02-11 12:39:15.868 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:15.868 [main] INFO - Request Type: POST +2019-02-11 12:39:15.868 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-11 12:39:15.868 [main] INFO - Digest: SHA-256=loFSrgLcFUKQZ5yG+wiEAwrYOdwvmVHAUHYgknwquSs= +2019-02-11 12:39:15.868 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:15.868 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:15.868 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:15.868 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="9l5RwZqFw8P0cxxHygOVU0I0n+zpw2F4xZ+TL3g9tRA=" +2019-02-11 12:39:15.868 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:16.603 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_feb8","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-11 12:39:16.603 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-11 12:39:16.603 [main] INFO - Response Code: 400 +2019-02-11 12:39:16.603 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_bcae6368-9dfa-49dc-a15e-9a015e70adb2 +X-OPNET-Transaction-Trace: a2_08d98517-eb81-40a7-a340-08cd50fcfb05 +Cache-Control: no-cache, no-transform +ETag: "1012578100-gzip" +Expires: Mon, 11 Feb 2019 07:09:16 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:16 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: af713567-5be5-4202-94c8-aae7c202cf9e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868955884 +OkHttp-Received-Millis: 1549868956603 + +2019-02-11 12:39:16.603 [main] INFO - ********* END *********: +2019-02-11 12:39:16.616 [main] INFO - ********* START ********* +2019-02-11 12:39:16.616 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:16.616 [main] INFO - Request Type: POST +2019-02-11 12:39:16.616 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-11 12:39:16.631 [main] INFO - Digest: SHA-256=WRIH+BI7wCOOoyM2il5xk/FPn4NdlvPoyhCGODb0BzU= +2019-02-11 12:39:16.631 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:16.631 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:16.631 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:16.631 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="3MPPs9UoGZ1tgNNu3yCCZVlIq/Qjfvjn7Ly3zaS08Xc=" +2019-02-11 12:39:16.631 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:17.053 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequ","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v2","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-11 12:39:17.053 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest} +2019-02-11 12:39:17.053 [main] INFO - Response Code: 400 +2019-02-11 12:39:17.053 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_0eaa2852-2ba9-46a2-98d6-2ee81a7625ef +X-OPNET-Transaction-Trace: a2_c52df6ab-8ec8-4c4f-a05c-b0b28e3205d5 +Cache-Control: no-cache, no-transform +ETag: "-393622008-gzip" +Expires: Mon, 11 Feb 2019 07:09:16 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:16 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 125faa09-bd30-4ca6-b4a7-544002be28d2 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868956647 +OkHttp-Received-Millis: 1549868957053 + +2019-02-11 12:39:17.053 [main] INFO - ********* END *********: +2019-02-11 12:39:17.085 [main] INFO - ********* START ********* +2019-02-11 12:39:17.085 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:17.085 [main] INFO - Request Type: PUT +2019-02-11 12:39:17.085 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-11 12:39:17.085 [main] INFO - Digest: SHA-256=B/CNo4vGf0K3COzdmREEjeuLmdsPOBHwwJmY0FsUW1I= +2019-02-11 12:39:17.085 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:17.085 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:17.085 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:17.085 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="IwmK15Aurlkcfvb9HwQlIPZAYiv8A2kRJwNQPx5iUBM=" +2019-02-11 12:39:17.085 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:17.866 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testrest_v604","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-11 12:39:17.866 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-11 12:39:17.866 [main] INFO - Response Code: 201 +2019-02-11 12:39:17.866 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e5a9da0e-b37b-4d9f-b6b9-c2acf6d4d74e +X-OPNET-Transaction-Trace: a2_c73cb828-eebd-4607-bc96-a3cd53a3a41b +Cache-Control: no-cache, no-transform +ETag: "689991228-gzip" +Expires: Mon, 11 Feb 2019 07:09:17 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:16 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7bc7e1f5-52b9-4027-97d5-2108aa551fa2 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868957100 +OkHttp-Received-Millis: 1549868957866 + +2019-02-11 12:39:17.866 [main] INFO - ********* END *********: +2019-02-11 12:39:17.881 [main] INFO - ********* START ********* +2019-02-11 12:39:17.881 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:17.881 [main] INFO - Request Type: PUT +2019-02-11 12:39:17.881 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-11 12:39:17.881 [main] INFO - Digest: SHA-256=obbqGQ7vcDgZ90wEsXruRpyQJFe9W4E+z7Ervkj3v7c= +2019-02-11 12:39:17.881 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:17.881 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:17.881 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:17.881 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ARn4gnXxXMFnIReyKYiXKkKCOXsVh16IgELhYOvNOgg=" +2019-02-11 12:39:17.881 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:18.303 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-11 12:39:18.303 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions} +2019-02-11 12:39:18.303 [main] INFO - Response Code: 400 +2019-02-11 12:39:18.303 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_55d4b2e4-f93a-41f8-afb0-f4df94f81054 +X-OPNET-Transaction-Trace: a2_4527b18f-1f68-4a89-83dc-b700be92cff7 +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Mon, 11 Feb 2019 07:09:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:17 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 23fee9dc-7160-485b-af48-68d8f0ee0b4e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868957897 +OkHttp-Received-Millis: 1549868958303 + +2019-02-11 12:39:18.303 [main] INFO - ********* END *********: +2019-02-11 12:39:18.332 [main] INFO - ********* START ********* +2019-02-11 12:39:18.332 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:18.332 [main] INFO - Request Type: DELETE +2019-02-11 12:39:18.332 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/testrest_v604, requestType=DELETE} +2019-02-11 12:39:18.332 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:18.332 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:18.332 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:18.332 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="wfiwAkzzT2pkeug/RLM9Rfi7k2Nzyd//eDV2+Ynhic0=" +2019-02-11 12:39:18.332 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:18.754 [main] INFO - Request Body: null +2019-02-11 12:39:18.754 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604} +2019-02-11 12:39:18.754 [main] INFO - Response Code: 200 +2019-02-11 12:39:18.754 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e4deef82-dddd-492e-86e9-d2b19f150ffe +X-OPNET-Transaction-Trace: a2_ac111303-de59-49a6-acd1-57c387a9955b +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 11 Feb 2019 07:09:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:17 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d924c086-f438-45ac-aec7-8ac5e2efa7cd +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868958347 +OkHttp-Received-Millis: 1549868958754 + +2019-02-11 12:39:18.754 [main] INFO - ********* END *********: +2019-02-11 12:39:18.773 [main] INFO - ********* START ********* +2019-02-11 12:39:18.773 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:18.773 [main] INFO - Request Type: DELETE +2019-02-11 12:39:18.773 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/ghsrrawasbhfhcb, requestType=DELETE} +2019-02-11 12:39:18.773 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:18.773 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:18.773 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:18.773 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Ml1CjN/hpPEV2TuCqEi9uzdRkGV12CtW3hPx3aKdGME=" +2019-02-11 12:39:18.773 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:19.207 [main] INFO - Request Body: null +2019-02-11 12:39:19.207 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604} +2019-02-11 12:39:19.207 [main] INFO - Response Code: 404 +2019-02-11 12:39:19.207 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d2027abf-6acf-4754-bda4-e1c8bbfd0b07 +X-OPNET-Transaction-Trace: a2_55ed2e22-17f8-4a72-93ac-13fe7f28cb8e +Cache-Control: no-cache, no-transform +ETag: "860016692-gzip" +Expires: Mon, 11 Feb 2019 07:09:19 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:18 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: f762c6d9-9b1f-419b-8df3-066e56d43799 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868958801 +OkHttp-Received-Millis: 1549868959207 + +2019-02-11 12:39:19.207 [main] INFO - ********* END *********: +2019-02-11 12:39:19.222 [main] INFO - ********* START ********* +2019-02-11 12:39:19.222 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:19.222 [main] INFO - Request Type: GET +2019-02-11 12:39:19.238 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-11 12:39:19.238 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:19.238 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:19.238 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:19.238 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="iqpLLcZp0mUjKB0LyHc5xjvecl6UBqHsP2MvS7jzZFk=" +2019-02-11 12:39:19.238 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:26.113 [main] INFO - Request Body: null +2019-02-11 12:39:26.113 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime} +2019-02-11 12:39:26.113 [main] INFO - Response Code: 200 +2019-02-11 12:39:26.113 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_5d33d157-7840-4913-81af-55071a689927 +X-OPNET-Transaction-Trace: a2_3f2adb4e-caf5-4bfe-8cd2-adc4aa27ab56 +Cache-Control: no-cache, no-transform +ETag: "98577355-gzip" +Expires: Mon, 11 Feb 2019 07:09:26 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:25 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 0d6d14c9-9d88-484a-bef0-73c6059ff113 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868959238 +OkHttp-Received-Millis: 1549868966113 + +2019-02-11 12:39:26.113 [main] INFO - ********* END *********: +2019-02-11 12:39:26.144 [main] INFO - ********* START ********* +2019-02-11 12:39:26.144 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:26.144 [main] INFO - Request Type: GET +2019-02-11 12:39:26.144 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime, requestType=GET} +2019-02-11 12:39:26.144 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:26.144 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:26.144 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:26.144 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="TvST0LLVMBWR2s7MtvYWnEDUYBJH95n0SP0tfkczb3A=" +2019-02-11 12:39:26.144 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:26.566 [main] INFO - Request Body: null +2019-02-11 12:39:26.566 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime} +2019-02-11 12:39:26.566 [main] INFO - Response Code: 400 +2019-02-11 12:39:26.566 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a6832ddf-15df-460f-a21a-a2d3ec28dcc1 +X-OPNET-Transaction-Trace: a2_dcb23391-1d78-4e17-9b90-c03cea7bdb1e +Cache-Control: no-cache, no-transform +ETag: "480352859-gzip" +Expires: Mon, 11 Feb 2019 07:09:26 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:26 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6aed3ad9-5bc2-4ba3-ae7f-573ec33000d3 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868966144 +OkHttp-Received-Millis: 1549868966566 + +2019-02-11 12:39:26.566 [main] INFO - ********* END *********: +2019-02-11 12:39:26.573 [main] INFO - ********* START ********* +2019-02-11 12:39:26.573 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:26.589 [main] INFO - Request Type: GET +2019-02-11 12:39:26.589 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2019-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-11 12:39:26.589 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:26.589 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:26.589 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:26.589 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="WI+agBvNkD8JqboVKIrNs8O5QShvxStbyAL44ycwstE=" +2019-02-11 12:39:26.589 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:26.995 [main] INFO - Request Body: null +2019-02-11 12:39:26.995 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime} +2019-02-11 12:39:26.995 [main] INFO - Response Code: 404 +2019-02-11 12:39:26.995 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_efac23dc-285b-4ffa-a29a-da268a073293 +X-OPNET-Transaction-Trace: a2_88bdc174-f134-4583-a5c5-e2ad67b7b75d +Cache-Control: no-cache, no-transform +ETag: "1803701484-gzip" +Expires: Mon, 11 Feb 2019 07:09:26 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:26 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 8ac17de0-10d2-4d1a-aa3e-90937a819b05 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868966589 +OkHttp-Received-Millis: 1549868966995 + +2019-02-11 12:39:26.995 [main] INFO - ********* END *********: +2019-02-11 12:39:27.026 [main] INFO - ********* START ********* +2019-02-11 12:39:27.026 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:27.026 [main] INFO - Request Type: GET +2019-02-11 12:39:27.026 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00, requestType=GET} +2019-02-11 12:39:27.026 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:27.026 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:27.026 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:27.026 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="2SpwsDh8rJRkK04YpjW69NLNX2JUgLsso7NmPQyay9k=" +2019-02-11 12:39:27.026 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:27.448 [main] INFO - Request Body: null +2019-02-11 12:39:27.448 [main] INFO - Response Message: Response{protocol=http/1.1, code=404, message=DONE, url=https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2019-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime} +2019-02-11 12:39:27.448 [main] INFO - Response Code: 404 +2019-02-11 12:39:27.448 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_019b05a3-6ffc-4ac1-95a8-9dd9a7d5ed8f +X-OPNET-Transaction-Trace: a2_40a83f53-6783-44ae-b249-46e6a74e7e11 +Cache-Control: no-cache, no-transform +ETag: "1442562825-gzip" +Expires: Mon, 11 Feb 2019 07:09:27 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:26 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 5f352722-0e44-4d10-ad16-0fb5be390146 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868967042 +OkHttp-Received-Millis: 1549868967448 + +2019-02-11 12:39:27.448 [main] INFO - ********* END *********: +2019-02-11 12:39:27.464 [main] INFO - ********* START ********* +2019-02-11 12:39:27.464 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:27.464 [main] INFO - Request Type: GET +2019-02-11 12:39:27.464 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/notification-of-changes?startTime=2019-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-05-30T12%3A00%3A00.000-05%3A00, requestType=GET} +2019-02-11 12:39:27.464 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:27.464 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:27.464 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:27.464 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Y7EYfxadM9085DyyWq845IHlRPULExaXYCOtWhMk0qQ=" +2019-02-11 12:39:27.464 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:27.854 [main] INFO - Request Body: null +2019-02-11 12:39:27.854 [main] INFO - Response Message: Response{protocol=http/1.1, code=404, message=DONE, url=https://apitest.cybersource.com/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00} +2019-02-11 12:39:27.854 [main] INFO - Response Code: 400 +2019-02-11 12:39:27.854 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d93c0691-2859-40df-9170-a547031b43ff +X-OPNET-Transaction-Trace: a2_aa8e36df-8361-41d6-993e-4a5fced7c130 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:27 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d1868365-2aa6-44e1-81ba-4bb485ed989f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868967464 +OkHttp-Received-Millis: 1549868967854 + +2019-02-11 12:39:27.854 [main] INFO - ********* END *********: +2019-02-11 12:39:27.886 [main] INFO - ********* START ********* +2019-02-11 12:39:27.886 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:27.886 [main] INFO - Request Type: GET +2019-02-11 12:39:27.886 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-11 12:39:27.886 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:27.886 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:27.886 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:27.886 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="IJSIt2BG1E/oOcokmCJlXWo+9WNZ4A+5NorQjlyjDYQ=" +2019-02-11 12:39:27.886 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:28.308 [main] INFO - Request Body: null +2019-02-11 12:39:28.323 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/notification-of-changes?startTime=2019-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-05-30T12%3A00%3A00.000-05%3A00} +2019-02-11 12:39:28.323 [main] INFO - Response Code: 400 +2019-02-11 12:39:28.323 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d77b3bcc-8948-4be1-9728-a6bdc55d1b7f +X-OPNET-Transaction-Trace: a2_5948e7f2-ab7e-47c1-ac02-952bf6923ee7 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:28 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: df5b3e8a-aca7-4cff-8381-ed1afa47b0a2 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868967886 +OkHttp-Received-Millis: 1549868968308 + +2019-02-11 12:39:28.323 [main] INFO - ********* END *********: +2019-02-11 12:39:28.339 [main] INFO - ********* START ********* +2019-02-11 12:39:28.339 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:28.339 [main] INFO - Request Type: GET +2019-02-11 12:39:28.339 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2019-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-11 12:39:28.339 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:28.339 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:28.339 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:28.339 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="V8QUqbkjephZfnQsNUiAkm6UedlnIlvtx59dN8X9WYs=" +2019-02-11 12:39:28.339 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:28.745 [main] INFO - Request Body: null +2019-02-11 12:39:28.745 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000} +2019-02-11 12:39:28.745 [main] INFO - Response Code: 400 +2019-02-11 12:39:28.745 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_56f703ad-15d2-4b9a-8a1e-186e07c128ab +X-OPNET-Transaction-Trace: a2_b957dbd9-39dd-4771-b693-4270bcb995df +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:27 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 465d7ada-beeb-4c4b-a0da-7fc69f89e70b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868968339 +OkHttp-Received-Millis: 1549868968745 + +2019-02-11 12:39:28.745 [main] INFO - ********* END *********: +2019-02-11 12:39:28.761 [main] INFO - ********* START ********* +2019-02-11 12:39:28.761 [main] INFO - Authentication Type : http_signature +2019-02-11 12:39:28.761 [main] INFO - Request Type: GET +2019-02-11 12:39:28.761 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=udapaa&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-11 12:39:28.761 [main] INFO - v-c-merchant-id: testrest +2019-02-11 12:39:28.761 [main] INFO - Date: Mon, 11 Feb 2019 07:07:51 GMT +2019-02-11 12:39:28.761 [main] INFO - Host: apitest.cybersource.com +2019-02-11 12:39:28.761 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ewhrcCqD5HJ7N3/WVDg0JVqrUQkEISuFNWrFxHM39xk=" +2019-02-11 12:39:28.761 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-11 12:39:29.167 [main] INFO - Request Body: null +2019-02-11 12:39:29.167 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/reporting/v3/purchase-refund-details?startTime=2019-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000} +2019-02-11 12:39:29.167 [main] INFO - Response Code: 400 +2019-02-11 12:39:29.167 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_98772458-d823-4237-9bbb-8cef1c5a6881 +X-OPNET-Transaction-Trace: a2_ba405540-7d90-4159-9e91-03acb98b2508 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 11 Feb 2019 07:09:28 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4161a2a1-3231-4d05-8cd4-11d3cdfc6dce +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1549868968761 +OkHttp-Received-Millis: 1549868969167 + +2019-02-11 12:39:29.167 [main] INFO - ********* END *********: +2019-02-15 12:41:10.994 [main] INFO - ********* START ********* +2019-02-15 12:41:11.010 [main] INFO - Authentication Type : http_signature +2019-02-15 12:41:11.010 [main] INFO - Request Type: POST +2019-02-15 12:41:11.026 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-15 12:41:11.026 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-15 12:41:11.064 [main] INFO - v-c-merchant-id: testrest +2019-02-15 12:41:11.064 [main] INFO - Date: Fri, 15 Feb 2019 07:11:10 GMT +2019-02-15 12:41:11.064 [main] INFO - Host: apitest.cybersource.com +2019-02-15 12:41:11.064 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="BWQBbbNSmwl7KRgTEHMwH1IS7AEPcxAki3xAdv3Y1RE=" +2019-02-15 12:41:11.064 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-15 12:41:12.401 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-15 12:41:12.401 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-15 12:41:12.401 [main] INFO - Response Code: 200 +2019-02-15 12:41:12.401 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_6e84ad33-21a1-45fc-aba4-ad5629d1fc97 +uniqueTransactionID: a47e4827-7b09-4c9c-8bfa-e511e4f27b00 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "UP54S1VuguDzmXUwGMH0xpcnJoxD8TzZl/OWTkE+wR0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Fri, 15 Feb 2019 07:11:12 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: b3833b47-7e2b-4582-868d-a841df19e8fe +OkHttp-Sent-Millis: 1550214672135 +OkHttp-Received-Millis: 1550214672385 + +2019-02-15 12:41:12.401 [main] INFO - ********* END *********: +2019-02-15 12:41:12.448 [main] INFO - ********* START ********* +2019-02-15 12:41:12.448 [main] INFO - Authentication Type : http_signature +2019-02-15 12:41:12.448 [main] INFO - Request Type: POST +2019-02-15 12:41:12.448 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-15 12:41:12.448 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-15 12:41:12.448 [main] INFO - v-c-merchant-id: testrest +2019-02-15 12:41:12.463 [main] INFO - Date: Fri, 15 Feb 2019 07:11:10 GMT +2019-02-15 12:41:12.463 [main] INFO - Host: apitest.cybersource.com +2019-02-15 12:41:12.463 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="BWQBbbNSmwl7KRgTEHMwH1IS7AEPcxAki3xAdv3Y1RE=" +2019-02-15 12:41:12.463 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-15 12:41:12.666 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-15 12:41:12.666 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-15 12:41:12.666 [main] INFO - Response Code: 400 +2019-02-15 12:41:12.666 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_4496eff0-1d5b-4429-b429-8d909e033a47 +uniqueTransactionID: 913de850-b6f8-410d-9a22-3ee57d8563c0 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Fri, 15 Feb 2019 07:11:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 3a166827-50c2-4c0b-95a6-0cca554c3985 +OkHttp-Sent-Millis: 1550214672479 +OkHttp-Received-Millis: 1550214672666 + +2019-02-15 12:41:12.666 [main] INFO - ********* END *********: +2019-02-15 12:42:30.008 [main] INFO - ********* START ********* +2019-02-15 12:42:30.024 [main] INFO - Authentication Type : http_signature +2019-02-15 12:42:30.024 [main] INFO - Request Type: POST +2019-02-15 12:42:30.024 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-15 12:42:30.024 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-15 12:42:30.024 [main] INFO - v-c-merchant-id: testrest +2019-02-15 12:42:30.024 [main] INFO - Date: Fri, 15 Feb 2019 07:12:29 GMT +2019-02-15 12:42:30.024 [main] INFO - Host: apitest.cybersource.com +2019-02-15 12:42:30.024 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="x3yudvZ2mbrU0eKER7sQ+JBWyFHk5ZLz0g+4+vD4P3M=" +2019-02-15 12:42:30.024 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-15 12:42:31.290 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-15 12:42:31.290 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-15 12:42:31.290 [main] INFO - Response Code: 200 +2019-02-15 12:42:31.290 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_ee63f9b3-433a-4bb7-95ae-b2e426b071c4 +uniqueTransactionID: 24c53ee1-786e-410e-95c5-6aee75da1b28 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "UP54S1VuguDzmXUwGMH0xpcnJoxD8TzZl/OWTkE+wR0=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Fri, 15 Feb 2019 07:12:31 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 7d091f1c-6c4a-48ed-99a3-b421e114077f +OkHttp-Sent-Millis: 1550214751009 +OkHttp-Received-Millis: 1550214751258 + +2019-02-15 12:42:31.290 [main] INFO - ********* END *********: +2019-02-15 12:42:31.337 [main] INFO - ********* START ********* +2019-02-15 12:42:31.337 [main] INFO - Authentication Type : http_signature +2019-02-15 12:42:31.337 [main] INFO - Request Type: POST +2019-02-15 12:42:31.337 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-15 12:42:31.337 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-15 12:42:31.337 [main] INFO - v-c-merchant-id: testrest +2019-02-15 12:42:31.337 [main] INFO - Date: Fri, 15 Feb 2019 07:12:29 GMT +2019-02-15 12:42:31.337 [main] INFO - Host: apitest.cybersource.com +2019-02-15 12:42:31.337 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="x3yudvZ2mbrU0eKER7sQ+JBWyFHk5ZLz0g+4+vD4P3M=" +2019-02-15 12:42:31.337 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-15 12:42:31.540 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-15 12:42:31.540 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tms/v1/instrumentidentifiers} +2019-02-15 12:42:31.540 [main] INFO - Response Code: 400 +2019-02-15 12:42:31.540 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_3d6f7100-18fd-4467-9687-34c56aedc5ca +uniqueTransactionID: e0cd0ea6-9a1c-4f1c-85c6-b881a2d481f7 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Fri, 15 Feb 2019 07:12:31 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6d119887-9914-476b-b0f8-0d72a5ca958b +OkHttp-Sent-Millis: 1550214751352 +OkHttp-Received-Millis: 1550214751540 + +2019-02-15 12:42:31.540 [main] INFO - ********* END *********: +2019-02-15 14:26:12.828 [main] INFO - ********* START ********* +2019-02-15 14:26:12.843 [main] INFO - Authentication Type : http_signature +2019-02-15 14:26:12.843 [main] INFO - Request Type: POST +2019-02-15 14:26:12.843 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-02-15 14:26:12.843 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-02-15 14:26:12.876 [main] INFO - v-c-merchant-id: testrest +2019-02-15 14:26:12.876 [main] INFO - Date: Fri, 15 Feb 2019 08:56:12 GMT +2019-02-15 14:26:12.876 [main] INFO - Host: apitest.cybersource.com +2019-02-15 14:26:12.876 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="pBnKkG+2hEKZ3omnHzeAC7zRc/E+kqWLgl5qcN4KS4E=" +2019-02-15 14:26:12.876 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-15 14:26:14.328 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-15 14:26:14.328 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207982366112103002/captures} +2019-02-15 14:26:14.328 [main] INFO - Response Code: 201 +2019-02-15 14:26:14.328 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 348ms +v-c-correlation-id: b2042542-2e2f-4d16-93a4-77cc6dfb39fd +OkHttp-Sent-Millis: 1550220973750 +OkHttp-Received-Millis: 1550220974297 + +2019-02-15 14:26:14.328 [main] INFO - ********* END *********: +2019-02-15 14:26:14.390 [main] INFO - ********* START ********* +2019-02-15 14:26:14.390 [main] INFO - Authentication Type : http_signature +2019-02-15 14:26:14.390 [main] INFO - Request Type: POST +2019-02-15 14:26:14.390 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-02-15 14:26:14.390 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-02-15 14:26:14.390 [main] INFO - v-c-merchant-id: testrest +2019-02-15 14:26:14.390 [main] INFO - Date: Fri, 15 Feb 2019 08:56:12 GMT +2019-02-15 14:26:14.390 [main] INFO - Host: apitest.cybersource.com +2019-02-15 14:26:14.390 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="GG/T4lweGF7SLA9aCtZeaWA9FQZsH6SyncMjm1DumiQ=" +2019-02-15 14:26:14.390 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-15 14:26:15.031 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-15 14:26:15.047 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-15 14:26:15.047 [main] INFO - Response Code: 201 +2019-02-15 14:26:15.047 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 376ms +v-c-correlation-id: aeb6d9ca-eb32-4b96-9b25-162e4b99359b +OkHttp-Sent-Millis: 1550220974426 +OkHttp-Received-Millis: 1550220975031 + +2019-02-15 14:26:15.047 [main] INFO - ********* END *********: +2019-02-15 14:26:15.062 [main] INFO - ********* START ********* +2019-02-15 14:26:15.062 [main] INFO - Authentication Type : http_signature +2019-02-15 14:26:15.062 [main] INFO - Request Type: POST +2019-02-15 14:26:15.062 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-02-15 14:26:15.062 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-02-15 14:26:15.062 [main] INFO - v-c-merchant-id: testrest +2019-02-15 14:26:15.062 [main] INFO - Date: Fri, 15 Feb 2019 08:56:12 GMT +2019-02-15 14:26:15.062 [main] INFO - Host: apitest.cybersource.com +2019-02-15 14:26:15.062 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="tvG+14QYCz/WkivQBd3lXlgPKPTkDhvVbqmwGKbQOCc=" +2019-02-15 14:26:15.062 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-15 14:26:15.562 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-15 14:26:15.562 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-15 14:26:15.562 [main] INFO - Response Code: 400 +2019-02-15 14:26:15.562 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 312ms +v-c-correlation-id: 3bb735ae-1b98-4e89-b1ae-36b50220c56f +OkHttp-Sent-Millis: 1550220975078 +OkHttp-Received-Millis: 1550220975562 + +2019-02-15 14:26:15.562 [main] INFO - ********* END *********: +2019-02-15 14:27:58.204 [main] INFO - ********* START ********* +2019-02-15 14:27:58.220 [main] INFO - Authentication Type : http_signature +2019-02-15 14:27:58.220 [main] INFO - Request Type: POST +2019-02-15 14:27:58.220 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-02-15 14:27:58.220 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-02-15 14:27:58.251 [main] INFO - v-c-merchant-id: testrest +2019-02-15 14:27:58.251 [main] INFO - Date: Fri, 15 Feb 2019 08:57:57 GMT +2019-02-15 14:27:58.267 [main] INFO - Host: apitest.cybersource.com +2019-02-15 14:27:58.267 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="8RP5pLvSqYlBTDARY+PDvLF5Kyfe4bnd1I4TosGCtM8=" +2019-02-15 14:27:58.267 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-15 14:27:59.657 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-15 14:27:59.657 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207982366112103002/captures} +2019-02-15 14:27:59.657 [main] INFO - Response Code: 201 +2019-02-15 14:27:59.673 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 346ms +v-c-correlation-id: d4496682-5ce3-4b9c-8a82-49572191cba6 +OkHttp-Sent-Millis: 1550221079095 +OkHttp-Received-Millis: 1550221079642 + +2019-02-15 14:27:59.673 [main] INFO - ********* END *********: +2019-02-15 14:27:59.720 [main] INFO - ********* START ********* +2019-02-15 14:27:59.720 [main] INFO - Authentication Type : http_signature +2019-02-15 14:27:59.720 [main] INFO - Request Type: POST +2019-02-15 14:27:59.720 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-02-15 14:27:59.720 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-02-15 14:27:59.720 [main] INFO - v-c-merchant-id: testrest +2019-02-15 14:27:59.720 [main] INFO - Date: Fri, 15 Feb 2019 08:57:57 GMT +2019-02-15 14:27:59.720 [main] INFO - Host: apitest.cybersource.com +2019-02-15 14:27:59.720 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="V50yQTo/+d10CwXVTYoPAhv/7Wz6D3GgZQLXR6a6/I4=" +2019-02-15 14:27:59.720 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-15 14:28:00.314 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-15 14:28:00.314 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-15 14:28:00.314 [main] INFO - Response Code: 201 +2019-02-15 14:28:00.314 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 381ms +v-c-correlation-id: 429f45a1-c7a5-4470-9d20-fdc195f6c453 +OkHttp-Sent-Millis: 1550221079735 +OkHttp-Received-Millis: 1550221080314 + +2019-02-15 14:28:00.314 [main] INFO - ********* END *********: +2019-02-15 14:28:00.345 [main] INFO - ********* START ********* +2019-02-15 14:28:00.345 [main] INFO - Authentication Type : http_signature +2019-02-15 14:28:00.345 [main] INFO - Request Type: POST +2019-02-15 14:28:00.345 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-02-15 14:28:00.345 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-02-15 14:28:00.345 [main] INFO - v-c-merchant-id: testrest +2019-02-15 14:28:00.345 [main] INFO - Date: Fri, 15 Feb 2019 08:57:57 GMT +2019-02-15 14:28:00.345 [main] INFO - Host: apitest.cybersource.com +2019-02-15 14:28:00.345 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="WxaJ/q0aZwqqDot96FzO1MpZEG/wlw/bvRMI3dGfTRg=" +2019-02-15 14:28:00.345 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-15 14:28:00.876 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-15 14:28:00.876 [main] INFO - Response Message: Response{protocol=http/1.1, code=201, message=DONE, url=https://apitest.cybersource.com/pts/v2/payments/5463207988376666803006/captures} +2019-02-15 14:28:00.876 [main] INFO - Response Code: 400 +2019-02-15 14:28:00.876 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 337ms +v-c-correlation-id: 52ea0a2b-853b-4e8b-9405-ef98f1ac77db +OkHttp-Sent-Millis: 1550221080360 +OkHttp-Received-Millis: 1550221080876 + +2019-02-15 14:28:00.876 [main] INFO - ********* END *********: +2019-02-18 14:58:14.563 [main] INFO - ********* START ********* +2019-02-18 14:58:14.579 [main] INFO - Authentication Type : http_signature +2019-02-18 14:58:14.579 [main] INFO - Request Type: POST +2019-02-18 14:58:14.579 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-18 14:58:14.579 [main] INFO - Digest: SHA-256=NTEgGTO0S/Q4uLa31n32FPLByTOx0Y4C4nAozKMXflE= +2019-02-18 14:58:14.626 [main] INFO - v-c-merchant-id: testrest +2019-02-18 14:58:14.626 [main] INFO - Date: Mon, 18 Feb 2019 09:28:13 GMT +2019-02-18 14:58:14.626 [main] INFO - Host: apitest.cybersource.com +2019-02-18 14:58:14.626 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="BQ6phVRfKrD4rxLNgzfTKsP0f7pvz/3ojezwe3GBqK4=" +2019-02-18 14:58:14.626 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-18 14:58:16.079 [main] INFO - Request Body: {"keyId":"078cNRFLmTIrTCeW24GHiFSBDPLRjjQ0","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-18 14:58:16.079 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [078cNRFLmTIrTCeW24GHiFSBDPLRjjQ0]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-18 14:58:16.079 [main] INFO - Response Code: 400 +2019-02-18 14:58:16.079 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=LlgcY4w4k87ewaeYzJLhjKlMgpExFnNaCj6NDVSqwnw= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Mon, 18 Feb 2019 09:28:15 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 162eaf3b-84c5-4ae8-a323-eb07296fdd2f +OkHttp-Sent-Millis: 1550482095876 +OkHttp-Received-Millis: 1550482096048 + +2019-02-18 14:58:16.079 [main] INFO - ********* END *********: +2019-02-18 14:58:16.126 [main] INFO - ********* START ********* +2019-02-18 14:58:16.126 [main] INFO - Authentication Type : http_signature +2019-02-18 14:58:16.126 [main] INFO - Request Type: POST +2019-02-18 14:58:16.126 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-18 14:58:16.126 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-02-18 14:58:16.126 [main] INFO - v-c-merchant-id: testrest +2019-02-18 14:58:16.126 [main] INFO - Date: Mon, 18 Feb 2019 09:28:13 GMT +2019-02-18 14:58:16.126 [main] INFO - Host: apitest.cybersource.com +2019-02-18 14:58:16.126 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="EC9J1riGP349/wheEaKJ/9ONPd9WcDQe72SxLXYm8nI=" +2019-02-18 14:58:16.126 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-18 14:58:16.282 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-18 14:58:16.282 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/flex/v1/tokens/} +2019-02-18 14:58:16.282 [main] INFO - Response Code: 400 +2019-02-18 14:58:16.282 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Mon, 18 Feb 2019 09:28:16 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d50c4eb5-1090-4443-b585-ce9c03b73532 +OkHttp-Sent-Millis: 1550482096141 +OkHttp-Received-Millis: 1550482096282 + +2019-02-18 14:58:16.282 [main] INFO - ********* END *********: +2019-02-21 10:24:15.335 [main] INFO - ********* START ********* +2019-02-21 10:24:15.351 [main] INFO - Authentication Type : http_signature +2019-02-21 10:24:15.351 [main] INFO - Request Type: GET +2019-02-21 10:24:15.351 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc, requestType=GET} +2019-02-21 10:24:15.351 [main] INFO - v-c-merchant-id: testrest +2019-02-21 10:24:15.382 [main] INFO - Date: Thu, 21 Feb 2019 04:54:15 GMT +2019-02-21 10:24:15.382 [main] INFO - Host: apitest.cybersource.com +2019-02-21 10:24:15.382 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="uP5zTHLaI52Urlmud+8cJh3C+4ZGV5oK2bfbvawAJ/4=" +2019-02-21 10:24:15.382 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-21 10:24:16.726 [main] INFO - Request Body: null +2019-02-21 10:24:16.726 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc"}},"invalidFields":null,"message":"search Id not fount.","messageKey":null,"missingFields":null} +2019-02-21 10:24:16.726 [main] INFO - Response Code: 400 +2019-02-21 10:24:16.726 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_5413b0df-670c-4c7d-8fcd-dd0d13a083f1 +Cache-Control: no-cache, no-transform +ETag: "-1662750822" +Expires: Thu, 21 Feb 2019 04:54:16 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Thu, 21 Feb 2019 04:54:16 GMT +X-Cnection: close +v-c-correlation-id: 3947a2df-93be-47b3-963b-ae2383d34f28 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550724856304 +OkHttp-Received-Millis: 1550724856695 + +2019-02-21 10:24:16.726 [main] INFO - ********* END *********: +2019-02-21 10:24:16.765 [main] INFO - ********* START ********* +2019-02-21 10:24:16.765 [main] INFO - Authentication Type : http_signature +2019-02-21 10:24:16.765 [main] INFO - Request Type: GET +2019-02-21 10:24:16.765 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/343hdgff-88uh-23hh-b6d6-5dfjhdtsufh8, requestType=GET} +2019-02-21 10:24:16.765 [main] INFO - v-c-merchant-id: testrest +2019-02-21 10:24:16.765 [main] INFO - Date: Thu, 21 Feb 2019 04:54:15 GMT +2019-02-21 10:24:16.765 [main] INFO - Host: apitest.cybersource.com +2019-02-21 10:24:16.765 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="HcoQCj+IhWFDaFzBaGp8AX12jqh+dGs3f5QkfTIHbIw=" +2019-02-21 10:24:16.765 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-21 10:24:16.985 [main] INFO - Request Body: null +2019-02-21 10:24:16.985 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc} +2019-02-21 10:24:16.985 [main] INFO - Response Code: 404 +2019-02-21 10:24:16.985 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_c4b9137d-ca50-4f91-9488-11412195fe04 +X-OPNET-Transaction-Trace: a2_c54c6445-cce1-4f03-9e28-944deb49711c +X-OPNET-Transaction-Trace: a2_aaa2fd8f-0ec8-466c-b7e5-d64381fae170 +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Content-Length: 0 +Date: Thu, 21 Feb 2019 04:54:16 GMT +X-Cnection: close +v-c-correlation-id: ca8d2bfd-5a71-4caa-8c50-460a39508add +OkHttp-Sent-Millis: 1550724856765 +OkHttp-Received-Millis: 1550724856985 + +2019-02-21 10:24:16.985 [main] INFO - ********* END *********: +2019-02-21 10:24:59.344 [main] INFO - ********* START ********* +2019-02-21 10:24:59.359 [main] INFO - Authentication Type : http_signature +2019-02-21 10:24:59.359 [main] INFO - Request Type: GET +2019-02-21 10:24:59.359 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc, requestType=GET} +2019-02-21 10:24:59.359 [main] INFO - v-c-merchant-id: testrest +2019-02-21 10:24:59.391 [main] INFO - Date: Thu, 21 Feb 2019 04:54:58 GMT +2019-02-21 10:24:59.391 [main] INFO - Host: apitest.cybersource.com +2019-02-21 10:24:59.391 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="6d+v4mIL8kRhox7d1EjKgquOD/W7/eMpVbixPzAAc1U=" +2019-02-21 10:24:59.391 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-21 10:25:00.750 [main] INFO - Request Body: null +2019-02-21 10:25:00.750 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc"}},"invalidFields":null,"message":"search Id not fount.","messageKey":null,"missingFields":null} +2019-02-21 10:25:00.750 [main] INFO - Response Code: 400 +2019-02-21 10:25:00.750 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_bccf2f59-8e31-4985-9012-c00232d3c86c +Cache-Control: no-cache, no-transform +ETag: "-1662750822" +Expires: Thu, 21 Feb 2019 04:55:00 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Thu, 21 Feb 2019 04:55:00 GMT +X-Cnection: close +v-c-correlation-id: 998cf7d7-af23-46bd-8e84-be55fccc155a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550724900328 +OkHttp-Received-Millis: 1550724900719 + +2019-02-21 10:25:00.750 [main] INFO - ********* END *********: +2019-02-21 10:25:52.154 [main] INFO - ********* START ********* +2019-02-21 10:25:52.154 [main] INFO - Authentication Type : http_signature +2019-02-21 10:25:52.154 [main] INFO - Request Type: GET +2019-02-21 10:25:52.154 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/343hdgff-88uh-23hh-b6d6-5dfjhdtsufh8, requestType=GET} +2019-02-21 10:25:52.154 [main] INFO - v-c-merchant-id: testrest +2019-02-21 10:25:52.169 [main] INFO - Date: Thu, 21 Feb 2019 04:54:58 GMT +2019-02-21 10:25:52.169 [main] INFO - Host: apitest.cybersource.com +2019-02-21 10:25:52.169 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="DrH1AMfdzfhlMBvZAjHTDOeBu3O6g68oLrE3MB+Rayk=" +2019-02-21 10:25:52.169 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-21 10:25:52.576 [main] INFO - Request Body: null +2019-02-21 10:25:52.576 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc} +2019-02-21 10:25:52.576 [main] INFO - Response Code: 404 +2019-02-21 10:25:52.576 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_ab7edb4a-d101-4a23-a3f2-85eb59a240a2 +X-OPNET-Transaction-Trace: a2_0d729c62-1ba3-4baa-8114-f2e543d20d4b +X-OPNET-Transaction-Trace: a2_ec1966a2-bb8b-42aa-beaf-c91ba0a653a6 +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Content-Length: 0 +Date: Thu, 21 Feb 2019 04:55:52 GMT +X-Cnection: close +v-c-correlation-id: 5290c023-6543-4b96-ae23-e436152153f9 +OkHttp-Sent-Millis: 1550724952169 +OkHttp-Received-Millis: 1550724952576 + +2019-02-21 10:25:52.576 [main] INFO - ********* END *********: +2019-02-21 10:28:02.941 [main] INFO - ********* START ********* +2019-02-21 10:28:02.941 [main] INFO - Authentication Type : http_signature +2019-02-21 10:28:02.941 [main] INFO - Request Type: GET +2019-02-21 10:28:02.957 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc, requestType=GET} +2019-02-21 10:28:02.957 [main] INFO - v-c-merchant-id: testrest +2019-02-21 10:28:02.988 [main] INFO - Date: Thu, 21 Feb 2019 04:58:02 GMT +2019-02-21 10:28:02.988 [main] INFO - Host: apitest.cybersource.com +2019-02-21 10:28:02.988 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="3kylu9JZAUaHHfwr80b6QRULG58kFhnVFemZ+4mv9rI=" +2019-02-21 10:28:02.988 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-21 10:28:04.191 [main] INFO - Request Body: null +2019-02-21 10:28:04.191 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc"}},"invalidFields":null,"message":"search Id not fount.","messageKey":null,"missingFields":null} +2019-02-21 10:28:04.191 [main] INFO - Response Code: 400 +2019-02-21 10:28:04.191 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_796e37e5-3f79-483b-9f05-6e16bde1d7a4 +X-OPNET-Transaction-Trace: a2_cb5c0e84-cf56-4c3b-9c7c-cfc24d5d3b16 +Cache-Control: no-cache, no-transform +ETag: "-1662750822" +Expires: Thu, 21 Feb 2019 04:58:04 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Thu, 21 Feb 2019 04:58:04 GMT +X-Cnection: close +v-c-correlation-id: b14297df-ef8b-45a3-b7db-1ac8c0ac263c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550725083927 +OkHttp-Received-Millis: 1550725084160 + +2019-02-21 10:28:04.191 [main] INFO - ********* END *********: +2019-02-21 10:28:17.408 [main] INFO - ********* START ********* +2019-02-21 10:28:17.408 [main] INFO - Authentication Type : http_signature +2019-02-21 10:28:17.408 [main] INFO - Request Type: GET +2019-02-21 10:28:17.408 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc, requestType=GET} +2019-02-21 10:28:17.408 [main] INFO - v-c-merchant-id: testrest +2019-02-21 10:28:17.408 [main] INFO - Date: Thu, 21 Feb 2019 04:58:02 GMT +2019-02-21 10:28:17.408 [main] INFO - Host: apitest.cybersource.com +2019-02-21 10:28:17.408 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="3kylu9JZAUaHHfwr80b6QRULG58kFhnVFemZ+4mv9rI=" +2019-02-21 10:28:17.408 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-21 10:28:17.642 [main] INFO - Request Body: null +2019-02-21 10:28:17.642 [main] INFO - Response Message: Response{protocol=http/1.1, code=400, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc} +2019-02-21 10:28:17.642 [main] INFO - Response Code: 400 +2019-02-21 10:28:17.642 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_12531a61-c018-4fe2-8696-7b42eb81f576 +Cache-Control: no-cache, no-transform +ETag: "-1662750822" +Expires: Thu, 21 Feb 2019 04:58:17 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Thu, 21 Feb 2019 04:58:17 GMT +X-Cnection: close +v-c-correlation-id: 34a76f70-eb01-48ad-87f4-0374366cf47d +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550725097408 +OkHttp-Received-Millis: 1550725097642 + +2019-02-21 10:28:17.642 [main] INFO - ********* END *********: +2019-02-21 10:32:00.957 [main] INFO - ********* START ********* +2019-02-21 10:32:00.973 [main] INFO - Authentication Type : http_signature +2019-02-21 10:32:00.973 [main] INFO - Request Type: GET +2019-02-21 10:32:00.973 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/cf031711-465f-42cc-8275-2308f5ca0459, requestType=GET} +2019-02-21 10:32:00.973 [main] INFO - v-c-merchant-id: testrest +2019-02-21 10:32:01.004 [main] INFO - Date: Thu, 21 Feb 2019 05:02:00 GMT +2019-02-21 10:32:01.004 [main] INFO - Host: apitest.cybersource.com +2019-02-21 10:32:01.004 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="LJxgyox/JTez6KRuqeQxjCFR8E2OM8wY2Cc5EntNDu0=" +2019-02-21 10:32:01.004 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-21 10:32:02.457 [main] INFO - Request Body: null +2019-02-21 10:32:02.457 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches/cf031711-465f-42cc-8275-2308f5ca0459} +2019-02-21 10:32:02.457 [main] INFO - Response Code: 200 +2019-02-21 10:32:02.457 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_552e1dba-6f3d-44b2-ae7c-41277a4fb409 +X-OPNET-Transaction-Trace: a2_68bce541-f1f5-41d0-b842-e2fa00c8f079 +Cache-Control: no-cache, no-transform +ETag: "-253974129" +Expires: Thu, 21 Feb 2019 05:02:02 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Thu, 21 Feb 2019 05:02:02 GMT +X-Cnection: close +v-c-correlation-id: 9bc7dc7a-b578-4d5d-809d-508959fa727f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550725321926 +OkHttp-Received-Millis: 1550725322395 + +2019-02-21 10:32:02.457 [main] INFO - ********* END *********: +2019-02-21 10:32:02.648 [main] INFO - ********* START ********* +2019-02-21 10:32:02.648 [main] INFO - Authentication Type : http_signature +2019-02-21 10:32:02.648 [main] INFO - Request Type: GET +2019-02-21 10:32:02.660 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc, requestType=GET} +2019-02-21 10:32:02.660 [main] INFO - v-c-merchant-id: testrest +2019-02-21 10:32:02.660 [main] INFO - Date: Thu, 21 Feb 2019 05:02:00 GMT +2019-02-21 10:32:02.660 [main] INFO - Host: apitest.cybersource.com +2019-02-21 10:32:02.660 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="d7ltYlJU+f11mInsxNzpwoX3dzfUNqq7nwOkrXdZwl8=" +2019-02-21 10:32:02.660 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-21 10:32:02.863 [main] INFO - Request Body: null +2019-02-21 10:32:02.863 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/tss/v2/searches/cf031711-465f-42cc-8275-2308f5ca0459} +2019-02-21 10:32:02.863 [main] INFO - Response Code: 400 +2019-02-21 10:32:02.863 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_34225b52-7809-4ed0-974f-6ba7a05f3d4a +X-OPNET-Transaction-Trace: a2_a5804a81-b09a-4bc2-903d-c77cfb7c1890 +Cache-Control: no-cache, no-transform +ETag: "-1662750822" +Expires: Thu, 21 Feb 2019 05:02:02 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Thu, 21 Feb 2019 05:02:02 GMT +X-Cnection: close +v-c-correlation-id: 1d5e75cb-c854-4616-b7e1-c47e1b95b69d +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550725322660 +OkHttp-Received-Millis: 1550725322863 + +2019-02-21 10:32:02.863 [main] INFO - ********* END *********: +2019-02-21 11:56:10.110 [main] INFO - ********* START ********* +2019-02-21 11:56:10.125 [main] INFO - Authentication Type : http_signature +2019-02-21 11:56:10.125 [main] INFO - Request Type: POST +2019-02-21 11:56:10.125 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-21 11:56:10.125 [main] INFO - Digest: SHA-256=NTEgGTO0S/Q4uLa31n32FPLByTOx0Y4C4nAozKMXflE= +2019-02-21 11:56:10.156 [main] INFO - v-c-merchant-id: testrest +2019-02-21 11:56:10.156 [main] INFO - Date: Thu, 21 Feb 2019 06:26:09 GMT +2019-02-21 11:56:10.156 [main] INFO - Host: apitest.cybersource.com +2019-02-21 11:56:10.156 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="64V/3ktLTfV0i8ZskHJ+m75hkfdSofonrRMojdnd7bA=" +2019-02-21 11:56:10.156 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-21 11:56:11.375 [main] INFO - Request Body: {"keyId":"078cNRFLmTIrTCeW24GHiFSBDPLRjjQ0","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-21 11:56:11.375 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [078cNRFLmTIrTCeW24GHiFSBDPLRjjQ0]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-21 11:56:11.375 [main] INFO - Response Code: 400 +2019-02-21 11:56:11.375 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=LlgcY4w4k87ewaeYzJLhjKlMgpExFnNaCj6NDVSqwnw= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Thu, 21 Feb 2019 06:26:11 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 9b1d52f3-85b0-4b85-bea4-f7780d985b68 +OkHttp-Sent-Millis: 1550730371172 +OkHttp-Received-Millis: 1550730371360 + +2019-02-21 11:56:11.375 [main] INFO - ********* END *********: +2019-02-21 11:56:11.422 [main] INFO - ********* START ********* +2019-02-21 11:56:11.422 [main] INFO - Authentication Type : http_signature +2019-02-21 11:56:11.422 [main] INFO - Request Type: POST +2019-02-21 11:56:11.422 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-21 11:56:11.422 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-02-21 11:56:11.422 [main] INFO - v-c-merchant-id: testrest +2019-02-21 11:56:11.422 [main] INFO - Date: Thu, 21 Feb 2019 06:26:09 GMT +2019-02-21 11:56:11.422 [main] INFO - Host: apitest.cybersource.com +2019-02-21 11:56:11.422 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="j3wPH5UCarZB+vhgQsrmi1M6n3QE2PNiMKQYNjQXC2I=" +2019-02-21 11:56:11.422 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-21 11:56:11.578 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-21 11:56:11.578 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [0023154mudgshfyrtdgfj456fhdggdg1]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-21 11:56:11.578 [main] INFO - Response Code: 400 +2019-02-21 11:56:11.578 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Thu, 21 Feb 2019 06:26:11 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 964ff691-d714-47b1-91ce-0b5430cb462c +OkHttp-Sent-Millis: 1550730371438 +OkHttp-Received-Millis: 1550730371563 + +2019-02-21 11:56:11.578 [main] INFO - ********* END *********: +2019-02-21 11:58:07.954 [main] INFO - ********* START ********* +2019-02-21 11:58:07.970 [main] INFO - Authentication Type : http_signature +2019-02-21 11:58:07.970 [main] INFO - Request Type: POST +2019-02-21 11:58:07.970 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-21 11:58:07.970 [main] INFO - Digest: SHA-256=jNQYA9OvDKi2aiMe5v1oD0pmWKO9fh7qs1uh97o7grM= +2019-02-21 11:58:08.001 [main] INFO - v-c-merchant-id: testrest +2019-02-21 11:58:08.001 [main] INFO - Date: Thu, 21 Feb 2019 06:28:07 GMT +2019-02-21 11:58:08.001 [main] INFO - Host: apitest.cybersource.com +2019-02-21 11:58:08.001 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="S889O+JS0qpPz1qlTvxTfHjRmlD4slG8LGeL+Bx7Zco=" +2019-02-21 11:58:08.001 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-21 11:58:09.485 [main] INFO - Request Body: {"keyId":"07UkZGZbFt1M6JUZqCqh4sNZCa5AzOdP","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-21 11:58:09.485 [main] INFO - Response Message: {"keyId":"07UkZGZbFt1M6JUZqCqh4sNZCa5AzOdP","token":"82628B90D499F806E05341588E0AC415","maskedPan":"555555XXXXXX4444","cardType":"XXXXXXXXX","timestamp":1550730489426,"signedFields":"token,cardType,maskedPan,timestamp","signature":"lGV30pawnI6ivZoW6M77V7guy3qCKRrtjJI/q7Ob78LjHVAmARQFpoNcsTkQhcf/l6Qd9iX4JqTZFiwPSuqyqXXamqSGx5XlLA2Ypbfh3OASlzgGKNiAMUqmTCwKFhcuWWZzy/YsjwOpAQZpeSi7HNTJUsHPj8fWPVU1eJim65A/U3s5HGamQF+wd2fmc5w65DjoVqHu/jO3RGnuLhYR3rU7eUCUUjW9gHTeZR+VcCgp0yZ3n9AWHXZZi+qxDaqBmbYU+V41iVEA6SOl4joO3rNSEeXMKVwPHFbPRzN5tdZfSY8UA9qaaGIkCAg37jJ0S5LffjBjzWxvEupe+INtTQ==","discoverableServices":{},"_embedded":{"icsReply":{"requestId":"5507304891586271003006","instrumentIdentifier":{"id":"7020000000002394444","new":"N","state":"ACTIVE"},"_links":{"self":{"href":"/cybersource/flex/search/v1/logs/tokenProvider/5507304891586271003006"}}}}} +2019-02-21 11:58:09.485 [main] INFO - Response Code: 200 +2019-02-21 11:58:09.485 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=EUXnn7gJGKKQjUQwZPVUcpztZQJOmXRScaHOG6sLRw4= +Content-Type: application/json;charset=UTF-8 +Content-Length: 840 +Date: Thu, 21 Feb 2019 06:28:09 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 0478e1c5-e126-408a-a195-2bc03918a6ed +OkHttp-Sent-Millis: 1550730489032 +OkHttp-Received-Millis: 1550730489470 + +2019-02-21 11:58:09.485 [main] INFO - ********* END *********: +2019-02-21 11:58:10.220 [main] INFO - ********* START ********* +2019-02-21 11:58:10.220 [main] INFO - Authentication Type : http_signature +2019-02-21 11:58:10.220 [main] INFO - Request Type: POST +2019-02-21 11:58:10.220 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-21 11:58:10.220 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-02-21 11:58:10.235 [main] INFO - v-c-merchant-id: testrest +2019-02-21 11:58:10.235 [main] INFO - Date: Thu, 21 Feb 2019 06:28:07 GMT +2019-02-21 11:58:10.235 [main] INFO - Host: apitest.cybersource.com +2019-02-21 11:58:10.235 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="xA7kIcUdJzgX2Jlhx+ZzL91maYOFQH99yDqEmRXqjew=" +2019-02-21 11:58:10.235 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-21 11:58:10.376 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-21 11:58:10.376 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [0023154mudgshfyrtdgfj456fhdggdg1]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-21 11:58:10.376 [main] INFO - Response Code: 400 +2019-02-21 11:58:10.392 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Thu, 21 Feb 2019 06:28:10 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a76a7793-0754-47d4-8925-11dcdf053ee4 +OkHttp-Sent-Millis: 1550730490251 +OkHttp-Received-Millis: 1550730490376 + +2019-02-21 11:58:10.392 [main] INFO - ********* END *********: +2019-02-21 12:02:28.419 [main] INFO - ********* START ********* +2019-02-21 12:02:28.435 [main] INFO - Authentication Type : http_signature +2019-02-21 12:02:28.435 [main] INFO - Request Type: GET +2019-02-21 12:02:28.435 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-21 12:02:28.435 [main] INFO - v-c-merchant-id: testrest +2019-02-21 12:02:28.482 [main] INFO - Date: Thu, 21 Feb 2019 06:32:28 GMT +2019-02-21 12:02:28.482 [main] INFO - Host: apitest.cybersource.com +2019-02-21 12:02:28.482 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="X300LQ9Navax7/6ROmgF9SUf6uBZl4hwH+55mHqxBQY=" +2019-02-21 12:02:28.482 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-21 12:02:29.826 [main] INFO - Request Body: null +2019-02-21 12:02:29.826 [main] INFO - Response Message: {"users":[{"accountInformation":{"userName":"testrest","roleId":"admin","permissions":["CustomerProfileViewPermission","CustomerProfileDeletePermission","CustomerProfileManagementPermission","CustomerProfileTransactionPermission","SubscriptionViewPermission","SubscriptionDeletePermission","SubscriptionManagementPermission","SubscriptionTransactionPermission","VirtualTerminalSettingsViewPermission","VirtualTerminalSettingsManagementPermission","VirtualTerminalTransactionPermission","PaymentVerificationPermission","PaymentDebitPermission","PaymentCreditPermission","PaymentStandAloneCreditPermission","PaymentServiceFeeRefundPermission","PaymentCancellationPermission","ReportSettingsViewPermission","ReportSettingsManagementPermission","ReportViewPermission","ReportDownloadPermission","ELCViewPermission","ELCReturnPermission","ELCResetPermission","DMConfigurationManagementPermission","DMProfileManagementPermission","DMProfileViewPermission","DMListManagementPermission","DMListViewPermission","DMVelocityManagementPermission","DMVelocityViewPermission","DMQueueSettingsManagementPermission","DMQueueSettingsViewPermission","DMReplayRequestManagementPermission","DMReplayRequestViewPermission","CMQueueSearchPermission","CMConvertOrderPermission","CMQueueAssignmentPermission","CMReleaseOwnershipPermission","CMReviewAnyOrderPermission","CMCaseAssignmentPermission","CMPriorityChangePermission","CMMoveOrdersToOtherQueuePermission","CMThirdPartyConfigurationPermission","CMPerformanceStatisticsReviewPermission","CMTimeLimitResetPermission","CMUnrestrictedOrderManagementPermission","CMConvertRejectedOrdersPermission","CMStealOwnershipPermission","CMCaseSLAExemptionPermission","CMThirdPartyRequestsPermission","UserViewPermission","UserUpdatePermission","UserManagementPermission","BankingInformationManagementPermission","MerchantInformationManagementPermission","APIKeyManagementPermission","MessageCenterViewPermission","HOPScriptManagementPermission","HOPSettingsViewPermission","HOPSettingsManagementPermission","HPASecurityManagementPermission","HPASettingsViewPermission","HPASettingsManagementPermission","HPATransactionSearchPermission","TransactionViewPermission","MarkAsTrustedPermission","MarkAsTemporarilyTrustedPermission","MarkAsSuspectPermission","MarkForReviewPermission","RemoveFromHistoryPermission","AccountNumberViewPermission","BatchUploadPermission","ReauthorizePermission","ReauthorizeSettlePermission","NewOrderFromAuthPermission","FullAuthorizationReversalPermission","AUStatusPermission","AUPgpUploadPermission","CbkMgmtAssignChargebackPermission","CbkMgmtViewChargebackPermission","CbkMgmtAcceptAndRebuttalChargebackPermission","CbkMgmtTakeOwnershipPermission","AuditSearchPermission","TransactionSearchExportPermission","CbkMgmtReturnChargebackToQueuePermission","BeneficiaryDetailsViewPermission","BeneficiaryDetailsUpdatePermission","IpConfigurationPermission","SecureFileDownloadPermission","SecureFileUploadPermission","ServiceFeeSettingsViewPermission","ServiceFeeSettingsManagementPermission","MposDeviceManagementPermission","MposDeviceAccessPermission","MposDeviceTIDManagementPermission","PayoutsVirtualTerminalPermission","PayoutsVirtualTerminalSettingsViewPermission","PayoutsVirtualTerminalSettingsManagementPermission","TerminalManagementPermission","ProcessorSettingsPermission","PortfolioRiskControlsViewPermission","PortfolioRiskControlsManagementPermission","MerchantRiskControlsViewPermission","MerchantRiskControlsManagementPermission","KeysManagementPermission","KeysViewPermission","DigitalPaymentsViewPermission","DigitalPaymentsManagementPermission","PayerAuthConfigurationViewPermission","PayerAuthConfigurationManagementPermission","SmartAuthSettingsViewPermission","SmartAuthSettingsManagementPermission","GroupsViewPermission","GroupsManagementPermission","IpSettingsViewPermission","IpSettingsManagementPermission","MerchantBoardingViewPermission","MerchantBoardingManagementPermission","TokenDashboardViewPermission","TokenDashboardManagementPermission","TerminalListViewPermission","MposDeviceViewPermission","ReaderStatusPanelViewPermission","ReaderStatusPanelManagementPermission"],"status":"active","createdTime":"2017-11-17T22:38:06.000Z","lastAccessTime":"2019-02-19T22:25:39.000Z","languagePreference":"","timezone":""},"organizationInformation":{"organizationId":"testrest"},"contactInformation":{"email":"glondhe@visa.com","phoneNumber":"","firstName":"gaurav","lastName":"londhe"},"customFields":{}}]} +2019-02-21 12:02:29.826 [main] INFO - Response Code: 200 +2019-02-21 12:02:29.826 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_5b3e98aa-478f-47bd-b92f-46852e695c51 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Thu, 21 Feb 2019 06:32:29 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 235b8dd9-3f62-4029-9847-19a0050d63df +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550730749419 +OkHttp-Received-Millis: 1550730749779 + +2019-02-21 12:02:29.826 [main] INFO - ********* END *********: +2019-02-21 12:02:30.013 [main] INFO - ********* START ********* +2019-02-21 12:02:30.013 [main] INFO - Authentication Type : http_signature +2019-02-21 12:02:30.013 [main] INFO - Request Type: GET +2019-02-21 12:02:30.013 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testre&roleId=admin, requestType=GET} +2019-02-21 12:02:30.013 [main] INFO - v-c-merchant-id: testrest +2019-02-21 12:02:30.013 [main] INFO - Date: Thu, 21 Feb 2019 06:32:28 GMT +2019-02-21 12:02:30.013 [main] INFO - Host: apitest.cybersource.com +2019-02-21 12:02:30.013 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ugRXJppTSB3Fvw6pRcARMepRO2ZOG68TAd3nACbcIL8=" +2019-02-21 12:02:30.013 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-21 12:02:30.388 [main] INFO - Request Body: null +2019-02-21 12:02:30.388 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-21 12:02:30.388 [main] INFO - Response Code: 401 +2019-02-21 12:02:30.388 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_fc03ed82-8af6-4615-a6da-56e9ac401fa8 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Thu, 21 Feb 2019 06:32:29 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: f49875fe-d73a-41c3-9065-ebfb4e5a9a8f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550730750029 +OkHttp-Received-Millis: 1550730750388 + +2019-02-21 12:02:30.388 [main] INFO - ********* END *********: +2019-02-21 12:03:39.754 [main] INFO - ********* START ********* +2019-02-21 12:03:39.769 [main] INFO - Authentication Type : http_signature +2019-02-21 12:03:39.769 [main] INFO - Request Type: GET +2019-02-21 12:03:39.769 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-21 12:03:39.769 [main] INFO - v-c-merchant-id: testrest +2019-02-21 12:03:39.816 [main] INFO - Date: Thu, 21 Feb 2019 06:33:39 GMT +2019-02-21 12:03:39.816 [main] INFO - Host: apitest.cybersource.com +2019-02-21 12:03:39.816 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="cC+CNrClptSw7A/M36RZ1iUY/dorale/YmsWz6d+aQo=" +2019-02-21 12:03:39.816 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-21 12:03:41.238 [main] INFO - Request Body: null +2019-02-21 12:03:41.238 [main] INFO - Response Message: {"users":[{"accountInformation":{"userName":"testrest","roleId":"admin","permissions":["CustomerProfileViewPermission","CustomerProfileDeletePermission","CustomerProfileManagementPermission","CustomerProfileTransactionPermission","SubscriptionViewPermission","SubscriptionDeletePermission","SubscriptionManagementPermission","SubscriptionTransactionPermission","VirtualTerminalSettingsViewPermission","VirtualTerminalSettingsManagementPermission","VirtualTerminalTransactionPermission","PaymentVerificationPermission","PaymentDebitPermission","PaymentCreditPermission","PaymentStandAloneCreditPermission","PaymentServiceFeeRefundPermission","PaymentCancellationPermission","ReportSettingsViewPermission","ReportSettingsManagementPermission","ReportViewPermission","ReportDownloadPermission","ELCViewPermission","ELCReturnPermission","ELCResetPermission","DMConfigurationManagementPermission","DMProfileManagementPermission","DMProfileViewPermission","DMListManagementPermission","DMListViewPermission","DMVelocityManagementPermission","DMVelocityViewPermission","DMQueueSettingsManagementPermission","DMQueueSettingsViewPermission","DMReplayRequestManagementPermission","DMReplayRequestViewPermission","CMQueueSearchPermission","CMConvertOrderPermission","CMQueueAssignmentPermission","CMReleaseOwnershipPermission","CMReviewAnyOrderPermission","CMCaseAssignmentPermission","CMPriorityChangePermission","CMMoveOrdersToOtherQueuePermission","CMThirdPartyConfigurationPermission","CMPerformanceStatisticsReviewPermission","CMTimeLimitResetPermission","CMUnrestrictedOrderManagementPermission","CMConvertRejectedOrdersPermission","CMStealOwnershipPermission","CMCaseSLAExemptionPermission","CMThirdPartyRequestsPermission","UserViewPermission","UserUpdatePermission","UserManagementPermission","BankingInformationManagementPermission","MerchantInformationManagementPermission","APIKeyManagementPermission","MessageCenterViewPermission","HOPScriptManagementPermission","HOPSettingsViewPermission","HOPSettingsManagementPermission","HPASecurityManagementPermission","HPASettingsViewPermission","HPASettingsManagementPermission","HPATransactionSearchPermission","TransactionViewPermission","MarkAsTrustedPermission","MarkAsTemporarilyTrustedPermission","MarkAsSuspectPermission","MarkForReviewPermission","RemoveFromHistoryPermission","AccountNumberViewPermission","BatchUploadPermission","ReauthorizePermission","ReauthorizeSettlePermission","NewOrderFromAuthPermission","FullAuthorizationReversalPermission","AUStatusPermission","AUPgpUploadPermission","CbkMgmtAssignChargebackPermission","CbkMgmtViewChargebackPermission","CbkMgmtAcceptAndRebuttalChargebackPermission","CbkMgmtTakeOwnershipPermission","AuditSearchPermission","TransactionSearchExportPermission","CbkMgmtReturnChargebackToQueuePermission","BeneficiaryDetailsViewPermission","BeneficiaryDetailsUpdatePermission","IpConfigurationPermission","SecureFileDownloadPermission","SecureFileUploadPermission","ServiceFeeSettingsViewPermission","ServiceFeeSettingsManagementPermission","MposDeviceManagementPermission","MposDeviceAccessPermission","MposDeviceTIDManagementPermission","PayoutsVirtualTerminalPermission","PayoutsVirtualTerminalSettingsViewPermission","PayoutsVirtualTerminalSettingsManagementPermission","TerminalManagementPermission","ProcessorSettingsPermission","PortfolioRiskControlsViewPermission","PortfolioRiskControlsManagementPermission","MerchantRiskControlsViewPermission","MerchantRiskControlsManagementPermission","KeysManagementPermission","KeysViewPermission","DigitalPaymentsViewPermission","DigitalPaymentsManagementPermission","PayerAuthConfigurationViewPermission","PayerAuthConfigurationManagementPermission","SmartAuthSettingsViewPermission","SmartAuthSettingsManagementPermission","GroupsViewPermission","GroupsManagementPermission","IpSettingsViewPermission","IpSettingsManagementPermission","MerchantBoardingViewPermission","MerchantBoardingManagementPermission","TokenDashboardViewPermission","TokenDashboardManagementPermission","TerminalListViewPermission","MposDeviceViewPermission","ReaderStatusPanelViewPermission","ReaderStatusPanelManagementPermission"],"status":"active","createdTime":"2017-11-17T22:38:06.000Z","lastAccessTime":"2019-02-19T22:25:39.000Z","languagePreference":"","timezone":""},"organizationInformation":{"organizationId":"testrest"},"contactInformation":{"email":"glondhe@visa.com","phoneNumber":"","firstName":"gaurav","lastName":"londhe"},"customFields":{}}]} +2019-02-21 12:03:41.238 [main] INFO - Response Code: 200 +2019-02-21 12:03:41.238 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_6e1dccfb-8e6e-4f28-b6a4-3d3e9e173667 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Thu, 21 Feb 2019 06:33:41 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 95f93638-4148-4d12-bb40-01332c6d9e70 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550730820941 +OkHttp-Received-Millis: 1550730821207 + +2019-02-21 12:03:41.238 [main] INFO - ********* END *********: +2019-02-21 12:03:59.910 [main] INFO - ********* START ********* +2019-02-21 12:03:59.910 [main] INFO - Authentication Type : http_signature +2019-02-21 12:03:59.910 [main] INFO - Request Type: GET +2019-02-21 12:03:59.910 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testre&roleId=admin, requestType=GET} +2019-02-21 12:03:59.926 [main] INFO - v-c-merchant-id: testrest +2019-02-21 12:03:59.926 [main] INFO - Date: Thu, 21 Feb 2019 06:33:39 GMT +2019-02-21 12:03:59.926 [main] INFO - Host: apitest.cybersource.com +2019-02-21 12:03:59.926 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="OEEuo3660zLabiYwUk0sXBpvbHqK/xQBQ1XsFagJMiU=" +2019-02-21 12:03:59.926 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-21 12:04:00.442 [main] INFO - Request Body: null +2019-02-21 12:04:00.442 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-21 12:04:00.442 [main] INFO - Response Code: 401 +2019-02-21 12:04:00.442 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_bf03a7d3-1bc9-44dc-a598-d83d4163151e +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Thu, 21 Feb 2019 06:34:00 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a86074f1-aba1-4420-a40d-01251f2bf970 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550730839926 +OkHttp-Received-Millis: 1550730840442 + +2019-02-21 12:04:00.442 [main] INFO - ********* END *********: +2019-02-21 12:18:41.364 [main] INFO - ********* START ********* +2019-02-21 12:18:41.379 [main] INFO - Authentication Type : http_signature +2019-02-21 12:18:41.379 [main] INFO - Request Type: GET +2019-02-21 12:18:41.379 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA%3D%3D?organizationId=testrest, requestType=GET} +2019-02-21 12:18:41.379 [main] INFO - v-c-merchant-id: testrest +2019-02-21 12:18:41.426 [main] INFO - Date: Thu, 21 Feb 2019 06:48:41 GMT +2019-02-21 12:18:41.426 [main] INFO - Host: apitest.cybersource.com +2019-02-21 12:18:41.426 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="xg0kSRDV4tamAyHqT/EA3pDT1VV11suljHKnz6MaoA8=" +2019-02-21 12:18:41.426 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-21 12:18:42.914 [main] INFO - Request Body: null +2019-02-21 12:18:42.914 [main] INFO - Response Message: testrest,TRRReport,TransactionRequestReport,1.10,2018-10-19T16:00:00Z to 2018-10-20T16:00:00Z +RequestID,RequestDate,MerchantReferenceNumber,MerchantID +5399662771246550003001,2018-10-19T16:24:37Z,TC50171_3,testrest +5399664781416551403001,2018-10-19T16:27:58Z,TC50171_3,testrest +5399666196306552903001,2018-10-19T16:30:19Z,TC50171_3,testrest +5399666357576981903005,2018-10-19T16:30:35Z,TC50171_3,testrest +5399680347956058103004,2018-10-19T16:53:54Z,TC50171_3,testrest +5399680431216058303004,2018-10-19T16:54:03Z,TC50171_3,testrest +5399684302416000903005,2018-10-19T17:00:30Z,TC50171_3,testrest +5399684505506723403002,2018-10-19T17:00:50Z,TC50171_3,testrest +5399684781686729303003,2018-10-19T17:01:18Z,TC50171_3,testrest +5399742716346290903004,2018-10-19T18:37:51Z,TC50171_3,testrest +5399742808726291703004,2018-10-19T18:38:00Z,TC50171_3,testrest +5399743679866242703005,2018-10-19T18:39:28Z,TC50171_3,testrest +5399751921786020803003,2018-10-19T18:53:12Z,TC50171_3,testrest +5399761919726317303005,2018-10-19T19:09:52Z,TC50171_3,testrest +5399787878246907603001,2018-10-19T19:53:07Z,TC50171_3,testrest +5399793339576405603004,2018-10-19T20:02:14Z,405195660::1,testrest +5399807626196378603005,2018-10-19T20:26:02Z,405195660::1,testrest +5399810449296963303001,2018-10-19T20:30:45Z,33557799,testrest +5399829987226032203001,2018-10-19T21:03:18Z,1234567890,testrest +5399844740286070303001,2018-10-19T21:27:54Z,TC50171_3,testrest +5399845077266611803006,2018-10-19T21:28:27Z,TC50171_3,testrest +5399845139246229503002,2018-10-19T21:28:34Z,TC50171_3,testrest +5399889652786155003001,2018-10-19T22:42:45Z,TC50171_3,testrest +5399900584196720203006,2018-10-19T23:00:58Z,1234567890,testrest + +2019-02-21 12:18:42.914 [main] INFO - Response Code: 200 +2019-02-21 12:18:42.914 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_04cd3d8b-121f-47ac-8278-47379750a626 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Thu, 21 Feb 2019 06:48:42 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Thu, 21 Feb 2019 06:48:42 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 13b7ffa6-2e81-479e-97dc-1c2b50231968 +OkHttp-Sent-Millis: 1550731722379 +OkHttp-Received-Millis: 1550731722895 + +2019-02-21 12:18:42.914 [main] INFO - ********* END *********: +2019-02-21 12:18:42.957 [main] INFO - ********* START ********* +2019-02-21 12:18:42.957 [main] INFO - Authentication Type : http_signature +2019-02-21 12:18:42.957 [main] INFO - Request Type: GET +2019-02-21 12:18:42.957 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0?organizationId=testrest, requestType=GET} +2019-02-21 12:18:42.957 [main] INFO - v-c-merchant-id: testrest +2019-02-21 12:18:42.957 [main] INFO - Date: Thu, 21 Feb 2019 06:48:41 GMT +2019-02-21 12:18:42.957 [main] INFO - Host: apitest.cybersource.com +2019-02-21 12:18:42.957 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="4TxrerIZOH1qo5SWdmAxdfebwJIQ0ymf9XgoqnEm/5A=" +2019-02-21 12:18:42.973 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-21 12:18:43.489 [main] INFO - Request Body: null +2019-02-21 12:18:43.489 [main] INFO - Response Message: + + Field validation errors + cybsapi.validation.errors + VALIDATION_ERROR + + cybsapi.file.id.invalid + fileId + Invalid File ID + + + +2019-02-21 12:18:43.489 [main] INFO - Response Code: 400 +2019-02-21 12:18:43.489 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_84133a05-a57d-401b-813d-a4a2989b21d6 +Cache-Control: no-cache, no-transform +ETag: "-807714005-gzip" +Expires: Thu, 21 Feb 2019 06:48:43 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Thu, 21 Feb 2019 06:48:43 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4ebd59c7-fc0f-4dd1-b644-35313bb6eec1 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550731722973 +OkHttp-Received-Millis: 1550731723489 + +2019-02-21 12:18:43.489 [main] INFO - ********* END *********: +2019-02-22 16:01:26.070 [main] INFO - ********* START ********* +2019-02-22 16:01:26.083 [main] INFO - Authentication Type : http_signature +2019-02-22 16:01:26.083 [main] INFO - Request Type: GET +2019-02-22 16:01:26.084 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/cf031711-465f-42cc-8275-2308f5ca0459, requestType=GET} +2019-02-22 16:01:26.084 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:01:26.123 [main] INFO - Date: Fri, 22 Feb 2019 10:31:25 GMT +2019-02-22 16:01:26.123 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:01:26.123 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="/8SzJQHiEf5eR9oYT6JvNWiXedBFNIc2ptwm9l6PYd8=" +2019-02-22 16:01:26.124 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:01:28.523 [main] INFO - Request Body: null +2019-02-22 16:01:28.524 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/cf031711-465f-42cc-8275-2308f5ca0459","method":"GET"}},"searchId":"cf031711-465f-42cc-8275-2308f5ca0459","save":false,"name":"TSS search","query":"clientReferenceInformation.code:12345","count":58,"totalCount":58,"limit":100,"offset":0,"sort":"id:asc, submitTimeUtc:asc","timezone":"America/Chicago","submitTimeUtc":"2019-02-21T05:00:14Z","_embedded":{"transactionSummaries":[{"id":"5468475396886870703005","submitTimeUtc":"2019-01-07T07:52:19Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468475396886870703005","method":"GET"}}},{"id":"5468478041966220703004","submitTimeUtc":"2019-01-07T07:56:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468478041966220703004","method":"GET"}}},{"id":"5468480179436393003006","submitTimeUtc":"2019-01-07T08:00:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480179436393003006","method":"GET"}}},{"id":"5468480690446811803002","submitTimeUtc":"2019-01-07T08:01:09Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480690446811803002","method":"GET"}}},{"id":"5468485285666814803002","submitTimeUtc":"2019-01-07T08:08:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485285666814803002","method":"GET"}}},{"id":"5468485710916881003005","submitTimeUtc":"2019-01-07T08:09:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485710916881003005","method":"GET"}}},{"id":"5469521708616037903005","submitTimeUtc":"2019-01-08T12:56:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469521708616037903005","method":"GET"}}},{"id":"5469522883506039403005","submitTimeUtc":"2019-01-08T12:58:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469522883506039403005","method":"GET"}}},{"id":"5469524080436600903006","submitTimeUtc":"2019-01-08T13:00:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524080436600903006","method":"GET"}}},{"id":"5469524351696601103006","submitTimeUtc":"2019-01-08T13:00:35Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524351696601103006","method":"GET"}}},{"id":"5469525663736980803002","submitTimeUtc":"2019-01-08T13:02:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469525663736980803002","method":"GET"}}},{"id":"5469529727066047603005","submitTimeUtc":"2019-01-08T13:09:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469529727066047603005","method":"GET"}}},{"id":"5469535101246615503006","submitTimeUtc":"2019-01-08T13:18:30Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469535101246615503006","method":"GET"}}},{"id":"5469588461766085503005","submitTimeUtc":"2019-01-08T14:47:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469588461766085503005","method":"GET"}}},{"id":"5469589378676352103001","submitTimeUtc":"2019-01-08T14:48:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589378676352103001","method":"GET"}}},{"id":"5469589534636352203001","submitTimeUtc":"2019-01-08T14:49:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589534636352203001","method":"GET"}}},{"id":"5470167162946434803001","submitTimeUtc":"2019-01-09T06:51:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5470167162946434803001","method":"GET"}}},{"id":"5471404274096790203002","submitTimeUtc":"2019-01-10T17:13:47Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5471404274096790203002","method":"GET"}}},{"id":"5475240476326666304005","submitTimeUtc":"2019-01-15T03:47:27Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240476326666304005","method":"GET"}}},{"id":"5475240647986666504005","submitTimeUtc":"2019-01-15T03:47:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240647986666504005","method":"GET"}}},{"id":"5475240694246602504002","submitTimeUtc":"2019-01-15T03:47:49Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240694246602504002","method":"GET"}}},{"id":"5480449281766424303002","submitTimeUtc":"2019-01-21T04:28:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5480449281766424303002","method":"GET"}}},{"id":"5484294159526049603003","submitTimeUtc":"2019-01-25T15:16:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5484294159526049603003","method":"GET"}}},{"id":"5486140097596056803002","submitTimeUtc":"2019-01-27T18:33:29Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486140097596056803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486140097596056803002","method":"GET"}}},{"id":"5486143740386376403005","submitTimeUtc":"2019-01-27T18:39:34Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486143740386376403005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486143740386376403005","method":"GET"}}},{"id":"5486146109726057203002","submitTimeUtc":"2019-01-27T18:43:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486146109726057203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486146109726057203002","method":"GET"}}},{"id":"5486149568856057803002","submitTimeUtc":"2019-01-27T18:49:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486149568856057803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486149568856057803002","method":"GET"}}},{"id":"5486150058926377303005","submitTimeUtc":"2019-01-27T18:50:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150058926377303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150058926377303005","method":"GET"}}},{"id":"5486150718046057903002","submitTimeUtc":"2019-01-27T18:51:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150718046057903002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150718046057903002","method":"GET"}}},{"id":"5486151464616710103006","submitTimeUtc":"2019-01-27T18:52:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486151464616710103006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486151464616710103006","method":"GET"}}},{"id":"5486152183786377503005","submitTimeUtc":"2019-01-27T18:53:38Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486152183786377503005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486152183786377503005","method":"GET"}}},{"id":"5486154059186996103003","submitTimeUtc":"2019-01-27T18:56:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486154059186996103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486154059186996103003","method":"GET"}}},{"id":"5486156635686378003005","submitTimeUtc":"2019-01-27T19:01:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486156635686378003005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486156635686378003005","method":"GET"}}},{"id":"5486157519836378103005","submitTimeUtc":"2019-01-27T19:02:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486157519836378103005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486157519836378103005","method":"GET"}}},{"id":"5486159910726712503006","submitTimeUtc":"2019-01-27T19:06:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486159910726712503006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486159910726712503006","method":"GET"}}},{"id":"5486160598666060203002","submitTimeUtc":"2019-01-27T19:07:40Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486160598666060203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486160598666060203002","method":"GET"}}},{"id":"5488539943826733503004","submitTimeUtc":"2019-01-30T13:13:14Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5488539943826733503004","method":"GET"}}},{"id":"5492626323766108104003","submitTimeUtc":"2019-02-04T06:43:52Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5492626323766108104003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5492626323766108104003","method":"GET"}}},{"id":"5493718508496900303005","submitTimeUtc":"2019-02-05T13:04:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718508496900303005","method":"GET"}}},{"id":"5493718987966748103006","submitTimeUtc":"2019-02-05T13:04:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718987966748103006","method":"GET"}}},{"id":"5495325909106773503001","submitTimeUtc":"2019-02-07T09:43:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495325909106773503001"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495325909106773503001","method":"GET"}}},{"id":"5495326432436411603006","submitTimeUtc":"2019-02-07T09:44:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495326432436411603006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495326432436411603006","method":"GET"}}},{"id":"5495345378096803303002","submitTimeUtc":"2019-02-07T10:15:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495345378096803303002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495345378096803303002","method":"GET"}}},{"id":"5495351977316834703003","submitTimeUtc":"2019-02-07T10:26:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495351977316834703003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495351977316834703003","method":"GET"}}},{"id":"5495352459166850703004","submitTimeUtc":"2019-02-07T10:27:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495352459166850703004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495352459166850703004","method":"GET"}}},{"id":"5495353943786840303005","submitTimeUtc":"2019-02-07T10:29:54Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495353943786840303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495353943786840303005","method":"GET"}}},{"id":"5495375735936863103004","submitTimeUtc":"2019-02-07T11:06:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495375735936863103004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495375735936863103004","method":"GET"}}},{"id":"5496424976256414603001","submitTimeUtc":"2019-02-08T16:14:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5496424976256414603001","method":"GET"}}},{"id":"5498675776826871703002","submitTimeUtc":"2019-02-11T06:46:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498675776826871703002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498675776826871703002","method":"GET"}}},{"id":"5498689371686278103003","submitTimeUtc":"2019-02-11T07:08:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498689371686278103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498689371686278103003","method":"GET"}}},{"id":"5500338731966034504001","submitTimeUtc":"2019-02-13T04:57:53Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500338731966034504001","method":"GET"}}},{"id":"5500340288796036604001","submitTimeUtc":"2019-02-13T05:00:28Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500340288796036604001","method":"GET"}}},{"id":"5500431596766884904002","submitTimeUtc":"2019-02-13T07:32:39Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500431596766884904002","method":"GET"}}},{"id":"5500437054766214104001","submitTimeUtc":"2019-02-13T07:41:45Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500437054766214104001","method":"GET"}}},{"id":"5501219025486844803004","submitTimeUtc":"2019-02-14T05:25:02Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501219025486844803004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501219025486844803004","method":"GET"}}},{"id":"5501289951276934603004","submitTimeUtc":"2019-02-14T07:23:15Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501289951276934603004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501289951276934603004","method":"GET"}}},{"id":"5501373458936421203003","submitTimeUtc":"2019-02-14T09:42:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501373458936421203003","method":"GET"}}},{"id":"5501376636716307403002","submitTimeUtc":"2019-02-14T09:47:43Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501376636716307403002","method":"GET"}}}]}} +2019-02-22 16:01:28.557 [main] INFO - Response Code: 200 +2019-02-22 16:01:28.557 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_464fc6f3-c4ff-40af-b0b3-659a1500a3bb +X-OPNET-Transaction-Trace: a2_5e8dbaa5-35c3-431f-ac93-366548c6c839 +Cache-Control: no-cache, no-transform +ETag: "-253974129" +Expires: Fri, 22 Feb 2019 10:31:28 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Fri, 22 Feb 2019 10:31:28 GMT +X-Cnection: close +v-c-correlation-id: a2d80b2a-2df8-4a8f-aba0-29129228d2bf +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550831487146 +OkHttp-Received-Millis: 1550831488458 + +2019-02-22 16:01:28.557 [main] INFO - ********* END *********: +2019-02-22 16:01:28.780 [main] INFO - ********* START ********* +2019-02-22 16:01:28.780 [main] INFO - Authentication Type : http_signature +2019-02-22 16:01:28.781 [main] INFO - Request Type: GET +2019-02-22 16:01:28.781 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc, requestType=GET} +2019-02-22 16:01:28.782 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:01:28.782 [main] INFO - Date: Fri, 22 Feb 2019 10:31:25 GMT +2019-02-22 16:01:28.782 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:01:28.783 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="rF6pAOgi93EKCZpZIHt5fpWTKlw1ak0eM690DWA9G6o=" +2019-02-22 16:01:28.783 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:01:29.061 [main] INFO - Request Body: null +2019-02-22 16:01:29.062 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc"}},"invalidFields":null,"message":"search Id not fount.","messageKey":null,"missingFields":null} +2019-02-22 16:01:29.063 [main] INFO - Response Code: 400 +2019-02-22 16:01:29.063 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_3def1e5a-ed60-41ac-84a8-2de124d5de30 +Cache-Control: no-cache, no-transform +ETag: "-1662750822" +Expires: Fri, 22 Feb 2019 10:31:28 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Fri, 22 Feb 2019 10:31:28 GMT +X-Cnection: close +v-c-correlation-id: e3c0f955-3746-4843-84d2-3fe78cfca12d +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550831488786 +OkHttp-Received-Millis: 1550831489058 + +2019-02-22 16:01:29.064 [main] INFO - ********* END *********: +2019-02-22 16:05:50.216 [main] INFO - ********* START ********* +2019-02-22 16:05:50.228 [main] INFO - Authentication Type : http_signature +2019-02-22 16:05:50.229 [main] INFO - Request Type: GET +2019-02-22 16:05:50.229 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-22 16:05:50.266 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:05:50.266 [main] INFO - Date: Fri, 22 Feb 2019 10:35:49 GMT +2019-02-22 16:05:50.266 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:05:50.267 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="TQWqhp8kzKLJtNunhIsmNq7U5lxBJ/FZs+mDXb+FDWw=" +2019-02-22 16:05:50.267 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:05:57.573 [main] INFO - Request Body: null +2019-02-22 16:05:57.573 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime"}},"reportSearchResults":[{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-01T16:00:00.000Z","reportEndTime":"2018-08-02T16:00:00.000Z","timezone":"America/Chicago","reportId":"726ba2c2-5b4d-7cff-e053-a2588e0ad3fd","organizationId":"testrest","queuedTime":"2018-08-02T17:34:53.000Z","reportGenerationTime":"2018-08-02T17:34:56.000Z","reportCompletedTime":"2018-08-02T17:34:58.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-02T16:00:00.000Z","reportEndTime":"2018-08-03T16:00:00.000Z","timezone":"America/Chicago","reportId":"728b155d-dbe2-2db9-e053-a2588e0a1848","organizationId":"testrest","queuedTime":"2018-08-03T17:33:01.000Z","reportGenerationTime":"2018-08-03T17:33:04.000Z","reportCompletedTime":"2018-08-03T17:33:05.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-03T16:00:00.000Z","reportEndTime":"2018-08-04T16:00:00.000Z","timezone":"America/Chicago","reportId":"7293dd60-2ff4-2dc3-e053-a2588e0a5d2e","organizationId":"testrest","queuedTime":"2018-08-04T17:32:23.000Z","reportGenerationTime":"2018-08-04T17:32:27.000Z","reportCompletedTime":"2018-08-04T17:32:28.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-04T16:00:00.000Z","reportEndTime":"2018-08-05T16:00:00.000Z","timezone":"America/Chicago","reportId":"7293dd60-7cce-2dc3-e053-a2588e0a5d2e","organizationId":"testrest","queuedTime":"2018-08-05T17:30:34.000Z","reportGenerationTime":"2018-08-05T17:30:38.000Z","reportCompletedTime":"2018-08-05T17:30:40.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-05T16:00:00.000Z","reportEndTime":"2018-08-06T16:00:00.000Z","timezone":"America/Chicago","reportId":"7294af2d-dec6-2dad-e053-a2588e0a6e57","organizationId":"testrest","queuedTime":"2018-08-06T17:34:10.000Z","reportGenerationTime":"2018-08-06T17:34:13.000Z","reportCompletedTime":"2018-08-06T17:34:15.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-06T16:00:00.000Z","reportEndTime":"2018-08-07T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d4c960-e05d-2dbd-e053-a2588e0a4952","organizationId":"testrest","queuedTime":"2018-08-07T17:33:37.000Z","reportGenerationTime":"2018-08-07T17:33:40.000Z","reportCompletedTime":"2018-08-07T17:33:41.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-07T16:00:00.000Z","reportEndTime":"2018-08-08T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d4c960-e530-2dbd-e053-a2588e0a4952","organizationId":"testrest","queuedTime":"2018-08-08T17:32:44.000Z","reportGenerationTime":"2018-08-08T17:32:46.000Z","reportCompletedTime":"2018-08-08T17:32:48.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"TRRReport","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-07T16:00:00.000Z","reportEndTime":"2018-08-08T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d4c960-e531-2dbd-e053-a2588e0a4952","organizationId":"testrest","queuedTime":"2018-08-08T17:32:44.000Z","reportGenerationTime":"2018-08-08T17:32:46.000Z","reportCompletedTime":"2018-08-08T17:32:48.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-08T16:00:00.000Z","reportEndTime":"2018-08-09T16:00:00.000Z","timezone":"America/Chicago","reportId":"728b155d-df16-2db9-e053-a2588e0a1848","organizationId":"testrest","queuedTime":"2018-08-09T17:31:11.000Z","reportGenerationTime":"2018-08-09T17:31:13.000Z","reportCompletedTime":"2018-08-09T17:31:15.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"TRRReport","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-08T16:00:00.000Z","reportEndTime":"2018-08-09T16:00:00.000Z","timezone":"America/Chicago","reportId":"728b155d-df17-2db9-e053-a2588e0a1848","organizationId":"testrest","queuedTime":"2018-08-09T17:31:11.000Z","reportGenerationTime":"2018-08-09T17:31:13.000Z","reportCompletedTime":"2018-08-09T17:31:15.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-09T16:00:00.000Z","reportEndTime":"2018-08-10T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d09c70-2a69-2da5-e053-a2588e0a2ca5","organizationId":"testrest","queuedTime":"2018-08-10T17:34:01.000Z","reportGenerationTime":"2018-08-10T17:34:04.000Z","reportCompletedTime":"2018-08-10T17:34:05.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"TRRReport","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-09T16:00:00.000Z","reportEndTime":"2018-08-10T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d09c70-2a6a-2da5-e053-a2588e0a2ca5","organizationId":"testrest","queuedTime":"2018-08-10T17:34:01.000Z","reportGenerationTime":"2018-08-10T17:34:04.000Z","reportCompletedTime":"2018-08-10T17:34:06.000Z","selectedOrganizationId":null,"groupId":null}]} +2019-02-22 16:05:57.579 [main] INFO - Response Code: 200 +2019-02-22 16:05:57.580 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_61f7eb76-12d6-4f0f-89b8-04a8df99051c +X-OPNET-Transaction-Trace: a2_47d0c969-65a7-476d-a4ae-55f520d689ff +Cache-Control: no-cache, no-transform +ETag: "98577355-gzip" +Expires: Fri, 22 Feb 2019 10:35:57 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:35:56 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 5239669a-7a54-44e4-b090-963886ed7e9b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550831751266 +OkHttp-Received-Millis: 1550831757546 + +2019-02-22 16:05:57.581 [main] INFO - ********* END *********: +2019-02-22 16:05:57.632 [main] INFO - ********* START ********* +2019-02-22 16:05:57.632 [main] INFO - Authentication Type : http_signature +2019-02-22 16:05:57.632 [main] INFO - Request Type: GET +2019-02-22 16:05:57.632 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime, requestType=GET} +2019-02-22 16:05:57.632 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:05:57.632 [main] INFO - Date: Fri, 22 Feb 2019 10:35:49 GMT +2019-02-22 16:05:57.632 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:05:57.632 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="xDsll8GBiYwbTITmzpYV8HgEAQLGsGdvXi0rnzNrPmw=" +2019-02-22 16:05:57.632 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:05:58.112 [main] INFO - Request Body: null +2019-02-22 16:05:58.112 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"timeQueryType","message":"Time Query Type is invalid","localizationKey":null}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:05:58.113 [main] INFO - Response Code: 400 +2019-02-22 16:05:58.114 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_c956011c-3e24-41cf-b236-468de6651594 +X-OPNET-Transaction-Trace: a2_15b3a230-d27e-437d-9aac-3342614a6572 +Cache-Control: no-cache, no-transform +ETag: "480352859-gzip" +Expires: Fri, 22 Feb 2019 10:35:58 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:35:57 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 819f3a71-4912-41b9-a671-850e3ad5b270 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550831757632 +OkHttp-Received-Millis: 1550831758110 + +2019-02-22 16:05:58.114 [main] INFO - ********* END *********: +2019-02-22 16:05:58.142 [main] INFO - ********* START ********* +2019-02-22 16:05:58.142 [main] INFO - Authentication Type : http_signature +2019-02-22 16:05:58.143 [main] INFO - Request Type: GET +2019-02-22 16:05:58.143 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2019-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-22 16:05:58.143 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:05:58.144 [main] INFO - Date: Fri, 22 Feb 2019 10:35:49 GMT +2019-02-22 16:05:58.144 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:05:58.144 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="0HWhQG9BIkFgpygCkCO/hdde9MeH5MNpljjLcJxcWg8=" +2019-02-22 16:05:58.145 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:05:58.585 [main] INFO - Request Body: null +2019-02-22 16:05:58.586 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2019-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"No Reports found."} +2019-02-22 16:05:58.586 [main] INFO - Response Code: 404 +2019-02-22 16:05:58.586 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_3b52b808-41fc-4601-8f11-59637fd020b4 +X-OPNET-Transaction-Trace: a2_408a77e7-7d81-4d02-9b21-088136085450 +Cache-Control: no-cache, no-transform +ETag: "1803701484-gzip" +Expires: Fri, 22 Feb 2019 10:35:58 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:35:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d6769ce3-e890-40c8-bf1e-c79c661baf54 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550831758145 +OkHttp-Received-Millis: 1550831758584 + +2019-02-22 16:05:58.587 [main] INFO - ********* END *********: +2019-02-22 16:07:22.133 [main] INFO - ********* START ********* +2019-02-22 16:07:22.145 [main] INFO - Authentication Type : http_signature +2019-02-22 16:07:22.146 [main] INFO - Request Type: GET +2019-02-22 16:07:22.147 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-22 16:07:22.185 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:07:22.185 [main] INFO - Date: Fri, 22 Feb 2019 10:37:21 GMT +2019-02-22 16:07:22.185 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:07:22.186 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="OY8BCPTqdd+8BX+1yOv0kj7GZLDjBqdQObl1U4M1mU8=" +2019-02-22 16:07:22.186 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:07:23.857 [main] INFO - Request Body: null +2019-02-22 16:07:23.857 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime"}},"reportSearchResults":[{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-01T16:00:00.000Z","reportEndTime":"2018-08-02T16:00:00.000Z","timezone":"America/Chicago","reportId":"726ba2c2-5b4d-7cff-e053-a2588e0ad3fd","organizationId":"testrest","queuedTime":"2018-08-02T17:34:53.000Z","reportGenerationTime":"2018-08-02T17:34:56.000Z","reportCompletedTime":"2018-08-02T17:34:58.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-02T16:00:00.000Z","reportEndTime":"2018-08-03T16:00:00.000Z","timezone":"America/Chicago","reportId":"728b155d-dbe2-2db9-e053-a2588e0a1848","organizationId":"testrest","queuedTime":"2018-08-03T17:33:01.000Z","reportGenerationTime":"2018-08-03T17:33:04.000Z","reportCompletedTime":"2018-08-03T17:33:05.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-03T16:00:00.000Z","reportEndTime":"2018-08-04T16:00:00.000Z","timezone":"America/Chicago","reportId":"7293dd60-2ff4-2dc3-e053-a2588e0a5d2e","organizationId":"testrest","queuedTime":"2018-08-04T17:32:23.000Z","reportGenerationTime":"2018-08-04T17:32:27.000Z","reportCompletedTime":"2018-08-04T17:32:28.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-04T16:00:00.000Z","reportEndTime":"2018-08-05T16:00:00.000Z","timezone":"America/Chicago","reportId":"7293dd60-7cce-2dc3-e053-a2588e0a5d2e","organizationId":"testrest","queuedTime":"2018-08-05T17:30:34.000Z","reportGenerationTime":"2018-08-05T17:30:38.000Z","reportCompletedTime":"2018-08-05T17:30:40.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-05T16:00:00.000Z","reportEndTime":"2018-08-06T16:00:00.000Z","timezone":"America/Chicago","reportId":"7294af2d-dec6-2dad-e053-a2588e0a6e57","organizationId":"testrest","queuedTime":"2018-08-06T17:34:10.000Z","reportGenerationTime":"2018-08-06T17:34:13.000Z","reportCompletedTime":"2018-08-06T17:34:15.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-06T16:00:00.000Z","reportEndTime":"2018-08-07T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d4c960-e05d-2dbd-e053-a2588e0a4952","organizationId":"testrest","queuedTime":"2018-08-07T17:33:37.000Z","reportGenerationTime":"2018-08-07T17:33:40.000Z","reportCompletedTime":"2018-08-07T17:33:41.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-07T16:00:00.000Z","reportEndTime":"2018-08-08T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d4c960-e530-2dbd-e053-a2588e0a4952","organizationId":"testrest","queuedTime":"2018-08-08T17:32:44.000Z","reportGenerationTime":"2018-08-08T17:32:46.000Z","reportCompletedTime":"2018-08-08T17:32:48.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"TRRReport","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-07T16:00:00.000Z","reportEndTime":"2018-08-08T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d4c960-e531-2dbd-e053-a2588e0a4952","organizationId":"testrest","queuedTime":"2018-08-08T17:32:44.000Z","reportGenerationTime":"2018-08-08T17:32:46.000Z","reportCompletedTime":"2018-08-08T17:32:48.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-08T16:00:00.000Z","reportEndTime":"2018-08-09T16:00:00.000Z","timezone":"America/Chicago","reportId":"728b155d-df16-2db9-e053-a2588e0a1848","organizationId":"testrest","queuedTime":"2018-08-09T17:31:11.000Z","reportGenerationTime":"2018-08-09T17:31:13.000Z","reportCompletedTime":"2018-08-09T17:31:15.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"TRRReport","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-08T16:00:00.000Z","reportEndTime":"2018-08-09T16:00:00.000Z","timezone":"America/Chicago","reportId":"728b155d-df17-2db9-e053-a2588e0a1848","organizationId":"testrest","queuedTime":"2018-08-09T17:31:11.000Z","reportGenerationTime":"2018-08-09T17:31:13.000Z","reportCompletedTime":"2018-08-09T17:31:15.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-09T16:00:00.000Z","reportEndTime":"2018-08-10T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d09c70-2a69-2da5-e053-a2588e0a2ca5","organizationId":"testrest","queuedTime":"2018-08-10T17:34:01.000Z","reportGenerationTime":"2018-08-10T17:34:04.000Z","reportCompletedTime":"2018-08-10T17:34:05.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"TRRReport","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-09T16:00:00.000Z","reportEndTime":"2018-08-10T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d09c70-2a6a-2da5-e053-a2588e0a2ca5","organizationId":"testrest","queuedTime":"2018-08-10T17:34:01.000Z","reportGenerationTime":"2018-08-10T17:34:04.000Z","reportCompletedTime":"2018-08-10T17:34:06.000Z","selectedOrganizationId":null,"groupId":null}]} +2019-02-22 16:07:23.859 [main] INFO - Response Code: 200 +2019-02-22 16:07:23.859 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_05df1f30-06ea-4362-9195-eb02d666d394 +X-OPNET-Transaction-Trace: a2_c7203b60-66c0-43f9-a5bd-8e4442293796 +Cache-Control: no-cache, no-transform +ETag: "98577355-gzip" +Expires: Fri, 22 Feb 2019 10:37:23 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:37:23 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 384d5602-bfe3-447e-9a95-6943080e791b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550831843153 +OkHttp-Received-Millis: 1550831843827 + +2019-02-22 16:07:23.859 [main] INFO - ********* END *********: +2019-02-22 16:07:23.911 [main] INFO - ********* START ********* +2019-02-22 16:07:23.911 [main] INFO - Authentication Type : http_signature +2019-02-22 16:07:23.912 [main] INFO - Request Type: GET +2019-02-22 16:07:23.912 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime, requestType=GET} +2019-02-22 16:07:23.912 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:07:23.913 [main] INFO - Date: Fri, 22 Feb 2019 10:37:21 GMT +2019-02-22 16:07:23.913 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:07:23.913 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="b9TvRGOHulh39ooVM+4Aq/4tVhuxr6STO84M3l4p1Sw=" +2019-02-22 16:07:23.914 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:07:24.391 [main] INFO - Request Body: null +2019-02-22 16:07:24.392 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"timeQueryType","message":"Time Query Type is invalid","localizationKey":null}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:07:24.393 [main] INFO - Response Code: 400 +2019-02-22 16:07:24.393 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a583d37a-2275-44cb-aaf0-962aba562bdd +X-OPNET-Transaction-Trace: a2_24396775-0eb6-4dde-a337-f792aaee7b36 +Cache-Control: no-cache, no-transform +ETag: "480352859-gzip" +Expires: Fri, 22 Feb 2019 10:37:24 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:37:23 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 91a9aa5a-1da7-4b29-9887-50bc8bccc8d8 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550831843916 +OkHttp-Received-Millis: 1550831844389 + +2019-02-22 16:07:24.394 [main] INFO - ********* END *********: +2019-02-22 16:07:24.423 [main] INFO - ********* START ********* +2019-02-22 16:07:24.424 [main] INFO - Authentication Type : http_signature +2019-02-22 16:07:24.424 [main] INFO - Request Type: GET +2019-02-22 16:07:24.424 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2019-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-22 16:07:24.425 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:07:24.425 [main] INFO - Date: Fri, 22 Feb 2019 10:37:21 GMT +2019-02-22 16:07:24.425 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:07:24.426 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="zDMEce1ggBfAk3Vc/m/JhKoi2gPtBbzw3o8pyVnBWME=" +2019-02-22 16:07:24.426 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:07:24.856 [main] INFO - Request Body: null +2019-02-22 16:07:24.857 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2019-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"No Reports found."} +2019-02-22 16:07:24.857 [main] INFO - Response Code: 404 +2019-02-22 16:07:24.858 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_5c58cb11-86d3-487c-9f87-5cf8a4a7f5ef +X-OPNET-Transaction-Trace: a2_0f36eafa-55b5-4fab-8405-a6472a066f0e +Cache-Control: no-cache, no-transform +ETag: "1803701484-gzip" +Expires: Fri, 22 Feb 2019 10:37:24 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:37:24 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e83583b3-4212-4a2b-a0bd-391c9d236a30 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550831844427 +OkHttp-Received-Millis: 1550831844855 + +2019-02-22 16:07:24.858 [main] INFO - ********* END *********: +2019-02-22 16:09:22.723 [main] INFO - ********* START ********* +2019-02-22 16:09:22.735 [main] INFO - Authentication Type : http_signature +2019-02-22 16:09:22.736 [main] INFO - Request Type: GET +2019-02-22 16:09:22.736 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testrest%20dec%20V70, requestType=GET} +2019-02-22 16:09:22.736 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:09:22.736 [main] INFO - Date: Fri, 22 Feb 2019 10:39:22 GMT +2019-02-22 16:09:22.736 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:09:22.736 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="9nW4N7fXEV2NC1D179RqHjJ1CFGJrSVY3JfO1Z93krE=" +2019-02-22 16:09:22.736 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:09:24.996 [main] INFO - Request Body: null +2019-02-22 16:09:24.997 [main] INFO - Response Message: + + + + + + + + + + + + +2019-02-22 16:09:24.997 [main] INFO - Response Code: 200 +2019-02-22 16:09:24.998 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_fe1ca567-22f3-40fb-89c9-e161fc0f7b19 +X-OPNET-Transaction-Trace: a2_7397b6b9-3406-489c-a150-d4934546782d +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Fri, 22 Feb 2019 10:39:24 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Fri, 22 Feb 2019 10:39:24 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 22887f37-1f34-4bf8-817e-b5e00586e692 +OkHttp-Sent-Millis: 1550831963755 +OkHttp-Received-Millis: 1550831964978 + +2019-02-22 16:09:24.998 [main] INFO - ********* END *********: +2019-02-22 16:09:25.044 [main] INFO - ********* START ********* +2019-02-22 16:09:25.044 [main] INFO - Authentication Type : http_signature +2019-02-22 16:09:25.045 [main] INFO - Request Type: GET +2019-02-22 16:09:25.045 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testre, requestType=GET} +2019-02-22 16:09:25.045 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:09:25.046 [main] INFO - Date: Fri, 22 Feb 2019 10:39:22 GMT +2019-02-22 16:09:25.046 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:09:25.046 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="DNGSCAT8RpgCItaxmJYiGaM54TtANN2g+WOc8LwzkcU=" +2019-02-22 16:09:25.047 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:09:25.591 [main] INFO - Request Body: null +2019-02-22 16:09:25.591 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-22 16:09:25.592 [main] INFO - Response Code: 404 +2019-02-22 16:09:25.592 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_69176cd0-fa84-4b34-aa75-c577081819ae +X-OPNET-Transaction-Trace: a2_c4506120-961d-45fc-be97-0dc18fc9e686 +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Fri, 22 Feb 2019 10:39:25 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Fri, 22 Feb 2019 10:39:25 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6c688a68-d43c-427f-bc38-74b432d4e443 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550831965051 +OkHttp-Received-Millis: 1550831965587 + +2019-02-22 16:09:25.592 [main] INFO - ********* END *********: +2019-02-22 16:09:25.618 [main] INFO - ********* START ********* +2019-02-22 16:09:25.619 [main] INFO - Authentication Type : http_signature +2019-02-22 16:09:25.619 [main] INFO - Request Type: GET +2019-02-22 16:09:25.619 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-08-02&reportName=testrest_v2, requestType=GET} +2019-02-22 16:09:25.620 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:09:25.620 [main] INFO - Date: Fri, 22 Feb 2019 10:39:22 GMT +2019-02-22 16:09:25.620 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:09:25.621 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="0maf3zP4wW/nyGrBFEMPfYCsfgZLn3YpR7SvozjFJ2c=" +2019-02-22 16:09:25.621 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:09:26.116 [main] INFO - Request Body: null +2019-02-22 16:09:26.117 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-22 16:09:26.118 [main] INFO - Response Code: 404 +2019-02-22 16:09:26.118 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_9a917d28-235c-47a6-b9bb-5537184309e6 +X-OPNET-Transaction-Trace: a2_5de9cc8f-80a9-4919-be98-a17d0788f1a2 +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Fri, 22 Feb 2019 10:39:26 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Fri, 22 Feb 2019 10:39:25 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 0c7d2086-5522-4d14-a798-643674f7f9f5 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550831965622 +OkHttp-Received-Millis: 1550831966115 + +2019-02-22 16:09:26.118 [main] INFO - ********* END *********: +2019-02-22 16:11:46.568 [main] INFO - ********* START ********* +2019-02-22 16:11:46.581 [main] INFO - Authentication Type : http_signature +2019-02-22 16:11:46.581 [main] INFO - Request Type: PUT +2019-02-22 16:11:46.582 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:11:46.583 [main] INFO - Digest: SHA-256=B/CNo4vGf0K3COzdmREEjeuLmdsPOBHwwJmY0FsUW1I= +2019-02-22 16:11:46.626 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:11:46.626 [main] INFO - Date: Fri, 22 Feb 2019 10:41:46 GMT +2019-02-22 16:11:46.626 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:11:46.627 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="GgwB6uBg7xkpDHvnrUACI1rUjfuj7j6g+cb/7Us+cU0=" +2019-02-22 16:11:46.627 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:11:48.364 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testrest_v604","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-22 16:11:48.365 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}}} +2019-02-22 16:11:48.365 [main] INFO - Response Code: 201 +2019-02-22 16:11:48.365 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a98d803c-d4d9-4662-9cb4-ea00850df523 +X-OPNET-Transaction-Trace: a2_771038c9-eba9-4886-93bb-647ec602c08c +Cache-Control: no-cache, no-transform +ETag: "689991228-gzip" +Expires: Fri, 22 Feb 2019 10:41:48 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:41:47 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e03fef44-ffeb-4319-839e-6e4a724158fe +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832107597 +OkHttp-Received-Millis: 1550832108343 + +2019-02-22 16:11:48.366 [main] INFO - ********* END *********: +2019-02-22 16:11:48.398 [main] INFO - ********* START ********* +2019-02-22 16:11:48.399 [main] INFO - Authentication Type : http_signature +2019-02-22 16:11:48.399 [main] INFO - Request Type: PUT +2019-02-22 16:11:48.400 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:11:48.400 [main] INFO - Digest: SHA-256=obbqGQ7vcDgZ90wEsXruRpyQJFe9W4E+z7Ervkj3v7c= +2019-02-22 16:11:48.400 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:11:48.401 [main] INFO - Date: Fri, 22 Feb 2019 10:41:46 GMT +2019-02-22 16:11:48.401 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:11:48.401 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="TGrQ+LSjI936+MtWeKYNvhz5EIoM3w4xtc7lt28NsKo=" +2019-02-22 16:11:48.402 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:11:48.827 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-22 16:11:48.828 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"reportDefinitionName","message":"Invalid report definition specified","localizationKey":"cybsapi.report.reportDefinition.invalid"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:11:48.829 [main] INFO - Response Code: 400 +2019-02-22 16:11:48.830 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_119a3345-c5fd-47a7-9563-a8ec5fdeacbd +X-OPNET-Transaction-Trace: a2_978ac1c4-534a-431b-8afb-698d083e9d06 +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Fri, 22 Feb 2019 10:41:48 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:41:48 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e13d33d0-6bc9-47a2-a150-388cd8ccccb7 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832108406 +OkHttp-Received-Millis: 1550832108813 + +2019-02-22 16:11:48.831 [main] INFO - ********* END *********: +2019-02-22 16:13:12.542 [main] INFO - ********* START ********* +2019-02-22 16:13:12.554 [main] INFO - Authentication Type : http_signature +2019-02-22 16:13:12.555 [main] INFO - Request Type: PUT +2019-02-22 16:13:12.555 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:13:12.556 [main] INFO - Digest: SHA-256=B/CNo4vGf0K3COzdmREEjeuLmdsPOBHwwJmY0FsUW1I= +2019-02-22 16:13:12.593 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:13:12.593 [main] INFO - Date: Fri, 22 Feb 2019 10:43:12 GMT +2019-02-22 16:13:12.593 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:13:12.594 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="x3D7jcgr+j3i1QlY4wLTMUlWDG/6fQMr+Om204enk5c=" +2019-02-22 16:13:12.594 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:13:14.416 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testrest_v604","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-22 16:13:14.417 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"testrest_v604","message":"Report already exists with same fields ","localizationKey":"cybsapi.report.fields.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:13:14.417 [main] INFO - Response Code: 400 +2019-02-22 16:13:14.418 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_9aa45b39-e685-4187-94d6-542cd617b71e +X-OPNET-Transaction-Trace: a2_0e81bff3-04ba-4abe-875b-0a1baf3a3060 +Cache-Control: no-cache, no-transform +ETag: "153253739-gzip" +Expires: Fri, 22 Feb 2019 10:43:14 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:43:13 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6c5e37b0-96a6-441d-b24f-53d2a1e6f38b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832193566 +OkHttp-Received-Millis: 1550832194396 + +2019-02-22 16:13:14.418 [main] INFO - ********* END *********: +2019-02-22 16:13:14.469 [main] INFO - ********* START ********* +2019-02-22 16:13:14.469 [main] INFO - Authentication Type : http_signature +2019-02-22 16:13:14.469 [main] INFO - Request Type: PUT +2019-02-22 16:13:14.470 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:13:14.471 [main] INFO - Digest: SHA-256=obbqGQ7vcDgZ90wEsXruRpyQJFe9W4E+z7Ervkj3v7c= +2019-02-22 16:13:14.472 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:13:14.472 [main] INFO - Date: Fri, 22 Feb 2019 10:43:12 GMT +2019-02-22 16:13:14.472 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:13:14.473 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="m+afzem3UqJOKByGAQ9i272HLMh3k3Y4EUgYgFSex1M=" +2019-02-22 16:13:14.473 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:13:14.914 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-22 16:13:14.914 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"reportDefinitionName","message":"Invalid report definition specified","localizationKey":"cybsapi.report.reportDefinition.invalid"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:13:14.915 [main] INFO - Response Code: 400 +2019-02-22 16:13:14.915 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_853da13c-0756-4444-94ff-f6709f9a54f2 +X-OPNET-Transaction-Trace: a2_1f9d52c8-ebff-405a-8d0b-94199f4cd70a +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Fri, 22 Feb 2019 10:43:14 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:43:14 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ad715ae5-f6dd-499b-8e1e-9cdc9df6e6da +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832194477 +OkHttp-Received-Millis: 1550832194911 + +2019-02-22 16:13:14.915 [main] INFO - ********* END *********: +2019-02-22 16:14:51.654 [main] INFO - ********* START ********* +2019-02-22 16:14:51.667 [main] INFO - Authentication Type : http_signature +2019-02-22 16:14:51.668 [main] INFO - Request Type: PUT +2019-02-22 16:14:51.668 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:14:51.669 [main] INFO - Digest: SHA-256=B/CNo4vGf0K3COzdmREEjeuLmdsPOBHwwJmY0FsUW1I= +2019-02-22 16:14:51.707 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:14:51.708 [main] INFO - Date: Fri, 22 Feb 2019 10:44:51 GMT +2019-02-22 16:14:51.708 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:14:51.708 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="x8UPUCwogo8FCy0LEhRYkkmQJhKVLlqe1PulHCstEZA=" +2019-02-22 16:14:51.709 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:14:53.491 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testrest_v604","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-22 16:14:53.492 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"testrest_v604","message":"Report already exists with same fields ","localizationKey":"cybsapi.report.fields.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:14:53.492 [main] INFO - Response Code: 400 +2019-02-22 16:14:53.493 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_7b05d3f2-5a3e-4bec-a838-58985594408f +X-OPNET-Transaction-Trace: a2_dae662e2-e908-47e1-8947-872dca75f378 +Cache-Control: no-cache, no-transform +ETag: "153253739-gzip" +Expires: Fri, 22 Feb 2019 10:44:53 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:44:53 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 05dcc319-c9e5-4f31-ae40-af27eec14248 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832292726 +OkHttp-Received-Millis: 1550832293438 + +2019-02-22 16:14:53.493 [main] INFO - ********* END *********: +2019-02-22 16:15:28.675 [main] INFO - ********* START ********* +2019-02-22 16:15:28.675 [main] INFO - Authentication Type : http_signature +2019-02-22 16:15:28.677 [main] INFO - Request Type: PUT +2019-02-22 16:15:28.678 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:15:28.679 [main] INFO - Digest: SHA-256=obbqGQ7vcDgZ90wEsXruRpyQJFe9W4E+z7Ervkj3v7c= +2019-02-22 16:15:28.679 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:15:28.679 [main] INFO - Date: Fri, 22 Feb 2019 10:44:51 GMT +2019-02-22 16:15:28.680 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:15:28.681 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="kXMlXp36UKLMd5opIdSNi/Tu2ci88mxyDz//tnEAt3w=" +2019-02-22 16:15:28.682 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:15:29.128 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-22 16:15:29.129 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"reportDefinitionName","message":"Invalid report definition specified","localizationKey":"cybsapi.report.reportDefinition.invalid"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:15:29.129 [main] INFO - Response Code: 400 +2019-02-22 16:15:29.130 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_92ba53fd-b66d-44bf-87c9-cfd98124b575 +X-OPNET-Transaction-Trace: a2_97ec1b00-8f52-4b51-98aa-00c8a41a2281 +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Fri, 22 Feb 2019 10:45:29 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:45:28 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 08f59067-8ab0-406b-8df0-d592670d4208 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832328687 +OkHttp-Received-Millis: 1550832329126 + +2019-02-22 16:15:29.130 [main] INFO - ********* END *********: +2019-02-22 16:16:22.304 [main] INFO - ********* START ********* +2019-02-22 16:16:22.319 [main] INFO - Authentication Type : http_signature +2019-02-22 16:16:22.319 [main] INFO - Request Type: PUT +2019-02-22 16:16:22.320 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:16:22.321 [main] INFO - Digest: SHA-256=r5m1mjqVv0X7mEEivYUUkpeQbas6Ubi2Or632qePYXI= +2019-02-22 16:16:22.361 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:16:22.361 [main] INFO - Date: Fri, 22 Feb 2019 10:46:21 GMT +2019-02-22 16:16:22.361 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:16:22.362 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="FVqTfuk99695i3+tvwavuy2EKnQy4V+1fidTTpGYApc=" +2019-02-22 16:16:22.362 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:16:24.117 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testrest_v605","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-22 16:16:24.118 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"testrest_v604","message":"Report already exists with same fields ","localizationKey":"cybsapi.report.fields.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:16:24.118 [main] INFO - Response Code: 400 +2019-02-22 16:16:24.118 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a38aa890-b2d2-459b-8a15-f8e870f458ba +X-OPNET-Transaction-Trace: a2_5393ed71-ff6f-4e68-90f0-d72c2fae2832 +Cache-Control: no-cache, no-transform +ETag: "153253739-gzip" +Expires: Fri, 22 Feb 2019 10:46:23 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:46:23 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 69077611-5fc7-4034-9129-fe5f8a59c2d5 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832383363 +OkHttp-Received-Millis: 1550832384062 + +2019-02-22 16:16:24.119 [main] INFO - ********* END *********: +2019-02-22 16:16:29.505 [main] INFO - ********* START ********* +2019-02-22 16:16:29.506 [main] INFO - Authentication Type : http_signature +2019-02-22 16:16:29.506 [main] INFO - Request Type: PUT +2019-02-22 16:16:29.506 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:16:29.507 [main] INFO - Digest: SHA-256=obbqGQ7vcDgZ90wEsXruRpyQJFe9W4E+z7Ervkj3v7c= +2019-02-22 16:16:29.507 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:16:29.507 [main] INFO - Date: Fri, 22 Feb 2019 10:46:21 GMT +2019-02-22 16:16:29.508 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:16:29.508 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="gB5yYVLATRDttDccY0+n9kKKN2aiUXtN9A5lYw3redU=" +2019-02-22 16:16:29.508 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:16:29.954 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-22 16:16:29.954 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"reportDefinitionName","message":"Invalid report definition specified","localizationKey":"cybsapi.report.reportDefinition.invalid"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:16:29.955 [main] INFO - Response Code: 400 +2019-02-22 16:16:29.955 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_ba6816d5-1775-4ade-aecf-87f85daaba79 +X-OPNET-Transaction-Trace: a2_775023d9-b18e-4d4b-954d-aa7fa5fd3862 +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Fri, 22 Feb 2019 10:46:29 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:46:29 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 844ffd80-7479-4f47-a068-25bca24f0040 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832389513 +OkHttp-Received-Millis: 1550832389952 + +2019-02-22 16:16:29.956 [main] INFO - ********* END *********: +2019-02-22 16:17:26.210 [main] INFO - ********* START ********* +2019-02-22 16:17:26.228 [main] INFO - Authentication Type : http_signature +2019-02-22 16:17:26.228 [main] INFO - Request Type: PUT +2019-02-22 16:17:26.229 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:17:26.229 [main] INFO - Digest: SHA-256=VvEF57+MoKyEYcMGS+/HoxJouYmcUHiRgekpyqUqE08= +2019-02-22 16:17:26.266 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:17:26.266 [main] INFO - Date: Fri, 22 Feb 2019 10:47:25 GMT +2019-02-22 16:17:26.267 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:17:26.267 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="z9zj/fAkDIxKMxqCo6wuzpDaACBh3iYHMenp6K0JGAE=" +2019-02-22 16:17:26.267 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:17:28.056 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testrest_222","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-22 16:17:28.056 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"testrest_v604","message":"Report already exists with same fields ","localizationKey":"cybsapi.report.fields.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:17:28.057 [main] INFO - Response Code: 400 +2019-02-22 16:17:28.057 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_fbf5fa65-adfd-4aa8-abc3-9bdca017cdeb +X-OPNET-Transaction-Trace: a2_daa188c1-233c-49ee-9511-62c2c1d28105 +Cache-Control: no-cache, no-transform +ETag: "153253739-gzip" +Expires: Fri, 22 Feb 2019 10:47:27 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:47:27 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a21b1379-462c-47c0-b126-9b6c58736c7e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832447281 +OkHttp-Received-Millis: 1550832448008 + +2019-02-22 16:17:28.057 [main] INFO - ********* END *********: +2019-02-22 16:17:40.271 [main] INFO - ********* START ********* +2019-02-22 16:17:40.271 [main] INFO - Authentication Type : http_signature +2019-02-22 16:17:40.272 [main] INFO - Request Type: PUT +2019-02-22 16:17:40.272 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:17:40.273 [main] INFO - Digest: SHA-256=obbqGQ7vcDgZ90wEsXruRpyQJFe9W4E+z7Ervkj3v7c= +2019-02-22 16:17:40.273 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:17:40.273 [main] INFO - Date: Fri, 22 Feb 2019 10:47:25 GMT +2019-02-22 16:17:40.274 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:17:40.274 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="iV8b0wYN/6NhpEWkc7jKl7seGdyusLHjprwToct8jsA=" +2019-02-22 16:17:40.274 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:17:40.732 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-22 16:17:40.732 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"reportDefinitionName","message":"Invalid report definition specified","localizationKey":"cybsapi.report.reportDefinition.invalid"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:17:40.733 [main] INFO - Response Code: 400 +2019-02-22 16:17:40.733 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e0a7115c-fbfb-4ae2-b843-61c79fce47eb +X-OPNET-Transaction-Trace: a2_9c78de6f-6efb-4069-ae2f-97f6e2e749da +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Fri, 22 Feb 2019 10:47:40 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:47:40 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 1581a7ad-fa42-4fe2-be56-a59fc401564a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832460281 +OkHttp-Received-Millis: 1550832460730 + +2019-02-22 16:17:40.734 [main] INFO - ********* END *********: +2019-02-22 16:18:11.668 [main] INFO - ********* START ********* +2019-02-22 16:18:11.682 [main] INFO - Authentication Type : http_signature +2019-02-22 16:18:11.682 [main] INFO - Request Type: PUT +2019-02-22 16:18:11.683 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:18:11.683 [main] INFO - Digest: SHA-256=9ocaSgfUcXgFR6dhwJgtYq058IZU+o++Yh3NS4Lu1R4= +2019-02-22 16:18:11.684 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:18:11.684 [main] INFO - Date: Fri, 22 Feb 2019 10:48:11 GMT +2019-02-22 16:18:11.684 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:18:11.685 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="K+WZMQl33ILlBIY1betEP2r+DKYV0p4IIkfDJTJevqw=" +2019-02-22 16:18:11.685 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:18:13.300 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testrest_V7683","timezone":"America/Chicago","startTime":"0950","startDay":1} +2019-02-22 16:18:13.301 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"testrest_v604","message":"Report already exists with same fields ","localizationKey":"cybsapi.report.fields.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:18:13.302 [main] INFO - Response Code: 400 +2019-02-22 16:18:13.302 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a9350844-e8e1-40f4-b5c1-20a837fa4fb6 +X-OPNET-Transaction-Trace: a2_6cdee585-3e90-4879-b580-dac42e63096f +Cache-Control: no-cache, no-transform +ETag: "153253739-gzip" +Expires: Fri, 22 Feb 2019 10:48:13 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:48:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: bb2029c4-20c1-4490-a57e-66e5dd7b1fe4 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832492601 +OkHttp-Received-Millis: 1550832493262 + +2019-02-22 16:18:13.303 [main] INFO - ********* END *********: +2019-02-22 16:18:32.054 [main] INFO - ********* START ********* +2019-02-22 16:18:32.056 [main] INFO - Authentication Type : http_signature +2019-02-22 16:18:32.058 [main] INFO - Request Type: PUT +2019-02-22 16:18:32.059 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:18:32.060 [main] INFO - Digest: SHA-256=34mBIXkVMww6ht09Tf59/MI2q7N9/gbmFXcD+Z0AFOY= +2019-02-22 16:18:32.061 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:18:32.061 [main] INFO - Date: Fri, 22 Feb 2019 10:48:11 GMT +2019-02-22 16:18:32.061 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:18:32.062 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="t1IUgcZI9SUAqDp5g9+h6vR7T5gwSTNstihmDXU1PYY=" +2019-02-22 16:18:32.062 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:18:32.728 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testrest_V7683","timezone":"America/Chicago","startTime":"0951","startDay":1} +2019-02-22 16:18:32.728 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}}} +2019-02-22 16:18:32.728 [main] INFO - Response Code: 201 +2019-02-22 16:18:32.728 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_ac1291e6-e4d7-4d49-8382-6d6b16d14c20 +X-OPNET-Transaction-Trace: a2_6c6bf614-2c87-4182-838e-00dd489c8c25 +Cache-Control: no-cache, no-transform +ETag: "689991228-gzip" +Expires: Fri, 22 Feb 2019 10:48:32 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:48:31 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ee149a27-9614-4347-befe-27da560bbe0c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832512067 +OkHttp-Received-Millis: 1550832512726 + +2019-02-22 16:18:32.728 [main] INFO - ********* END *********: +2019-02-22 16:18:32.760 [main] INFO - ********* START ********* +2019-02-22 16:18:32.760 [main] INFO - Authentication Type : http_signature +2019-02-22 16:18:32.761 [main] INFO - Request Type: PUT +2019-02-22 16:18:32.761 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:18:32.761 [main] INFO - Digest: SHA-256=7zcavXz8WsXaczNM+bIhEdFYCRIuh33gIJv9yg3/n9A= +2019-02-22 16:18:32.762 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:18:32.762 [main] INFO - Date: Fri, 22 Feb 2019 10:48:11 GMT +2019-02-22 16:18:32.763 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:18:32.763 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="3sQSXy1x2OrbDOpUwq+OpTk95eDcY/l8rov/ieFf/aU=" +2019-02-22 16:18:32.763 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:18:33.170 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0951","startDay":1} +2019-02-22 16:18:33.171 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"reportDefinitionName","message":"Invalid report definition specified","localizationKey":"cybsapi.report.reportDefinition.invalid"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:18:33.171 [main] INFO - Response Code: 400 +2019-02-22 16:18:33.171 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_c831f060-03c7-4acb-9ad1-d4e1b6cc7918 +X-OPNET-Transaction-Trace: a2_a35b4ed7-fe67-4de4-8a67-291ab15d059c +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Fri, 22 Feb 2019 10:48:33 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:48:33 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 0b99f1f0-6090-4101-93a3-4091175f73ed +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832512765 +OkHttp-Received-Millis: 1550832513169 + +2019-02-22 16:18:33.171 [main] INFO - ********* END *********: +2019-02-22 16:18:58.867 [main] INFO - ********* START ********* +2019-02-22 16:18:58.879 [main] INFO - Authentication Type : http_signature +2019-02-22 16:18:58.880 [main] INFO - Request Type: PUT +2019-02-22 16:18:58.880 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:18:58.881 [main] INFO - Digest: SHA-256=pL3bkk5ZyNv8blvugh46AW5S8txRFPW4oF4Rj9TahJ8= +2019-02-22 16:18:58.917 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:18:58.918 [main] INFO - Date: Fri, 22 Feb 2019 10:48:58 GMT +2019-02-22 16:18:58.918 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:18:58.918 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="2FVVzHBRQWAoiiePWyMXl7XYjXmTE0lQeFUA/Tt9un8=" +2019-02-22 16:18:58.919 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:19:00.604 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testrest_V76833","timezone":"America/Chicago","startTime":"0951","startDay":1} +2019-02-22 16:19:00.604 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"testrest_V7683","message":"Report already exists with same fields ","localizationKey":"cybsapi.report.fields.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:19:00.605 [main] INFO - Response Code: 400 +2019-02-22 16:19:00.606 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e76672a4-81a2-43a2-8bba-484fd4d6fc34 +X-OPNET-Transaction-Trace: a2_09713c15-5589-41b5-a11d-53059ef3b4bc +Cache-Control: no-cache, no-transform +ETag: "-1067258499-gzip" +Expires: Fri, 22 Feb 2019 10:49:00 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:49:00 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 70268955-5843-40db-a69f-4a03f2f08bdf +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832539910 +OkHttp-Received-Millis: 1550832540563 + +2019-02-22 16:19:00.606 [main] INFO - ********* END *********: +2019-02-22 16:19:56.190 [main] INFO - ********* START ********* +2019-02-22 16:19:56.191 [main] INFO - Authentication Type : http_signature +2019-02-22 16:19:56.191 [main] INFO - Request Type: PUT +2019-02-22 16:19:56.192 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:19:56.192 [main] INFO - Digest: SHA-256=XrCFKXb6Pn41y89oI6IYk2xkHZt9jTv6FbU+90IBLZ8= +2019-02-22 16:19:56.192 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:19:56.193 [main] INFO - Date: Fri, 22 Feb 2019 10:48:58 GMT +2019-02-22 16:19:56.193 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:19:56.193 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="jEU450lkL0M7rt2fUePo4LqEwhUSlKThDSQWiR9luL0=" +2019-02-22 16:19:56.194 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:19:56.864 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testrest_V76833","timezone":"America/Chicago","startTime":"0957","startDay":1} +2019-02-22 16:19:56.865 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}}} +2019-02-22 16:19:56.865 [main] INFO - Response Code: 201 +2019-02-22 16:19:56.865 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_15d38a42-84de-4bea-ac33-30c5278c7a16 +X-OPNET-Transaction-Trace: a2_4aa62f2f-09b5-4e08-b414-458e0ba1ecd5 +Cache-Control: no-cache, no-transform +ETag: "689991228-gzip" +Expires: Fri, 22 Feb 2019 10:49:56 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:49:56 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: b06f2213-2cbc-4695-b378-17f89a8d36fa +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832596197 +OkHttp-Received-Millis: 1550832596862 + +2019-02-22 16:19:56.866 [main] INFO - ********* END *********: +2019-02-22 16:19:56.896 [main] INFO - ********* START ********* +2019-02-22 16:19:56.896 [main] INFO - Authentication Type : http_signature +2019-02-22 16:19:56.896 [main] INFO - Request Type: PUT +2019-02-22 16:19:56.896 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:19:56.896 [main] INFO - Digest: SHA-256=Mmbg44Vbqm2+I/fi5diJaM6NlhKTMDr5ZpkcnvFmGEI= +2019-02-22 16:19:56.898 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:19:56.898 [main] INFO - Date: Fri, 22 Feb 2019 10:48:58 GMT +2019-02-22 16:19:56.899 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:19:56.899 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="l0jX1j/CkFB6omb2xy+tgDlJc/nhKcXCb6pN2x4/85k=" +2019-02-22 16:19:56.900 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:19:57.312 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0957","startDay":1} +2019-02-22 16:19:57.313 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"reportDefinitionName","message":"Invalid report definition specified","localizationKey":"cybsapi.report.reportDefinition.invalid"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:19:57.313 [main] INFO - Response Code: 400 +2019-02-22 16:19:57.314 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a885b25c-c858-4304-961b-7d72c2914035 +X-OPNET-Transaction-Trace: a2_663cc261-3fac-4ec1-97a8-62be56895617 +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Fri, 22 Feb 2019 10:49:57 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:49:56 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 2877dcd4-843c-4c95-a9b2-7f39fc28634b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832596901 +OkHttp-Received-Millis: 1550832597310 + +2019-02-22 16:19:57.315 [main] INFO - ********* END *********: +2019-02-22 16:20:21.179 [main] INFO - ********* START ********* +2019-02-22 16:20:21.195 [main] INFO - Authentication Type : http_signature +2019-02-22 16:20:21.196 [main] INFO - Request Type: PUT +2019-02-22 16:20:21.197 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:20:21.198 [main] INFO - Digest: SHA-256=XrCFKXb6Pn41y89oI6IYk2xkHZt9jTv6FbU+90IBLZ8= +2019-02-22 16:20:21.236 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:20:21.237 [main] INFO - Date: Fri, 22 Feb 2019 10:50:20 GMT +2019-02-22 16:20:21.237 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:20:21.237 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ZxDrqFOmlza5vdJpHPsp0r5TzgQllVrvJ99Nf2+ogQo=" +2019-02-22 16:20:21.238 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:20:22.892 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testrest_V76833","timezone":"America/Chicago","startTime":"0957","startDay":1} +2019-02-22 16:20:22.892 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"testrest_V76833","message":"Report already exists with same fields ","localizationKey":"cybsapi.report.fields.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:20:22.893 [main] INFO - Response Code: 400 +2019-02-22 16:20:22.893 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_fddb21e9-79d7-4351-a651-f6264fd18b25 +X-OPNET-Transaction-Trace: a2_a35be6a3-7579-47d8-b8c0-4652e733afdb +Cache-Control: no-cache, no-transform +ETag: "770267690-gzip" +Expires: Fri, 22 Feb 2019 10:50:22 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:50:22 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 35e050aa-7c0f-4bcc-b02d-c22e19346105 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832622147 +OkHttp-Received-Millis: 1550832622864 + +2019-02-22 16:20:22.894 [main] INFO - ********* END *********: +2019-02-22 16:20:22.945 [main] INFO - ********* START ********* +2019-02-22 16:20:22.946 [main] INFO - Authentication Type : http_signature +2019-02-22 16:20:22.946 [main] INFO - Request Type: PUT +2019-02-22 16:20:22.946 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:20:22.947 [main] INFO - Digest: SHA-256=Mmbg44Vbqm2+I/fi5diJaM6NlhKTMDr5ZpkcnvFmGEI= +2019-02-22 16:20:22.947 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:20:22.947 [main] INFO - Date: Fri, 22 Feb 2019 10:50:20 GMT +2019-02-22 16:20:22.947 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:20:22.948 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="x4YGhcSYMYoLSoJAnj+lzBoup5zZnClh40P5d3dDEzw=" +2019-02-22 16:20:22.948 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:20:23.362 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0957","startDay":1} +2019-02-22 16:20:23.363 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"reportDefinitionName","message":"Invalid report definition specified","localizationKey":"cybsapi.report.reportDefinition.invalid"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:20:23.363 [main] INFO - Response Code: 400 +2019-02-22 16:20:23.363 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b0d53c22-edc6-4ef6-a5b1-9ebb593ef63e +X-OPNET-Transaction-Trace: a2_813694f2-ec98-40cf-bd9c-da765473aa8e +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Fri, 22 Feb 2019 10:50:23 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:50:22 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 2c5ccd17-5adb-4cf7-b2ec-697f97f13524 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832622953 +OkHttp-Received-Millis: 1550832623360 + +2019-02-22 16:20:23.364 [main] INFO - ********* END *********: +2019-02-22 16:20:59.148 [main] INFO - ********* START ********* +2019-02-22 16:20:59.161 [main] INFO - Authentication Type : http_signature +2019-02-22 16:20:59.162 [main] INFO - Request Type: PUT +2019-02-22 16:20:59.162 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:20:59.163 [main] INFO - Digest: SHA-256=Q8MxVxZKEcYt4ukZlvepWY+U6m3lzqRlwg0cxF7RoeE= +2019-02-22 16:20:59.204 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:20:59.204 [main] INFO - Date: Fri, 22 Feb 2019 10:50:58 GMT +2019-02-22 16:20:59.204 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:20:59.204 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="jkOJQsSf33Zj6oP/E1Zg4vU7CIMf7MD268jAv4K6Xcw=" +2019-02-22 16:20:59.204 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:21:00.840 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"pavan","timezone":"America/Chicago","startTime":"0957","startDay":1} +2019-02-22 16:21:00.840 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"testrest_V76833","message":"Report already exists with same fields ","localizationKey":"cybsapi.report.fields.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:21:00.841 [main] INFO - Response Code: 400 +2019-02-22 16:21:00.841 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_84ab2aa0-b31f-4fbd-966e-02ea1cd42ec4 +X-OPNET-Transaction-Trace: a2_3ccf1b80-25d4-4a83-9838-d0519e619080 +Cache-Control: no-cache, no-transform +ETag: "770267690-gzip" +Expires: Fri, 22 Feb 2019 10:51:00 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:51:00 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 00e6fe33-b545-49ed-8428-2fdbb51f0e07 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832660163 +OkHttp-Received-Millis: 1550832660811 + +2019-02-22 16:21:00.842 [main] INFO - ********* END *********: +2019-02-22 16:21:00.901 [main] INFO - ********* START ********* +2019-02-22 16:21:00.901 [main] INFO - Authentication Type : http_signature +2019-02-22 16:21:00.902 [main] INFO - Request Type: PUT +2019-02-22 16:21:00.902 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:21:00.903 [main] INFO - Digest: SHA-256=Mmbg44Vbqm2+I/fi5diJaM6NlhKTMDr5ZpkcnvFmGEI= +2019-02-22 16:21:00.903 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:21:00.903 [main] INFO - Date: Fri, 22 Feb 2019 10:50:58 GMT +2019-02-22 16:21:00.903 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:21:00.904 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="6Psvb0E84xanBtwc/Vbedlf8Eel/U3M5ZtUECvH5hwU=" +2019-02-22 16:21:00.904 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:21:01.320 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0957","startDay":1} +2019-02-22 16:21:01.320 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"reportDefinitionName","message":"Invalid report definition specified","localizationKey":"cybsapi.report.reportDefinition.invalid"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:21:01.321 [main] INFO - Response Code: 400 +2019-02-22 16:21:01.321 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_f3b6ee54-0a7a-4c57-a141-1e955aee8925 +X-OPNET-Transaction-Trace: a2_beb378ec-a625-4038-b325-8beb7edeba68 +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Fri, 22 Feb 2019 10:51:01 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:51:01 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: df00273f-69b7-4438-bb80-6831d8b346db +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832660908 +OkHttp-Received-Millis: 1550832661318 + +2019-02-22 16:21:01.322 [main] INFO - ********* END *********: +2019-02-22 16:21:47.571 [main] INFO - ********* START ********* +2019-02-22 16:21:47.583 [main] INFO - Authentication Type : http_signature +2019-02-22 16:21:47.584 [main] INFO - Request Type: PUT +2019-02-22 16:21:47.585 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:21:47.585 [main] INFO - Digest: SHA-256=3GVWPPOG00/7W5sr122EHVr03BhuMZC6jcQgIczD8FQ= +2019-02-22 16:21:47.624 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:21:47.624 [main] INFO - Date: Fri, 22 Feb 2019 10:51:47 GMT +2019-02-22 16:21:47.624 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:21:47.625 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="tQ/I7CSKUP/Nj7Jb1Z5n5FPol/JmhqQXJTsJnLrPfNk=" +2019-02-22 16:21:47.625 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:21:49.286 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testReport_test","timezone":"America/Chicago","startTime":"0959","startDay":1} +2019-02-22 16:21:49.287 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}}} +2019-02-22 16:21:49.287 [main] INFO - Response Code: 201 +2019-02-22 16:21:49.287 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_0b269c96-034f-4750-997c-1f8a3735aebe +X-OPNET-Transaction-Trace: a2_fbfb675a-c91d-4074-ab7b-b86f3563b22c +Cache-Control: no-cache, no-transform +ETag: "689991228-gzip" +Expires: Fri, 22 Feb 2019 10:51:49 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:51:48 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: acbd8dad-7a06-4f43-b3d9-7941b544eb08 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832708608 +OkHttp-Received-Millis: 1550832709262 + +2019-02-22 16:21:49.288 [main] INFO - ********* END *********: +2019-02-22 16:21:49.314 [main] INFO - ********* START ********* +2019-02-22 16:21:49.314 [main] INFO - Authentication Type : http_signature +2019-02-22 16:21:49.314 [main] INFO - Request Type: PUT +2019-02-22 16:21:49.314 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-22 16:21:49.314 [main] INFO - Digest: SHA-256=hCJRiwHTt4C8/2AZ98pRY06mb+al8+7W4Y38zplArt0= +2019-02-22 16:21:49.314 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:21:49.314 [main] INFO - Date: Fri, 22 Feb 2019 10:51:47 GMT +2019-02-22 16:21:49.314 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:21:49.320 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="CjRpDiNAQ4z7CP1LI92BG8cQ8+OZwUNM6W/alVs4HIo=" +2019-02-22 16:21:49.321 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:21:49.763 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0959","startDay":1} +2019-02-22 16:21:49.764 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"reportDefinitionName","message":"Invalid report definition specified","localizationKey":"cybsapi.report.reportDefinition.invalid"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-22 16:21:49.764 [main] INFO - Response Code: 400 +2019-02-22 16:21:49.764 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_0d8e07c0-fffc-4bff-8edb-c494d90b3d81 +X-OPNET-Transaction-Trace: a2_cc326809-21da-4e69-93b8-edc6f27826b5 +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Fri, 22 Feb 2019 10:51:49 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:51:49 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 827046a1-f7d0-449b-8d41-33e39a724760 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832709326 +OkHttp-Received-Millis: 1550832709749 + +2019-02-22 16:21:49.765 [main] INFO - ********* END *********: +2019-02-22 16:24:30.765 [main] INFO - ********* START ********* +2019-02-22 16:24:30.778 [main] INFO - Authentication Type : http_signature +2019-02-22 16:24:30.778 [main] INFO - Request Type: GET +2019-02-22 16:24:30.779 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/AcquirerExceptionDetailClass, requestType=GET} +2019-02-22 16:24:30.779 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:24:30.816 [main] INFO - Date: Fri, 22 Feb 2019 10:54:30 GMT +2019-02-22 16:24:30.816 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:24:30.817 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="2pHBY5BdxJta1nSbFX/w27fG94Fpae4OoDFNVQqGcys=" +2019-02-22 16:24:30.817 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:24:32.393 [main] INFO - Request Body: null +2019-02-22 16:24:32.394 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass"}},"attributes":[{"id":"3200","name":"AdditionalInformation.CardAcceptorID","description":"Card Acceptor ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3201","name":"AdditionalInformation.CardAcceptorName","description":"Card Acceptor Name","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3202","name":"AdditionalInformation.CardAcceptorTerminalID","description":"Card Acceptor Terminal ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3203","name":"AdditionalInformation.ForwardingInstitutionID","description":"Forwarding Institution ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3204","name":"AdditionalInformation.IssuerAffiliateBIN","description":"Issuer Affiliate BIN","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3205","name":"AdditionalInformation.MerchantType","description":"Merchant Type","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3206","name":"AdditionalInformation.RecurringPaymentIndicatorFlag","description":"Recurring Payment Indicator flag","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3223","name":"TransactionDetails.SourceMerchantID","description":"Source Merchant ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3225","name":"Fee.ReimbursementFee","description":"Reimbursement Fee","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3226","name":"Fee.ReimbursementFeeDebitCreditIndicator","description":"Reimbursement Fee Debit Credit Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3227","name":"Fee.SettlementServiceIndicator","description":"Settlement Service Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3228","name":"Fee.TransactionIntegrityFee","description":"Transaction Integrity Fee","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3229","name":"Fee.TransactionIntegrityFeeDebitCreditIndicator","description":"Transaction Integrity Fee Debit Credit Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3230","name":"Settlement.CardholderBillingAmount","description":"Cardholder Billing Amount","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3231","name":"Settlement.CardholderBillingCurrencyCode","description":"Cardholder Billing Currency Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3232","name":"Settlement.RateTableDate","description":"Rate Table Date","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3234","name":"Settlement.OctSettlementAmount","description":"Settlement Amount","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3235","name":"Settlement.OctSettlementCurrencyCode","description":"Settlement Currency Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3237","name":"TransactionDetails.AcquirerBusinessID","description":"Acquirer Business ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3238","name":"TransactionDetails.AcquiringInstitutionID","description":"Acquiring Institution ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3239","name":"TransactionDetails.AffiliateBIN","description":"Affiliate BIN","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3240","name":"TransactionDetails.AuthorizationIDRespCode","description":"Authorization ID Resp. Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3241","name":"TransactionDetails.BatchNumber","description":"Batch Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3242","name":"TransactionDetails.BusinessApplicationIdentifier","description":"Business Application Identifier","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3243","name":"TransactionDetails.CardNumber","description":"Card Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3244","name":"TransactionDetails.CurrencyCodeForTransactionAmount","description":"Currency Code For Transaction Amount","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3245","name":"TransactionDetails.DataRecipient","description":"Data Recipient","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3246","name":"TransactionDetails.DCCIndicator","description":"DCC Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3247","name":"TransactionDetails.DestinationStationID","description":"Destination Station ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3248","name":"TransactionDetails.DowngradeReasonCode","description":"Downgrade Reason Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3249","name":"TransactionDetails.FundsTransferSRE","description":"Funds Transfer SRE","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3250","name":"TransactionDetails.IssuerAcquirerIndicator","description":"Issuer Acquirer Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3251","name":"TransactionDetails.MessageReasonCode","description":"Message Reason Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3252","name":"TransactionDetails.MVVCode","description":"MVV Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3253","name":"TransactionDetails.NetworkID","description":"Network ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3254","name":"TransactionDetails.OnlineSettlementDate","description":"Online Settlement Date","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3255","name":"TransactionDetails.ProcessingCode","description":"Processing Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3256","name":"TransactionDetails.ProcessorID","description":"Processor ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3257","name":"TransactionDetails.ProductID","description":"Product ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3258","name":"TransactionDetails.ProductSubtype","description":"Product Subtype","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3259","name":"TransactionDetails.RequestMessageType","description":"Request Message Type","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3260","name":"TransactionDetails.ResponseCode","description":"Response Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3261","name":"TransactionDetails.RetrievalReferenceNumber","description":"Retrieval Reference Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3262","name":"TransactionDetails.SettlementDate","description":"Settlement Date","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3263","name":"TransactionDetails.SourceOfFunds","description":"Source of Funds","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3264","name":"TransactionDetails.SourceStationID","description":"Source Station ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3265","name":"TransactionDetails.SRE","description":"SRE","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3266","name":"TransactionDetails.STIPReasonCode","description":"STIP Reason Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3267","name":"TransactionDetails.TraceNumber","description":"Trace Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3268","name":"TransactionDetails.TransactionAmount","description":"Transaction Amount","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3269","name":"TransactionDetails.TransactionIdentifier","description":"Transaction Identifier","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3270","name":"TransactionDetails.VssProcessingDate","description":"VSS PROCESSING DATE","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3278","name":"TransactionDetails.RequestId","description":"Request ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3279","name":"TransactionDetails.MerchantId","description":"Merchant ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3280","name":"TransactionDetails.PaymentMethodType","description":"Payment Method Type","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3281","name":"TransactionDetails.PaymentMethodDesc","description":"Payment Method Description","filterType":null,"required":true,"supportedType":null,"default":true}],"description":"Acquirer Exception Detail Report","reportDefinitionId":231,"reportDefintionName":"AcquirerExceptionDetailClass","supportedFormats":["text/csv"],"type":"Detail"} +2019-02-22 16:24:32.401 [main] INFO - Response Code: 200 +2019-02-22 16:24:32.402 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b38f1109-537b-4ed6-a029-dca07e4593a1 +X-OPNET-Transaction-Trace: a2_b854caa9-12ec-4ee8-af20-0889799b166a +Cache-Control: no-cache, no-transform +ETag: "-78621274-gzip" +Expires: Fri, 22 Feb 2019 10:54:32 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:54:31 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: b066d9d9-58ec-4757-9eb4-b02919aa8b40 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832871886 +OkHttp-Received-Millis: 1550832872354 + +2019-02-22 16:24:32.402 [main] INFO - ********* END *********: +2019-02-22 16:26:15.122 [main] INFO - ********* START ********* +2019-02-22 16:26:15.122 [main] INFO - Authentication Type : http_signature +2019-02-22 16:26:15.123 [main] INFO - Request Type: GET +2019-02-22 16:26:15.123 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/AcquirerExceptionDetailClass, requestType=GET} +2019-02-22 16:26:15.124 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:26:15.124 [main] INFO - Date: Fri, 22 Feb 2019 10:54:30 GMT +2019-02-22 16:26:15.124 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:26:15.125 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="2pHBY5BdxJta1nSbFX/w27fG94Fpae4OoDFNVQqGcys=" +2019-02-22 16:26:15.125 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:26:15.577 [main] INFO - Request Body: null +2019-02-22 16:26:15.578 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass"}},"attributes":[{"id":"3200","name":"AdditionalInformation.CardAcceptorID","description":"Card Acceptor ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3201","name":"AdditionalInformation.CardAcceptorName","description":"Card Acceptor Name","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3202","name":"AdditionalInformation.CardAcceptorTerminalID","description":"Card Acceptor Terminal ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3203","name":"AdditionalInformation.ForwardingInstitutionID","description":"Forwarding Institution ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3204","name":"AdditionalInformation.IssuerAffiliateBIN","description":"Issuer Affiliate BIN","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3205","name":"AdditionalInformation.MerchantType","description":"Merchant Type","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3206","name":"AdditionalInformation.RecurringPaymentIndicatorFlag","description":"Recurring Payment Indicator flag","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3223","name":"TransactionDetails.SourceMerchantID","description":"Source Merchant ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3225","name":"Fee.ReimbursementFee","description":"Reimbursement Fee","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3226","name":"Fee.ReimbursementFeeDebitCreditIndicator","description":"Reimbursement Fee Debit Credit Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3227","name":"Fee.SettlementServiceIndicator","description":"Settlement Service Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3228","name":"Fee.TransactionIntegrityFee","description":"Transaction Integrity Fee","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3229","name":"Fee.TransactionIntegrityFeeDebitCreditIndicator","description":"Transaction Integrity Fee Debit Credit Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3230","name":"Settlement.CardholderBillingAmount","description":"Cardholder Billing Amount","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3231","name":"Settlement.CardholderBillingCurrencyCode","description":"Cardholder Billing Currency Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3232","name":"Settlement.RateTableDate","description":"Rate Table Date","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3234","name":"Settlement.OctSettlementAmount","description":"Settlement Amount","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3235","name":"Settlement.OctSettlementCurrencyCode","description":"Settlement Currency Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3237","name":"TransactionDetails.AcquirerBusinessID","description":"Acquirer Business ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3238","name":"TransactionDetails.AcquiringInstitutionID","description":"Acquiring Institution ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3239","name":"TransactionDetails.AffiliateBIN","description":"Affiliate BIN","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3240","name":"TransactionDetails.AuthorizationIDRespCode","description":"Authorization ID Resp. Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3241","name":"TransactionDetails.BatchNumber","description":"Batch Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3242","name":"TransactionDetails.BusinessApplicationIdentifier","description":"Business Application Identifier","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3243","name":"TransactionDetails.CardNumber","description":"Card Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3244","name":"TransactionDetails.CurrencyCodeForTransactionAmount","description":"Currency Code For Transaction Amount","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3245","name":"TransactionDetails.DataRecipient","description":"Data Recipient","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3246","name":"TransactionDetails.DCCIndicator","description":"DCC Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3247","name":"TransactionDetails.DestinationStationID","description":"Destination Station ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3248","name":"TransactionDetails.DowngradeReasonCode","description":"Downgrade Reason Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3249","name":"TransactionDetails.FundsTransferSRE","description":"Funds Transfer SRE","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3250","name":"TransactionDetails.IssuerAcquirerIndicator","description":"Issuer Acquirer Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3251","name":"TransactionDetails.MessageReasonCode","description":"Message Reason Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3252","name":"TransactionDetails.MVVCode","description":"MVV Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3253","name":"TransactionDetails.NetworkID","description":"Network ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3254","name":"TransactionDetails.OnlineSettlementDate","description":"Online Settlement Date","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3255","name":"TransactionDetails.ProcessingCode","description":"Processing Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3256","name":"TransactionDetails.ProcessorID","description":"Processor ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3257","name":"TransactionDetails.ProductID","description":"Product ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3258","name":"TransactionDetails.ProductSubtype","description":"Product Subtype","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3259","name":"TransactionDetails.RequestMessageType","description":"Request Message Type","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3260","name":"TransactionDetails.ResponseCode","description":"Response Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3261","name":"TransactionDetails.RetrievalReferenceNumber","description":"Retrieval Reference Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3262","name":"TransactionDetails.SettlementDate","description":"Settlement Date","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3263","name":"TransactionDetails.SourceOfFunds","description":"Source of Funds","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3264","name":"TransactionDetails.SourceStationID","description":"Source Station ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3265","name":"TransactionDetails.SRE","description":"SRE","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3266","name":"TransactionDetails.STIPReasonCode","description":"STIP Reason Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3267","name":"TransactionDetails.TraceNumber","description":"Trace Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3268","name":"TransactionDetails.TransactionAmount","description":"Transaction Amount","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3269","name":"TransactionDetails.TransactionIdentifier","description":"Transaction Identifier","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3270","name":"TransactionDetails.VssProcessingDate","description":"VSS PROCESSING DATE","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3278","name":"TransactionDetails.RequestId","description":"Request ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3279","name":"TransactionDetails.MerchantId","description":"Merchant ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3280","name":"TransactionDetails.PaymentMethodType","description":"Payment Method Type","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3281","name":"TransactionDetails.PaymentMethodDesc","description":"Payment Method Description","filterType":null,"supportedType":null,"required":true,"default":true}],"description":"Acquirer Exception Detail Report","reportDefinitionId":231,"reportDefintionName":"AcquirerExceptionDetailClass","supportedFormats":["text/csv"],"type":"Detail"} +2019-02-22 16:26:15.580 [main] INFO - Response Code: 200 +2019-02-22 16:26:15.581 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d1edb24e-5cef-4493-9002-177353df7b71 +X-OPNET-Transaction-Trace: a2_b4e1da3b-99cf-4130-b4a3-af25026e9ea3 +Cache-Control: no-cache, no-transform +ETag: "991045918-gzip" +Expires: Fri, 22 Feb 2019 10:56:15 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:56:15 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 00074ddc-62e2-44cc-ae8c-1f217ce8be38 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832975127 +OkHttp-Received-Millis: 1550832975572 + +2019-02-22 16:26:15.581 [main] INFO - ********* END *********: +2019-02-22 16:26:15.611 [main] INFO - ********* START ********* +2019-02-22 16:26:15.612 [main] INFO - Authentication Type : http_signature +2019-02-22 16:26:15.612 [main] INFO - Request Type: GET +2019-02-22 16:26:15.613 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/SubscDetail, requestType=GET} +2019-02-22 16:26:15.613 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:26:15.613 [main] INFO - Date: Fri, 22 Feb 2019 10:54:30 GMT +2019-02-22 16:26:15.613 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:26:15.615 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="FxIbD1i7LUbck0I4gTF0v+q9u8xtj1cH6qBNxYxgRzQ=" +2019-02-22 16:26:15.615 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:26:16.038 [main] INFO - Request Body: null +2019-02-22 16:26:16.039 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/SubscDetail"}}} +2019-02-22 16:26:16.039 [main] INFO - Response Code: 404 +2019-02-22 16:26:16.040 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_40ed8f73-2b59-4a22-a49c-3ed6b4413179 +X-OPNET-Transaction-Trace: a2_acc9c35d-8c16-4e52-95b0-9e6b9f49f86c +Cache-Control: no-cache, no-transform +ETag: "204857944-gzip" +Expires: Fri, 22 Feb 2019 10:56:15 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:56:15 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 64429298-bd2f-4597-ac0d-03c66938e333 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832975616 +OkHttp-Received-Millis: 1550832976037 + +2019-02-22 16:26:16.040 [main] INFO - ********* END *********: +2019-02-22 16:26:37.625 [main] INFO - ********* START ********* +2019-02-22 16:26:37.637 [main] INFO - Authentication Type : http_signature +2019-02-22 16:26:37.638 [main] INFO - Request Type: GET +2019-02-22 16:26:37.638 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/AcquirerExceptionDetailClass, requestType=GET} +2019-02-22 16:26:37.639 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:26:37.677 [main] INFO - Date: Fri, 22 Feb 2019 10:56:37 GMT +2019-02-22 16:26:37.677 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:26:37.678 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="prW3QDrWObq8XwrXtVgv4+0v22gBhsaRUIH05eTFOkk=" +2019-02-22 16:26:37.678 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:26:39.040 [main] INFO - Request Body: null +2019-02-22 16:26:39.040 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass"}},"attributes":[{"id":"3200","name":"AdditionalInformation.CardAcceptorID","description":"Card Acceptor ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3201","name":"AdditionalInformation.CardAcceptorName","description":"Card Acceptor Name","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3202","name":"AdditionalInformation.CardAcceptorTerminalID","description":"Card Acceptor Terminal ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3203","name":"AdditionalInformation.ForwardingInstitutionID","description":"Forwarding Institution ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3204","name":"AdditionalInformation.IssuerAffiliateBIN","description":"Issuer Affiliate BIN","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3205","name":"AdditionalInformation.MerchantType","description":"Merchant Type","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3206","name":"AdditionalInformation.RecurringPaymentIndicatorFlag","description":"Recurring Payment Indicator flag","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3223","name":"TransactionDetails.SourceMerchantID","description":"Source Merchant ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3225","name":"Fee.ReimbursementFee","description":"Reimbursement Fee","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3226","name":"Fee.ReimbursementFeeDebitCreditIndicator","description":"Reimbursement Fee Debit Credit Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3227","name":"Fee.SettlementServiceIndicator","description":"Settlement Service Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3228","name":"Fee.TransactionIntegrityFee","description":"Transaction Integrity Fee","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3229","name":"Fee.TransactionIntegrityFeeDebitCreditIndicator","description":"Transaction Integrity Fee Debit Credit Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3230","name":"Settlement.CardholderBillingAmount","description":"Cardholder Billing Amount","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3231","name":"Settlement.CardholderBillingCurrencyCode","description":"Cardholder Billing Currency Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3232","name":"Settlement.RateTableDate","description":"Rate Table Date","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3234","name":"Settlement.OctSettlementAmount","description":"Settlement Amount","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3235","name":"Settlement.OctSettlementCurrencyCode","description":"Settlement Currency Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3237","name":"TransactionDetails.AcquirerBusinessID","description":"Acquirer Business ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3238","name":"TransactionDetails.AcquiringInstitutionID","description":"Acquiring Institution ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3239","name":"TransactionDetails.AffiliateBIN","description":"Affiliate BIN","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3240","name":"TransactionDetails.AuthorizationIDRespCode","description":"Authorization ID Resp. Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3241","name":"TransactionDetails.BatchNumber","description":"Batch Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3242","name":"TransactionDetails.BusinessApplicationIdentifier","description":"Business Application Identifier","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3243","name":"TransactionDetails.CardNumber","description":"Card Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3244","name":"TransactionDetails.CurrencyCodeForTransactionAmount","description":"Currency Code For Transaction Amount","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3245","name":"TransactionDetails.DataRecipient","description":"Data Recipient","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3246","name":"TransactionDetails.DCCIndicator","description":"DCC Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3247","name":"TransactionDetails.DestinationStationID","description":"Destination Station ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3248","name":"TransactionDetails.DowngradeReasonCode","description":"Downgrade Reason Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3249","name":"TransactionDetails.FundsTransferSRE","description":"Funds Transfer SRE","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3250","name":"TransactionDetails.IssuerAcquirerIndicator","description":"Issuer Acquirer Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3251","name":"TransactionDetails.MessageReasonCode","description":"Message Reason Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3252","name":"TransactionDetails.MVVCode","description":"MVV Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3253","name":"TransactionDetails.NetworkID","description":"Network ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3254","name":"TransactionDetails.OnlineSettlementDate","description":"Online Settlement Date","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3255","name":"TransactionDetails.ProcessingCode","description":"Processing Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3256","name":"TransactionDetails.ProcessorID","description":"Processor ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3257","name":"TransactionDetails.ProductID","description":"Product ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3258","name":"TransactionDetails.ProductSubtype","description":"Product Subtype","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3259","name":"TransactionDetails.RequestMessageType","description":"Request Message Type","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3260","name":"TransactionDetails.ResponseCode","description":"Response Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3261","name":"TransactionDetails.RetrievalReferenceNumber","description":"Retrieval Reference Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3262","name":"TransactionDetails.SettlementDate","description":"Settlement Date","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3263","name":"TransactionDetails.SourceOfFunds","description":"Source of Funds","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3264","name":"TransactionDetails.SourceStationID","description":"Source Station ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3265","name":"TransactionDetails.SRE","description":"SRE","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3266","name":"TransactionDetails.STIPReasonCode","description":"STIP Reason Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3267","name":"TransactionDetails.TraceNumber","description":"Trace Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3268","name":"TransactionDetails.TransactionAmount","description":"Transaction Amount","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3269","name":"TransactionDetails.TransactionIdentifier","description":"Transaction Identifier","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3270","name":"TransactionDetails.VssProcessingDate","description":"VSS PROCESSING DATE","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3278","name":"TransactionDetails.RequestId","description":"Request ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3279","name":"TransactionDetails.MerchantId","description":"Merchant ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3280","name":"TransactionDetails.PaymentMethodType","description":"Payment Method Type","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3281","name":"TransactionDetails.PaymentMethodDesc","description":"Payment Method Description","filterType":null,"required":true,"supportedType":null,"default":true}],"description":"Acquirer Exception Detail Report","reportDefinitionId":231,"reportDefintionName":"AcquirerExceptionDetailClass","supportedFormats":["text/csv"],"type":"Detail"} +2019-02-22 16:26:39.043 [main] INFO - Response Code: 200 +2019-02-22 16:26:39.044 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_5e0d5ae4-45cb-4328-86bb-c00564e4df3a +X-OPNET-Transaction-Trace: a2_e581e164-2b3c-4f2e-b6c9-53d2eaa1c128 +Cache-Control: no-cache, no-transform +ETag: "-78621274-gzip" +Expires: Fri, 22 Feb 2019 10:56:38 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:56:38 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d22f9a5f-d3ba-459d-b238-40529df02cf5 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832998609 +OkHttp-Received-Millis: 1550832999011 + +2019-02-22 16:26:39.044 [main] INFO - ********* END *********: +2019-02-22 16:26:39.098 [main] INFO - ********* START ********* +2019-02-22 16:26:39.098 [main] INFO - Authentication Type : http_signature +2019-02-22 16:26:39.098 [main] INFO - Request Type: GET +2019-02-22 16:26:39.099 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/SubscDetail, requestType=GET} +2019-02-22 16:26:39.099 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:26:39.099 [main] INFO - Date: Fri, 22 Feb 2019 10:56:37 GMT +2019-02-22 16:26:39.100 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:26:39.100 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ETGTqKYrV+Ove1YEkmmOqs3sk8iFe/kv8CMPSCyIEjc=" +2019-02-22 16:26:39.100 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:26:39.530 [main] INFO - Request Body: null +2019-02-22 16:26:39.530 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/SubscDetail"}}} +2019-02-22 16:26:39.531 [main] INFO - Response Code: 404 +2019-02-22 16:26:39.531 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_4157ec8c-4b2e-4993-9381-4e21419620d8 +X-OPNET-Transaction-Trace: a2_55e89a28-47df-4967-bea2-a4dda7fa032a +Cache-Control: no-cache, no-transform +ETag: "204857944-gzip" +Expires: Fri, 22 Feb 2019 10:56:39 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 10:56:38 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 5b46ddd8-2fad-40ce-8929-4588e0239e74 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550832999104 +OkHttp-Received-Millis: 1550832999517 + +2019-02-22 16:26:39.532 [main] INFO - ********* END *********: +2019-02-22 16:31:36.863 [main] INFO - ********* START ********* +2019-02-22 16:31:36.878 [main] INFO - Authentication Type : http_signature +2019-02-22 16:31:36.878 [main] INFO - Request Type: GET +2019-02-22 16:31:36.878 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/AcquirerExceptionDetailClass, requestType=GET} +2019-02-22 16:31:36.878 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:31:36.909 [main] INFO - Date: Fri, 22 Feb 2019 11:01:36 GMT +2019-02-22 16:31:36.909 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:31:36.909 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="eq9b7Fj9siZsFqG7sXzHWH0hyqjK8DJsW9GMBqhAo7A=" +2019-02-22 16:31:36.909 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:31:38.534 [main] INFO - Request Body: null +2019-02-22 16:31:38.534 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass"}},"attributes":[{"id":"3200","name":"AdditionalInformation.CardAcceptorID","description":"Card Acceptor ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3201","name":"AdditionalInformation.CardAcceptorName","description":"Card Acceptor Name","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3202","name":"AdditionalInformation.CardAcceptorTerminalID","description":"Card Acceptor Terminal ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3203","name":"AdditionalInformation.ForwardingInstitutionID","description":"Forwarding Institution ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3204","name":"AdditionalInformation.IssuerAffiliateBIN","description":"Issuer Affiliate BIN","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3205","name":"AdditionalInformation.MerchantType","description":"Merchant Type","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3206","name":"AdditionalInformation.RecurringPaymentIndicatorFlag","description":"Recurring Payment Indicator flag","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3223","name":"TransactionDetails.SourceMerchantID","description":"Source Merchant ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3225","name":"Fee.ReimbursementFee","description":"Reimbursement Fee","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3226","name":"Fee.ReimbursementFeeDebitCreditIndicator","description":"Reimbursement Fee Debit Credit Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3227","name":"Fee.SettlementServiceIndicator","description":"Settlement Service Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3228","name":"Fee.TransactionIntegrityFee","description":"Transaction Integrity Fee","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3229","name":"Fee.TransactionIntegrityFeeDebitCreditIndicator","description":"Transaction Integrity Fee Debit Credit Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3230","name":"Settlement.CardholderBillingAmount","description":"Cardholder Billing Amount","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3231","name":"Settlement.CardholderBillingCurrencyCode","description":"Cardholder Billing Currency Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3232","name":"Settlement.RateTableDate","description":"Rate Table Date","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3234","name":"Settlement.OctSettlementAmount","description":"Settlement Amount","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3235","name":"Settlement.OctSettlementCurrencyCode","description":"Settlement Currency Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3237","name":"TransactionDetails.AcquirerBusinessID","description":"Acquirer Business ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3238","name":"TransactionDetails.AcquiringInstitutionID","description":"Acquiring Institution ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3239","name":"TransactionDetails.AffiliateBIN","description":"Affiliate BIN","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3240","name":"TransactionDetails.AuthorizationIDRespCode","description":"Authorization ID Resp. Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3241","name":"TransactionDetails.BatchNumber","description":"Batch Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3242","name":"TransactionDetails.BusinessApplicationIdentifier","description":"Business Application Identifier","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3243","name":"TransactionDetails.CardNumber","description":"Card Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3244","name":"TransactionDetails.CurrencyCodeForTransactionAmount","description":"Currency Code For Transaction Amount","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3245","name":"TransactionDetails.DataRecipient","description":"Data Recipient","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3246","name":"TransactionDetails.DCCIndicator","description":"DCC Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3247","name":"TransactionDetails.DestinationStationID","description":"Destination Station ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3248","name":"TransactionDetails.DowngradeReasonCode","description":"Downgrade Reason Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3249","name":"TransactionDetails.FundsTransferSRE","description":"Funds Transfer SRE","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3250","name":"TransactionDetails.IssuerAcquirerIndicator","description":"Issuer Acquirer Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3251","name":"TransactionDetails.MessageReasonCode","description":"Message Reason Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3252","name":"TransactionDetails.MVVCode","description":"MVV Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3253","name":"TransactionDetails.NetworkID","description":"Network ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3254","name":"TransactionDetails.OnlineSettlementDate","description":"Online Settlement Date","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3255","name":"TransactionDetails.ProcessingCode","description":"Processing Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3256","name":"TransactionDetails.ProcessorID","description":"Processor ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3257","name":"TransactionDetails.ProductID","description":"Product ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3258","name":"TransactionDetails.ProductSubtype","description":"Product Subtype","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3259","name":"TransactionDetails.RequestMessageType","description":"Request Message Type","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3260","name":"TransactionDetails.ResponseCode","description":"Response Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3261","name":"TransactionDetails.RetrievalReferenceNumber","description":"Retrieval Reference Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3262","name":"TransactionDetails.SettlementDate","description":"Settlement Date","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3263","name":"TransactionDetails.SourceOfFunds","description":"Source of Funds","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3264","name":"TransactionDetails.SourceStationID","description":"Source Station ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3265","name":"TransactionDetails.SRE","description":"SRE","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3266","name":"TransactionDetails.STIPReasonCode","description":"STIP Reason Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3267","name":"TransactionDetails.TraceNumber","description":"Trace Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3268","name":"TransactionDetails.TransactionAmount","description":"Transaction Amount","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3269","name":"TransactionDetails.TransactionIdentifier","description":"Transaction Identifier","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3270","name":"TransactionDetails.VssProcessingDate","description":"VSS PROCESSING DATE","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3278","name":"TransactionDetails.RequestId","description":"Request ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3279","name":"TransactionDetails.MerchantId","description":"Merchant ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3280","name":"TransactionDetails.PaymentMethodType","description":"Payment Method Type","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3281","name":"TransactionDetails.PaymentMethodDesc","description":"Payment Method Description","filterType":null,"required":true,"supportedType":null,"default":true}],"description":"Acquirer Exception Detail Report","reportDefinitionId":231,"reportDefintionName":"AcquirerExceptionDetailClass","supportedFormats":["text/csv"],"type":"Detail"} +2019-02-22 16:31:38.550 [main] INFO - Response Code: 200 +2019-02-22 16:31:38.550 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_f196ff32-95da-44a7-ba06-37fbfd71d7c3 +X-OPNET-Transaction-Trace: a2_bd90257d-b437-4674-9c6c-1571732d232d +Cache-Control: no-cache, no-transform +ETag: "-78621274-gzip" +Expires: Fri, 22 Feb 2019 11:01:38 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 11:01:37 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4a9df0c8-31b4-47f2-85c9-500f2dbfd48a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550833298050 +OkHttp-Received-Millis: 1550833298519 + +2019-02-22 16:31:38.550 [main] INFO - ********* END *********: +2019-02-22 16:31:38.597 [main] INFO - ********* START ********* +2019-02-22 16:31:38.597 [main] INFO - Authentication Type : http_signature +2019-02-22 16:31:38.597 [main] INFO - Request Type: GET +2019-02-22 16:31:38.597 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/SubscDetail, requestType=GET} +2019-02-22 16:31:38.597 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:31:38.597 [main] INFO - Date: Fri, 22 Feb 2019 11:01:36 GMT +2019-02-22 16:31:38.597 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:31:38.597 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="xbOyN2tXTbDXDgr1DXWmruFWJfg1gZ6UOmmTx3Y7+Hk=" +2019-02-22 16:31:38.597 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:31:39.019 [main] INFO - Request Body: null +2019-02-22 16:31:39.019 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/SubscDetail"}}} +2019-02-22 16:31:39.019 [main] INFO - Response Code: 404 +2019-02-22 16:31:39.019 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_88f288fd-a214-46dc-934b-ff6062b4230f +X-OPNET-Transaction-Trace: a2_7e967867-5501-4b51-bf35-dc4d35d718d5 +Cache-Control: no-cache, no-transform +ETag: "204857944-gzip" +Expires: Fri, 22 Feb 2019 11:01:38 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 11:01:38 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6720f9ed-c441-43be-8213-9d32357cde9b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550833298597 +OkHttp-Received-Millis: 1550833299019 + +2019-02-22 16:31:39.019 [main] INFO - ********* END *********: +2019-02-22 16:33:17.413 [main] INFO - ********* START ********* +2019-02-22 16:33:17.428 [main] INFO - Authentication Type : http_signature +2019-02-22 16:33:17.428 [main] INFO - Request Type: GET +2019-02-22 16:33:17.428 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/AcquirerExceptionDetailClass, requestType=GET} +2019-02-22 16:33:17.428 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:33:17.475 [main] INFO - Date: Fri, 22 Feb 2019 11:03:17 GMT +2019-02-22 16:33:17.475 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:33:17.475 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="WSc3D8GvWaycdWkDZmYBGyXV2TNJ6yDmJvc2O6r4rXU=" +2019-02-22 16:33:17.475 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:33:18.975 [main] INFO - Request Body: null +2019-02-22 16:33:18.975 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass"}},"attributes":[{"id":"3200","name":"AdditionalInformation.CardAcceptorID","description":"Card Acceptor ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3201","name":"AdditionalInformation.CardAcceptorName","description":"Card Acceptor Name","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3202","name":"AdditionalInformation.CardAcceptorTerminalID","description":"Card Acceptor Terminal ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3203","name":"AdditionalInformation.ForwardingInstitutionID","description":"Forwarding Institution ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3204","name":"AdditionalInformation.IssuerAffiliateBIN","description":"Issuer Affiliate BIN","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3205","name":"AdditionalInformation.MerchantType","description":"Merchant Type","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3206","name":"AdditionalInformation.RecurringPaymentIndicatorFlag","description":"Recurring Payment Indicator flag","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3223","name":"TransactionDetails.SourceMerchantID","description":"Source Merchant ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3225","name":"Fee.ReimbursementFee","description":"Reimbursement Fee","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3226","name":"Fee.ReimbursementFeeDebitCreditIndicator","description":"Reimbursement Fee Debit Credit Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3227","name":"Fee.SettlementServiceIndicator","description":"Settlement Service Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3228","name":"Fee.TransactionIntegrityFee","description":"Transaction Integrity Fee","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3229","name":"Fee.TransactionIntegrityFeeDebitCreditIndicator","description":"Transaction Integrity Fee Debit Credit Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3230","name":"Settlement.CardholderBillingAmount","description":"Cardholder Billing Amount","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3231","name":"Settlement.CardholderBillingCurrencyCode","description":"Cardholder Billing Currency Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3232","name":"Settlement.RateTableDate","description":"Rate Table Date","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3234","name":"Settlement.OctSettlementAmount","description":"Settlement Amount","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3235","name":"Settlement.OctSettlementCurrencyCode","description":"Settlement Currency Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3237","name":"TransactionDetails.AcquirerBusinessID","description":"Acquirer Business ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3238","name":"TransactionDetails.AcquiringInstitutionID","description":"Acquiring Institution ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3239","name":"TransactionDetails.AffiliateBIN","description":"Affiliate BIN","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3240","name":"TransactionDetails.AuthorizationIDRespCode","description":"Authorization ID Resp. Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3241","name":"TransactionDetails.BatchNumber","description":"Batch Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3242","name":"TransactionDetails.BusinessApplicationIdentifier","description":"Business Application Identifier","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3243","name":"TransactionDetails.CardNumber","description":"Card Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3244","name":"TransactionDetails.CurrencyCodeForTransactionAmount","description":"Currency Code For Transaction Amount","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3245","name":"TransactionDetails.DataRecipient","description":"Data Recipient","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3246","name":"TransactionDetails.DCCIndicator","description":"DCC Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3247","name":"TransactionDetails.DestinationStationID","description":"Destination Station ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3248","name":"TransactionDetails.DowngradeReasonCode","description":"Downgrade Reason Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3249","name":"TransactionDetails.FundsTransferSRE","description":"Funds Transfer SRE","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3250","name":"TransactionDetails.IssuerAcquirerIndicator","description":"Issuer Acquirer Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3251","name":"TransactionDetails.MessageReasonCode","description":"Message Reason Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3252","name":"TransactionDetails.MVVCode","description":"MVV Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3253","name":"TransactionDetails.NetworkID","description":"Network ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3254","name":"TransactionDetails.OnlineSettlementDate","description":"Online Settlement Date","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3255","name":"TransactionDetails.ProcessingCode","description":"Processing Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3256","name":"TransactionDetails.ProcessorID","description":"Processor ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3257","name":"TransactionDetails.ProductID","description":"Product ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3258","name":"TransactionDetails.ProductSubtype","description":"Product Subtype","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3259","name":"TransactionDetails.RequestMessageType","description":"Request Message Type","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3260","name":"TransactionDetails.ResponseCode","description":"Response Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3261","name":"TransactionDetails.RetrievalReferenceNumber","description":"Retrieval Reference Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3262","name":"TransactionDetails.SettlementDate","description":"Settlement Date","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3263","name":"TransactionDetails.SourceOfFunds","description":"Source of Funds","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3264","name":"TransactionDetails.SourceStationID","description":"Source Station ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3265","name":"TransactionDetails.SRE","description":"SRE","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3266","name":"TransactionDetails.STIPReasonCode","description":"STIP Reason Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3267","name":"TransactionDetails.TraceNumber","description":"Trace Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3268","name":"TransactionDetails.TransactionAmount","description":"Transaction Amount","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3269","name":"TransactionDetails.TransactionIdentifier","description":"Transaction Identifier","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3270","name":"TransactionDetails.VssProcessingDate","description":"VSS PROCESSING DATE","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3278","name":"TransactionDetails.RequestId","description":"Request ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3279","name":"TransactionDetails.MerchantId","description":"Merchant ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3280","name":"TransactionDetails.PaymentMethodType","description":"Payment Method Type","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3281","name":"TransactionDetails.PaymentMethodDesc","description":"Payment Method Description","filterType":null,"required":true,"supportedType":null,"default":true}],"description":"Acquirer Exception Detail Report","reportDefinitionId":231,"reportDefintionName":"AcquirerExceptionDetailClass","supportedFormats":["text/csv"],"type":"Detail"} +2019-02-22 16:33:18.975 [main] INFO - Response Code: 200 +2019-02-22 16:33:18.975 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_4e4b2fd6-347b-425c-b7d3-8f2dd858c4bb +X-OPNET-Transaction-Trace: a2_b3f43d10-3015-41f2-99c4-f0d619b50856 +Cache-Control: no-cache, no-transform +ETag: "-78621274-gzip" +Expires: Fri, 22 Feb 2019 11:03:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 11:03:18 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 8f1a7ddb-87d8-4ddf-99e8-90f4d10477a7 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550833398491 +OkHttp-Received-Millis: 1550833398944 + +2019-02-22 16:33:18.975 [main] INFO - ********* END *********: +2019-02-22 16:33:19.022 [main] INFO - ********* START ********* +2019-02-22 16:33:19.022 [main] INFO - Authentication Type : http_signature +2019-02-22 16:33:19.022 [main] INFO - Request Type: GET +2019-02-22 16:33:19.022 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/SubscDetail, requestType=GET} +2019-02-22 16:33:19.022 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:33:19.022 [main] INFO - Date: Fri, 22 Feb 2019 11:03:17 GMT +2019-02-22 16:33:19.022 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:33:19.022 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="53vxBV/kH4psXumCQbB+is6/+7nuYmNOSlfLrPcNSRI=" +2019-02-22 16:33:19.022 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:33:19.475 [main] INFO - Request Body: null +2019-02-22 16:33:19.475 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/SubscDetail"}}} +2019-02-22 16:33:19.475 [main] INFO - Response Code: 404 +2019-02-22 16:33:19.475 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_bb367e6b-441d-4b8a-b46d-5d35ffa5679f +X-OPNET-Transaction-Trace: a2_f4aa7ccf-0cf3-4ffc-a662-4b7c92348b9d +Cache-Control: no-cache, no-transform +ETag: "204857944-gzip" +Expires: Fri, 22 Feb 2019 11:03:19 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 11:03:18 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d2f14430-0575-4e1e-9150-704e8c0fd661 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550833399022 +OkHttp-Received-Millis: 1550833399475 + +2019-02-22 16:33:19.475 [main] INFO - ********* END *********: +2019-02-22 16:35:05.741 [main] INFO - ********* START ********* +2019-02-22 16:35:05.756 [main] INFO - Authentication Type : http_signature +2019-02-22 16:35:05.756 [main] INFO - Request Type: GET +2019-02-22 16:35:05.756 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/Texture, requestType=GET} +2019-02-22 16:35:05.756 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:35:05.788 [main] INFO - Date: Fri, 22 Feb 2019 11:05:05 GMT +2019-02-22 16:35:05.788 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:35:05.788 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="IBv18AHEI93sUk0bfH8YIyAQcPIw4Zi7LP7Mt/X6Heo=" +2019-02-22 16:35:05.788 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:35:07.225 [main] INFO - Request Body: null +2019-02-22 16:35:07.225 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0230","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"} +2019-02-22 16:35:07.225 [main] INFO - Response Code: 200 +2019-02-22 16:35:07.225 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_8a1ca3a2-09b4-48d1-8ba9-f314f2acac22 +X-OPNET-Transaction-Trace: a2_870bfc08-cb36-4cd1-9c17-53da5b1a6ad7 +Cache-Control: no-cache, no-transform +ETag: "-1844867216-gzip" +Expires: Fri, 22 Feb 2019 11:05:07 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 11:05:07 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 799b3ae5-5ade-40fb-a888-de3c6ee37afb +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550833506741 +OkHttp-Received-Millis: 1550833507194 + +2019-02-22 16:35:07.225 [main] INFO - ********* END *********: +2019-02-22 16:35:07.288 [main] INFO - ********* START ********* +2019-02-22 16:35:07.288 [main] INFO - Authentication Type : http_signature +2019-02-22 16:35:07.288 [main] INFO - Request Type: GET +2019-02-22 16:35:07.288 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/bplkmdgsd, requestType=GET} +2019-02-22 16:35:07.288 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:35:07.288 [main] INFO - Date: Fri, 22 Feb 2019 11:05:05 GMT +2019-02-22 16:35:07.288 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:35:07.288 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="LAD9ZzqKnRW/8a7MR2kWXLw8tsa4697qqBdv+XIdf4w=" +2019-02-22 16:35:07.288 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:35:07.694 [main] INFO - Request Body: null +2019-02-22 16:35:07.694 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/bplkmdgsd"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"Requested subscription does not exist."} +2019-02-22 16:35:07.694 [main] INFO - Response Code: 404 +2019-02-22 16:35:07.694 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_7b66655a-8ff0-4b31-99ef-a28cfa345f8c +X-OPNET-Transaction-Trace: a2_9cc1fe22-e58b-4d64-8205-8461503e1253 +Cache-Control: no-cache, no-transform +ETag: "1764052161-gzip" +Expires: Fri, 22 Feb 2019 11:05:07 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Fri, 22 Feb 2019 11:05:06 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7fd70237-9eea-4f98-af49-09e8194d4852 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550833507288 +OkHttp-Received-Millis: 1550833507694 + +2019-02-22 16:35:07.694 [main] INFO - ********* END *********: +2019-02-22 16:36:16.828 [main] INFO - ********* START ********* +2019-02-22 16:36:16.844 [main] INFO - Authentication Type : http_signature +2019-02-22 16:36:16.844 [main] INFO - Request Type: GET +2019-02-22 16:36:16.844 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA%3D%3D?organizationId=testrest, requestType=GET} +2019-02-22 16:36:16.844 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:36:16.875 [main] INFO - Date: Fri, 22 Feb 2019 11:06:16 GMT +2019-02-22 16:36:16.891 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:36:16.891 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="RMvHgNcvV045R15yW9wFSwb+AH0/vlzTwUpe4dUYDZ0=" +2019-02-22 16:36:16.891 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:36:18.406 [main] INFO - Request Body: null +2019-02-22 16:36:18.406 [main] INFO - Response Message: testrest,TRRReport,TransactionRequestReport,1.10,2018-10-19T16:00:00Z to 2018-10-20T16:00:00Z +RequestID,RequestDate,MerchantReferenceNumber,MerchantID +5399662771246550003001,2018-10-19T16:24:37Z,TC50171_3,testrest +5399664781416551403001,2018-10-19T16:27:58Z,TC50171_3,testrest +5399666196306552903001,2018-10-19T16:30:19Z,TC50171_3,testrest +5399666357576981903005,2018-10-19T16:30:35Z,TC50171_3,testrest +5399680347956058103004,2018-10-19T16:53:54Z,TC50171_3,testrest +5399680431216058303004,2018-10-19T16:54:03Z,TC50171_3,testrest +5399684302416000903005,2018-10-19T17:00:30Z,TC50171_3,testrest +5399684505506723403002,2018-10-19T17:00:50Z,TC50171_3,testrest +5399684781686729303003,2018-10-19T17:01:18Z,TC50171_3,testrest +5399742716346290903004,2018-10-19T18:37:51Z,TC50171_3,testrest +5399742808726291703004,2018-10-19T18:38:00Z,TC50171_3,testrest +5399743679866242703005,2018-10-19T18:39:28Z,TC50171_3,testrest +5399751921786020803003,2018-10-19T18:53:12Z,TC50171_3,testrest +5399761919726317303005,2018-10-19T19:09:52Z,TC50171_3,testrest +5399787878246907603001,2018-10-19T19:53:07Z,TC50171_3,testrest +5399793339576405603004,2018-10-19T20:02:14Z,405195660::1,testrest +5399807626196378603005,2018-10-19T20:26:02Z,405195660::1,testrest +5399810449296963303001,2018-10-19T20:30:45Z,33557799,testrest +5399829987226032203001,2018-10-19T21:03:18Z,1234567890,testrest +5399844740286070303001,2018-10-19T21:27:54Z,TC50171_3,testrest +5399845077266611803006,2018-10-19T21:28:27Z,TC50171_3,testrest +5399845139246229503002,2018-10-19T21:28:34Z,TC50171_3,testrest +5399889652786155003001,2018-10-19T22:42:45Z,TC50171_3,testrest +5399900584196720203006,2018-10-19T23:00:58Z,1234567890,testrest + +2019-02-22 16:36:18.406 [main] INFO - Response Code: 200 +2019-02-22 16:36:18.406 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e677e4ef-a197-4ee2-9e58-8022a5846e52 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Fri, 22 Feb 2019 11:06:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Fri, 22 Feb 2019 11:06:18 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7b356f68-ade5-4473-9ac3-fd72884c20df +OkHttp-Sent-Millis: 1550833577859 +OkHttp-Received-Millis: 1550833578375 + +2019-02-22 16:36:18.406 [main] INFO - ********* END *********: +2019-02-22 16:36:18.437 [main] INFO - ********* START ********* +2019-02-22 16:36:18.437 [main] INFO - Authentication Type : http_signature +2019-02-22 16:36:18.437 [main] INFO - Request Type: GET +2019-02-22 16:36:18.437 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0?organizationId=testrest, requestType=GET} +2019-02-22 16:36:18.437 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:36:18.437 [main] INFO - Date: Fri, 22 Feb 2019 11:06:16 GMT +2019-02-22 16:36:18.453 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:36:18.453 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="FTEAozEp40OQSJxqdXJ4vM36YqR7ufX+/A5e2XUii/w=" +2019-02-22 16:36:18.453 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:36:18.953 [main] INFO - Request Body: null +2019-02-22 16:36:18.953 [main] INFO - Response Message: + + Field validation errors + cybsapi.validation.errors + VALIDATION_ERROR + + cybsapi.file.id.invalid + fileId + Invalid File ID + + + +2019-02-22 16:36:18.953 [main] INFO - Response Code: 400 +2019-02-22 16:36:18.953 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_17ee5716-9323-4dc1-9225-5dbbe8756162 +Cache-Control: no-cache, no-transform +ETag: "-807714005-gzip" +Expires: Fri, 22 Feb 2019 11:06:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Fri, 22 Feb 2019 11:06:18 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 26a9c1e7-e2cf-4b4b-8020-d852d418a9fc +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550833578453 +OkHttp-Received-Millis: 1550833578937 + +2019-02-22 16:36:18.953 [main] INFO - ********* END *********: +2019-02-22 16:38:43.982 [main] INFO - ********* START ********* +2019-02-22 16:38:43.998 [main] INFO - Authentication Type : http_signature +2019-02-22 16:38:43.998 [main] INFO - Request Type: GET +2019-02-22 16:38:43.998 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA%3D%3D?organizationId=testrest, requestType=GET} +2019-02-22 16:38:43.998 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:38:44.029 [main] INFO - Date: Fri, 22 Feb 2019 11:08:43 GMT +2019-02-22 16:38:44.029 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:38:44.029 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="wv2WBkkXe8aNCKeTnU/yMUQwKpLE0iXJuVMgIjmWEcE=" +2019-02-22 16:38:44.029 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:38:45.467 [main] INFO - Request Body: null +2019-02-22 16:38:45.467 [main] INFO - Response Message: testrest,TRRReport,TransactionRequestReport,1.10,2018-10-19T16:00:00Z to 2018-10-20T16:00:00Z +RequestID,RequestDate,MerchantReferenceNumber,MerchantID +5399662771246550003001,2018-10-19T16:24:37Z,TC50171_3,testrest +5399664781416551403001,2018-10-19T16:27:58Z,TC50171_3,testrest +5399666196306552903001,2018-10-19T16:30:19Z,TC50171_3,testrest +5399666357576981903005,2018-10-19T16:30:35Z,TC50171_3,testrest +5399680347956058103004,2018-10-19T16:53:54Z,TC50171_3,testrest +5399680431216058303004,2018-10-19T16:54:03Z,TC50171_3,testrest +5399684302416000903005,2018-10-19T17:00:30Z,TC50171_3,testrest +5399684505506723403002,2018-10-19T17:00:50Z,TC50171_3,testrest +5399684781686729303003,2018-10-19T17:01:18Z,TC50171_3,testrest +5399742716346290903004,2018-10-19T18:37:51Z,TC50171_3,testrest +5399742808726291703004,2018-10-19T18:38:00Z,TC50171_3,testrest +5399743679866242703005,2018-10-19T18:39:28Z,TC50171_3,testrest +5399751921786020803003,2018-10-19T18:53:12Z,TC50171_3,testrest +5399761919726317303005,2018-10-19T19:09:52Z,TC50171_3,testrest +5399787878246907603001,2018-10-19T19:53:07Z,TC50171_3,testrest +5399793339576405603004,2018-10-19T20:02:14Z,405195660::1,testrest +5399807626196378603005,2018-10-19T20:26:02Z,405195660::1,testrest +5399810449296963303001,2018-10-19T20:30:45Z,33557799,testrest +5399829987226032203001,2018-10-19T21:03:18Z,1234567890,testrest +5399844740286070303001,2018-10-19T21:27:54Z,TC50171_3,testrest +5399845077266611803006,2018-10-19T21:28:27Z,TC50171_3,testrest +5399845139246229503002,2018-10-19T21:28:34Z,TC50171_3,testrest +5399889652786155003001,2018-10-19T22:42:45Z,TC50171_3,testrest +5399900584196720203006,2018-10-19T23:00:58Z,1234567890,testrest + +2019-02-22 16:38:45.467 [main] INFO - Response Code: 200 +2019-02-22 16:38:45.467 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_f6e4c9e1-d40e-496b-9c32-f42947c20ff4 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Fri, 22 Feb 2019 11:08:45 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Fri, 22 Feb 2019 11:08:45 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: aedc47b1-ea4c-4936-a4cc-0b9991ede0ae +OkHttp-Sent-Millis: 1550833724967 +OkHttp-Received-Millis: 1550833725451 + +2019-02-22 16:38:45.467 [main] INFO - ********* END *********: +2019-02-22 16:38:53.623 [main] INFO - ********* START ********* +2019-02-22 16:38:53.623 [main] INFO - Authentication Type : http_signature +2019-02-22 16:38:53.623 [main] INFO - Request Type: GET +2019-02-22 16:38:53.623 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0?organizationId=testrest, requestType=GET} +2019-02-22 16:38:53.623 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:38:53.623 [main] INFO - Date: Fri, 22 Feb 2019 11:08:43 GMT +2019-02-22 16:38:53.623 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:38:53.623 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="4aDmopDWH4+KgT0crfmUB1JA3dLON60+KWQ1arkFZPM=" +2019-02-22 16:38:53.623 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:38:54.139 [main] INFO - Request Body: null +2019-02-22 16:38:54.139 [main] INFO - Response Message: + + Field validation errors + cybsapi.validation.errors + VALIDATION_ERROR + + cybsapi.file.id.invalid + fileId + Invalid File ID + + + +2019-02-22 16:38:54.139 [main] INFO - Response Code: 400 +2019-02-22 16:38:54.139 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_1c1f0aa8-ba81-4481-a28d-5e4e831d7bbc +Cache-Control: no-cache, no-transform +ETag: "-807714005-gzip" +Expires: Fri, 22 Feb 2019 11:08:54 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Fri, 22 Feb 2019 11:08:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d49da630-fe34-41cc-99f8-3dc610b3a1d6 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550833733639 +OkHttp-Received-Millis: 1550833734123 + +2019-02-22 16:38:54.139 [main] INFO - ********* END *********: +2019-02-22 16:41:57.518 [main] INFO - ********* START ********* +2019-02-22 16:41:57.533 [main] INFO - Authentication Type : http_signature +2019-02-22 16:41:57.533 [main] INFO - Request Type: GET +2019-02-22 16:41:57.533 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA%3D%3D?organizationId=testrest, requestType=GET} +2019-02-22 16:41:57.533 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:41:57.533 [main] INFO - Date: Fri, 22 Feb 2019 11:11:57 GMT +2019-02-22 16:41:57.533 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:41:57.533 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="A/ptgY24mIkRyhGbz7t9UUHJb4GC1UVvkCvHafoM50o=" +2019-02-22 16:41:57.533 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:41:59.002 [main] INFO - Request Body: null +2019-02-22 16:41:59.002 [main] INFO - Response Message: testrest,TRRReport,TransactionRequestReport,1.10,2018-10-19T16:00:00Z to 2018-10-20T16:00:00Z +RequestID,RequestDate,MerchantReferenceNumber,MerchantID +5399662771246550003001,2018-10-19T16:24:37Z,TC50171_3,testrest +5399664781416551403001,2018-10-19T16:27:58Z,TC50171_3,testrest +5399666196306552903001,2018-10-19T16:30:19Z,TC50171_3,testrest +5399666357576981903005,2018-10-19T16:30:35Z,TC50171_3,testrest +5399680347956058103004,2018-10-19T16:53:54Z,TC50171_3,testrest +5399680431216058303004,2018-10-19T16:54:03Z,TC50171_3,testrest +5399684302416000903005,2018-10-19T17:00:30Z,TC50171_3,testrest +5399684505506723403002,2018-10-19T17:00:50Z,TC50171_3,testrest +5399684781686729303003,2018-10-19T17:01:18Z,TC50171_3,testrest +5399742716346290903004,2018-10-19T18:37:51Z,TC50171_3,testrest +5399742808726291703004,2018-10-19T18:38:00Z,TC50171_3,testrest +5399743679866242703005,2018-10-19T18:39:28Z,TC50171_3,testrest +5399751921786020803003,2018-10-19T18:53:12Z,TC50171_3,testrest +5399761919726317303005,2018-10-19T19:09:52Z,TC50171_3,testrest +5399787878246907603001,2018-10-19T19:53:07Z,TC50171_3,testrest +5399793339576405603004,2018-10-19T20:02:14Z,405195660::1,testrest +5399807626196378603005,2018-10-19T20:26:02Z,405195660::1,testrest +5399810449296963303001,2018-10-19T20:30:45Z,33557799,testrest +5399829987226032203001,2018-10-19T21:03:18Z,1234567890,testrest +5399844740286070303001,2018-10-19T21:27:54Z,TC50171_3,testrest +5399845077266611803006,2018-10-19T21:28:27Z,TC50171_3,testrest +5399845139246229503002,2018-10-19T21:28:34Z,TC50171_3,testrest +5399889652786155003001,2018-10-19T22:42:45Z,TC50171_3,testrest +5399900584196720203006,2018-10-19T23:00:58Z,1234567890,testrest + +2019-02-22 16:41:59.002 [main] INFO - Response Code: 200 +2019-02-22 16:41:59.002 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_c3f861b2-9d84-49f1-8205-f1996e95d789 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Fri, 22 Feb 2019 11:11:58 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Fri, 22 Feb 2019 11:11:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: de3aab82-eda9-44dc-a844-433d605c3cae +OkHttp-Sent-Millis: 1550833918502 +OkHttp-Received-Millis: 1550833918971 + +2019-02-22 16:41:59.002 [main] INFO - ********* END *********: +2019-02-22 16:42:05.330 [main] INFO - ********* START ********* +2019-02-22 16:42:05.330 [main] INFO - Authentication Type : http_signature +2019-02-22 16:42:05.330 [main] INFO - Request Type: GET +2019-02-22 16:42:05.330 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0?organizationId=testrest, requestType=GET} +2019-02-22 16:42:05.330 [main] INFO - v-c-merchant-id: testrest +2019-02-22 16:42:05.346 [main] INFO - Date: Fri, 22 Feb 2019 11:11:57 GMT +2019-02-22 16:42:05.346 [main] INFO - Host: apitest.cybersource.com +2019-02-22 16:42:05.346 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="lxIgyK5+dykG3RgYJObTIQcNq/uCXP5VgreTM7fSzdU=" +2019-02-22 16:42:05.346 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-22 16:42:06.893 [main] INFO - Request Body: null +2019-02-22 16:42:06.893 [main] INFO - Response Message: + + Field validation errors + cybsapi.validation.errors + VALIDATION_ERROR + + cybsapi.file.id.invalid + fileId + Invalid File ID + + + +2019-02-22 16:42:06.893 [main] INFO - Response Code: 400 +2019-02-22 16:42:06.908 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a2d292e4-ce77-47fc-9a40-e95ac11d6539 +Cache-Control: no-cache, no-transform +ETag: "-807714005-gzip" +Expires: Fri, 22 Feb 2019 11:12:06 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Fri, 22 Feb 2019 11:12:06 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 78d0dd91-fc66-4859-a1cb-5945b9f65e60 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1550833925346 +OkHttp-Received-Millis: 1550833926893 + +2019-02-22 16:42:06.908 [main] INFO - ********* END *********: +2019-02-25 10:22:42.652 [main] INFO - ********* START ********* +2019-02-25 10:22:42.667 [main] INFO - Authentication Type : http_signature +2019-02-25 10:22:42.668 [main] INFO - Request Type: GET +2019-02-25 10:22:42.669 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-25 10:22:42.669 [main] INFO - v-c-merchant-id: testrest +2019-02-25 10:22:42.669 [main] INFO - Date: Mon, 25 Feb 2019 04:52:42 GMT +2019-02-25 10:22:42.670 [main] INFO - Host: apitest.cybersource.com +2019-02-25 10:22:42.670 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="wSjAuCx6cXWkArcU5n4WeW0bT9/k/IbXaHVowPnINY8=" +2019-02-25 10:22:42.670 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 10:22:43.972 [main] INFO - Request Body: null +2019-02-25 10:22:43.973 [main] INFO - Response Message: {"users":[{"accountInformation":{"userName":"testrest","roleId":"admin","permissions":["CustomerProfileViewPermission","CustomerProfileDeletePermission","CustomerProfileManagementPermission","CustomerProfileTransactionPermission","SubscriptionViewPermission","SubscriptionDeletePermission","SubscriptionManagementPermission","SubscriptionTransactionPermission","VirtualTerminalSettingsViewPermission","VirtualTerminalSettingsManagementPermission","VirtualTerminalTransactionPermission","PaymentVerificationPermission","PaymentDebitPermission","PaymentCreditPermission","PaymentStandAloneCreditPermission","PaymentServiceFeeRefundPermission","PaymentCancellationPermission","ReportSettingsViewPermission","ReportSettingsManagementPermission","ReportViewPermission","ReportDownloadPermission","ELCViewPermission","ELCReturnPermission","ELCResetPermission","DMConfigurationManagementPermission","DMProfileManagementPermission","DMProfileViewPermission","DMListManagementPermission","DMListViewPermission","DMVelocityManagementPermission","DMVelocityViewPermission","DMQueueSettingsManagementPermission","DMQueueSettingsViewPermission","DMReplayRequestManagementPermission","DMReplayRequestViewPermission","CMQueueSearchPermission","CMConvertOrderPermission","CMQueueAssignmentPermission","CMReleaseOwnershipPermission","CMReviewAnyOrderPermission","CMCaseAssignmentPermission","CMPriorityChangePermission","CMMoveOrdersToOtherQueuePermission","CMThirdPartyConfigurationPermission","CMPerformanceStatisticsReviewPermission","CMTimeLimitResetPermission","CMUnrestrictedOrderManagementPermission","CMConvertRejectedOrdersPermission","CMStealOwnershipPermission","CMCaseSLAExemptionPermission","CMThirdPartyRequestsPermission","UserViewPermission","UserUpdatePermission","UserManagementPermission","BankingInformationManagementPermission","MerchantInformationManagementPermission","APIKeyManagementPermission","MessageCenterViewPermission","HOPScriptManagementPermission","HOPSettingsViewPermission","HOPSettingsManagementPermission","HPASecurityManagementPermission","HPASettingsViewPermission","HPASettingsManagementPermission","HPATransactionSearchPermission","TransactionViewPermission","MarkAsTrustedPermission","MarkAsTemporarilyTrustedPermission","MarkAsSuspectPermission","MarkForReviewPermission","RemoveFromHistoryPermission","AccountNumberViewPermission","BatchUploadPermission","ReauthorizePermission","ReauthorizeSettlePermission","NewOrderFromAuthPermission","FullAuthorizationReversalPermission","AUStatusPermission","AUPgpUploadPermission","CbkMgmtAssignChargebackPermission","CbkMgmtViewChargebackPermission","CbkMgmtAcceptAndRebuttalChargebackPermission","CbkMgmtTakeOwnershipPermission","AuditSearchPermission","TransactionSearchExportPermission","CbkMgmtReturnChargebackToQueuePermission","BeneficiaryDetailsViewPermission","BeneficiaryDetailsUpdatePermission","IpConfigurationPermission","SecureFileDownloadPermission","SecureFileUploadPermission","ServiceFeeSettingsViewPermission","ServiceFeeSettingsManagementPermission","MposDeviceManagementPermission","MposDeviceAccessPermission","MposDeviceTIDManagementPermission","PayoutsVirtualTerminalPermission","PayoutsVirtualTerminalSettingsViewPermission","PayoutsVirtualTerminalSettingsManagementPermission","TerminalManagementPermission","ProcessorSettingsPermission","PortfolioRiskControlsViewPermission","PortfolioRiskControlsManagementPermission","MerchantRiskControlsViewPermission","MerchantRiskControlsManagementPermission","KeysManagementPermission","KeysViewPermission","DigitalPaymentsViewPermission","DigitalPaymentsManagementPermission","PayerAuthConfigurationViewPermission","PayerAuthConfigurationManagementPermission","SmartAuthSettingsViewPermission","SmartAuthSettingsManagementPermission","GroupsViewPermission","GroupsManagementPermission","IpSettingsViewPermission","IpSettingsManagementPermission","MerchantBoardingViewPermission","MerchantBoardingManagementPermission","TokenDashboardViewPermission","TokenDashboardManagementPermission","TerminalListViewPermission","MposDeviceViewPermission","ReaderStatusPanelViewPermission","ReaderStatusPanelManagementPermission"],"status":"active","createdTime":"2017-11-17T22:38:06.000Z","lastAccessTime":"2019-02-22T11:06:52.000Z","languagePreference":"","timezone":""},"organizationInformation":{"organizationId":"testrest"},"contactInformation":{"email":"glondhe@visa.com","phoneNumber":"","firstName":"gaurav","lastName":"londhe"},"customFields":{}}]} +2019-02-25 10:22:43.975 [main] INFO - Response Code: 200 +2019-02-25 10:22:43.975 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d3a512e4-27f6-4c26-a3e4-f4f4d205d19c +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 04:52:43 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: cf9cd892-e1d5-4f13-b228-5d707ed7362f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551070363648 +OkHttp-Received-Millis: 1551070363944 + +2019-02-25 10:22:43.975 [main] INFO - ********* END *********: +2019-02-25 10:23:06.589 [main] INFO - ********* START ********* +2019-02-25 10:23:06.589 [main] INFO - Authentication Type : http_signature +2019-02-25 10:23:06.590 [main] INFO - Request Type: GET +2019-02-25 10:23:06.591 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testre&roleId=admin, requestType=GET} +2019-02-25 10:23:06.591 [main] INFO - v-c-merchant-id: testrest +2019-02-25 10:23:06.591 [main] INFO - Date: Mon, 25 Feb 2019 04:52:42 GMT +2019-02-25 10:23:06.592 [main] INFO - Host: apitest.cybersource.com +2019-02-25 10:23:06.592 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="2TJ56xRawCNmf498ZHP6G9sjt2OFDWs6KQ2AVjRDl8s=" +2019-02-25 10:23:06.592 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 10:23:06.921 [main] INFO - Request Body: null +2019-02-25 10:23:06.921 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-25 10:23:06.922 [main] INFO - Response Code: 401 +2019-02-25 10:23:06.922 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_ceda2cef-f299-45e6-815f-7bf7c13e237b +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 04:53:06 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 43e94e0e-a2bc-4568-a736-1e7ff3a2c154 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551070386595 +OkHttp-Received-Millis: 1551070386919 + +2019-02-25 10:23:06.922 [main] INFO - ********* END *********: +2019-02-25 11:06:13.908 [main] INFO - ********* START ********* +2019-02-25 11:06:13.924 [main] INFO - Authentication Type : http_signature +2019-02-25 11:06:13.924 [main] INFO - Request Type: POST +2019-02-25 11:06:13.924 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-25 11:06:13.924 [main] INFO - Digest: SHA-256=yv1HHIWB0ukuo0JfNKnkDCUcVm1OrwOQ7U4IgWX3zTs= +2019-02-25 11:06:13.970 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:06:13.970 [main] INFO - Date: Mon, 25 Feb 2019 05:36:13 GMT +2019-02-25 11:06:13.970 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:06:13.970 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="zJyufVMBY9jkiO3GX23iwh1F9McYLb1Ab1YKuQGDWSE=" +2019-02-25 11:06:13.970 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:06:16.111 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientReferenceInformation.code:12345","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-25 11:06:16.111 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/de0a3a2e-6228-446b-916e-58b2289a12a6","method":"GET"}},"searchId":"de0a3a2e-6228-446b-916e-58b2289a12a6","save":false,"name":"TSS search","query":"clientReferenceInformation.code:12345","count":62,"totalCount":62,"limit":80,"offset":0,"sort":"id:asc, submitTimeUtc:asc","timezone":"America/Chicago","submitTimeUtc":"2019-02-25T05:36:15Z","_embedded":{"transactionSummaries":[{"id":"5468475396886870703005","submitTimeUtc":"2019-01-07T07:52:19Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468475396886870703005","method":"GET"}}},{"id":"5468478041966220703004","submitTimeUtc":"2019-01-07T07:56:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468478041966220703004","method":"GET"}}},{"id":"5468480179436393003006","submitTimeUtc":"2019-01-07T08:00:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480179436393003006","method":"GET"}}},{"id":"5468480690446811803002","submitTimeUtc":"2019-01-07T08:01:09Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480690446811803002","method":"GET"}}},{"id":"5468485285666814803002","submitTimeUtc":"2019-01-07T08:08:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485285666814803002","method":"GET"}}},{"id":"5468485710916881003005","submitTimeUtc":"2019-01-07T08:09:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485710916881003005","method":"GET"}}},{"id":"5469521708616037903005","submitTimeUtc":"2019-01-08T12:56:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469521708616037903005","method":"GET"}}},{"id":"5469522883506039403005","submitTimeUtc":"2019-01-08T12:58:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469522883506039403005","method":"GET"}}},{"id":"5469524080436600903006","submitTimeUtc":"2019-01-08T13:00:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524080436600903006","method":"GET"}}},{"id":"5469524351696601103006","submitTimeUtc":"2019-01-08T13:00:35Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524351696601103006","method":"GET"}}},{"id":"5469525663736980803002","submitTimeUtc":"2019-01-08T13:02:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469525663736980803002","method":"GET"}}},{"id":"5469529727066047603005","submitTimeUtc":"2019-01-08T13:09:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469529727066047603005","method":"GET"}}},{"id":"5469535101246615503006","submitTimeUtc":"2019-01-08T13:18:30Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469535101246615503006","method":"GET"}}},{"id":"5469588461766085503005","submitTimeUtc":"2019-01-08T14:47:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469588461766085503005","method":"GET"}}},{"id":"5469589378676352103001","submitTimeUtc":"2019-01-08T14:48:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589378676352103001","method":"GET"}}},{"id":"5469589534636352203001","submitTimeUtc":"2019-01-08T14:49:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589534636352203001","method":"GET"}}},{"id":"5470167162946434803001","submitTimeUtc":"2019-01-09T06:51:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5470167162946434803001","method":"GET"}}},{"id":"5471404274096790203002","submitTimeUtc":"2019-01-10T17:13:47Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5471404274096790203002","method":"GET"}}},{"id":"5475240476326666304005","submitTimeUtc":"2019-01-15T03:47:27Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240476326666304005","method":"GET"}}},{"id":"5475240647986666504005","submitTimeUtc":"2019-01-15T03:47:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240647986666504005","method":"GET"}}},{"id":"5475240694246602504002","submitTimeUtc":"2019-01-15T03:47:49Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240694246602504002","method":"GET"}}},{"id":"5480449281766424303002","submitTimeUtc":"2019-01-21T04:28:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5480449281766424303002","method":"GET"}}},{"id":"5484294159526049603003","submitTimeUtc":"2019-01-25T15:16:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5484294159526049603003","method":"GET"}}},{"id":"5486140097596056803002","submitTimeUtc":"2019-01-27T18:33:29Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486140097596056803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486140097596056803002","method":"GET"}}},{"id":"5486143740386376403005","submitTimeUtc":"2019-01-27T18:39:34Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486143740386376403005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486143740386376403005","method":"GET"}}},{"id":"5486146109726057203002","submitTimeUtc":"2019-01-27T18:43:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486146109726057203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486146109726057203002","method":"GET"}}},{"id":"5486149568856057803002","submitTimeUtc":"2019-01-27T18:49:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486149568856057803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486149568856057803002","method":"GET"}}},{"id":"5486150058926377303005","submitTimeUtc":"2019-01-27T18:50:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150058926377303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150058926377303005","method":"GET"}}},{"id":"5486150718046057903002","submitTimeUtc":"2019-01-27T18:51:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150718046057903002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150718046057903002","method":"GET"}}},{"id":"5486151464616710103006","submitTimeUtc":"2019-01-27T18:52:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486151464616710103006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486151464616710103006","method":"GET"}}},{"id":"5486152183786377503005","submitTimeUtc":"2019-01-27T18:53:38Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486152183786377503005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486152183786377503005","method":"GET"}}},{"id":"5486154059186996103003","submitTimeUtc":"2019-01-27T18:56:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486154059186996103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486154059186996103003","method":"GET"}}},{"id":"5486156635686378003005","submitTimeUtc":"2019-01-27T19:01:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486156635686378003005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486156635686378003005","method":"GET"}}},{"id":"5486157519836378103005","submitTimeUtc":"2019-01-27T19:02:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486157519836378103005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486157519836378103005","method":"GET"}}},{"id":"5486159910726712503006","submitTimeUtc":"2019-01-27T19:06:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486159910726712503006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486159910726712503006","method":"GET"}}},{"id":"5486160598666060203002","submitTimeUtc":"2019-01-27T19:07:40Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486160598666060203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486160598666060203002","method":"GET"}}},{"id":"5488539943826733503004","submitTimeUtc":"2019-01-30T13:13:14Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5488539943826733503004","method":"GET"}}},{"id":"5492626323766108104003","submitTimeUtc":"2019-02-04T06:43:52Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5492626323766108104003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5492626323766108104003","method":"GET"}}},{"id":"5493718508496900303005","submitTimeUtc":"2019-02-05T13:04:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718508496900303005","method":"GET"}}},{"id":"5493718987966748103006","submitTimeUtc":"2019-02-05T13:04:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718987966748103006","method":"GET"}}},{"id":"5495325909106773503001","submitTimeUtc":"2019-02-07T09:43:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495325909106773503001"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495325909106773503001","method":"GET"}}},{"id":"5495326432436411603006","submitTimeUtc":"2019-02-07T09:44:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495326432436411603006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495326432436411603006","method":"GET"}}},{"id":"5495345378096803303002","submitTimeUtc":"2019-02-07T10:15:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495345378096803303002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495345378096803303002","method":"GET"}}},{"id":"5495351977316834703003","submitTimeUtc":"2019-02-07T10:26:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495351977316834703003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495351977316834703003","method":"GET"}}},{"id":"5495352459166850703004","submitTimeUtc":"2019-02-07T10:27:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495352459166850703004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495352459166850703004","method":"GET"}}},{"id":"5495353943786840303005","submitTimeUtc":"2019-02-07T10:29:54Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495353943786840303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495353943786840303005","method":"GET"}}},{"id":"5495375735936863103004","submitTimeUtc":"2019-02-07T11:06:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495375735936863103004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495375735936863103004","method":"GET"}}},{"id":"5496424976256414603001","submitTimeUtc":"2019-02-08T16:14:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5496424976256414603001","method":"GET"}}},{"id":"5498675776826871703002","submitTimeUtc":"2019-02-11T06:46:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498675776826871703002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498675776826871703002","method":"GET"}}},{"id":"5498689371686278103003","submitTimeUtc":"2019-02-11T07:08:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498689371686278103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498689371686278103003","method":"GET"}}},{"id":"5500338731966034504001","submitTimeUtc":"2019-02-13T04:57:53Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500338731966034504001","method":"GET"}}},{"id":"5500340288796036604001","submitTimeUtc":"2019-02-13T05:00:28Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500340288796036604001","method":"GET"}}},{"id":"5500431596766884904002","submitTimeUtc":"2019-02-13T07:32:39Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500431596766884904002","method":"GET"}}},{"id":"5500437054766214104001","submitTimeUtc":"2019-02-13T07:41:45Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500437054766214104001","method":"GET"}}},{"id":"5501219025486844803004","submitTimeUtc":"2019-02-14T05:25:02Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501219025486844803004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501219025486844803004","method":"GET"}}},{"id":"5501289951276934603004","submitTimeUtc":"2019-02-14T07:23:15Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501289951276934603004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501289951276934603004","method":"GET"}}},{"id":"5501373458936421203003","submitTimeUtc":"2019-02-14T09:42:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501373458936421203003","method":"GET"}}},{"id":"5501376636716307403002","submitTimeUtc":"2019-02-14T09:47:43Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501376636716307403002","method":"GET"}}},{"id":"5510721117946649203006","submitTimeUtc":"2019-02-25T05:21:51Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510721117946649203006","method":"GET"}}},{"id":"5510721851706959203004","submitTimeUtc":"2019-02-25T05:23:05Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510721851706959203004","method":"GET"}}},{"id":"5510723131456972003004","submitTimeUtc":"2019-02-25T05:25:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510723131456972003004","method":"GET"}}},{"id":"5510723667506096803002","submitTimeUtc":"2019-02-25T05:26:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510723667506096803002","method":"GET"}}}]}} +2019-02-25 11:06:16.158 [main] INFO - Response Code: 201 +2019-02-25 11:06:16.158 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_99212dda-f3d5-46bd-8f13-5dd48eb7ead9 +X-OPNET-Transaction-Trace: a2_c3be7f9c-3252-41a5-9b33-db5a5405e961 +Cache-Control: no-cache, no-transform +ETag: "1851464702" +Expires: Mon, 25 Feb 2019 05:36:15 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 25 Feb 2019 05:36:15 GMT +X-Cnection: close +v-c-correlation-id: e1059344-7f62-443c-b972-8bac812c3fd4 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551072974892 +OkHttp-Received-Millis: 1551072976049 + +2019-02-25 11:06:16.158 [main] INFO - ********* END *********: +2019-02-25 11:06:16.439 [main] INFO - ********* START ********* +2019-02-25 11:06:16.455 [main] INFO - Authentication Type : http_signature +2019-02-25 11:06:16.455 [main] INFO - Request Type: POST +2019-02-25 11:06:16.455 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-25 11:06:16.455 [main] INFO - Digest: SHA-256=MvPxo/GwSzPCnxUumNRkM4jYV4dEdR0iQ6mljgTLqrs= +2019-02-25 11:06:16.455 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:06:16.455 [main] INFO - Date: Mon, 25 Feb 2019 05:36:13 GMT +2019-02-25 11:06:16.455 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:06:16.455 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Ng5cf5tBolanCJJ8Rp1eHYBUYGI78om4IR1TEImONrk=" +2019-02-25 11:06:16.455 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:06:16.705 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientRefeInfo.code:52465","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-25 11:06:16.705 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches"}},"invalidFields":{"name":"query","reasonMessage":"unsupported field"},"message":"Incorrectly formatted query string","messageKey":"INCORRECT_QUERY_STRING","missingFields":null} +2019-02-25 11:06:16.705 [main] INFO - Response Code: 400 +2019-02-25 11:06:16.705 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_479c38f5-1f56-48b3-a0ad-2996a48376e7 +Cache-Control: no-cache, no-transform +ETag: "-652493791" +Expires: Mon, 25 Feb 2019 05:36:16 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 25 Feb 2019 05:36:16 GMT +X-Cnection: close +v-c-correlation-id: 5890a88e-b616-4c01-8cfd-dd9c41ee35de +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551072976471 +OkHttp-Received-Millis: 1551072976705 + +2019-02-25 11:06:16.705 [main] INFO - ********* END *********: +2019-02-25 11:11:31.942 [main] INFO - ********* START ********* +2019-02-25 11:11:31.957 [main] INFO - Authentication Type : http_signature +2019-02-25 11:11:31.957 [main] INFO - Request Type: GET +2019-02-25 11:11:31.957 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/Texture, requestType=GET} +2019-02-25 11:11:31.957 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:11:31.992 [main] INFO - Date: Mon, 25 Feb 2019 05:41:31 GMT +2019-02-25 11:11:31.992 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:11:31.992 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="RlLsjG6c4vu5kI7dLIWwtidrY6AgfAz5GnjCg0cpzGc=" +2019-02-25 11:11:31.992 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:11:33.457 [main] INFO - Request Body: null +2019-02-25 11:11:33.457 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0230","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"} +2019-02-25 11:11:33.473 [main] INFO - Response Code: 200 +2019-02-25 11:11:33.473 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_75c9b73f-efe2-4d6a-b237-2dcc2d8292cf +X-OPNET-Transaction-Trace: a2_e13fe63e-9795-486c-b176-a6f54697d8a4 +Cache-Control: no-cache, no-transform +ETag: "-1844867216-gzip" +Expires: Mon, 25 Feb 2019 05:41:33 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 05:41:32 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 905848c0-1eec-4f60-8810-8b0040621c0b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551073292973 +OkHttp-Received-Millis: 1551073293442 + +2019-02-25 11:11:33.473 [main] INFO - ********* END *********: +2019-02-25 11:11:33.536 [main] INFO - ********* START ********* +2019-02-25 11:11:33.551 [main] INFO - Authentication Type : http_signature +2019-02-25 11:11:33.551 [main] INFO - Request Type: GET +2019-02-25 11:11:33.551 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/bplkmdgsd, requestType=GET} +2019-02-25 11:11:33.551 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:11:33.551 [main] INFO - Date: Mon, 25 Feb 2019 05:41:31 GMT +2019-02-25 11:11:33.551 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:11:33.551 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="omb4+lBn+jMbympWsTsT/gVOzZ/PjryIweOD6LB/8z4=" +2019-02-25 11:11:33.551 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:11:34.004 [main] INFO - Request Body: null +2019-02-25 11:11:34.004 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/bplkmdgsd"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"Requested subscription does not exist."} +2019-02-25 11:11:34.004 [main] INFO - Response Code: 404 +2019-02-25 11:11:34.004 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_db0a8403-5a21-4aac-b1e0-d0fb969466a1 +X-OPNET-Transaction-Trace: a2_96359ac7-28aa-4734-abae-7414b5cc8a4a +Cache-Control: no-cache, no-transform +ETag: "1764052161-gzip" +Expires: Mon, 25 Feb 2019 05:41:33 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 05:41:33 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 822cf826-c1e2-4244-ad6e-f3a8b0e3c735 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551073293551 +OkHttp-Received-Millis: 1551073294004 + +2019-02-25 11:11:34.004 [main] INFO - ********* END *********: +2019-02-25 11:12:38.238 [main] INFO - ********* START ********* +2019-02-25 11:12:38.254 [main] INFO - Authentication Type : http_signature +2019-02-25 11:12:38.254 [main] INFO - Request Type: GET +2019-02-25 11:12:38.254 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/AcquirerExceptionDetailClass, requestType=GET} +2019-02-25 11:12:38.254 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:12:38.285 [main] INFO - Date: Mon, 25 Feb 2019 05:42:37 GMT +2019-02-25 11:12:38.285 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:12:38.285 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="/uh+kwmhZ+GbjmyH0upikU3QnBF+bxdyjli4k+9rfGE=" +2019-02-25 11:12:38.285 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:12:39.691 [main] INFO - Request Body: null +2019-02-25 11:12:39.691 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass"}},"attributes":[{"id":"3200","name":"AdditionalInformation.CardAcceptorID","description":"Card Acceptor ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3201","name":"AdditionalInformation.CardAcceptorName","description":"Card Acceptor Name","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3202","name":"AdditionalInformation.CardAcceptorTerminalID","description":"Card Acceptor Terminal ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3203","name":"AdditionalInformation.ForwardingInstitutionID","description":"Forwarding Institution ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3204","name":"AdditionalInformation.IssuerAffiliateBIN","description":"Issuer Affiliate BIN","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3205","name":"AdditionalInformation.MerchantType","description":"Merchant Type","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3206","name":"AdditionalInformation.RecurringPaymentIndicatorFlag","description":"Recurring Payment Indicator flag","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3223","name":"TransactionDetails.SourceMerchantID","description":"Source Merchant ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3225","name":"Fee.ReimbursementFee","description":"Reimbursement Fee","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3226","name":"Fee.ReimbursementFeeDebitCreditIndicator","description":"Reimbursement Fee Debit Credit Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3227","name":"Fee.SettlementServiceIndicator","description":"Settlement Service Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3228","name":"Fee.TransactionIntegrityFee","description":"Transaction Integrity Fee","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3229","name":"Fee.TransactionIntegrityFeeDebitCreditIndicator","description":"Transaction Integrity Fee Debit Credit Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3230","name":"Settlement.CardholderBillingAmount","description":"Cardholder Billing Amount","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3231","name":"Settlement.CardholderBillingCurrencyCode","description":"Cardholder Billing Currency Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3232","name":"Settlement.RateTableDate","description":"Rate Table Date","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3234","name":"Settlement.OctSettlementAmount","description":"Settlement Amount","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3235","name":"Settlement.OctSettlementCurrencyCode","description":"Settlement Currency Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3237","name":"TransactionDetails.AcquirerBusinessID","description":"Acquirer Business ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3238","name":"TransactionDetails.AcquiringInstitutionID","description":"Acquiring Institution ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3239","name":"TransactionDetails.AffiliateBIN","description":"Affiliate BIN","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3240","name":"TransactionDetails.AuthorizationIDRespCode","description":"Authorization ID Resp. Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3241","name":"TransactionDetails.BatchNumber","description":"Batch Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3242","name":"TransactionDetails.BusinessApplicationIdentifier","description":"Business Application Identifier","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3243","name":"TransactionDetails.CardNumber","description":"Card Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3244","name":"TransactionDetails.CurrencyCodeForTransactionAmount","description":"Currency Code For Transaction Amount","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3245","name":"TransactionDetails.DataRecipient","description":"Data Recipient","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3246","name":"TransactionDetails.DCCIndicator","description":"DCC Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3247","name":"TransactionDetails.DestinationStationID","description":"Destination Station ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3248","name":"TransactionDetails.DowngradeReasonCode","description":"Downgrade Reason Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3249","name":"TransactionDetails.FundsTransferSRE","description":"Funds Transfer SRE","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3250","name":"TransactionDetails.IssuerAcquirerIndicator","description":"Issuer Acquirer Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3251","name":"TransactionDetails.MessageReasonCode","description":"Message Reason Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3252","name":"TransactionDetails.MVVCode","description":"MVV Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3253","name":"TransactionDetails.NetworkID","description":"Network ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3254","name":"TransactionDetails.OnlineSettlementDate","description":"Online Settlement Date","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3255","name":"TransactionDetails.ProcessingCode","description":"Processing Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3256","name":"TransactionDetails.ProcessorID","description":"Processor ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3257","name":"TransactionDetails.ProductID","description":"Product ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3258","name":"TransactionDetails.ProductSubtype","description":"Product Subtype","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3259","name":"TransactionDetails.RequestMessageType","description":"Request Message Type","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3260","name":"TransactionDetails.ResponseCode","description":"Response Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3261","name":"TransactionDetails.RetrievalReferenceNumber","description":"Retrieval Reference Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3262","name":"TransactionDetails.SettlementDate","description":"Settlement Date","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3263","name":"TransactionDetails.SourceOfFunds","description":"Source of Funds","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3264","name":"TransactionDetails.SourceStationID","description":"Source Station ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3265","name":"TransactionDetails.SRE","description":"SRE","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3266","name":"TransactionDetails.STIPReasonCode","description":"STIP Reason Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3267","name":"TransactionDetails.TraceNumber","description":"Trace Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3268","name":"TransactionDetails.TransactionAmount","description":"Transaction Amount","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3269","name":"TransactionDetails.TransactionIdentifier","description":"Transaction Identifier","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3270","name":"TransactionDetails.VssProcessingDate","description":"VSS PROCESSING DATE","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3278","name":"TransactionDetails.RequestId","description":"Request ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3279","name":"TransactionDetails.MerchantId","description":"Merchant ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3280","name":"TransactionDetails.PaymentMethodType","description":"Payment Method Type","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3281","name":"TransactionDetails.PaymentMethodDesc","description":"Payment Method Description","filterType":null,"supportedType":null,"required":true,"default":true}],"description":"Acquirer Exception Detail Report","reportDefinitionId":231,"reportDefintionName":"AcquirerExceptionDetailClass","supportedFormats":["text/csv"],"type":"Detail"} +2019-02-25 11:12:39.707 [main] INFO - Response Code: 200 +2019-02-25 11:12:39.707 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_143c2a29-fd8d-4581-adef-8869686be8cd +X-OPNET-Transaction-Trace: a2_33be63fe-a94f-4d9c-bd26-313ea2162744 +Cache-Control: no-cache, no-transform +ETag: "991045918-gzip" +Expires: Mon, 25 Feb 2019 05:42:39 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 05:42:39 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 3edb69cc-6a87-4b48-9f09-fb8f72f5d303 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551073359223 +OkHttp-Received-Millis: 1551073359645 + +2019-02-25 11:12:39.707 [main] INFO - ********* END *********: +2019-02-25 11:12:39.754 [main] INFO - ********* START ********* +2019-02-25 11:12:39.754 [main] INFO - Authentication Type : http_signature +2019-02-25 11:12:39.754 [main] INFO - Request Type: GET +2019-02-25 11:12:39.754 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/SubscDetail, requestType=GET} +2019-02-25 11:12:39.754 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:12:39.754 [main] INFO - Date: Mon, 25 Feb 2019 05:42:37 GMT +2019-02-25 11:12:39.754 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:12:39.754 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="K//Q+Zot+RautjNpqReZXQde63hwE01dyByRy3r8Ljw=" +2019-02-25 11:12:39.754 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:12:40.207 [main] INFO - Request Body: null +2019-02-25 11:12:40.207 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/SubscDetail"}}} +2019-02-25 11:12:40.207 [main] INFO - Response Code: 404 +2019-02-25 11:12:40.207 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_08341eaf-93cd-4c3b-85c8-ca23ba187c36 +X-OPNET-Transaction-Trace: a2_06a9c749-a75a-4867-a437-50eecda3a5de +Cache-Control: no-cache, no-transform +ETag: "204857944-gzip" +Expires: Mon, 25 Feb 2019 05:42:40 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 05:42:39 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e7e1d7b0-633d-4c68-b3ab-05d778d94daf +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551073359754 +OkHttp-Received-Millis: 1551073360207 + +2019-02-25 11:12:40.207 [main] INFO - ********* END *********: +2019-02-25 11:15:40.756 [main] INFO - ********* START ********* +2019-02-25 11:15:40.771 [main] INFO - Authentication Type : http_signature +2019-02-25 11:15:40.771 [main] INFO - Request Type: GET +2019-02-25 11:15:40.771 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testrest%20dec%20V70, requestType=GET} +2019-02-25 11:15:40.771 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:15:40.771 [main] INFO - Date: Mon, 25 Feb 2019 05:45:40 GMT +2019-02-25 11:15:40.771 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:15:40.771 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="o88mc6kJCr20jfXk6kfcHWqwo+Ew0UQtna9RvcaPhdg=" +2019-02-25 11:15:40.771 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:15:43.302 [main] INFO - Request Body: null +2019-02-25 11:15:43.302 [main] INFO - Response Message: + + + + + + + + + + + + +2019-02-25 11:15:43.302 [main] INFO - Response Code: 200 +2019-02-25 11:15:43.318 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_619c9d1c-bf80-4f64-a29b-0824cd5405ca +X-OPNET-Transaction-Trace: a2_f3704c74-d414-4ad9-a000-db4e92b866f0 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 25 Feb 2019 05:45:43 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 25 Feb 2019 05:45:42 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 2934f266-fe5e-4483-a601-a40d3ca10295 +OkHttp-Sent-Millis: 1551073541583 +OkHttp-Received-Millis: 1551073543287 + +2019-02-25 11:15:43.318 [main] INFO - ********* END *********: +2019-02-25 11:15:43.349 [main] INFO - ********* START ********* +2019-02-25 11:15:43.349 [main] INFO - Authentication Type : http_signature +2019-02-25 11:15:43.349 [main] INFO - Request Type: GET +2019-02-25 11:15:43.349 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testre, requestType=GET} +2019-02-25 11:15:43.349 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:15:43.349 [main] INFO - Date: Mon, 25 Feb 2019 05:45:40 GMT +2019-02-25 11:15:43.349 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:15:43.349 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="UfELN3i9Oi4XWwFT0y3SDGmSJIY1E19+W+dj3aEz//E=" +2019-02-25 11:15:43.349 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:15:43.880 [main] INFO - Request Body: null +2019-02-25 11:15:43.880 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-25 11:15:43.880 [main] INFO - Response Code: 404 +2019-02-25 11:15:43.880 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_ed103409-0063-4828-a12a-72ed8d46a1e1 +X-OPNET-Transaction-Trace: a2_596784a8-d88b-409e-8c06-adb64776f8c1 +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Mon, 25 Feb 2019 05:45:43 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 25 Feb 2019 05:45:43 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 627c9c7c-f953-46e5-b3a7-2cfdb56c3b5a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551073543366 +OkHttp-Received-Millis: 1551073543880 + +2019-02-25 11:15:43.880 [main] INFO - ********* END *********: +2019-02-25 11:15:43.908 [main] INFO - ********* START ********* +2019-02-25 11:15:43.908 [main] INFO - Authentication Type : http_signature +2019-02-25 11:15:43.908 [main] INFO - Request Type: GET +2019-02-25 11:15:43.908 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-08-02&reportName=testrest_v2, requestType=GET} +2019-02-25 11:15:43.908 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:15:43.908 [main] INFO - Date: Mon, 25 Feb 2019 05:45:40 GMT +2019-02-25 11:15:43.908 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:15:43.908 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="tZuFadiU8QeVGUdklRC1wz9xYxjadMpl8fD8zUri5b4=" +2019-02-25 11:15:43.908 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:15:44.393 [main] INFO - Request Body: null +2019-02-25 11:15:44.393 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-25 11:15:44.393 [main] INFO - Response Code: 404 +2019-02-25 11:15:44.393 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_98fce877-c8a0-4eab-8861-c7d0e6d979db +X-OPNET-Transaction-Trace: a2_0efac924-33c9-4401-bea6-327cd6cab6c2 +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Mon, 25 Feb 2019 05:45:44 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 25 Feb 2019 05:45:43 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d3fe6811-48b7-438e-8a51-ac3491c24cdb +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551073543908 +OkHttp-Received-Millis: 1551073544377 + +2019-02-25 11:15:44.393 [main] INFO - ********* END *********: +2019-02-25 11:16:16.900 [main] INFO - ********* START ********* +2019-02-25 11:16:16.915 [main] INFO - Authentication Type : http_signature +2019-02-25 11:16:16.915 [main] INFO - Request Type: GET +2019-02-25 11:16:16.915 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testrest%20dec%20V70, requestType=GET} +2019-02-25 11:16:16.915 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:16:16.915 [main] INFO - Date: Mon, 25 Feb 2019 05:46:16 GMT +2019-02-25 11:16:16.915 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:16:16.915 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="WeulbkPXLyaRqsf+OVK5pqMD89bjBPDHHUBAKlEFIrM=" +2019-02-25 11:16:16.915 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:16:18.400 [main] INFO - Request Body: null +2019-02-25 11:16:18.400 [main] INFO - Response Message: + + + + + + + + + + + + +2019-02-25 11:16:18.400 [main] INFO - Response Code: 200 +2019-02-25 11:16:18.400 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_c1e9a50f-1172-46bb-8a4b-acd70e485427 +X-OPNET-Transaction-Trace: a2_c57ba3e0-88e4-4c76-bbe5-1e5e611b01f7 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 25 Feb 2019 05:46:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 25 Feb 2019 05:46:17 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 150d0b47-a632-4368-ab01-28a78e663548 +OkHttp-Sent-Millis: 1551073577822 +OkHttp-Received-Millis: 1551073578368 + +2019-02-25 11:16:18.400 [main] INFO - ********* END *********: +2019-02-25 11:16:32.509 [main] INFO - ********* START ********* +2019-02-25 11:16:32.509 [main] INFO - Authentication Type : http_signature +2019-02-25 11:16:32.525 [main] INFO - Request Type: GET +2019-02-25 11:16:32.525 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testre, requestType=GET} +2019-02-25 11:16:32.525 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:16:32.525 [main] INFO - Date: Mon, 25 Feb 2019 05:46:16 GMT +2019-02-25 11:16:32.525 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:16:32.525 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="tAgJF6YfvL6u27hCZi6oJEtVbbw8+IF+GXsG7xZl9iw=" +2019-02-25 11:16:32.525 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:16:33.041 [main] INFO - Request Body: null +2019-02-25 11:16:33.041 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-25 11:16:33.041 [main] INFO - Response Code: 404 +2019-02-25 11:16:33.041 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_bb366dfc-6465-4b5c-9007-144d545f7a5c +X-OPNET-Transaction-Trace: a2_5a8b7c05-45e7-469b-a857-c418d299de75 +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Mon, 25 Feb 2019 05:46:32 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 25 Feb 2019 05:46:32 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 25bfdcba-8f2f-42f2-bfba-a5b6ea32c379 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551073592525 +OkHttp-Received-Millis: 1551073593025 + +2019-02-25 11:16:33.041 [main] INFO - ********* END *********: +2019-02-25 11:18:33.455 [main] INFO - ********* START ********* +2019-02-25 11:18:33.471 [main] INFO - Authentication Type : http_signature +2019-02-25 11:18:33.471 [main] INFO - Request Type: GET +2019-02-25 11:18:33.471 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testrest%20dec%20V70, requestType=GET} +2019-02-25 11:18:33.471 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:18:33.502 [main] INFO - Date: Mon, 25 Feb 2019 05:48:33 GMT +2019-02-25 11:18:33.502 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:18:33.502 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="9BeRvzh5JN2iuBJuQX0TjpQZR+cH162vrpYTAol7sfU=" +2019-02-25 11:18:33.502 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:18:35.002 [main] INFO - Request Body: null +2019-02-25 11:18:35.002 [main] INFO - Response Message: + + + + + + + + + + + + +2019-02-25 11:18:35.002 [main] INFO - Response Code: 200 +2019-02-25 11:18:35.002 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_7f4de196-69d2-4153-ac74-5190e94f00cb +X-OPNET-Transaction-Trace: a2_ae674cb2-dadc-4fab-8a81-1949f407132d +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 25 Feb 2019 05:48:34 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 25 Feb 2019 05:48:34 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d016b362-16c1-4861-ae5e-9d3f0c6b253b +OkHttp-Sent-Millis: 1551073714424 +OkHttp-Received-Millis: 1551073714986 + +2019-02-25 11:18:35.002 [main] INFO - ********* END *********: +2019-02-25 11:18:35.049 [main] INFO - ********* START ********* +2019-02-25 11:18:35.049 [main] INFO - Authentication Type : http_signature +2019-02-25 11:18:35.049 [main] INFO - Request Type: GET +2019-02-25 11:18:35.049 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-09-03&reportName=testre, requestType=GET} +2019-02-25 11:18:35.049 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:18:35.049 [main] INFO - Date: Mon, 25 Feb 2019 05:48:33 GMT +2019-02-25 11:18:35.049 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:18:35.049 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="zYPPwz/gbrBqU05+o2kb8WVaE4m6tbrk4zxmRJpDIu0=" +2019-02-25 11:18:35.049 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:18:35.596 [main] INFO - Request Body: null +2019-02-25 11:18:35.596 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-25 11:18:35.596 [main] INFO - Response Code: 404 +2019-02-25 11:18:35.596 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_c437ae35-1b5e-4fd4-9efd-a7c93ab09f95 +X-OPNET-Transaction-Trace: a2_533e830a-12b2-44e2-82cc-eb1dd8b60549 +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Mon, 25 Feb 2019 05:48:35 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 25 Feb 2019 05:48:35 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 93401d78-6c2f-489c-876b-2e3503c0178b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551073715049 +OkHttp-Received-Millis: 1551073715580 + +2019-02-25 11:18:35.596 [main] INFO - ********* END *********: +2019-02-25 11:18:35.618 [main] INFO - ********* START ********* +2019-02-25 11:18:35.618 [main] INFO - Authentication Type : http_signature +2019-02-25 11:18:35.618 [main] INFO - Request Type: GET +2019-02-25 11:18:35.618 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-downloads?organizationId=testrest&reportDate=2018-08-02&reportName=testrest_v2, requestType=GET} +2019-02-25 11:18:35.618 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:18:35.618 [main] INFO - Date: Mon, 25 Feb 2019 05:48:33 GMT +2019-02-25 11:18:35.618 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:18:35.618 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Z5hzUZUsPdfJU4gZwaNDiV36MPVyzcitbNpFdhYEpsA=" +2019-02-25 11:18:35.618 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:18:36.102 [main] INFO - Request Body: null +2019-02-25 11:18:36.102 [main] INFO - Response Message: + + RESOURCE_NOTFOUND + The requested resource is not found. Please try again later. + cybsapi.resource.notfound + Requested Resource Not Found + + +2019-02-25 11:18:36.102 [main] INFO - Response Code: 404 +2019-02-25 11:18:36.118 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_3d714752-4059-483f-86b1-4747e87aca59 +X-OPNET-Transaction-Trace: a2_f7c98d6d-0cb8-4670-a45f-bd69378263bd +Cache-Control: no-cache, no-transform +ETag: "780962551-gzip" +Expires: Mon, 25 Feb 2019 05:48:36 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/xml +Date: Mon, 25 Feb 2019 05:48:35 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 068630aa-b166-43db-a56b-9d488f74f000 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551073715618 +OkHttp-Received-Millis: 1551073716102 + +2019-02-25 11:18:36.118 [main] INFO - ********* END *********: +2019-02-25 11:23:41.272 [main] INFO - ********* START ********* +2019-02-25 11:23:41.287 [main] INFO - Authentication Type : http_signature +2019-02-25 11:23:41.287 [main] INFO - Request Type: POST +2019-02-25 11:23:41.287 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490048369806834703002/refunds, requestType=POST} +2019-02-25 11:23:41.287 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-25 11:23:41.334 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:23:41.334 [main] INFO - Date: Mon, 25 Feb 2019 05:53:40 GMT +2019-02-25 11:23:41.334 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:23:41.334 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="3CsnQH2ne6oZ6EDK3jTpA/xYLppD0jqqvJUgSKf7tOc=" +2019-02-25 11:23:41.334 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:23:42.724 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 11:23:42.724 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_refund_capture"},"creditAmountDetails":{"currency":"XXXXXXXXX"},"id":"5510740223036128203004","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"78973150PSF0DT2S","refundAmountDetails":{"currency":"XXXXXXXXX","refundAmount":"100.00"},"status":"PENDING","submitTimeUtc":"2019-02-25T05:53:42Z","_links":{"self":{"href":"/pts/v2/refunds/5510740223036128203004","method":"GET"},"void":{"href":"/pts/v2/refunds/5510740223036128203004/voids","method":"POST"}}} +2019-02-25 11:23:42.724 [main] INFO - Response Code: 201 +2019-02-25 11:23:42.724 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 511 +X-Cnection: close +x-response-time: 387ms +v-c-correlation-id: 243b85ca-c9b0-4a40-990e-b468aa2a442b +OkHttp-Sent-Millis: 1551074022131 +OkHttp-Received-Millis: 1551074022709 + +2019-02-25 11:23:42.724 [main] INFO - ********* END *********: +2019-02-25 11:23:42.802 [main] INFO - ********* START ********* +2019-02-25 11:23:42.802 [main] INFO - Authentication Type : http_signature +2019-02-25 11:23:42.802 [main] INFO - Request Type: POST +2019-02-25 11:23:42.802 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490048369806834703002/refunds, requestType=POST} +2019-02-25 11:23:42.802 [main] INFO - Digest: SHA-256=wpSGzbtW0BUOhzWs7lfUWgOPwslWGPDCGWzRLNsbsWk= +2019-02-25 11:23:42.802 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:23:42.802 [main] INFO - Date: Mon, 25 Feb 2019 05:53:40 GMT +2019-02-25 11:23:42.802 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:23:42.802 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="BSTVOTuCa3L9CzWG1acI2Ha+yDyB6X4hcHK0fvTbMPw=" +2019-02-25 11:23:42.802 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:23:43.349 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 11:23:43.349 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_refund_capture"},"creditAmountDetails":{"currency":"XXXXXXXXX"},"id":"5510740229786285403001","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"789733258SF0DP4V","refundAmountDetails":{"currency":"XXXXXXXXX","refundAmount":"200.00"},"status":"PENDING","submitTimeUtc":"2019-02-25T05:53:43Z","_links":{"self":{"href":"/pts/v2/refunds/5510740229786285403001","method":"GET"},"void":{"href":"/pts/v2/refunds/5510740229786285403001/voids","method":"POST"}}} +2019-02-25 11:23:43.349 [main] INFO - Response Code: 201 +2019-02-25 11:23:43.349 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 511 +X-Cnection: close +x-response-time: 348ms +v-c-correlation-id: 5f26a8d6-d03b-44f9-b806-95736e7ce5be +OkHttp-Sent-Millis: 1551074022818 +OkHttp-Received-Millis: 1551074023349 + +2019-02-25 11:23:43.349 [main] INFO - ********* END *********: +2019-02-25 11:23:43.365 [main] INFO - ********* START ********* +2019-02-25 11:23:43.365 [main] INFO - Authentication Type : http_signature +2019-02-25 11:23:43.365 [main] INFO - Request Type: POST +2019-02-25 11:23:43.365 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/1234567898745632145698/refunds, requestType=POST} +2019-02-25 11:23:43.365 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-25 11:23:43.365 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:23:43.365 [main] INFO - Date: Mon, 25 Feb 2019 05:53:40 GMT +2019-02-25 11:23:43.365 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:23:43.365 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="teCMHOqPSIS2BKdj+vjeTfYnmfGdZO9s4nk9uOMroD0=" +2019-02-25 11:23:43.365 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:23:43.881 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 11:23:43.881 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T05:53:43Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 11:23:43.881 [main] INFO - Response Code: 400 +2019-02-25 11:23:43.881 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 327ms +v-c-correlation-id: 0249baae-dc79-4a8e-bdcf-7431775ccba1 +OkHttp-Sent-Millis: 1551074023381 +OkHttp-Received-Millis: 1551074023865 + +2019-02-25 11:23:43.881 [main] INFO - ********* END *********: +2019-02-25 11:26:03.406 [main] INFO - ********* START ********* +2019-02-25 11:26:03.406 [main] INFO - Authentication Type : http_signature +2019-02-25 11:26:03.406 [main] INFO - Request Type: POST +2019-02-25 11:26:03.406 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/1234567898745632145698/refunds, requestType=POST} +2019-02-25 11:26:03.406 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-25 11:26:03.453 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:26:03.453 [main] INFO - Date: Mon, 25 Feb 2019 05:56:03 GMT +2019-02-25 11:26:03.453 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:26:03.453 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="atP+vfBbtlH7pkofUHaz4ZOL8A3FW0s137bK+V7/mF8=" +2019-02-25 11:26:03.453 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:26:04.922 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 11:26:04.922 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T05:56:04Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 11:26:04.922 [main] INFO - Response Code: 400 +2019-02-25 11:26:04.922 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 311ms +v-c-correlation-id: b27acdcd-8d93-41c7-a654-8881f1b313b7 +OkHttp-Sent-Millis: 1551074164391 +OkHttp-Received-Millis: 1551074164891 + +2019-02-25 11:26:04.922 [main] INFO - ********* END *********: +2019-02-25 11:27:43.150 [main] INFO - ********* START ********* +2019-02-25 11:27:43.165 [main] INFO - Authentication Type : http_signature +2019-02-25 11:27:43.165 [main] INFO - Request Type: POST +2019-02-25 11:27:43.165 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/549004836980683477703002/refunds, requestType=POST} +2019-02-25 11:27:43.165 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-25 11:27:43.212 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:27:43.212 [main] INFO - Date: Mon, 25 Feb 2019 05:57:42 GMT +2019-02-25 11:27:43.212 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:27:43.212 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="1S4UK7zIAeKvybS2z+jGBDaLajYAhu7ESmPCMdRn/RI=" +2019-02-25 11:27:43.212 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:29:38.056 [main] INFO - ********* START ********* +2019-02-25 11:29:38.072 [main] INFO - Authentication Type : http_signature +2019-02-25 11:29:38.072 [main] INFO - Request Type: POST +2019-02-25 11:29:38.072 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/549004836980683477703002/refunds, requestType=POST} +2019-02-25 11:29:38.072 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-25 11:29:38.103 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:29:38.103 [main] INFO - Date: Mon, 25 Feb 2019 05:59:37 GMT +2019-02-25 11:29:38.103 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:29:38.103 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="odgPabOhMBoz2jqMkz+OHYh9iCfJu85pklmO/NQkeac=" +2019-02-25 11:29:38.103 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:32:01.934 [main] INFO - ********* START ********* +2019-02-25 11:32:01.949 [main] INFO - Authentication Type : http_signature +2019-02-25 11:32:01.949 [main] INFO - Request Type: POST +2019-02-25 11:32:01.949 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/549004836980683477703002/refunds, requestType=POST} +2019-02-25 11:32:01.949 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-25 11:32:01.981 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:32:01.981 [main] INFO - Date: Mon, 25 Feb 2019 06:02:01 GMT +2019-02-25 11:32:01.981 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:32:01.981 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="4+zlF4AGmk4q5VFYZepf6jZM44PP9bKFgNMg76yNN8U=" +2019-02-25 11:32:01.981 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:03.101 [main] INFO - ********* START ********* +2019-02-25 11:44:03.117 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:03.117 [main] INFO - Request Type: POST +2019-02-25 11:44:03.117 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-25 11:44:03.117 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-25 11:44:03.163 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:03.163 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:03.163 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:03.163 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="tMCz2DX/J3hMrWwycBY0u2WqPubsFruHAUj/0KOAj2o=" +2019-02-25 11:44:03.163 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:04.742 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-25 11:44:04.742 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_payment"},"id":"5510752443086336503001","orderInformation":{"amountDetails":{"authorizedAmount":"100.00","currency":"XXXXXXXXX"}},"processorInformation":{"approvalCode":"888888","responseCode":"100","avs":{"code":"X","codeRaw":"I1"}},"reconciliationId":"78998175YSEY0CO2","status":"AUTHORIZED","submitTimeUtc":"2019-02-25T06:14:04Z","_links":{"self":{"href":"/pts/v2/payments/5510752443086336503001","method":"GET"},"authReversal":{"href":"/pts/v2/payments/5510752443086336503001/reversals","method":"POST"},"capture":{"href":"/pts/v2/payments/5510752443086336503001/captures","method":"POST"},"refund":{"href":"/pts/v2/payments/5510752443086336503001/refunds","method":"POST"},"void":{"href":"/pts/v2/payments/5510752443086336503001/voids","method":"POST"}}} +2019-02-25 11:44:04.742 [main] INFO - Response Code: 201 +2019-02-25 11:44:04.742 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 391ms +v-c-correlation-id: 6087b8a1-4709-4545-8cca-ba5a59956664 +OkHttp-Sent-Millis: 1551075244132 +OkHttp-Received-Millis: 1551075244726 + +2019-02-25 11:44:04.742 [main] INFO - ********* END *********: +2019-02-25 11:44:04.867 [main] INFO - ********* START ********* +2019-02-25 11:44:04.867 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:04.867 [main] INFO - Request Type: POST +2019-02-25 11:44:04.882 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-25 11:44:04.882 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-25 11:44:04.882 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:04.882 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:04.882 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:04.882 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ag+wgUe8T6K0PBLt0jNxCRRHpEerR/yCV3aEjESU4uU=" +2019-02-25 11:44:04.882 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:05.445 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-25 11:44:05.445 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_payment"},"id":"5510752450656857503006","orderInformation":{"amountDetails":{"authorizedAmount":"200.00","currency":"XXXXXXXXX"}},"processorInformation":{"approvalCode":"888888","responseCode":"100","avs":{"code":"X","codeRaw":"I1"}},"reconciliationId":"78998350JSEY0CXQ","status":"AUTHORIZED","submitTimeUtc":"2019-02-25T06:14:05Z","_links":{"self":{"href":"/pts/v2/payments/5510752450656857503006","method":"GET"},"authReversal":{"href":"/pts/v2/payments/5510752450656857503006/reversals","method":"POST"},"capture":{"href":"/pts/v2/payments/5510752450656857503006/captures","method":"POST"},"refund":{"href":"/pts/v2/payments/5510752450656857503006/refunds","method":"POST"},"void":{"href":"/pts/v2/payments/5510752450656857503006/voids","method":"POST"}}} +2019-02-25 11:44:05.445 [main] INFO - Response Code: 201 +2019-02-25 11:44:05.445 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 365ms +v-c-correlation-id: 16afbc06-63bb-4c09-900e-4d44d24fc741 +OkHttp-Sent-Millis: 1551075244898 +OkHttp-Received-Millis: 1551075245445 + +2019-02-25 11:44:05.445 [main] INFO - ********* END *********: +2019-02-25 11:44:05.460 [main] INFO - ********* START ********* +2019-02-25 11:44:05.460 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:05.460 [main] INFO - Request Type: POST +2019-02-25 11:44:05.476 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-25 11:44:05.476 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-25 11:44:05.476 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:05.476 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:05.476 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:05.476 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Le7lh2m7erE4F81BUsL5u66oUrCJ2PsJ92zDf2MnIww=" +2019-02-25 11:44:05.476 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:06.007 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-25 11:44:06.007 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:14:05Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"orderInformation.amountDetails.amount","reason":"INVALID_DATA"}]} +2019-02-25 11:44:06.007 [main] INFO - Response Code: 400 +2019-02-25 11:44:06.007 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 318ms +v-c-correlation-id: f31b1a53-a4df-4ea7-a382-1cff2bd4ea20 +OkHttp-Sent-Millis: 1551075245492 +OkHttp-Received-Millis: 1551075246007 + +2019-02-25 11:44:06.007 [main] INFO - ********* END *********: +2019-02-25 11:44:06.090 [main] INFO - ********* START ********* +2019-02-25 11:44:06.090 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:06.090 [main] INFO - Request Type: POST +2019-02-25 11:44:06.090 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207982366112103002/captures, requestType=POST} +2019-02-25 11:44:06.090 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-02-25 11:44:06.090 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:06.090 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:06.090 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:06.090 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="9by4BzvBtqE2ivgVLdR+d42fx78r1r+Aq7s+yNXLOY0=" +2019-02-25 11:44:06.090 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:06.731 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-25 11:44:06.731 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_capture"},"id":"5510752462886262303003","orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"reconciliationId":"78900421ZSBVVP4X","status":"PENDING","submitTimeUtc":"2019-02-25T06:14:06Z","_links":{"self":{"href":"/pts/v2/captures/5510752462886262303003","method":"GET"},"refund":{"href":"/pts/v2/captures/5510752462886262303003/refunds","method":"POST"},"void":{"href":"/pts/v2/captures/5510752462886262303003/voids","method":"POST"}}} +2019-02-25 11:44:06.731 [main] INFO - Response Code: 201 +2019-02-25 11:44:06.731 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 431ms +v-c-correlation-id: 0f6482a8-44d9-44ea-a015-aa3bef75d666 +OkHttp-Sent-Millis: 1551075246121 +OkHttp-Received-Millis: 1551075246731 + +2019-02-25 11:44:06.731 [main] INFO - ********* END *********: +2019-02-25 11:44:06.762 [main] INFO - ********* START ********* +2019-02-25 11:44:06.762 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:06.777 [main] INFO - Request Type: POST +2019-02-25 11:44:06.777 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5463207988376666803006/captures, requestType=POST} +2019-02-25 11:44:06.777 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-02-25 11:44:06.777 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:06.777 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:06.777 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:06.777 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="WQ2j+U5HBXTxPpHsL+6wXdNh8WN5jaUO729dP06MVLI=" +2019-02-25 11:44:06.777 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:07.371 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-25 11:44:07.371 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_capture"},"id":"5510752469566309403002","orderInformation":{"amountDetails":{"totalAmount":"200.00","currency":"XXXXXXXXX"}},"reconciliationId":"78558588HSF0G2BL","status":"PENDING","submitTimeUtc":"2019-02-25T06:14:07Z","_links":{"self":{"href":"/pts/v2/captures/5510752469566309403002","method":"GET"},"refund":{"href":"/pts/v2/captures/5510752469566309403002/refunds","method":"POST"},"void":{"href":"/pts/v2/captures/5510752469566309403002/voids","method":"POST"}}} +2019-02-25 11:44:07.371 [main] INFO - Response Code: 201 +2019-02-25 11:44:07.371 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 401ms +v-c-correlation-id: 47809ee9-a36d-4eda-b4fc-94d67060af2b +OkHttp-Sent-Millis: 1551075246793 +OkHttp-Received-Millis: 1551075247371 + +2019-02-25 11:44:07.371 [main] INFO - ********* END *********: +2019-02-25 11:44:07.387 [main] INFO - ********* START ********* +2019-02-25 11:44:07.387 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:07.387 [main] INFO - Request Type: POST +2019-02-25 11:44:07.387 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/captures, requestType=POST} +2019-02-25 11:44:07.387 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-02-25 11:44:07.387 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:07.387 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:07.404 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:07.404 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="a/xEU3ZSJg1zRym/YTO5AIJoRfLHYr4oNw1BtrFlXIk=" +2019-02-25 11:44:07.404 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:08.012 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-25 11:44:08.012 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:14:07Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 11:44:08.012 [main] INFO - Response Code: 400 +2019-02-25 11:44:08.012 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 403ms +v-c-correlation-id: 9fc52b0a-e601-4779-b182-b755c3ff8a8d +OkHttp-Sent-Millis: 1551075247434 +OkHttp-Received-Millis: 1551075247996 + +2019-02-25 11:44:08.012 [main] INFO - ********* END *********: +2019-02-25 11:44:08.047 [main] INFO - ********* START ********* +2019-02-25 11:44:08.063 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:08.063 [main] INFO - Request Type: POST +2019-02-25 11:44:08.063 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490042042466283603005/reversals, requestType=POST} +2019-02-25 11:44:08.063 [main] INFO - Digest: SHA-256=+nVNWFcK5wejoED726n/0CNM4MAETj2u1DH6s02VUIk= +2019-02-25 11:44:08.063 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:08.063 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:08.063 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:08.063 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="clD0WATfrTpPvULvXwvihrGpecwdz/fB1JI0nNsNBTM=" +2019-02-25 11:44:08.063 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:08.610 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"100.00"},"reason":"testing"}} +2019-02-25 11:44:08.610 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:14:08Z","status":"INVALID_REQUEST","reason":"TRANSACTION_ALREADY_REVERSED_OR_SETTLED","message":"Decline - The transaction has already been settled or reversed."} +2019-02-25 11:44:08.610 [main] INFO - Response Code: 400 +2019-02-25 11:44:08.610 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 194 +X-Cnection: close +x-response-time: 367ms +v-c-correlation-id: a57cc082-8965-48a2-aa62-99e35577d21e +OkHttp-Sent-Millis: 1551075248078 +OkHttp-Received-Millis: 1551075248610 + +2019-02-25 11:44:08.610 [main] INFO - ********* END *********: +2019-02-25 11:44:08.625 [main] INFO - ********* START ********* +2019-02-25 11:44:08.625 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:08.625 [main] INFO - Request Type: POST +2019-02-25 11:44:08.625 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490042042466283603005/reversals, requestType=POST} +2019-02-25 11:44:08.625 [main] INFO - Digest: SHA-256=pAGeIXg2n5jV3A6rwpZbKaLbAzo/U73Yk5w2Zu0QX4M= +2019-02-25 11:44:08.625 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:08.625 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:08.625 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:08.625 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="b7JfkgctOFcw/5vLJWg1IKqhm/eP7zTnhaCTjJDvX34=" +2019-02-25 11:44:08.625 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:09.172 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"200"},"reason":"testing"}} +2019-02-25 11:44:09.172 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:14:09Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"reversalInformation.amountDetails.totalAmount","reason":"INVALID_DATA"}]} +2019-02-25 11:44:09.172 [main] INFO - Response Code: 400 +2019-02-25 11:44:09.172 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 264 +X-Cnection: close +x-response-time: 371ms +v-c-correlation-id: 3e8ad202-eadb-44cc-b07c-b2d0293017cd +OkHttp-Sent-Millis: 1551075248641 +OkHttp-Received-Millis: 1551075249172 + +2019-02-25 11:44:09.172 [main] INFO - ********* END *********: +2019-02-25 11:44:09.188 [main] INFO - ********* START ********* +2019-02-25 11:44:09.188 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:09.188 [main] INFO - Request Type: POST +2019-02-25 11:44:09.203 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567898726221234599/reversals, requestType=POST} +2019-02-25 11:44:09.203 [main] INFO - Digest: SHA-256=EmbUNBQ6YMXxCj2Ldp/J/yZkqbcqi/7w3Qh/cGHWZ54= +2019-02-25 11:44:09.203 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:09.203 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:09.203 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:09.203 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="/z3cT3PQkNqDAoKjXhvg/2QYZxKJk6Tdm43abFUylgM=" +2019-02-25 11:44:09.203 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:09.719 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"102.21"},"reason":"testing"}} +2019-02-25 11:44:09.719 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:14:09Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 11:44:09.719 [main] INFO - Response Code: 400 +2019-02-25 11:44:09.719 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 321ms +v-c-correlation-id: 3cf667c8-bb08-45f6-953d-8a9ba4c177a1 +OkHttp-Sent-Millis: 1551075249219 +OkHttp-Received-Millis: 1551075249719 + +2019-02-25 11:44:09.719 [main] INFO - ********* END *********: +2019-02-25 11:44:09.777 [main] INFO - ********* START ********* +2019-02-25 11:44:09.777 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:09.777 [main] INFO - Request Type: POST +2019-02-25 11:44:09.777 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-25 11:44:09.777 [main] INFO - Digest: SHA-256=zxGx3jITWtX9QIzslmEjtRBRSY1fB9P+o4iF5tlE4Oo= +2019-02-25 11:44:09.777 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:09.793 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:09.793 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:09.793 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="uCQ9Fb481j4GHzABEZbU7jYq9GHhVpF5lsTXk1UItvw=" +2019-02-25 11:44:09.793 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:10.277 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 11:44:10.277 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_credits"},"creditAmountDetails":{"currency":"XXXXXXXXX","creditAmount":"100.00"},"id":"5510752499576549403005","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"78973171PSF0DT4B","status":"PENDING","submitTimeUtc":"2019-02-25T06:14:10Z","_links":{"self":{"href":"/pts/v2/credits/5510752499576549403005","method":"GET"},"void":{"href":"/pts/v2/credits/5510752499576549403005/voids","method":"POST"}}} +2019-02-25 11:44:10.277 [main] INFO - Response Code: 201 +2019-02-25 11:44:10.277 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 463 +X-Cnection: close +x-response-time: 314ms +v-c-correlation-id: 8e587017-451e-4af1-9336-71ad1f3ef8fa +OkHttp-Sent-Millis: 1551075249808 +OkHttp-Received-Millis: 1551075250277 + +2019-02-25 11:44:10.293 [main] INFO - ********* END *********: +2019-02-25 11:44:10.324 [main] INFO - ********* START ********* +2019-02-25 11:44:10.324 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:10.324 [main] INFO - Request Type: POST +2019-02-25 11:44:10.324 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-25 11:44:10.324 [main] INFO - Digest: SHA-256=uT4XJKlq0xIzVkS9dGPs0tcDwyAp7ONh+358ol986cw= +2019-02-25 11:44:10.324 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:10.324 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:10.324 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:10.324 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="A3R135jZ2QVUEcrEAVZZmm+ceT0hb23/a1Vd93jeWa4=" +2019-02-25 11:44:10.324 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:10.793 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 11:44:10.793 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_credits"},"creditAmountDetails":{"currency":"XXXXXXXXX","creditAmount":"200.00"},"id":"5510752504916857603006","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"789733478SF0DP6K","status":"PENDING","submitTimeUtc":"2019-02-25T06:14:10Z","_links":{"self":{"href":"/pts/v2/credits/5510752504916857603006","method":"GET"},"void":{"href":"/pts/v2/credits/5510752504916857603006/voids","method":"POST"}}} +2019-02-25 11:44:10.793 [main] INFO - Response Code: 201 +2019-02-25 11:44:10.793 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 463 +X-Cnection: close +x-response-time: 287ms +v-c-correlation-id: 8306a4ec-b3e2-4494-8a21-2781787b3985 +OkHttp-Sent-Millis: 1551075250340 +OkHttp-Received-Millis: 1551075250793 + +2019-02-25 11:44:10.793 [main] INFO - ********* END *********: +2019-02-25 11:44:10.808 [main] INFO - ********* START ********* +2019-02-25 11:44:10.808 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:10.808 [main] INFO - Request Type: POST +2019-02-25 11:44:10.808 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-25 11:44:10.808 [main] INFO - Digest: SHA-256=4d6LdcAephqc3ZxTiCs5DRzvla4hZ9OijS7F7lbH+MA= +2019-02-25 11:44:10.808 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:10.808 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:10.808 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:10.824 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="r46pYITbxRu0TpMwtVXxGs7ActrZAjAGgZq4zgSeckg=" +2019-02-25 11:44:10.824 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:11.340 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"GHTR25","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 11:44:11.340 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:14:11Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"orderInformation.amountDetails.amount","reason":"INVALID_DATA"}]} +2019-02-25 11:44:11.340 [main] INFO - Response Code: 400 +2019-02-25 11:44:11.340 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 339ms +v-c-correlation-id: 2b641390-ea6c-4556-8f88-9796f9e87501 +OkHttp-Sent-Millis: 1551075250840 +OkHttp-Received-Millis: 1551075251340 + +2019-02-25 11:44:11.340 [main] INFO - ********* END *********: +2019-02-25 11:44:11.385 [main] INFO - ********* START ********* +2019-02-25 11:44:11.385 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:11.385 [main] INFO - Request Type: POST +2019-02-25 11:44:11.385 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490056228246693603006/refunds, requestType=POST} +2019-02-25 11:44:11.385 [main] INFO - Digest: SHA-256=I+1qD0zhOoAiatjE27A6YBxkUKBTRSBoS6VKc2mS8Bc= +2019-02-25 11:44:11.385 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:11.385 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:11.385 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:11.385 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="YLhD/+U3eKpyVgf8BlZrI8mrUrbjlzg6VxTLeeI/9QM=" +2019-02-25 11:44:11.385 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:12.072 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}}} +2019-02-25 11:44:12.072 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_refund_payment"},"creditAmountDetails":{"currency":"XXXXXXXXX"},"id":"5510752515806549803005","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"78973717VSBVN8EN","refundAmountDetails":{"currency":"XXXXXXXXX","refundAmount":"100.00"},"status":"PENDING","submitTimeUtc":"2019-02-25T06:14:11Z","_links":{"self":{"href":"/pts/v2/refunds/5510752515806549803005","method":"GET"},"void":{"href":"/pts/v2/refunds/5510752515806549803005/voids","method":"POST"}}} +2019-02-25 11:44:12.072 [main] INFO - Response Code: 201 +2019-02-25 11:44:12.072 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 511 +X-Cnection: close +x-response-time: 479ms +v-c-correlation-id: f773be5c-1b11-4812-a674-e1fb342fc3c0 +OkHttp-Sent-Millis: 1551075251416 +OkHttp-Received-Millis: 1551075252072 + +2019-02-25 11:44:12.072 [main] INFO - ********* END *********: +2019-02-25 11:44:12.088 [main] INFO - ********* START ********* +2019-02-25 11:44:12.088 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:12.088 [main] INFO - Request Type: POST +2019-02-25 11:44:12.088 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5490056228246693603006/refunds, requestType=POST} +2019-02-25 11:44:12.088 [main] INFO - Digest: SHA-256=k43sFGLkconY+lZ+qk3SH20ZjY4hdnzlhh7bkAtP+34= +2019-02-25 11:44:12.088 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:12.088 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:12.088 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:12.088 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="d6VLsn9jeEDoMrpZ4RwOKxU6VXIMBd0chPtyVtCVDPo=" +2019-02-25 11:44:12.088 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:12.760 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}}} +2019-02-25 11:44:12.760 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_refund_payment"},"creditAmountDetails":{"currency":"XXXXXXXXX"},"id":"5510752522796857703006","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"789733488SF0DP6L","refundAmountDetails":{"currency":"XXXXXXXXX","refundAmount":"200.00"},"status":"PENDING","submitTimeUtc":"2019-02-25T06:14:12Z","_links":{"self":{"href":"/pts/v2/refunds/5510752522796857703006","method":"GET"},"void":{"href":"/pts/v2/refunds/5510752522796857703006/voids","method":"POST"}}} +2019-02-25 11:44:12.760 [main] INFO - Response Code: 201 +2019-02-25 11:44:12.760 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 511 +X-Cnection: close +x-response-time: 470ms +v-c-correlation-id: 5b4bfd29-1ab2-4e4d-b3a2-6213c3a613ea +OkHttp-Sent-Millis: 1551075252119 +OkHttp-Received-Millis: 1551075252760 + +2019-02-25 11:44:12.760 [main] INFO - ********* END *********: +2019-02-25 11:44:12.776 [main] INFO - ********* START ********* +2019-02-25 11:44:12.776 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:12.792 [main] INFO - Request Type: POST +2019-02-25 11:44:12.792 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/1234567890123456789123/refunds, requestType=POST} +2019-02-25 11:44:12.792 [main] INFO - Digest: SHA-256=3OkTv9EQccMckYHiNHUzAweMWa91L1CQXTmCvjjQHoU= +2019-02-25 11:44:12.792 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:12.792 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:12.792 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:12.792 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="G1DV2mEurGbYOTQmLZhd2SGQ2ne9Oyyqi39C3L+clb8=" +2019-02-25 11:44:12.792 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:22.842 [main] INFO - ********* START ********* +2019-02-25 11:44:22.842 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:22.842 [main] INFO - Request Type: POST +2019-02-25 11:44:22.842 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490048369806834703002/refunds, requestType=POST} +2019-02-25 11:44:22.842 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-25 11:44:22.842 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:22.842 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:22.842 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:22.842 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="xufZyTj8097RX1lkuDTtE/Q4N0EpiSP5VplKuZpUqBo=" +2019-02-25 11:44:22.842 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:23.577 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 11:44:23.577 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_refund_capture"},"creditAmountDetails":{"currency":"XXXXXXXXX"},"id":"5510752632576219103004","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"78973718VSBVN8EP","refundAmountDetails":{"currency":"XXXXXXXXX","refundAmount":"100.00"},"status":"PENDING","submitTimeUtc":"2019-02-25T06:14:23Z","_links":{"self":{"href":"/pts/v2/refunds/5510752632576219103004","method":"GET"},"void":{"href":"/pts/v2/refunds/5510752632576219103004/voids","method":"POST"}}} +2019-02-25 11:44:23.577 [main] INFO - Response Code: 201 +2019-02-25 11:44:23.577 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 511 +X-Cnection: close +x-response-time: 303ms +v-c-correlation-id: 950f54f0-2699-4d5e-bcaa-03885a961c80 +OkHttp-Sent-Millis: 1551075263092 +OkHttp-Received-Millis: 1551075263577 + +2019-02-25 11:44:23.577 [main] INFO - ********* END *********: +2019-02-25 11:44:23.608 [main] INFO - ********* START ********* +2019-02-25 11:44:23.608 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:23.608 [main] INFO - Request Type: POST +2019-02-25 11:44:23.608 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490048369806834703002/refunds, requestType=POST} +2019-02-25 11:44:23.608 [main] INFO - Digest: SHA-256=wpSGzbtW0BUOhzWs7lfUWgOPwslWGPDCGWzRLNsbsWk= +2019-02-25 11:44:23.608 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:23.608 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:23.608 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:23.608 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Rkj8A6EqzD+D9GE6u8jgk7xh1udVtTIXLalc+CRzwRM=" +2019-02-25 11:44:23.608 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:24.123 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 11:44:24.123 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_refund_capture"},"creditAmountDetails":{"currency":"XXXXXXXXX"},"id":"5510752637846263803003","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"78973172PSF0DT4D","refundAmountDetails":{"currency":"XXXXXXXXX","refundAmount":"200.00"},"status":"PENDING","submitTimeUtc":"2019-02-25T06:14:23Z","_links":{"self":{"href":"/pts/v2/refunds/5510752637846263803003","method":"GET"},"void":{"href":"/pts/v2/refunds/5510752637846263803003/voids","method":"POST"}}} +2019-02-25 11:44:24.123 [main] INFO - Response Code: 201 +2019-02-25 11:44:24.123 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 511 +X-Cnection: close +x-response-time: 323ms +v-c-correlation-id: 42f02834-87bd-415e-ae45-569d98565000 +OkHttp-Sent-Millis: 1551075263623 +OkHttp-Received-Millis: 1551075264123 + +2019-02-25 11:44:24.123 [main] INFO - ********* END *********: +2019-02-25 11:44:24.139 [main] INFO - ********* START ********* +2019-02-25 11:44:24.139 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:24.139 [main] INFO - Request Type: POST +2019-02-25 11:44:24.139 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/1234567898745632145698/refunds, requestType=POST} +2019-02-25 11:44:24.139 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-25 11:44:24.139 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:24.139 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:24.139 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:24.139 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="J2iCMM4KboKlCsNODG9TPQyLB6aMBZLmIW6i/4s2HrI=" +2019-02-25 11:44:24.139 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:24.702 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 11:44:24.702 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:14:24Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 11:44:24.702 [main] INFO - Response Code: 400 +2019-02-25 11:44:24.702 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 380ms +v-c-correlation-id: 0123914d-ece1-43d4-98bd-1a5ef31e354a +OkHttp-Sent-Millis: 1551075264155 +OkHttp-Received-Millis: 1551075264702 + +2019-02-25 11:44:24.702 [main] INFO - ********* END *********: +2019-02-25 11:44:24.735 [main] INFO - ********* START ********* +2019-02-25 11:44:24.735 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:24.735 [main] INFO - Request Type: POST +2019-02-25 11:44:24.735 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5492620832556049904004/voids, requestType=POST} +2019-02-25 11:44:24.735 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-25 11:44:24.735 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:24.735 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:24.735 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:24.735 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="7LhuKmT/zFvCCp4GV4YSzN58fCqPX9VzQU36PktrQZg=" +2019-02-25 11:44:24.735 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:25.376 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-02-25 11:44:25.376 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:14:25Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-25 11:44:25.376 [main] INFO - Response Code: 400 +2019-02-25 11:44:25.376 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 429ms +v-c-correlation-id: a77fb631-97a0-46af-90dd-fb7ce6e56ef5 +OkHttp-Sent-Millis: 1551075264767 +OkHttp-Received-Millis: 1551075265376 + +2019-02-25 11:44:25.376 [main] INFO - ********* END *********: +2019-02-25 11:44:25.391 [main] INFO - ********* START ********* +2019-02-25 11:44:25.391 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:25.391 [main] INFO - Request Type: POST +2019-02-25 11:44:25.391 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/8964213433846812344644/voids, requestType=POST} +2019-02-25 11:44:25.391 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-25 11:44:25.391 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:25.391 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:25.391 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:25.391 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="tavtVcFhJyCQ5PtsDa7jtnrNhhNjOLdCDCOnP0+4QzU=" +2019-02-25 11:44:25.391 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:35.425 [main] INFO - ********* START ********* +2019-02-25 11:44:35.425 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:35.425 [main] INFO - Request Type: POST +2019-02-25 11:44:35.425 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5490173455496897903002/voids, requestType=POST} +2019-02-25 11:44:35.425 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-25 11:44:35.425 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:35.425 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:35.425 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:35.425 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="AivrW+8Kyo8rC43k1c2HINvk8aM5YzU008YPXEC96PU=" +2019-02-25 11:44:35.425 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:36.316 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture_void"}} +2019-02-25 11:44:36.316 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:14:36Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-25 11:44:36.316 [main] INFO - Response Code: 400 +2019-02-25 11:44:36.316 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 404ms +v-c-correlation-id: a6992a2b-9a9c-4950-87f1-da7c0ac622a6 +OkHttp-Sent-Millis: 1551075275644 +OkHttp-Received-Millis: 1551075276316 + +2019-02-25 11:44:36.316 [main] INFO - ********* END *********: +2019-02-25 11:44:36.347 [main] INFO - ********* START ********* +2019-02-25 11:44:36.347 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:36.347 [main] INFO - Request Type: POST +2019-02-25 11:44:36.347 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/8964213433126812344644/voids, requestType=POST} +2019-02-25 11:44:36.347 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-25 11:44:36.347 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:36.347 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:36.347 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:36.347 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="pMf9N9ANzVZcZENag4dnIfy74ZlTH3X6inoTSKT1m4o=" +2019-02-25 11:44:36.347 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:46.382 [main] INFO - ********* START ********* +2019-02-25 11:44:46.382 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:46.382 [main] INFO - Request Type: POST +2019-02-25 11:44:46.382 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/5492620832556049904004/voids, requestType=POST} +2019-02-25 11:44:46.382 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-25 11:44:46.382 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:46.382 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:46.382 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:46.382 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="UhF+lVHJQZRSw2r3mD4gOuK4jJNOxeoaJGOj0zwM384=" +2019-02-25 11:44:46.382 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:47.194 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credit_void"}} +2019-02-25 11:44:47.194 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:14:47Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-25 11:44:47.194 [main] INFO - Response Code: 400 +2019-02-25 11:44:47.194 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 327ms +v-c-correlation-id: 7becdbf2-e831-4be2-9a3e-1b89ff1fd0d7 +OkHttp-Sent-Millis: 1551075286585 +OkHttp-Received-Millis: 1551075287194 + +2019-02-25 11:44:47.194 [main] INFO - ********* END *********: +2019-02-25 11:44:47.210 [main] INFO - ********* START ********* +2019-02-25 11:44:47.210 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:47.210 [main] INFO - Request Type: POST +2019-02-25 11:44:47.210 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/8964213433846812344644/voids, requestType=POST} +2019-02-25 11:44:47.210 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-25 11:44:47.210 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:47.210 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:47.210 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:47.210 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="EsnNf9OC1zyd3nVMtnOoeh6m155Qwxna79Ir52dn7+c=" +2019-02-25 11:44:47.210 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:57.252 [main] INFO - ********* START ********* +2019-02-25 11:44:57.252 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:57.252 [main] INFO - Request Type: POST +2019-02-25 11:44:57.252 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/5492624390506057904003/voids, requestType=POST} +2019-02-25 11:44:57.252 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-25 11:44:57.252 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:57.252 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:57.252 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:57.252 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="APmALdiJcIpLO8CDfb1jtJMKkX7gBeOCaNZSumksoFM=" +2019-02-25 11:44:57.252 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:44:58.017 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_void"}} +2019-02-25 11:44:58.017 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:14:57Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-25 11:44:58.017 [main] INFO - Response Code: 400 +2019-02-25 11:44:58.017 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 286ms +v-c-correlation-id: ed13a09c-21bf-4e3a-a620-46e1f2681a0a +OkHttp-Sent-Millis: 1551075297470 +OkHttp-Received-Millis: 1551075298017 + +2019-02-25 11:44:58.017 [main] INFO - ********* END *********: +2019-02-25 11:44:58.033 [main] INFO - ********* START ********* +2019-02-25 11:44:58.033 [main] INFO - Authentication Type : http_signature +2019-02-25 11:44:58.033 [main] INFO - Request Type: POST +2019-02-25 11:44:58.033 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/8964213433846812344644/voids, requestType=POST} +2019-02-25 11:44:58.033 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-25 11:44:58.033 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:44:58.033 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:44:58.033 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:44:58.033 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ExQmXwbZvToBojzWjW2Jxmfc4x9jzzSuTSBCtosn48A=" +2019-02-25 11:44:58.033 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:08.241 [main] INFO - ********* START ********* +2019-02-25 11:45:08.241 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:08.241 [main] INFO - Request Type: POST +2019-02-25 11:45:08.241 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-25 11:45:08.241 [main] INFO - Digest: SHA-256=rp59HYGOOXP6bWKiVpWMNgj4QjYai6gMk27yt69dPh8= +2019-02-25 11:45:08.241 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:08.241 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:08.241 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:08.241 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="nNniOg1poqh6r/gXbYAsoRCBWMAt+QKkYHYqnn0jCF4=" +2019-02-25 11:45:08.241 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:09.194 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"33557799"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"FD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-25 11:45:09.194 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"33557799"},"id":"5510753086586266503003","orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"paymentInformation":{"accountFeatures":{"feeProgramIndicator":"FE1"}},"processorInformation":{"systemTraceAuditNumber":"155132","approvalCode":"831000","responseCodeSource":"5","transactionId":"016153570198200","responseCode":"00"},"reconciliationId":"5510753086586266503003","status":"ACCEPTED","submitTimeUtc":"2019-02-25T061508Z"} +2019-02-25 11:45:09.194 [main] INFO - Response Code: 201 +2019-02-25 11:45:09.194 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 493 +X-Cnection: close +x-response-time: 525ms +v-c-correlation-id: 4b79041b-91e2-4a71-9829-51666af27384 +OkHttp-Sent-Millis: 1551075308491 +OkHttp-Received-Millis: 1551075309194 + +2019-02-25 11:45:09.194 [main] INFO - ********* END *********: +2019-02-25 11:45:09.225 [main] INFO - ********* START ********* +2019-02-25 11:45:09.225 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:09.225 [main] INFO - Request Type: POST +2019-02-25 11:45:09.225 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-25 11:45:09.225 [main] INFO - Digest: SHA-256=WV4kmV6NZQKID4sN4WMbFxFXqbg/hn8kxL7FOS4jQXk= +2019-02-25 11:45:09.225 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:09.225 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:09.225 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:09.225 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="MKym3M0F69JVPu5gU+FKJQGr/g0J3ImMk4PucdJLL48=" +2019-02-25 11:45:09.225 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:09.944 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"12345"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"GD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-25 11:45:09.944 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"12345"},"id":"5510753094246858203006","orderInformation":{"amountDetails":{"totalAmount":"200.00","currency":"XXXXXXXXX"}},"paymentInformation":{"accountFeatures":{"feeProgramIndicator":"FE1"}},"processorInformation":{"systemTraceAuditNumber":"106681","approvalCode":"831000","responseCodeSource":"5","transactionId":"016153570198200","responseCode":"00"},"reconciliationId":"5510753094246858203006","status":"ACCEPTED","submitTimeUtc":"2019-02-25T061509Z"} +2019-02-25 11:45:09.944 [main] INFO - Response Code: 201 +2019-02-25 11:45:09.944 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 490 +X-Cnection: close +x-response-time: 506ms +v-c-correlation-id: f44fda43-e254-4bfe-ab62-7ae3eb79a858 +OkHttp-Sent-Millis: 1551075309245 +OkHttp-Received-Millis: 1551075309944 + +2019-02-25 11:45:09.944 [main] INFO - ********* END *********: +2019-02-25 11:45:09.960 [main] INFO - ********* START ********* +2019-02-25 11:45:09.960 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:09.960 [main] INFO - Request Type: POST +2019-02-25 11:45:09.960 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-25 11:45:09.960 [main] INFO - Digest: SHA-256=w9ZjmtCKOCPKH6OZhKI9VKNlfIK5wZLl6ZxwHbxFJsQ= +2019-02-25 11:45:09.960 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:09.960 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:09.960 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:09.960 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="AtAnKbf0ofkeMuAbLNIUqPKOtjM6DD5pkPn07mdV/xo=" +2019-02-25 11:45:09.960 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:10.460 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"6789"},"orderInformation":{"amountDetails":{"totalAmount":"DSWAZ1","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"MD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-25 11:45:10.460 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:15:10Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"orderInformation.amountDetails.amount","reason":"INVALID_DATA"}]} +2019-02-25 11:45:10.460 [main] INFO - Response Code: 400 +2019-02-25 11:45:10.460 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 299ms +v-c-correlation-id: 86091f0c-befa-44d1-9ec3-f2f2938c273f +OkHttp-Sent-Millis: 1551075309975 +OkHttp-Received-Millis: 1551075310460 + +2019-02-25 11:45:10.460 [main] INFO - ********* END *********: +2019-02-25 11:45:10.485 [main] INFO - ********* START ********* +2019-02-25 11:45:10.485 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:10.501 [main] INFO - Request Type: POST +2019-02-25 11:45:10.501 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-25 11:45:10.501 [main] INFO - Digest: SHA-256=YljtibTei+du4xVIDxMr3HBsyLAEDuiYaag9TcU9jHA= +2019-02-25 11:45:10.501 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:10.501 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:10.501 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:10.501 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="RT7RhxFAMGwTu4pSJYVYeTF7gwUblagW5bJtGzAmhHY=" +2019-02-25 11:45:10.501 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:10.688 [main] INFO - Request Body: {"encryptionType":"RsaOaep256"} +2019-02-25 11:45:10.688 [main] INFO - Response Message: {"keyId":"07ic2BpyoGO3KeSpTDKvIakamxt5Ry2h","der":{"format":"X.509","algorithm":"RSA","publicKey":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoWpUseBJ/YUClnoLlFaCY9+OYwatmkIj7MisO8K+Wqmlbu0YUSFaRvMS32TnSpoiEio1kP4wssG436DaxE4GYi9K4Z0cG3oJItntQZzxswIg9iYhmNqwbaNpBIR7epeKA9+A6oWIyO/JB7xDLTLAp2TE4DAbXJcldsVR9gxyFJ7FsUJBcfXOZaZS6o29GCYFFTYNwHdtuWnQ+GmPhOT6LrADDZf3Akr1SWzVLvHF0WUKJzwt29P6kbK/Ci3jOCxKGzv2QK3IQId/9/MLuiKGnXVT4fjsPqsyO7ufkTGrrVfzynBGZo5F7Xm5aeb9YC63MH6PKyQjWGyRCB0GTgX63wIDAQAB"},"jwk":{"kty":"RSA","use":"enc","kid":"07ic2BpyoGO3KeSpTDKvIakamxt5Ry2h","n":"oWpUseBJ_YUClnoLlFaCY9-OYwatmkIj7MisO8K-Wqmlbu0YUSFaRvMS32TnSpoiEio1kP4wssG436DaxE4GYi9K4Z0cG3oJItntQZzxswIg9iYhmNqwbaNpBIR7epeKA9-A6oWIyO_JB7xDLTLAp2TE4DAbXJcldsVR9gxyFJ7FsUJBcfXOZaZS6o29GCYFFTYNwHdtuWnQ-GmPhOT6LrADDZf3Akr1SWzVLvHF0WUKJzwt29P6kbK_Ci3jOCxKGzv2QK3IQId_9_MLuiKGnXVT4fjsPqsyO7ufkTGrrVfzynBGZo5F7Xm5aeb9YC63MH6PKyQjWGyRCB0GTgX63w","e":"AQAB"}} +2019-02-25 11:45:10.688 [main] INFO - Response Code: 200 +2019-02-25 11:45:10.688 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=bbyENW1SfPrIXYFS6TLDWWhQIVQwzxxhiYOVo1m5bXU= +Content-Type: application/json;charset=UTF-8 +Content-Length: 927 +Date: Mon, 25 Feb 2019 06:15:10 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ca112ade-8ee5-4846-8449-dd4e9e01013b +OkHttp-Sent-Millis: 1551075310516 +OkHttp-Received-Millis: 1551075310688 + +2019-02-25 11:45:10.688 [main] INFO - ********* END *********: +2019-02-25 11:45:10.719 [main] INFO - ********* START ********* +2019-02-25 11:45:10.719 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:10.719 [main] INFO - Request Type: POST +2019-02-25 11:45:10.719 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-25 11:45:10.719 [main] INFO - Digest: SHA-256=gEZo4PozZVgCrpNd3JKwGruwMOoyFI70wP0aDjupsBk= +2019-02-25 11:45:10.719 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:10.719 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:10.719 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:10.719 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="CIoHPKoQQGVREYRTUJbxcqnRxFVUoMGhXrsrwojZEkg=" +2019-02-25 11:45:10.719 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:10.907 [main] INFO - Request Body: {"encryptionType":"PqaPabc255"} +2019-02-25 11:45:10.907 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"One or more validation errors occurred","correlationId":null,"details":[{"location":"encryptionType","message":"encryptionType is invalid"}],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-25 11:45:10.907 [main] INFO - Response Code: 400 +2019-02-25 11:45:10.907 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Mon, 25 Feb 2019 06:15:10 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 5c73f50a-d830-4284-8f8c-bf0193984b40 +OkHttp-Sent-Millis: 1551075310735 +OkHttp-Received-Millis: 1551075310907 + +2019-02-25 11:45:10.907 [main] INFO - ********* END *********: +2019-02-25 11:45:10.923 [main] INFO - ********* START ********* +2019-02-25 11:45:10.923 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:10.923 [main] INFO - Request Type: POST +2019-02-25 11:45:10.923 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-25 11:45:10.923 [main] INFO - Digest: SHA-256=bena9bhB3Jy4uPvfu1tAC0uN8AuzzM+xjqmDwR5//EA= +2019-02-25 11:45:10.923 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:10.923 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:10.923 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:10.923 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="VuVyO8Z13PYJ0rvWLj/fbkAEo675F9nixnqmyAQLyek=" +2019-02-25 11:45:10.923 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:11.141 [main] INFO - Request Body: {"encryptionType":"None"} +2019-02-25 11:45:11.141 [main] INFO - Response Message: {"keyId":"07x4BH6pMx5szuG5rmLMdNitgqrh0O0g","der":{"format":"X.509","algorithm":"RSA","publicKey":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjIGHNxlgoyeWnZ7K3718puYSiOymPXqRvSvH3gwQoYnq0AVt08GuvkKUvIPyrmrkxaZa0x+KrAxTqSA03x0JO/lVyjv7Ji3WJQPTyPgey656t5dXTovoa5MtVeUBQ74OSJvlFM2blK44DrbS5GgKEnAT4ZAsKx/cSpaD64NYfKYL9eDQrtGLmGPLJ1P3sTIHtqUNv30G7lo+GP7erOIlc+O51eaKHPjPhaOj7baYGjaGxyRFVCDj6UBu28ibrYlSTVBqwdgOuneLxy1bRIJBOK/CyymNz+0dv0B7KbuH4UqIUUjwUU5wThHF6r+OKq4WHEgXK6Mg2CSC8vTN6wpW6wIDAQAB"},"jwk":null} +2019-02-25 11:45:11.141 [main] INFO - Response Code: 200 +2019-02-25 11:45:11.141 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=RaFSVfmefVkkSwkLQJGt8XJ49kFSK7+PfcXuNEC3C0A= +Content-Type: application/json;charset=UTF-8 +Content-Length: 505 +Date: Mon, 25 Feb 2019 06:15:11 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6d586a53-8007-4b5d-9a84-5c37fe1f69cb +OkHttp-Sent-Millis: 1551075310954 +OkHttp-Received-Millis: 1551075311141 + +2019-02-25 11:45:11.141 [main] INFO - ********* END *********: +2019-02-25 11:45:11.157 [main] INFO - ********* START ********* +2019-02-25 11:45:11.157 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:11.157 [main] INFO - Request Type: POST +2019-02-25 11:45:11.157 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-25 11:45:11.157 [main] INFO - Digest: SHA-256=RGxc6GDM4hd0Lz1J24GEBLuX6JSK+r0fZi1/r0x/0Xo= +2019-02-25 11:45:11.157 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:11.157 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:11.157 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:11.157 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="y1q6OZ4FAkKHxzQaNndlqcL7OtEWRRPaibX8F3iyRlA=" +2019-02-25 11:45:11.157 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:11.344 [main] INFO - Request Body: {"encryptionType":"SDMP"} +2019-02-25 11:45:11.344 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"One or more validation errors occurred","correlationId":null,"details":[{"location":"encryptionType","message":"encryptionType is invalid"}],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-25 11:45:11.344 [main] INFO - Response Code: 400 +2019-02-25 11:45:11.344 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Mon, 25 Feb 2019 06:15:11 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6471fde9-6a1d-4adb-9a11-6eec000007a2 +OkHttp-Sent-Millis: 1551075311173 +OkHttp-Received-Millis: 1551075311344 + +2019-02-25 11:45:11.344 [main] INFO - ********* END *********: +2019-02-25 11:45:11.376 [main] INFO - ********* START ********* +2019-02-25 11:45:11.376 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:11.376 [main] INFO - Request Type: POST +2019-02-25 11:45:11.376 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-25 11:45:11.376 [main] INFO - Digest: SHA-256=jNQYA9OvDKi2aiMe5v1oD0pmWKO9fh7qs1uh97o7grM= +2019-02-25 11:45:11.376 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:11.376 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:11.376 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:11.376 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="X9N8MzJdIewwH/C22bjNra9sebRtSojOeebSz9L747s=" +2019-02-25 11:45:11.376 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:11.548 [main] INFO - Request Body: {"keyId":"07UkZGZbFt1M6JUZqCqh4sNZCa5AzOdP","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-25 11:45:11.563 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [07UkZGZbFt1M6JUZqCqh4sNZCa5AzOdP]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-25 11:45:11.563 [main] INFO - Response Code: 400 +2019-02-25 11:45:11.563 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=yNhy6XvPZH9AhqmOChigyYTJE6xEkAU74Tim2mLyaOw= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Mon, 25 Feb 2019 06:15:10 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a1b90842-121b-44de-97ba-6db4723256f4 +OkHttp-Sent-Millis: 1551075311407 +OkHttp-Received-Millis: 1551075311548 + +2019-02-25 11:45:11.563 [main] INFO - ********* END *********: +2019-02-25 11:45:11.580 [main] INFO - ********* START ********* +2019-02-25 11:45:11.580 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:11.580 [main] INFO - Request Type: POST +2019-02-25 11:45:11.580 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-25 11:45:11.580 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-02-25 11:45:11.580 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:11.580 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:11.580 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:11.580 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="CtCVf1ldnyJb/9aPKfyr0SXVT/tdK8OjNK3VQkJzSlk=" +2019-02-25 11:45:11.580 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:11.751 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-25 11:45:11.751 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [0023154mudgshfyrtdgfj456fhdggdg1]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-25 11:45:11.751 [main] INFO - Response Code: 400 +2019-02-25 11:45:11.751 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Mon, 25 Feb 2019 06:15:11 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ff40f5f8-226e-4119-ae17-cab7d625d72c +OkHttp-Sent-Millis: 1551075311610 +OkHttp-Received-Millis: 1551075311751 + +2019-02-25 11:45:11.751 [main] INFO - ********* END *********: +2019-02-25 11:45:11.856 [main] INFO - ********* START ********* +2019-02-25 11:45:11.856 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:11.856 [main] INFO - Request Type: POST +2019-02-25 11:45:11.856 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-25 11:45:11.856 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-25 11:45:11.856 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:11.872 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:11.872 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:11.872 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="MaFAkjNNTWhDNYGG45mP10vriE0A6QPSopcU1aeocxo=" +2019-02-25 11:45:11.872 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:12.091 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-25 11:45:12.091 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}} +2019-02-25 11:45:12.091 [main] INFO - Response Code: 200 +2019-02-25 11:45:12.091 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_92bbaa73-8cbd-4806-a87a-67d32aa4cc58 +uniqueTransactionID: 5e521605-ece1-47bc-9f14-79a05b230054 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "gaZK/nV+l22isZ3TbN3ZzT9IaEaq3CvEWNIjknrm2LY=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 25 Feb 2019 06:15:12 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: bc6e98c2-2cfe-4e55-9ef5-676ceecfb43f +OkHttp-Sent-Millis: 1551075311887 +OkHttp-Received-Millis: 1551075312091 + +2019-02-25 11:45:12.091 [main] INFO - ********* END *********: +2019-02-25 11:45:12.122 [main] INFO - ********* START ********* +2019-02-25 11:45:12.122 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:12.122 [main] INFO - Request Type: POST +2019-02-25 11:45:12.122 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-25 11:45:12.122 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-25 11:45:12.122 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:12.122 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:12.122 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:12.122 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="MaFAkjNNTWhDNYGG45mP10vriE0A6QPSopcU1aeocxo=" +2019-02-25 11:45:12.122 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:12.325 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-25 11:45:12.325 [main] INFO - Response Message: {"errors":[{"type":"invalidHeaders","message":"Invalid header values","details":[{"name":"profile-id"}]}]} +2019-02-25 11:45:12.325 [main] INFO - Response Code: 400 +2019-02-25 11:45:12.325 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_58ef6477-936f-4892-9edc-8c46c750a095 +uniqueTransactionID: 051b3e23-f70a-4f28-8734-16ca9953eebb +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Mon, 25 Feb 2019 06:15:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 457402f1-44fa-4605-8c61-e8f3c468c467 +OkHttp-Sent-Millis: 1551075312137 +OkHttp-Received-Millis: 1551075312325 + +2019-02-25 11:45:12.325 [main] INFO - ********* END *********: +2019-02-25 11:45:12.450 [main] INFO - ********* START ********* +2019-02-25 11:45:12.450 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:12.450 [main] INFO - Request Type: POST +2019-02-25 11:45:12.450 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-25 11:45:12.466 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-25 11:45:12.466 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:12.466 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:12.466 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:12.466 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="+MNKIAErPvyic4Bd+7yF3gwZWAVcLIzJBmHgqE4yaMA=" +2019-02-25 11:45:12.466 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:12.684 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-25 11:45:12.684 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/82B2DBD5604EF586E05340588D0A5F26"}},"id":"82B2DBD5604EF586E05340588D0A5F26","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"metadata":{"creator":"testrest"}}}} +2019-02-25 11:45:12.684 [main] INFO - Response Code: 201 +2019-02-25 11:45:12.684 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_4edb0efa-ea4d-4768-80cd-2abd6d78e587 +uniqueTransactionID: fab8afce-f24e-4447-bd78-35d1458d0dbe +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/paymentinstruments/82B2DBD5604EF586E05340588D0A5F26 +ETag: "Jrs4gBGJQAgu0H0BSKyN3J5nebMbgKBpYo+f0yT45m8=" +instrumentidentifier-created: false +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1001 +Date: Mon, 25 Feb 2019 06:15:12 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 7b5d8415-3c43-42b1-bf3f-fb24eddc07aa +OkHttp-Sent-Millis: 1551075312481 +OkHttp-Received-Millis: 1551075312684 + +2019-02-25 11:45:12.684 [main] INFO - ********* END *********: +2019-02-25 11:45:12.716 [main] INFO - ********* START ********* +2019-02-25 11:45:12.716 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:12.716 [main] INFO - Request Type: POST +2019-02-25 11:45:12.716 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-25 11:45:12.716 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-25 11:45:12.716 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:12.716 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:12.716 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:12.716 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="+MNKIAErPvyic4Bd+7yF3gwZWAVcLIzJBmHgqE4yaMA=" +2019-02-25 11:45:12.716 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:12.919 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-25 11:45:12.919 [main] INFO - Response Message: {"errors":[{"type":"invalidHeaders","message":"Invalid header values","details":[{"name":"profile-id"}]}]} +2019-02-25 11:45:12.919 [main] INFO - Response Code: 400 +2019-02-25 11:45:12.919 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_3ce72c1c-6ed6-479d-bb1d-7409693940f0 +uniqueTransactionID: e674a5ee-4772-4310-b386-e9395c93e7f8 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Mon, 25 Feb 2019 06:15:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e6b447c3-24ae-4904-a27e-8306cd85d269 +OkHttp-Sent-Millis: 1551075312731 +OkHttp-Received-Millis: 1551075312919 + +2019-02-25 11:45:12.919 [main] INFO - ********* END *********: +2019-02-25 11:45:12.944 [main] INFO - ********* START ********* +2019-02-25 11:45:12.944 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:12.944 [main] INFO - Request Type: GET +2019-02-25 11:45:12.944 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7010000000016241111, requestType=GET} +2019-02-25 11:45:12.944 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:12.944 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:12.944 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:12.944 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="6IGp8sACTRDCS0DzmBfic+0bZxoAqupFbq1Tab4KHuI=" +2019-02-25 11:45:12.944 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:13.210 [main] INFO - Request Body: null +2019-02-25 11:45:13.210 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}} +2019-02-25 11:45:13.210 [main] INFO - Response Code: 200 +2019-02-25 11:45:13.210 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_38846fdb-5f76-42ee-87c8-cdea06baaf73 +uniqueTransactionID: 0f64f84d-0fe8-4834-b3f1-b8128f7cff83 +Pragma: no-cache +X-Application-Context: application +ETag: "gaZK/nV+l22isZ3TbN3ZzT9IaEaq3CvEWNIjknrm2LY=" +Token-Class: instrumentIdentifier +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 25 Feb 2019 06:15:12 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: a82c07f2-5527-4277-9bea-b568e76f3745 +OkHttp-Sent-Millis: 1551075312960 +OkHttp-Received-Millis: 1551075313210 + +2019-02-25 11:45:13.210 [main] INFO - ********* END *********: +2019-02-25 11:45:13.226 [main] INFO - ********* START ********* +2019-02-25 11:45:13.226 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:13.226 [main] INFO - Request Type: GET +2019-02-25 11:45:13.226 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546, requestType=GET} +2019-02-25 11:45:13.226 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:13.226 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:13.226 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:13.226 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="CuPjAy2ORUSlvNDHNtBbJpmzYZVFgAnkAzENTHGHRxU=" +2019-02-25 11:45:13.226 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:13.476 [main] INFO - Request Body: null +2019-02-25 11:45:13.476 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 11:45:13.476 [main] INFO - Response Code: 404 +2019-02-25 11:45:13.476 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_35693ec7-01ba-403a-8e45-6247ba5c2dd2 +uniqueTransactionID: 34f9905c-5dae-4921-b06c-12acfd50d98d +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:15:13 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: b9ada25d-7a10-48b5-adc8-53e3ce558fb3 +OkHttp-Sent-Millis: 1551075313226 +OkHttp-Received-Millis: 1551075313476 + +2019-02-25 11:45:13.476 [main] INFO - ********* END *********: +2019-02-25 11:45:13.491 [main] INFO - ********* START ********* +2019-02-25 11:45:13.491 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:13.491 [main] INFO - Request Type: PATCH +2019-02-25 11:45:13.491 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654, requestType=PATCH} +2019-02-25 11:45:13.491 [main] INFO - Digest: SHA-256=8WWAL+hDoWtF/EyxX3M/HpCKmkkPnnqbqKxbc3iH/JY= +2019-02-25 11:45:13.491 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:13.491 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:13.491 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:13.491 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="sTVXQPy08JBCT0JQll/Ji0iRUrxeZQfNy64v8nPujOw=" +2019-02-25 11:45:13.491 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:13.757 [main] INFO - Request Body: {"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-25 11:45:13.757 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}} +2019-02-25 11:45:13.757 [main] INFO - Response Code: 200 +2019-02-25 11:45:13.757 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_6876a5da-8817-4bc7-ab11-8b2e82e4637b +uniqueTransactionID: db26ea3b-f515-4293-9c3d-50d92e510d6e +Pragma: no-cache +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654 +ETag: "PcEKhQDDz04kFJ7O5OrJEz3nhroelP3Tgeqhs9gT7vI=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 25 Feb 2019 06:15:13 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: b587993a-ffd7-46b8-8277-107ad6598b7f +OkHttp-Sent-Millis: 1551075313522 +OkHttp-Received-Millis: 1551075313757 + +2019-02-25 11:45:13.757 [main] INFO - ********* END *********: +2019-02-25 11:45:13.772 [main] INFO - ********* START ********* +2019-02-25 11:45:13.772 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:13.772 [main] INFO - Request Type: PATCH +2019-02-25 11:45:13.772 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000123455, requestType=PATCH} +2019-02-25 11:45:13.772 [main] INFO - Digest: SHA-256=8WWAL+hDoWtF/EyxX3M/HpCKmkkPnnqbqKxbc3iH/JY= +2019-02-25 11:45:13.772 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:13.772 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:13.772 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:13.772 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="b8bODnfRuyVtLGqNI7RZQiggyTXccZAEtP6GEdeGg44=" +2019-02-25 11:45:13.772 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:13.976 [main] INFO - Request Body: {"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-25 11:45:13.976 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 11:45:13.976 [main] INFO - Response Code: 404 +2019-02-25 11:45:13.976 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_b87650f5-e467-4a43-a2a7-6d69a091d96a +uniqueTransactionID: 9ad0487a-8451-4f64-abc6-1fdbc5603a15 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:15:13 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: b8da4dd6-33d6-436b-9190-07c6fe5ab30e +OkHttp-Sent-Millis: 1551075313788 +OkHttp-Received-Millis: 1551075313976 + +2019-02-25 11:45:13.976 [main] INFO - ********* END *********: +2019-02-25 11:45:14.004 [main] INFO - ********* START ********* +2019-02-25 11:45:14.004 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:14.004 [main] INFO - Request Type: DELETE +2019-02-25 11:45:14.004 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7010000000006721114, requestType=DELETE} +2019-02-25 11:45:14.004 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:14.004 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:14.004 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:14.004 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="wmhkkCbzzAuEDJqhVm82bOYNnsFXgzja6D1YfTxXY6A=" +2019-02-25 11:45:14.004 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:14.223 [main] INFO - Request Body: null +2019-02-25 11:45:14.223 [main] INFO - Response Message: {"errors":[{"type":"notAvailable","message":"Token not available"}]} +2019-02-25 11:45:14.223 [main] INFO - Response Code: 410 +2019-02-25 11:45:14.223 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_50915323-9226-4303-b986-9e3cbc4601fe +uniqueTransactionID: 20fac602-c53a-48ca-a8f7-cc89d8b547b7 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 68 +Date: Mon, 25 Feb 2019 06:15:13 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 4004f3ca-e738-4947-9029-ee427706ede9 +OkHttp-Sent-Millis: 1551075314020 +OkHttp-Received-Millis: 1551075314223 + +2019-02-25 11:45:14.223 [main] INFO - ********* END *********: +2019-02-25 11:45:14.254 [main] INFO - ********* START ********* +2019-02-25 11:45:14.254 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:14.254 [main] INFO - Request Type: DELETE +2019-02-25 11:45:14.254 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546, requestType=DELETE} +2019-02-25 11:45:14.254 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:14.254 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:14.254 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:14.254 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="jt4tQU709L2Vr1t6XR9VBeNcOx6lilCy5R5Hfr/w2YQ=" +2019-02-25 11:45:14.254 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:14.457 [main] INFO - Request Body: null +2019-02-25 11:45:14.457 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 11:45:14.457 [main] INFO - Response Code: 404 +2019-02-25 11:45:14.457 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_a5d7f90b-7957-4cc7-93df-39696a10de5f +uniqueTransactionID: b1328bb3-a13b-4ee4-96ca-7517292cf09a +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:15:13 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 1f20c62e-d908-4a10-b7e3-1e218f4592ac +OkHttp-Sent-Millis: 1551075314270 +OkHttp-Received-Millis: 1551075314457 + +2019-02-25 11:45:14.457 [main] INFO - ********* END *********: +2019-02-25 11:45:14.473 [main] INFO - ********* START ********* +2019-02-25 11:45:14.473 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:14.473 [main] INFO - Request Type: GET +2019-02-25 11:45:14.473 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603, requestType=GET} +2019-02-25 11:45:14.473 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:14.473 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:14.473 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:14.473 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="0E/GhIwAQ1rSmfQDDjYopHlYtnAXvbYpkb73RuCWx1I=" +2019-02-25 11:45:14.473 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:14.723 [main] INFO - Request Body: null +2019-02-25 11:45:14.723 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603"}},"id":"7EFF4BA832B12424E05340588D0AC603","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}} +2019-02-25 11:45:14.723 [main] INFO - Response Code: 200 +2019-02-25 11:45:14.723 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_0c00bfd6-e4c8-4caf-a44a-21423403e412 +uniqueTransactionID: c295a60e-f654-4263-8751-2a60fcdce54c +Pragma: no-cache +X-Application-Context: application +ETag: "PGPzZHBgX2brtqyIt4k/Xs9GGYYiwO3mz/u8HcjdmY0=" +Token-Class: paymentInstrument +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1142 +Date: Mon, 25 Feb 2019 06:15:14 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 58e9d477-e31b-4b3f-a6db-1bb33ca4f296 +OkHttp-Sent-Millis: 1551075314488 +OkHttp-Received-Millis: 1551075314723 + +2019-02-25 11:45:14.723 [main] INFO - ********* END *********: +2019-02-25 11:45:14.738 [main] INFO - ********* START ********* +2019-02-25 11:45:14.738 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:14.738 [main] INFO - Request Type: GET +2019-02-25 11:45:14.738 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7654264589567855546, requestType=GET} +2019-02-25 11:45:14.738 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:14.738 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:14.738 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:14.738 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ICARU3aeNU/uU/kJU4g9n7oF72HAdK22XnbLF+06Zec=" +2019-02-25 11:45:14.738 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:14.941 [main] INFO - Request Body: null +2019-02-25 11:45:14.941 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 11:45:14.941 [main] INFO - Response Code: 404 +2019-02-25 11:45:14.941 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_be6f3b2c-b673-4f28-aa39-5ff3c5c4640c +uniqueTransactionID: 35f3176b-b01e-469e-aff8-12c67d594fef +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:15:14 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: c327e473-8a2b-4982-b687-76a364321fb6 +OkHttp-Sent-Millis: 1551075314738 +OkHttp-Received-Millis: 1551075314941 + +2019-02-25 11:45:14.941 [main] INFO - ********* END *********: +2019-02-25 11:45:14.988 [main] INFO - ********* START ********* +2019-02-25 11:45:14.988 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:14.988 [main] INFO - Request Type: PATCH +2019-02-25 11:45:14.988 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603, requestType=PATCH} +2019-02-25 11:45:14.988 [main] INFO - Digest: SHA-256=JVhG6cWRtiU/QoMjxKqN0Sqpzxt5BxE40ELswsMV4eU= +2019-02-25 11:45:14.988 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:14.988 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:14.988 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:14.988 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="BaEvEp/SxGBRoOXPvsJHTFIhpac8lYUotB5lEi4UQCQ=" +2019-02-25 11:45:14.988 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:15.207 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-25 11:45:15.207 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603"}},"id":"7EFF4BA832B12424E05340588D0AC603","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}} +2019-02-25 11:45:15.207 [main] INFO - Response Code: 200 +2019-02-25 11:45:15.207 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_239bf446-7194-429e-bb01-6d632744843b +uniqueTransactionID: 00fa84a7-79cd-4377-afc2-5f9a27cc682b +Pragma: no-cache +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603 +ETag: "VL0SCaNg7Rc0LHH8BfLhex0FkY/P4IgbrXHPb8TxDps=" +instrumentidentifier-created: false +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1142 +Date: Mon, 25 Feb 2019 06:15:14 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 2acd630f-864c-497b-b6c7-78ad0a3dc9a7 +OkHttp-Sent-Millis: 1551075315004 +OkHttp-Received-Millis: 1551075315207 + +2019-02-25 11:45:15.207 [main] INFO - ********* END *********: +2019-02-25 11:45:15.238 [main] INFO - ********* START ********* +2019-02-25 11:45:15.238 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:15.238 [main] INFO - Request Type: PATCH +2019-02-25 11:45:15.238 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B124123456789545854565, requestType=PATCH} +2019-02-25 11:45:15.238 [main] INFO - Digest: SHA-256=JVhG6cWRtiU/QoMjxKqN0Sqpzxt5BxE40ELswsMV4eU= +2019-02-25 11:45:15.238 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:15.238 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:15.238 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:15.238 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="yv8atSdcD09dE6/ls0Qr3iW3jEvRy94A7k0gPZqXQXo=" +2019-02-25 11:45:15.238 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:15.441 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-25 11:45:15.441 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 11:45:15.441 [main] INFO - Response Code: 404 +2019-02-25 11:45:15.441 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_a4abec27-93dd-47f6-867b-14f8c3814165 +uniqueTransactionID: 942193a6-3478-4029-9d98-abd5fe19a03c +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:15:14 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 4e7f70fb-1543-46a1-a4c1-44dcd129989c +OkHttp-Sent-Millis: 1551075315254 +OkHttp-Received-Millis: 1551075315441 + +2019-02-25 11:45:15.441 [main] INFO - ********* END *********: +2019-02-25 11:45:15.470 [main] INFO - ********* START ********* +2019-02-25 11:45:15.470 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:15.470 [main] INFO - Request Type: DELETE +2019-02-25 11:45:15.470 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/80756F4698591109E05341588E0A4B95, requestType=DELETE} +2019-02-25 11:45:15.470 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:15.470 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:15.470 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:15.470 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="crv5xcyAAR3EfdBiakh/gDaaVrdN6aCZ2r0OTwlJsXI=" +2019-02-25 11:45:15.470 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:15.720 [main] INFO - Request Body: null +2019-02-25 11:45:15.720 [main] INFO - Response Message: {"errors":[{"type":"notAvailable","message":"Token not available"}]} +2019-02-25 11:45:15.720 [main] INFO - Response Code: 410 +2019-02-25 11:45:15.720 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_6ea67289-c649-4f00-b2ee-885e66dafe73 +uniqueTransactionID: 38052b80-8a27-4321-8875-3832684ae4b4 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 68 +Date: Mon, 25 Feb 2019 06:15:14 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: c3253f7c-ec40-4f6e-badd-0f44d1333345 +OkHttp-Sent-Millis: 1551075315486 +OkHttp-Received-Millis: 1551075315720 + +2019-02-25 11:45:15.720 [main] INFO - ********* END *********: +2019-02-25 11:45:15.736 [main] INFO - ********* START ********* +2019-02-25 11:45:15.736 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:15.736 [main] INFO - Request Type: DELETE +2019-02-25 11:45:15.736 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/76542645895678555464562155478555, requestType=DELETE} +2019-02-25 11:45:15.736 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:15.736 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:15.736 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:15.736 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="mHLG54CNfnAyVp4iqOENnkR3oFoNOLUs6Mjc1D7Hr40=" +2019-02-25 11:45:15.736 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:15.939 [main] INFO - Request Body: null +2019-02-25 11:45:15.939 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 11:45:15.939 [main] INFO - Response Code: 404 +2019-02-25 11:45:15.939 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_571b3d93-6413-4816-ad20-0abbcfcb17bd +uniqueTransactionID: 889329c6-d229-401b-ad7f-9bb094e62435 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:15:14 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: aa896789-4428-434d-a134-2b717f2bf3e8 +OkHttp-Sent-Millis: 1551075315752 +OkHttp-Received-Millis: 1551075315939 + +2019-02-25 11:45:15.939 [main] INFO - ********* END *********: +2019-02-25 11:45:15.955 [main] INFO - ********* START ********* +2019-02-25 11:45:15.955 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:15.955 [main] INFO - Request Type: GET +2019-02-25 11:45:15.955 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-25 11:45:15.955 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:15.955 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:15.955 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:15.955 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="tkZZxVkwq7vxPRtQLkmZeWlky4k2ooGD6OWURt4aM2w=" +2019-02-25 11:45:15.955 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:16.330 [main] INFO - Request Body: null +2019-02-25 11:45:16.330 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=0&limit=20"},"first":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=0&limit=20"},"next":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=20&limit=20"},"last":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=120&limit=20"}},"object":"collection","offset":0,"limit":20,"count":20,"total":131,"_embedded":{"paymentInstruments":[{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/798C4DC7AEE4D943E05340588D0A8A9E"}},"id":"798C4DC7AEE4D943E05340588D0A8A9E","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7986A6266E5D8728E05340588D0A082F"}},"id":"7986A6266E5D8728E05340588D0A082F","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79863A720BFB3614E05340588D0AC61D"}},"id":"79863A720BFB3614E05340588D0AC61D","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7986100CF0631311E05340588D0AC258"}},"id":"7986100CF0631311E05340588D0AC258","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79849FC7687CFF78E05340588D0A8D10"}},"id":"79849FC7687CFF78E05340588D0A8D10","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79276DA1D0233CA6E05340588D0ADD47"}},"id":"79276DA1D0233CA6E05340588D0ADD47","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79276DA1D01C3CA6E05340588D0ADD47"}},"id":"79276DA1D01C3CA6E05340588D0ADD47","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/790D20FA65E14107E05340588D0A56FC"}},"id":"790D20FA65E14107E05340588D0A56FC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/790B7C9B64C7062AE05340588D0A6BFC"}},"id":"790B7C9B64C7062AE05340588D0A6BFC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78FC4875384A727AE05340588D0A9FEB"}},"id":"78FC4875384A727AE05340588D0A9FEB","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78FC48753847727AE05340588D0A9FEB"}},"id":"78FC48753847727AE05340588D0A9FEB","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F9029E6777F865E05340588D0AD0EA"}},"id":"78F9029E6777F865E05340588D0AD0EA","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F906F76015F1BDE05340588D0AC573"}},"id":"78F906F76015F1BDE05340588D0AC573","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F72C08537094CAE05340588D0ACDD3"}},"id":"78F72C08537094CAE05340588D0ACDD3","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78E7CFD5C149EA3BE05340588D0AB20B"}},"id":"78E7CFD5C149EA3BE05340588D0AB20B","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78E7CFD5C144EA3BE05340588D0AB20B"}},"id":"78E7CFD5C144EA3BE05340588D0AB20B","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78DFC955E6E1B4A4E05340588D0ADD6A"}},"id":"78DFC955E6E1B4A4E05340588D0ADD6A","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78DFC955E6DCB4A4E05340588D0ADD6A"}},"id":"78DFC955E6DCB4A4E05340588D0ADD6A","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/787C21D78039BB12E05341588E0ABAF2"}},"id":"787C21D78039BB12E05341588E0ABAF2","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/787C0A20BEA79250E05341588E0ADA22"}},"id":"787C0A20BEA79250E05341588E0ADA22","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}}]}} +2019-02-25 11:45:16.330 [main] INFO - Response Code: 200 +2019-02-25 11:45:16.330 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_22b3ae3e-9dd8-4e1d-a6db-cfa11171a49b +uniqueTransactionID: ac188a5c-9e40-4933-a394-95a239973962 +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 131 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Mon, 25 Feb 2019 06:15:16 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 9938200b-9127-4cf5-b565-0a4d533f6399 +OkHttp-Sent-Millis: 1551075315955 +OkHttp-Received-Millis: 1551075316330 + +2019-02-25 11:45:16.330 [main] INFO - ********* END *********: +2019-02-25 11:45:16.377 [main] INFO - ********* START ********* +2019-02-25 11:45:16.392 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:16.392 [main] INFO - Request Type: GET +2019-02-25 11:45:16.392 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-25 11:45:16.392 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:16.392 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:16.392 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:16.392 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="qvKbSsY/hOFwAQEiD1l+IlGFejH4F1hhPqRHh2Lmhhw=" +2019-02-25 11:45:16.392 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:16.580 [main] INFO - Request Body: null +2019-02-25 11:45:16.580 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 11:45:16.580 [main] INFO - Response Code: 404 +2019-02-25 11:45:16.580 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_0499052f-01b7-47b8-9a2d-1da06199a077 +uniqueTransactionID: bdb5f21e-edd4-4d3f-83ad-28691c85cf4d +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:15:16 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 4d1c3e06-2027-4609-9013-d3e8a3c39ded +OkHttp-Sent-Millis: 1551075316392 +OkHttp-Received-Millis: 1551075316580 + +2019-02-25 11:45:16.580 [main] INFO - ********* END *********: +2019-02-25 11:45:16.610 [main] INFO - ********* START ********* +2019-02-25 11:45:16.610 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:16.610 [main] INFO - Request Type: GET +2019-02-25 11:45:16.610 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches/Owcyk6pl, requestType=GET} +2019-02-25 11:45:16.610 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:16.610 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:16.610 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:16.610 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="mk9hJzmKrunRoqvJAMNxTZu7C5+17CEcOgGVJ+2Jp8c=" +2019-02-25 11:45:16.610 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:16.861 [main] INFO - Request Body: null +2019-02-25 11:45:16.861 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/pts/v1/transaction-batches/Owcyk6pl"}},"acceptedTransactionCount":0,"completionDate":"2018-10-29","id":"Owcyk6pl","links":{"transactions":[{"href":"https://apitest.cybersource.com:-1/v1/payments/5408556076096093004012","method":"Get"},{"href":"https://apitest.cybersource.com:-1/v1/payments/5408556076166022104010","method":"Get"}]},"rejectedTransactionCount":2,"status":"Completed","transactionCount":2,"uploadDate":"2018-10-29"} +2019-02-25 11:45:16.861 [main] INFO - Response Code: 200 +2019-02-25 11:45:16.861 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_ea876360-1059-4dec-a1e0-80f1b6d505bd +Cache-Control: no-cache, no-transform +ETag: "-1139639258" +Expires: Mon, 25 Feb 2019 06:15:16 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:16 GMT +X-Cnection: close +v-c-correlation-id: 219efedd-87d0-43df-93ec-a713e105dc78 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075316610 +OkHttp-Received-Millis: 1551075316861 + +2019-02-25 11:45:16.861 [main] INFO - ********* END *********: +2019-02-25 11:45:16.876 [main] INFO - ********* START ********* +2019-02-25 11:45:16.876 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:16.876 [main] INFO - Request Type: GET +2019-02-25 11:45:16.876 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches/CYBS123, requestType=GET} +2019-02-25 11:45:16.876 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:16.876 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:16.876 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:16.876 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Cr6ggtQlbAD71BTFH7AJLYb3Ss/iLxFLfGmTH+UxKIg=" +2019-02-25 11:45:16.876 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:17.157 [main] INFO - Request Body: null +2019-02-25 11:45:17.157 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/pts/v1/transaction-batches/CYBS123"}},"invalidFields":null,"message":"The requested resource does not exist","messageKey":null,"missingFields":null} +2019-02-25 11:45:17.157 [main] INFO - Response Code: 404 +2019-02-25 11:45:17.157 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_72b001fb-95fa-4d03-a26e-0a2e9df72a9d +Cache-Control: no-cache, no-transform +ETag: "-975452876" +Expires: Mon, 25 Feb 2019 06:15:17 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:17 GMT +X-Cnection: close +v-c-correlation-id: 7ebb2294-581a-4f9d-befb-19a63c460478 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075316876 +OkHttp-Received-Millis: 1551075317157 + +2019-02-25 11:45:17.157 [main] INFO - ********* END *********: +2019-02-25 11:45:17.282 [main] INFO - ********* START ********* +2019-02-25 11:45:17.282 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:17.282 [main] INFO - Request Type: GET +2019-02-25 11:45:17.282 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-25 11:45:17.282 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:17.298 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:17.298 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:17.298 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ksucjFL3OWqZKO23PYqqNhIRCInjVmyKcqGN5ZtiJgI=" +2019-02-25 11:45:17.298 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:17.532 [main] INFO - Request Body: null +2019-02-25 11:45:17.532 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/pts/v1/transaction-batches"}},"submitTimeUtc":"2019-02-25T06:15:17.476Z","transactionBatches":[{"id":"Owcyk6pl","uploadDate":"2018-10-29","completionDate":"2018-10-29","transactionCount":2,"acceptedTransactionCount":0,"rejectedTransactionCount":2,"status":"Completed"},{"id":"91Li4SD7","uploadDate":"2018-10-29","completionDate":"2018-10-29","transactionCount":0,"acceptedTransactionCount":0,"rejectedTransactionCount":0,"status":"OnHold"}]} +2019-02-25 11:45:17.532 [main] INFO - Response Code: 200 +2019-02-25 11:45:17.532 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_1f01b088-c10b-4ea2-86dd-95bb653622ac +X-OPNET-Transaction-Trace: a2_a6ed12c6-e1f7-48a5-ab02-129b8bcbb5e7 +Cache-Control: no-cache, no-transform +ETag: "1503643989" +Expires: Mon, 25 Feb 2019 06:15:17 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:17 GMT +X-Cnection: close +v-c-correlation-id: b1a817b4-708f-4bf2-a5cf-b893fc6d0fb6 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075317298 +OkHttp-Received-Millis: 1551075317532 + +2019-02-25 11:45:17.532 [main] INFO - ********* END *********: +2019-02-25 11:45:17.564 [main] INFO - ********* START ********* +2019-02-25 11:45:17.564 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:17.564 [main] INFO - Request Type: GET +2019-02-25 11:45:17.564 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2019-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-25 11:45:17.564 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:17.564 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:17.564 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:17.564 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="YfWouQcZ4CdZ0XrITE/rB6QgbBbRSMRwDS2uaODCbfA=" +2019-02-25 11:45:17.564 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:17.782 [main] INFO - Request Body: null +2019-02-25 11:45:17.782 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/payment/pts/v1/transaction-batches?startTime=2019-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z"}},"invalidFields":{"name":"endTime","reasonMessage":"The start time should precede the end time"},"message":"Field validation errors","messageKey":null,"missingFields":null} +2019-02-25 11:45:17.782 [main] INFO - Response Code: 400 +2019-02-25 11:45:17.782 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_c3e9d9f6-232c-48da-a092-1f2a82679f05 +X-OPNET-Transaction-Trace: a2_589c67af-be6d-49c3-9218-1796e4b5ecd8 +Cache-Control: no-cache, no-transform +ETag: "-1732043611" +Expires: Mon, 25 Feb 2019 06:15:17 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:17 GMT +X-Cnection: close +v-c-correlation-id: 4482382c-3cfa-436d-b82b-759c5ff58108 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075317564 +OkHttp-Received-Millis: 1551075317782 + +2019-02-25 11:45:17.782 [main] INFO - ********* END *********: +2019-02-25 11:45:17.813 [main] INFO - ********* START ********* +2019-02-25 11:45:17.813 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:17.813 [main] INFO - Request Type: GET +2019-02-25 11:45:17.813 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/transactions/5408386919326811103004, requestType=GET} +2019-02-25 11:45:17.813 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:17.813 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:17.813 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:17.813 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="87669rAoW3zodbOf+mAk7MFxzh72T537M3jix07EkpU=" +2019-02-25 11:45:17.813 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:18.313 [main] INFO - Request Body: null +2019-02-25 11:45:18.313 [main] INFO - Response Message: {"id":"5408386919326811103004","rootId":"5408386919326811103004","reconciliationId":"781606613NGFNJJE","submitTimeUTC":"2018-10-29T18:44:52Z","merchantId":"testrest","applicationInformation":{"reasonCode":100,"applications":[{"name":"ics_auth","reasonCode":"100","rCode":"1","rFlag":"SOK","reconciliationId":"781606613NGFNJJE","rMessage":"Request was processed successfully.","returnCode":1010000}]},"buyerInformation":{},"clientReferenceInformation":{"code":"TC50171_3","applicationName":"REST API","applicationVersion":"1.0"},"consumerAuthenticationInformation":{"eciRaw":"7"},"deviceInformation":{},"installmentInformation":{},"fraudMarkingInformation":{},"merchantDefinedInformation":{},"merchantInformation":{"merchantDescriptor":{"name":"testrest"}},"orderInformation":{"billTo":{"firstName":"JOHN","lastName":"DOE","address1":"1 Market St","address2":"Address 2","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","company":"Visa","email":"XXXXXXXXX","country":"US","phoneNumber":"4158880000"},"shipTo":{},"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX","taxAmount":"0","authorizedAmount":"102.21"},"shippingDetails":{},"lineItems":[{"productCode":"default","taxAmount":0,"quantity":1,"unitPrice":102.21}]},"paymentInformation":{"paymentMethod":{"name":"smartpay","type":"credit card","subType":"VI"},"customer":{},"card":{"suffix":"1111","prefix":"411111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"Credit card"},"invoice":{},"accountFeatures":{}},"processingInformation":{"paymentSolution":"Visa","commerceIndicator":"7","authorizationOptions":{"authType":"O"},"bankTransferOptions":{}},"processorInformation":{"processor":{"name":"smartpay"},"approvalCode":"888888","responseCode":"100","avs":{"code":"X ","codeRaw":"I1"},"cardVerification":{},"achVerification":{"resultCodeRaw":"100"},"electronicVerificationResults":{}},"pointOfSaleInformation":{},"riskInformation":{"score":{}},"senderInformation":{},"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5408386919326811103004","method":"GET"}}} +2019-02-25 11:45:18.313 [main] INFO - Response Code: 200 +2019-02-25 11:45:18.313 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_c0ea54dd-d394-4f4c-9271-c78e6d82dda2 +Cache-Control: no-cache, no-transform +ETag: "-1543210418" +Expires: Mon, 25 Feb 2019 06:15:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:18 GMT +X-Cnection: close +v-c-correlation-id: 4aa98805-3faa-44ad-bf93-ae8a4df68182 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075317813 +OkHttp-Received-Millis: 1551075318313 + +2019-02-25 11:45:18.313 [main] INFO - ********* END *********: +2019-02-25 11:45:18.532 [main] INFO - ********* START ********* +2019-02-25 11:45:18.532 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:18.532 [main] INFO - Request Type: GET +2019-02-25 11:45:18.532 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/transactions/1234567898745651235454, requestType=GET} +2019-02-25 11:45:18.532 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:18.532 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:18.532 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:18.532 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="yRU/yBmkLxOmoPBgJRm6wbWuaVwUq/rZ3yOX5XM7Fdw=" +2019-02-25 11:45:18.532 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:18.751 [main] INFO - Request Body: null +2019-02-25 11:45:18.751 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/payment/tss/v2/transactions/1234567898745651235454"}},"invalidFields":null,"message":"The requested resource does not exist","messageKey":null,"missingFields":null} +2019-02-25 11:45:18.751 [main] INFO - Response Code: 404 +2019-02-25 11:45:18.751 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_6a20e00c-2999-4a00-a432-844210cd1ea0 +X-OPNET-Transaction-Trace: a2_453b1ab5-e620-4028-aca4-2957bed09224 +Cache-Control: no-cache, no-transform +ETag: "1151868788" +Expires: Mon, 25 Feb 2019 06:15:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:17 GMT +X-Cnection: close +v-c-correlation-id: 4c18e8ef-e22c-451a-93a7-ad9ccecaa676 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075318532 +OkHttp-Received-Millis: 1551075318751 + +2019-02-25 11:45:18.751 [main] INFO - ********* END *********: +2019-02-25 11:45:18.767 [main] INFO - ********* START ********* +2019-02-25 11:45:18.767 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:18.767 [main] INFO - Request Type: POST +2019-02-25 11:45:18.767 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-25 11:45:18.767 [main] INFO - Digest: SHA-256=yv1HHIWB0ukuo0JfNKnkDCUcVm1OrwOQ7U4IgWX3zTs= +2019-02-25 11:45:18.782 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:18.782 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:18.782 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:18.782 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="oGpGzxo4ibpyemdQm9WOKpZLiR0D5doWqGoyLltRw0o=" +2019-02-25 11:45:18.782 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:20.563 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientReferenceInformation.code:12345","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-25 11:45:20.563 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/c9aead0b-af26-4bcd-a5b0-a27617b4566a","method":"GET"}},"searchId":"c9aead0b-af26-4bcd-a5b0-a27617b4566a","save":false,"name":"TSS search","query":"clientReferenceInformation.code:12345","count":63,"totalCount":63,"limit":80,"offset":0,"sort":"id:asc, submitTimeUtc:asc","timezone":"America/Chicago","submitTimeUtc":"2019-02-25T06:15:20Z","_embedded":{"transactionSummaries":[{"id":"5468475396886870703005","submitTimeUtc":"2019-01-07T07:52:19Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468475396886870703005","method":"GET"}}},{"id":"5468478041966220703004","submitTimeUtc":"2019-01-07T07:56:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468478041966220703004","method":"GET"}}},{"id":"5468480179436393003006","submitTimeUtc":"2019-01-07T08:00:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480179436393003006","method":"GET"}}},{"id":"5468480690446811803002","submitTimeUtc":"2019-01-07T08:01:09Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480690446811803002","method":"GET"}}},{"id":"5468485285666814803002","submitTimeUtc":"2019-01-07T08:08:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485285666814803002","method":"GET"}}},{"id":"5468485710916881003005","submitTimeUtc":"2019-01-07T08:09:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485710916881003005","method":"GET"}}},{"id":"5469521708616037903005","submitTimeUtc":"2019-01-08T12:56:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469521708616037903005","method":"GET"}}},{"id":"5469522883506039403005","submitTimeUtc":"2019-01-08T12:58:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469522883506039403005","method":"GET"}}},{"id":"5469524080436600903006","submitTimeUtc":"2019-01-08T13:00:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524080436600903006","method":"GET"}}},{"id":"5469524351696601103006","submitTimeUtc":"2019-01-08T13:00:35Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524351696601103006","method":"GET"}}},{"id":"5469525663736980803002","submitTimeUtc":"2019-01-08T13:02:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469525663736980803002","method":"GET"}}},{"id":"5469529727066047603005","submitTimeUtc":"2019-01-08T13:09:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469529727066047603005","method":"GET"}}},{"id":"5469535101246615503006","submitTimeUtc":"2019-01-08T13:18:30Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469535101246615503006","method":"GET"}}},{"id":"5469588461766085503005","submitTimeUtc":"2019-01-08T14:47:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469588461766085503005","method":"GET"}}},{"id":"5469589378676352103001","submitTimeUtc":"2019-01-08T14:48:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589378676352103001","method":"GET"}}},{"id":"5469589534636352203001","submitTimeUtc":"2019-01-08T14:49:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589534636352203001","method":"GET"}}},{"id":"5470167162946434803001","submitTimeUtc":"2019-01-09T06:51:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5470167162946434803001","method":"GET"}}},{"id":"5471404274096790203002","submitTimeUtc":"2019-01-10T17:13:47Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5471404274096790203002","method":"GET"}}},{"id":"5475240476326666304005","submitTimeUtc":"2019-01-15T03:47:27Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240476326666304005","method":"GET"}}},{"id":"5475240647986666504005","submitTimeUtc":"2019-01-15T03:47:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240647986666504005","method":"GET"}}},{"id":"5475240694246602504002","submitTimeUtc":"2019-01-15T03:47:49Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240694246602504002","method":"GET"}}},{"id":"5480449281766424303002","submitTimeUtc":"2019-01-21T04:28:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5480449281766424303002","method":"GET"}}},{"id":"5484294159526049603003","submitTimeUtc":"2019-01-25T15:16:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5484294159526049603003","method":"GET"}}},{"id":"5486140097596056803002","submitTimeUtc":"2019-01-27T18:33:29Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486140097596056803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486140097596056803002","method":"GET"}}},{"id":"5486143740386376403005","submitTimeUtc":"2019-01-27T18:39:34Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486143740386376403005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486143740386376403005","method":"GET"}}},{"id":"5486146109726057203002","submitTimeUtc":"2019-01-27T18:43:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486146109726057203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486146109726057203002","method":"GET"}}},{"id":"5486149568856057803002","submitTimeUtc":"2019-01-27T18:49:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486149568856057803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486149568856057803002","method":"GET"}}},{"id":"5486150058926377303005","submitTimeUtc":"2019-01-27T18:50:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150058926377303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150058926377303005","method":"GET"}}},{"id":"5486150718046057903002","submitTimeUtc":"2019-01-27T18:51:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150718046057903002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150718046057903002","method":"GET"}}},{"id":"5486151464616710103006","submitTimeUtc":"2019-01-27T18:52:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486151464616710103006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486151464616710103006","method":"GET"}}},{"id":"5486152183786377503005","submitTimeUtc":"2019-01-27T18:53:38Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486152183786377503005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486152183786377503005","method":"GET"}}},{"id":"5486154059186996103003","submitTimeUtc":"2019-01-27T18:56:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486154059186996103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486154059186996103003","method":"GET"}}},{"id":"5486156635686378003005","submitTimeUtc":"2019-01-27T19:01:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486156635686378003005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486156635686378003005","method":"GET"}}},{"id":"5486157519836378103005","submitTimeUtc":"2019-01-27T19:02:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486157519836378103005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486157519836378103005","method":"GET"}}},{"id":"5486159910726712503006","submitTimeUtc":"2019-01-27T19:06:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486159910726712503006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486159910726712503006","method":"GET"}}},{"id":"5486160598666060203002","submitTimeUtc":"2019-01-27T19:07:40Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486160598666060203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486160598666060203002","method":"GET"}}},{"id":"5488539943826733503004","submitTimeUtc":"2019-01-30T13:13:14Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5488539943826733503004","method":"GET"}}},{"id":"5492626323766108104003","submitTimeUtc":"2019-02-04T06:43:52Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5492626323766108104003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5492626323766108104003","method":"GET"}}},{"id":"5493718508496900303005","submitTimeUtc":"2019-02-05T13:04:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718508496900303005","method":"GET"}}},{"id":"5493718987966748103006","submitTimeUtc":"2019-02-05T13:04:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718987966748103006","method":"GET"}}},{"id":"5495325909106773503001","submitTimeUtc":"2019-02-07T09:43:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495325909106773503001"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495325909106773503001","method":"GET"}}},{"id":"5495326432436411603006","submitTimeUtc":"2019-02-07T09:44:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495326432436411603006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495326432436411603006","method":"GET"}}},{"id":"5495345378096803303002","submitTimeUtc":"2019-02-07T10:15:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495345378096803303002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495345378096803303002","method":"GET"}}},{"id":"5495351977316834703003","submitTimeUtc":"2019-02-07T10:26:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495351977316834703003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495351977316834703003","method":"GET"}}},{"id":"5495352459166850703004","submitTimeUtc":"2019-02-07T10:27:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495352459166850703004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495352459166850703004","method":"GET"}}},{"id":"5495353943786840303005","submitTimeUtc":"2019-02-07T10:29:54Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495353943786840303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495353943786840303005","method":"GET"}}},{"id":"5495375735936863103004","submitTimeUtc":"2019-02-07T11:06:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495375735936863103004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495375735936863103004","method":"GET"}}},{"id":"5496424976256414603001","submitTimeUtc":"2019-02-08T16:14:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5496424976256414603001","method":"GET"}}},{"id":"5498675776826871703002","submitTimeUtc":"2019-02-11T06:46:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498675776826871703002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498675776826871703002","method":"GET"}}},{"id":"5498689371686278103003","submitTimeUtc":"2019-02-11T07:08:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498689371686278103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498689371686278103003","method":"GET"}}},{"id":"5500338731966034504001","submitTimeUtc":"2019-02-13T04:57:53Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500338731966034504001","method":"GET"}}},{"id":"5500340288796036604001","submitTimeUtc":"2019-02-13T05:00:28Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500340288796036604001","method":"GET"}}},{"id":"5500431596766884904002","submitTimeUtc":"2019-02-13T07:32:39Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500431596766884904002","method":"GET"}}},{"id":"5500437054766214104001","submitTimeUtc":"2019-02-13T07:41:45Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500437054766214104001","method":"GET"}}},{"id":"5501219025486844803004","submitTimeUtc":"2019-02-14T05:25:02Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501219025486844803004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501219025486844803004","method":"GET"}}},{"id":"5501289951276934603004","submitTimeUtc":"2019-02-14T07:23:15Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501289951276934603004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501289951276934603004","method":"GET"}}},{"id":"5501373458936421203003","submitTimeUtc":"2019-02-14T09:42:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501373458936421203003","method":"GET"}}},{"id":"5501376636716307403002","submitTimeUtc":"2019-02-14T09:47:43Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501376636716307403002","method":"GET"}}},{"id":"5510721117946649203006","submitTimeUtc":"2019-02-25T05:21:51Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510721117946649203006","method":"GET"}}},{"id":"5510721851706959203004","submitTimeUtc":"2019-02-25T05:23:05Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510721851706959203004","method":"GET"}}},{"id":"5510723131456972003004","submitTimeUtc":"2019-02-25T05:25:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510723131456972003004","method":"GET"}}},{"id":"5510723667506096803002","submitTimeUtc":"2019-02-25T05:26:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510723667506096803002","method":"GET"}}},{"id":"5510753094246858203006","submitTimeUtc":"2019-02-25T06:15:09Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5510753094246858203006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510753094246858203006","method":"GET"}}}]}} +2019-02-25 11:45:20.582 [main] INFO - Response Code: 201 +2019-02-25 11:45:20.582 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_7783b816-5a4e-43d8-9cc2-e785ecfd4e93 +X-OPNET-Transaction-Trace: a2_93354253-b40f-4008-bffa-66975d3fc37f +Cache-Control: no-cache, no-transform +ETag: "1327792524" +Expires: Mon, 25 Feb 2019 06:15:20 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 25 Feb 2019 06:15:20 GMT +X-Cnection: close +v-c-correlation-id: 3ad46174-19e2-424c-be38-053e83ec9f1b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075318798 +OkHttp-Received-Millis: 1551075320563 + +2019-02-25 11:45:20.582 [main] INFO - ********* END *********: +2019-02-25 11:45:20.657 [main] INFO - ********* START ********* +2019-02-25 11:45:20.657 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:20.657 [main] INFO - Request Type: POST +2019-02-25 11:45:20.657 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-25 11:45:20.657 [main] INFO - Digest: SHA-256=MvPxo/GwSzPCnxUumNRkM4jYV4dEdR0iQ6mljgTLqrs= +2019-02-25 11:45:20.657 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:20.657 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:20.657 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:20.657 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="onHaij1nN+jjGpdeEJ0yTgmhSbjs3HUWBfw8aphpg8M=" +2019-02-25 11:45:20.657 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:20.892 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientRefeInfo.code:52465","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-25 11:45:20.892 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches"}},"invalidFields":{"name":"query","reasonMessage":"unsupported field"},"message":"Incorrectly formatted query string","messageKey":"INCORRECT_QUERY_STRING","missingFields":null} +2019-02-25 11:45:20.892 [main] INFO - Response Code: 400 +2019-02-25 11:45:20.892 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_6064ccb6-3692-45ff-b19e-cc354556ef5f +Cache-Control: no-cache, no-transform +ETag: "-652493791" +Expires: Mon, 25 Feb 2019 06:15:20 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 25 Feb 2019 06:15:20 GMT +X-Cnection: close +v-c-correlation-id: fcd9c1f2-e622-4b6b-bea7-c6ce2e7adc1a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075320673 +OkHttp-Received-Millis: 1551075320892 + +2019-02-25 11:45:20.892 [main] INFO - ********* END *********: +2019-02-25 11:45:20.915 [main] INFO - ********* START ********* +2019-02-25 11:45:20.915 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:20.915 [main] INFO - Request Type: GET +2019-02-25 11:45:20.915 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/cf031711-465f-42cc-8275-2308f5ca0459, requestType=GET} +2019-02-25 11:45:20.915 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:20.915 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:20.915 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:20.915 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="L0MgNKfm4udfd6/m5cXKMBGa4KF7cx3eFIPRp3R26tI=" +2019-02-25 11:45:20.915 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:23.743 [main] INFO - Request Body: null +2019-02-25 11:45:23.743 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/cf031711-465f-42cc-8275-2308f5ca0459","method":"GET"}},"searchId":"cf031711-465f-42cc-8275-2308f5ca0459","save":false,"name":"TSS search","query":"clientReferenceInformation.code:12345","count":63,"totalCount":63,"limit":100,"offset":0,"sort":"id:asc, submitTimeUtc:asc","timezone":"America/Chicago","submitTimeUtc":"2019-02-21T05:00:14Z","_embedded":{"transactionSummaries":[{"id":"5468475396886870703005","submitTimeUtc":"2019-01-07T07:52:19Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468475396886870703005","method":"GET"}}},{"id":"5468478041966220703004","submitTimeUtc":"2019-01-07T07:56:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468478041966220703004","method":"GET"}}},{"id":"5468480179436393003006","submitTimeUtc":"2019-01-07T08:00:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480179436393003006","method":"GET"}}},{"id":"5468480690446811803002","submitTimeUtc":"2019-01-07T08:01:09Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480690446811803002","method":"GET"}}},{"id":"5468485285666814803002","submitTimeUtc":"2019-01-07T08:08:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485285666814803002","method":"GET"}}},{"id":"5468485710916881003005","submitTimeUtc":"2019-01-07T08:09:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485710916881003005","method":"GET"}}},{"id":"5469521708616037903005","submitTimeUtc":"2019-01-08T12:56:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469521708616037903005","method":"GET"}}},{"id":"5469522883506039403005","submitTimeUtc":"2019-01-08T12:58:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469522883506039403005","method":"GET"}}},{"id":"5469524080436600903006","submitTimeUtc":"2019-01-08T13:00:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524080436600903006","method":"GET"}}},{"id":"5469524351696601103006","submitTimeUtc":"2019-01-08T13:00:35Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524351696601103006","method":"GET"}}},{"id":"5469525663736980803002","submitTimeUtc":"2019-01-08T13:02:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469525663736980803002","method":"GET"}}},{"id":"5469529727066047603005","submitTimeUtc":"2019-01-08T13:09:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469529727066047603005","method":"GET"}}},{"id":"5469535101246615503006","submitTimeUtc":"2019-01-08T13:18:30Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469535101246615503006","method":"GET"}}},{"id":"5469588461766085503005","submitTimeUtc":"2019-01-08T14:47:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469588461766085503005","method":"GET"}}},{"id":"5469589378676352103001","submitTimeUtc":"2019-01-08T14:48:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589378676352103001","method":"GET"}}},{"id":"5469589534636352203001","submitTimeUtc":"2019-01-08T14:49:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589534636352203001","method":"GET"}}},{"id":"5470167162946434803001","submitTimeUtc":"2019-01-09T06:51:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5470167162946434803001","method":"GET"}}},{"id":"5471404274096790203002","submitTimeUtc":"2019-01-10T17:13:47Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5471404274096790203002","method":"GET"}}},{"id":"5475240476326666304005","submitTimeUtc":"2019-01-15T03:47:27Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240476326666304005","method":"GET"}}},{"id":"5475240647986666504005","submitTimeUtc":"2019-01-15T03:47:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240647986666504005","method":"GET"}}},{"id":"5475240694246602504002","submitTimeUtc":"2019-01-15T03:47:49Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240694246602504002","method":"GET"}}},{"id":"5480449281766424303002","submitTimeUtc":"2019-01-21T04:28:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5480449281766424303002","method":"GET"}}},{"id":"5484294159526049603003","submitTimeUtc":"2019-01-25T15:16:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5484294159526049603003","method":"GET"}}},{"id":"5486140097596056803002","submitTimeUtc":"2019-01-27T18:33:29Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486140097596056803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486140097596056803002","method":"GET"}}},{"id":"5486143740386376403005","submitTimeUtc":"2019-01-27T18:39:34Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486143740386376403005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486143740386376403005","method":"GET"}}},{"id":"5486146109726057203002","submitTimeUtc":"2019-01-27T18:43:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486146109726057203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486146109726057203002","method":"GET"}}},{"id":"5486149568856057803002","submitTimeUtc":"2019-01-27T18:49:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486149568856057803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486149568856057803002","method":"GET"}}},{"id":"5486150058926377303005","submitTimeUtc":"2019-01-27T18:50:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150058926377303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150058926377303005","method":"GET"}}},{"id":"5486150718046057903002","submitTimeUtc":"2019-01-27T18:51:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150718046057903002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150718046057903002","method":"GET"}}},{"id":"5486151464616710103006","submitTimeUtc":"2019-01-27T18:52:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486151464616710103006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486151464616710103006","method":"GET"}}},{"id":"5486152183786377503005","submitTimeUtc":"2019-01-27T18:53:38Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486152183786377503005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486152183786377503005","method":"GET"}}},{"id":"5486154059186996103003","submitTimeUtc":"2019-01-27T18:56:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486154059186996103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486154059186996103003","method":"GET"}}},{"id":"5486156635686378003005","submitTimeUtc":"2019-01-27T19:01:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486156635686378003005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486156635686378003005","method":"GET"}}},{"id":"5486157519836378103005","submitTimeUtc":"2019-01-27T19:02:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486157519836378103005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486157519836378103005","method":"GET"}}},{"id":"5486159910726712503006","submitTimeUtc":"2019-01-27T19:06:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486159910726712503006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486159910726712503006","method":"GET"}}},{"id":"5486160598666060203002","submitTimeUtc":"2019-01-27T19:07:40Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486160598666060203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486160598666060203002","method":"GET"}}},{"id":"5488539943826733503004","submitTimeUtc":"2019-01-30T13:13:14Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5488539943826733503004","method":"GET"}}},{"id":"5492626323766108104003","submitTimeUtc":"2019-02-04T06:43:52Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5492626323766108104003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5492626323766108104003","method":"GET"}}},{"id":"5493718508496900303005","submitTimeUtc":"2019-02-05T13:04:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718508496900303005","method":"GET"}}},{"id":"5493718987966748103006","submitTimeUtc":"2019-02-05T13:04:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718987966748103006","method":"GET"}}},{"id":"5495325909106773503001","submitTimeUtc":"2019-02-07T09:43:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495325909106773503001"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495325909106773503001","method":"GET"}}},{"id":"5495326432436411603006","submitTimeUtc":"2019-02-07T09:44:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495326432436411603006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495326432436411603006","method":"GET"}}},{"id":"5495345378096803303002","submitTimeUtc":"2019-02-07T10:15:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495345378096803303002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495345378096803303002","method":"GET"}}},{"id":"5495351977316834703003","submitTimeUtc":"2019-02-07T10:26:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495351977316834703003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495351977316834703003","method":"GET"}}},{"id":"5495352459166850703004","submitTimeUtc":"2019-02-07T10:27:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495352459166850703004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495352459166850703004","method":"GET"}}},{"id":"5495353943786840303005","submitTimeUtc":"2019-02-07T10:29:54Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495353943786840303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495353943786840303005","method":"GET"}}},{"id":"5495375735936863103004","submitTimeUtc":"2019-02-07T11:06:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495375735936863103004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495375735936863103004","method":"GET"}}},{"id":"5496424976256414603001","submitTimeUtc":"2019-02-08T16:14:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5496424976256414603001","method":"GET"}}},{"id":"5498675776826871703002","submitTimeUtc":"2019-02-11T06:46:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498675776826871703002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498675776826871703002","method":"GET"}}},{"id":"5498689371686278103003","submitTimeUtc":"2019-02-11T07:08:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498689371686278103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498689371686278103003","method":"GET"}}},{"id":"5500338731966034504001","submitTimeUtc":"2019-02-13T04:57:53Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500338731966034504001","method":"GET"}}},{"id":"5500340288796036604001","submitTimeUtc":"2019-02-13T05:00:28Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500340288796036604001","method":"GET"}}},{"id":"5500431596766884904002","submitTimeUtc":"2019-02-13T07:32:39Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500431596766884904002","method":"GET"}}},{"id":"5500437054766214104001","submitTimeUtc":"2019-02-13T07:41:45Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500437054766214104001","method":"GET"}}},{"id":"5501219025486844803004","submitTimeUtc":"2019-02-14T05:25:02Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501219025486844803004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501219025486844803004","method":"GET"}}},{"id":"5501289951276934603004","submitTimeUtc":"2019-02-14T07:23:15Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501289951276934603004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501289951276934603004","method":"GET"}}},{"id":"5501373458936421203003","submitTimeUtc":"2019-02-14T09:42:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501373458936421203003","method":"GET"}}},{"id":"5501376636716307403002","submitTimeUtc":"2019-02-14T09:47:43Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501376636716307403002","method":"GET"}}},{"id":"5510721117946649203006","submitTimeUtc":"2019-02-25T05:21:51Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510721117946649203006","method":"GET"}}},{"id":"5510721851706959203004","submitTimeUtc":"2019-02-25T05:23:05Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510721851706959203004","method":"GET"}}},{"id":"5510723131456972003004","submitTimeUtc":"2019-02-25T05:25:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510723131456972003004","method":"GET"}}},{"id":"5510723667506096803002","submitTimeUtc":"2019-02-25T05:26:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510723667506096803002","method":"GET"}}},{"id":"5510753094246858203006","submitTimeUtc":"2019-02-25T06:15:09Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5510753094246858203006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510753094246858203006","method":"GET"}}}]}} +2019-02-25 11:45:23.743 [main] INFO - Response Code: 200 +2019-02-25 11:45:23.743 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_f3ed15a5-88a3-411a-9487-81ef24caf935 +Cache-Control: no-cache, no-transform +ETag: "1093470515" +Expires: Mon, 25 Feb 2019 06:15:23 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 25 Feb 2019 06:15:23 GMT +X-Cnection: close +v-c-correlation-id: 442d73d3-7cfc-47b6-acff-dbac9912e9c4 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075320931 +OkHttp-Received-Millis: 1551075323728 + +2019-02-25 11:45:23.743 [main] INFO - ********* END *********: +2019-02-25 11:45:23.775 [main] INFO - ********* START ********* +2019-02-25 11:45:23.775 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:23.775 [main] INFO - Request Type: GET +2019-02-25 11:45:23.775 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc, requestType=GET} +2019-02-25 11:45:23.775 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:23.775 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:23.775 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:23.775 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="g2+icgsA8M+6UtfBLRXV9X7VSlbljKw/dtVLj1FlvT8=" +2019-02-25 11:45:23.775 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:23.978 [main] INFO - Request Body: null +2019-02-25 11:45:23.978 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc"}},"invalidFields":null,"message":"search Id not fount.","messageKey":null,"missingFields":null} +2019-02-25 11:45:23.978 [main] INFO - Response Code: 400 +2019-02-25 11:45:23.978 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d168ad8c-8eed-436f-9071-e10b7fee4c03 +X-OPNET-Transaction-Trace: a2_3d7ab8fb-0e00-461d-8610-ae6ea6e93c96 +Cache-Control: no-cache, no-transform +ETag: "-1662750822" +Expires: Mon, 25 Feb 2019 06:15:23 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 25 Feb 2019 06:15:23 GMT +X-Cnection: close +v-c-correlation-id: f7da7e04-e204-4926-86e1-814dab98eb6b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075323775 +OkHttp-Received-Millis: 1551075323978 + +2019-02-25 11:45:23.978 [main] INFO - ********* END *********: +2019-02-25 11:45:24.009 [main] INFO - ********* START ********* +2019-02-25 11:45:24.009 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:24.025 [main] INFO - Request Type: GET +2019-02-25 11:45:24.025 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-25 11:45:24.025 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:24.025 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:24.025 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:24.025 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ZFSyyigu8uXpFljQ+2Ez2rLMg1F2bNkp2ZZPLFzvFOQ=" +2019-02-25 11:45:24.025 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:24.291 [main] INFO - Request Body: null +2019-02-25 11:45:24.291 [main] INFO - Response Message: {"users":[{"accountInformation":{"userName":"testrest","roleId":"admin","permissions":["CustomerProfileViewPermission","CustomerProfileDeletePermission","CustomerProfileManagementPermission","CustomerProfileTransactionPermission","SubscriptionViewPermission","SubscriptionDeletePermission","SubscriptionManagementPermission","SubscriptionTransactionPermission","VirtualTerminalSettingsViewPermission","VirtualTerminalSettingsManagementPermission","VirtualTerminalTransactionPermission","PaymentVerificationPermission","PaymentDebitPermission","PaymentCreditPermission","PaymentStandAloneCreditPermission","PaymentServiceFeeRefundPermission","PaymentCancellationPermission","ReportSettingsViewPermission","ReportSettingsManagementPermission","ReportViewPermission","ReportDownloadPermission","ELCViewPermission","ELCReturnPermission","ELCResetPermission","DMConfigurationManagementPermission","DMProfileManagementPermission","DMProfileViewPermission","DMListManagementPermission","DMListViewPermission","DMVelocityManagementPermission","DMVelocityViewPermission","DMQueueSettingsManagementPermission","DMQueueSettingsViewPermission","DMReplayRequestManagementPermission","DMReplayRequestViewPermission","CMQueueSearchPermission","CMConvertOrderPermission","CMQueueAssignmentPermission","CMReleaseOwnershipPermission","CMReviewAnyOrderPermission","CMCaseAssignmentPermission","CMPriorityChangePermission","CMMoveOrdersToOtherQueuePermission","CMThirdPartyConfigurationPermission","CMPerformanceStatisticsReviewPermission","CMTimeLimitResetPermission","CMUnrestrictedOrderManagementPermission","CMConvertRejectedOrdersPermission","CMStealOwnershipPermission","CMCaseSLAExemptionPermission","CMThirdPartyRequestsPermission","UserViewPermission","UserUpdatePermission","UserManagementPermission","BankingInformationManagementPermission","MerchantInformationManagementPermission","APIKeyManagementPermission","MessageCenterViewPermission","HOPScriptManagementPermission","HOPSettingsViewPermission","HOPSettingsManagementPermission","HPASecurityManagementPermission","HPASettingsViewPermission","HPASettingsManagementPermission","HPATransactionSearchPermission","TransactionViewPermission","MarkAsTrustedPermission","MarkAsTemporarilyTrustedPermission","MarkAsSuspectPermission","MarkForReviewPermission","RemoveFromHistoryPermission","AccountNumberViewPermission","BatchUploadPermission","ReauthorizePermission","ReauthorizeSettlePermission","NewOrderFromAuthPermission","FullAuthorizationReversalPermission","AUStatusPermission","AUPgpUploadPermission","CbkMgmtAssignChargebackPermission","CbkMgmtViewChargebackPermission","CbkMgmtAcceptAndRebuttalChargebackPermission","CbkMgmtTakeOwnershipPermission","AuditSearchPermission","TransactionSearchExportPermission","CbkMgmtReturnChargebackToQueuePermission","BeneficiaryDetailsViewPermission","BeneficiaryDetailsUpdatePermission","IpConfigurationPermission","SecureFileDownloadPermission","SecureFileUploadPermission","ServiceFeeSettingsViewPermission","ServiceFeeSettingsManagementPermission","MposDeviceManagementPermission","MposDeviceAccessPermission","MposDeviceTIDManagementPermission","PayoutsVirtualTerminalPermission","PayoutsVirtualTerminalSettingsViewPermission","PayoutsVirtualTerminalSettingsManagementPermission","TerminalManagementPermission","ProcessorSettingsPermission","PortfolioRiskControlsViewPermission","PortfolioRiskControlsManagementPermission","MerchantRiskControlsViewPermission","MerchantRiskControlsManagementPermission","KeysManagementPermission","KeysViewPermission","DigitalPaymentsViewPermission","DigitalPaymentsManagementPermission","PayerAuthConfigurationViewPermission","PayerAuthConfigurationManagementPermission","SmartAuthSettingsViewPermission","SmartAuthSettingsManagementPermission","GroupsViewPermission","GroupsManagementPermission","IpSettingsViewPermission","IpSettingsManagementPermission","MerchantBoardingViewPermission","MerchantBoardingManagementPermission","TokenDashboardViewPermission","TokenDashboardManagementPermission","TerminalListViewPermission","MposDeviceViewPermission","ReaderStatusPanelViewPermission","ReaderStatusPanelManagementPermission"],"status":"active","createdTime":"2017-11-17T22:38:06.000Z","lastAccessTime":"2019-02-25T06:00:11.000Z","languagePreference":"","timezone":""},"organizationInformation":{"organizationId":"testrest"},"contactInformation":{"email":"glondhe@visa.com","phoneNumber":"","firstName":"gaurav","lastName":"londhe"},"customFields":{}}]} +2019-02-25 11:45:24.291 [main] INFO - Response Code: 200 +2019-02-25 11:45:24.291 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_47f6d6ad-b7aa-4dbf-8c98-efc8a121cc1d +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:24 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4b992db2-ba6e-4ba2-a3fd-610eb49bffe0 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075324025 +OkHttp-Received-Millis: 1551075324291 + +2019-02-25 11:45:24.291 [main] INFO - ********* END *********: +2019-02-25 11:45:24.322 [main] INFO - ********* START ********* +2019-02-25 11:45:24.322 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:24.322 [main] INFO - Request Type: GET +2019-02-25 11:45:24.322 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testre&roleId=admin, requestType=GET} +2019-02-25 11:45:24.322 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:24.322 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:24.322 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:24.322 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="oAz5g6GzLb/scnDeqQ1zOI+/cozza7clH2QDkzymG/8=" +2019-02-25 11:45:24.322 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:24.556 [main] INFO - Request Body: null +2019-02-25 11:45:24.556 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-25 11:45:24.556 [main] INFO - Response Code: 401 +2019-02-25 11:45:24.556 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_7d51a150-ec25-4112-834c-1276b82d8250 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:24 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c98d12c8-a0ca-476b-b1e6-e3fee88818ce +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075324322 +OkHttp-Received-Millis: 1551075324556 + +2019-02-25 11:45:24.556 [main] INFO - ********* END *********: +2019-02-25 11:45:24.588 [main] INFO - ********* START ********* +2019-02-25 11:45:24.588 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:24.588 [main] INFO - Request Type: GET +2019-02-25 11:45:24.604 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest, requestType=GET} +2019-02-25 11:45:24.604 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:24.604 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:24.604 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:24.604 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="fi8h//Lmk9umD2dKXKiND+dXfBVt6s38XyZEafp9IfM=" +2019-02-25 11:45:24.604 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:29.213 [main] INFO - Request Body: null +2019-02-25 11:45:29.213 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest","method":"GET"},"files":[{"fileId":"RGVtb19SZXBvcnQtNzg1NWQxM2YtOTM5Ny01MTEzLWUwNTMtYTI1ODhlMGE3MTkyLnhtbC0yMDE4LTEwLTIw","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzg1NWQxM2YtOTM5Ny01MTEzLWUwNTMtYTI1ODhlMGE3MTkyLnhtbC0yMDE4LTEwLTIw","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMA==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMA==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4NTZhMzQ5LTZmMjQtNTEwZi1lMDUzLWEyNTg4ZTBhZWQxYi5jc3YtMjAxOC0xMC0yMQ==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4NTZhMzQ5LTZmMjQtNTEwZi1lMDUzLWEyNTg4ZTBhZWQxYi5jc3YtMjAxOC0xMC0yMQ==","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzg1NmEzNDktNmYyMy01MTBmLWUwNTMtYTI1ODhlMGFlZDFiLnhtbC0yMDE4LTEwLTIx","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzg1NmEzNDktNmYyMy01MTBmLWUwNTMtYTI1ODhlMGFlZDFiLnhtbC0yMDE4LTEwLTIx","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMQ==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMQ==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4Y2MwNWI2LWRjYTAtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yMg==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4Y2MwNWI2LWRjYTAtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yMg==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzhjYzA1YjYtZGM5Zi01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTIy","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzhjYzA1YjYtZGM5Zi01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTIy","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMg==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMg==","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4N2FiNjRlLTA0ODEtNTEzNS1lMDUzLWEyNTg4ZTBhMDExMC5jc3YtMjAxOC0xMC0yMw==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4N2FiNjRlLTA0ODEtNTEzNS1lMDUzLWEyNTg4ZTBhMDExMC5jc3YtMjAxOC0xMC0yMw==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzg3YWI2NGUtMDQ4MC01MTM1LWUwNTMtYTI1ODhlMGEwMTEwLnhtbC0yMDE4LTEwLTIz","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzg3YWI2NGUtMDQ4MC01MTM1LWUwNTMtYTI1ODhlMGEwMTEwLnhtbC0yMDE4LTEwLTIz","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMw==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMw==","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzhjYzA1YjYtZGVmZS01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTI0","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzhjYzA1YjYtZGVmZS01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTI0","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4Y2MwNWI2LWRlZmYtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yNA==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4Y2MwNWI2LWRlZmYtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yNA==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNA==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNA==","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkwOGJiYjQtMmQ2MS01OGQxLWUwNTMtYTI1ODhlMGFlOTJiLnhtbC0yMDE4LTEwLTI1","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkwOGJiYjQtMmQ2MS01OGQxLWUwNTMtYTI1ODhlMGFlOTJiLnhtbC0yMDE4LTEwLTI1","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc5MDhiYmI0LTJkNjItNThkMS1lMDUzLWEyNTg4ZTBhZTkyYi5jc3YtMjAxOC0xMC0yNQ==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc5MDhiYmI0LTJkNjItNThkMS1lMDUzLWEyNTg4ZTBhZTkyYi5jc3YtMjAxOC0xMC0yNQ==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNQ==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNQ==","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc5MWRjMGJlLWRkMmEtNzIwYS1lMDUzLWEyNTg4ZTBhZGQ3Yi5jc3YtMjAxOC0xMC0yNg==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc5MWRjMGJlLWRkMmEtNzIwYS1lMDUzLWEyNTg4ZTBhZGQ3Yi5jc3YtMjAxOC0xMC0yNg==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkxZGMwYmUtZGQyOS03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI2","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkxZGMwYmUtZGQyOS03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI2","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNg==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNg==","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc5MzFkODJkLWNmNGEtNzFmYS1lMDUzLWEyNTg4ZTBhYjI3YS5jc3YtMjAxOC0xMC0yNw==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc5MzFkODJkLWNmNGEtNzFmYS1lMDUzLWEyNTg4ZTBhYjI3YS5jc3YtMjAxOC0xMC0yNw==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkzMWQ4MmQtY2Y0OS03MWZhLWUwNTMtYTI1ODhlMGFiMjdhLnhtbC0yMDE4LTEwLTI3","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkzMWQ4MmQtY2Y0OS03MWZhLWUwNTMtYTI1ODhlMGFiMjdhLnhtbC0yMDE4LTEwLTI3","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNw==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNw==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkzMzdjYmItY2YyMi03MjAyLWUwNTMtYTI1ODhlMGFhYzA5LnhtbC0yMDE4LTEwLTI4","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkzMzdjYmItY2YyMi03MjAyLWUwNTMtYTI1ODhlMGFhYzA5LnhtbC0yMDE4LTEwLTI4","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc5MzM3Y2JiLWNmMjMtNzIwMi1lMDUzLWEyNTg4ZTBhYWMwOS5jc3YtMjAxOC0xMC0yOA==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc5MzM3Y2JiLWNmMjMtNzIwMi1lMDUzLWEyNTg4ZTBhYWMwOS5jc3YtMjAxOC0xMC0yOA==","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOA==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOA==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","method":"GET"},{"fileId":"dGVzdHJlc3QuT3djeWs2cGwucmVwbHkuYWxsLmNzdi0yMDE4LTEwLTI5","href":"https://apitest.cybersource.com/sfs/v1/files/dGVzdHJlc3QuT3djeWs2cGwucmVwbHkuYWxsLmNzdi0yMDE4LTEwLTI5","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkxZGMwYmYtYTUxMy03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI5","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkxZGMwYmYtYTUxMy03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI5","method":"GET"},{"fileId":"dGVzdHJlc3QuT3djeWs2cGwucmVwbHkucmVqZWN0ZWQuY3N2LTIwMTgtMTAtMjk=","href":"https://apitest.cybersource.com/sfs/v1/files/dGVzdHJlc3QuT3djeWs2cGwucmVwbHkucmVqZWN0ZWQuY3N2LTIwMTgtMTAtMjk=","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOQ==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOQ==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0zMA==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0zMA==","method":"GET"}]},"fileDetails":[{"fileId":"RGVtb19SZXBvcnQtNzg1NWQxM2YtOTM5Ny01MTEzLWUwNTMtYTI1ODhlMGE3MTkyLnhtbC0yMDE4LTEwLTIw","name":"Demo_Report-7855d13f-9397-5113-e053-a2588e0a7192.xml","createdTime":"2018-10-20T17:31:36Z","lastModifiedTime":"2018-10-20T17:31:36Z","date":"2018-10-20","mimeType":"application/xml","size":3248},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-21T08:54:56Z","lastModifiedTime":"2018-10-21T08:54:56Z","date":"2018-10-20","mimeType":"text/csv","size":636},{"fileId":"VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA==","name":"TRRReport-7855d13f-9398-5113-e053-a2588e0a7192.csv","createdTime":"2018-10-20T17:31:36Z","lastModifiedTime":"2018-10-20T17:31:36Z","date":"2018-10-20","mimeType":"text/csv","size":1696},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","name":"TransactionDetailReport.csv","createdTime":"2018-10-21T09:06:01Z","lastModifiedTime":"2018-10-21T09:06:01Z","date":"2018-10-20","mimeType":"text/csv","size":2149},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-21T10:39:46Z","lastModifiedTime":"2018-10-21T10:39:46Z","date":"2018-10-20","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMA==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-21T10:56:31Z","lastModifiedTime":"2018-10-21T10:56:31Z","date":"2018-10-20","mimeType":"text/csv","size":184},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","name":"TransactionDetailReport.csv","createdTime":"2018-10-22T09:08:33Z","lastModifiedTime":"2018-10-22T09:08:33Z","date":"2018-10-21","mimeType":"text/csv","size":2149},{"fileId":"VFJSUmVwb3J0LTc4NTZhMzQ5LTZmMjQtNTEwZi1lMDUzLWEyNTg4ZTBhZWQxYi5jc3YtMjAxOC0xMC0yMQ==","name":"TRRReport-7856a349-6f24-510f-e053-a2588e0aed1b.csv","createdTime":"2018-10-21T17:30:41Z","lastModifiedTime":"2018-10-21T17:30:41Z","date":"2018-10-21","mimeType":"text/csv","size":153},{"fileId":"RGVtb19SZXBvcnQtNzg1NmEzNDktNmYyMy01MTBmLWUwNTMtYTI1ODhlMGFlZDFiLnhtbC0yMDE4LTEwLTIx","name":"Demo_Report-7856a349-6f23-510f-e053-a2588e0aed1b.xml","createdTime":"2018-10-21T17:30:41Z","lastModifiedTime":"2018-10-21T17:30:41Z","date":"2018-10-21","mimeType":"application/xml","size":461},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-22T08:53:03Z","lastModifiedTime":"2018-10-22T08:53:03Z","date":"2018-10-21","mimeType":"text/csv","size":213},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMQ==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-22T10:55:08Z","lastModifiedTime":"2018-10-22T10:55:08Z","date":"2018-10-21","mimeType":"text/csv","size":184},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-22T10:38:53Z","lastModifiedTime":"2018-10-22T10:38:53Z","date":"2018-10-21","mimeType":"text/csv","size":781},{"fileId":"VFJSUmVwb3J0LTc4Y2MwNWI2LWRjYTAtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yMg==","name":"TRRReport-78cc05b6-dca0-5102-e053-a2588e0a3aa9.csv","createdTime":"2018-10-22T17:33:46Z","lastModifiedTime":"2018-10-22T17:33:46Z","date":"2018-10-22","mimeType":"text/csv","size":20255},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-23T09:06:11Z","lastModifiedTime":"2018-10-23T09:06:11Z","date":"2018-10-22","mimeType":"text/csv","size":4208},{"fileId":"RGVtb19SZXBvcnQtNzhjYzA1YjYtZGM5Zi01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTIy","name":"Demo_Report-78cc05b6-dc9f-5102-e053-a2588e0a3aa9.xml","createdTime":"2018-10-22T17:33:46Z","lastModifiedTime":"2018-10-22T17:33:46Z","date":"2018-10-22","mimeType":"application/xml","size":35844},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","name":"TransactionDetailReport.csv","createdTime":"2018-10-23T09:32:46Z","lastModifiedTime":"2018-10-23T09:32:46Z","date":"2018-10-22","mimeType":"text/csv","size":221387},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-23T10:56:26Z","lastModifiedTime":"2018-10-23T10:56:26Z","date":"2018-10-22","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMg==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-23T11:13:16Z","lastModifiedTime":"2018-10-23T11:13:16Z","date":"2018-10-22","mimeType":"text/csv","size":184},{"fileId":"VFJSUmVwb3J0LTc4N2FiNjRlLTA0ODEtNTEzNS1lMDUzLWEyNTg4ZTBhMDExMC5jc3YtMjAxOC0xMC0yMw==","name":"TRRReport-787ab64e-0481-5135-e053-a2588e0a0110.csv","createdTime":"2018-10-23T17:32:01Z","lastModifiedTime":"2018-10-23T17:32:01Z","date":"2018-10-23","mimeType":"text/csv","size":72824},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-24T09:03:32Z","lastModifiedTime":"2018-10-24T09:03:32Z","date":"2018-10-23","mimeType":"text/csv","size":18379},{"fileId":"RGVtb19SZXBvcnQtNzg3YWI2NGUtMDQ4MC01MTM1LWUwNTMtYTI1ODhlMGEwMTEwLnhtbC0yMDE4LTEwLTIz","name":"Demo_Report-787ab64e-0480-5135-e053-a2588e0a0110.xml","createdTime":"2018-10-23T17:32:01Z","lastModifiedTime":"2018-10-23T17:32:01Z","date":"2018-10-23","mimeType":"application/xml","size":129108},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","name":"TransactionDetailReport.csv","createdTime":"2018-10-24T09:23:42Z","lastModifiedTime":"2018-10-24T09:23:42Z","date":"2018-10-23","mimeType":"text/csv","size":262829},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-24T10:47:33Z","lastModifiedTime":"2018-10-24T10:47:33Z","date":"2018-10-23","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMw==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-24T11:03:18Z","lastModifiedTime":"2018-10-24T11:03:18Z","date":"2018-10-23","mimeType":"text/csv","size":184},{"fileId":"RGVtb19SZXBvcnQtNzhjYzA1YjYtZGVmZS01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTI0","name":"Demo_Report-78cc05b6-defe-5102-e053-a2588e0a3aa9.xml","createdTime":"2018-10-24T17:34:39Z","lastModifiedTime":"2018-10-24T17:34:39Z","date":"2018-10-24","mimeType":"application/xml","size":86420},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-25T08:56:09Z","lastModifiedTime":"2018-10-25T08:56:09Z","date":"2018-10-24","mimeType":"text/csv","size":9411},{"fileId":"VFJSUmVwb3J0LTc4Y2MwNWI2LWRlZmYtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yNA==","name":"TRRReport-78cc05b6-deff-5102-e053-a2588e0a3aa9.csv","createdTime":"2018-10-24T17:34:44Z","lastModifiedTime":"2018-10-24T17:34:44Z","date":"2018-10-24","mimeType":"text/csv","size":48913},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","name":"TransactionDetailReport.csv","createdTime":"2018-10-25T09:18:24Z","lastModifiedTime":"2018-10-25T09:18:24Z","date":"2018-10-24","mimeType":"text/csv","size":244813},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-25T10:38:34Z","lastModifiedTime":"2018-10-25T10:38:34Z","date":"2018-10-24","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNA==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-25T10:53:49Z","lastModifiedTime":"2018-10-25T10:53:49Z","date":"2018-10-24","mimeType":"text/csv","size":184},{"fileId":"RGVtb19SZXBvcnQtNzkwOGJiYjQtMmQ2MS01OGQxLWUwNTMtYTI1ODhlMGFlOTJiLnhtbC0yMDE4LTEwLTI1","name":"Demo_Report-7908bbb4-2d61-58d1-e053-a2588e0ae92b.xml","createdTime":"2018-10-25T17:35:14Z","lastModifiedTime":"2018-10-25T17:35:14Z","date":"2018-10-25","mimeType":"application/xml","size":63336},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-26T09:01:48Z","lastModifiedTime":"2018-10-26T09:01:48Z","date":"2018-10-25","mimeType":"text/csv","size":21068},{"fileId":"VFJSUmVwb3J0LTc5MDhiYmI0LTJkNjItNThkMS1lMDUzLWEyNTg4ZTBhZTkyYi5jc3YtMjAxOC0xMC0yNQ==","name":"TRRReport-7908bbb4-2d62-58d1-e053-a2588e0ae92b.csv","createdTime":"2018-10-25T17:35:14Z","lastModifiedTime":"2018-10-25T17:35:14Z","date":"2018-10-25","mimeType":"text/csv","size":37260},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","name":"TransactionDetailReport.csv","createdTime":"2018-10-26T09:17:38Z","lastModifiedTime":"2018-10-26T09:17:38Z","date":"2018-10-25","mimeType":"text/csv","size":196149},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-26T10:45:53Z","lastModifiedTime":"2018-10-26T10:45:53Z","date":"2018-10-25","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNQ==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-26T11:01:28Z","lastModifiedTime":"2018-10-26T11:01:28Z","date":"2018-10-25","mimeType":"text/csv","size":184},{"fileId":"VFJSUmVwb3J0LTc5MWRjMGJlLWRkMmEtNzIwYS1lMDUzLWEyNTg4ZTBhZGQ3Yi5jc3YtMjAxOC0xMC0yNg==","name":"TRRReport-791dc0be-dd2a-720a-e053-a2588e0add7b.csv","createdTime":"2018-10-26T17:31:54Z","lastModifiedTime":"2018-10-26T17:31:54Z","date":"2018-10-26","mimeType":"text/csv","size":21634},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-27T09:09:59Z","lastModifiedTime":"2018-10-27T09:09:59Z","date":"2018-10-26","mimeType":"text/csv","size":25586},{"fileId":"RGVtb19SZXBvcnQtNzkxZGMwYmUtZGQyOS03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI2","name":"Demo_Report-791dc0be-dd29-720a-e053-a2588e0add7b.xml","createdTime":"2018-10-26T17:31:54Z","lastModifiedTime":"2018-10-26T17:31:54Z","date":"2018-10-26","mimeType":"application/xml","size":37584},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","name":"TransactionDetailReport.csv","createdTime":"2018-10-27T09:19:10Z","lastModifiedTime":"2018-10-27T09:19:10Z","date":"2018-10-26","mimeType":"text/csv","size":144149},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-27T11:08:00Z","lastModifiedTime":"2018-10-27T11:08:00Z","date":"2018-10-26","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNg==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-27T11:26:55Z","lastModifiedTime":"2018-10-27T11:26:55Z","date":"2018-10-26","mimeType":"text/csv","size":184},{"fileId":"VFJSUmVwb3J0LTc5MzFkODJkLWNmNGEtNzFmYS1lMDUzLWEyNTg4ZTBhYjI3YS5jc3YtMjAxOC0xMC0yNw==","name":"TRRReport-7931d82d-cf4a-71fa-e053-a2588e0ab27a.csv","createdTime":"2018-10-27T17:35:11Z","lastModifiedTime":"2018-10-27T17:35:11Z","date":"2018-10-27","mimeType":"text/csv","size":14120},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","name":"TransactionDetailReport.csv","createdTime":"2018-10-28T09:13:03Z","lastModifiedTime":"2018-10-28T09:13:03Z","date":"2018-10-27","mimeType":"text/csv","size":24269},{"fileId":"RGVtb19SZXBvcnQtNzkzMWQ4MmQtY2Y0OS03MWZhLWUwNTMtYTI1ODhlMGFiMjdhLnhtbC0yMDE4LTEwLTI3","name":"Demo_Report-7931d82d-cf49-71fa-e053-a2588e0ab27a.xml","createdTime":"2018-10-27T17:35:11Z","lastModifiedTime":"2018-10-27T17:35:11Z","date":"2018-10-27","mimeType":"application/xml","size":24360},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-28T09:17:18Z","lastModifiedTime":"2018-10-28T09:17:18Z","date":"2018-10-27","mimeType":"text/csv","size":18700},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-28T11:09:43Z","lastModifiedTime":"2018-10-28T11:09:43Z","date":"2018-10-27","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNw==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-28T11:29:43Z","lastModifiedTime":"2018-10-28T11:29:43Z","date":"2018-10-27","mimeType":"text/csv","size":184},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","name":"TransactionDetailReport.csv","createdTime":"2018-10-29T09:11:31Z","lastModifiedTime":"2018-10-29T09:11:31Z","date":"2018-10-28","mimeType":"text/csv","size":5296},{"fileId":"RGVtb19SZXBvcnQtNzkzMzdjYmItY2YyMi03MjAyLWUwNTMtYTI1ODhlMGFhYzA5LnhtbC0yMDE4LTEwLTI4","name":"Demo_Report-79337cbb-cf22-7202-e053-a2588e0aac09.xml","createdTime":"2018-10-28T17:35:19Z","lastModifiedTime":"2018-10-28T17:35:19Z","date":"2018-10-28","mimeType":"application/xml","size":696},{"fileId":"VFJSUmVwb3J0LTc5MzM3Y2JiLWNmMjMtNzIwMi1lMDUzLWEyNTg4ZTBhYWMwOS5jc3YtMjAxOC0xMC0yOA==","name":"TRRReport-79337cbb-cf23-7202-e053-a2588e0aac09.csv","createdTime":"2018-10-28T17:35:24Z","lastModifiedTime":"2018-10-28T17:35:24Z","date":"2018-10-28","mimeType":"text/csv","size":279},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOA==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-29T11:27:31Z","lastModifiedTime":"2018-10-29T11:27:31Z","date":"2018-10-28","mimeType":"text/csv","size":184},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-29T09:11:56Z","lastModifiedTime":"2018-10-29T09:11:56Z","date":"2018-10-28","mimeType":"text/csv","size":1254},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-29T11:07:51Z","lastModifiedTime":"2018-10-29T11:07:51Z","date":"2018-10-28","mimeType":"text/csv","size":781},{"fileId":"dGVzdHJlc3QuT3djeWs2cGwucmVwbHkuYWxsLmNzdi0yMDE4LTEwLTI5","name":"testrest.Owcyk6pl.reply.all.csv","createdTime":"2018-10-29T23:26:48Z","lastModifiedTime":"2018-10-29T23:26:48Z","date":"2018-10-29","mimeType":"text/csv","size":512},{"fileId":"RGVtb19SZXBvcnQtNzkxZGMwYmYtYTUxMy03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI5","name":"Demo_Report-791dc0bf-a513-720a-e053-a2588e0add7b.xml","createdTime":"2018-10-29T17:31:08Z","lastModifiedTime":"2018-10-29T17:31:08Z","date":"2018-10-29","mimeType":"application/xml","size":29116},{"fileId":"dGVzdHJlc3QuT3djeWs2cGwucmVwbHkucmVqZWN0ZWQuY3N2LTIwMTgtMTAtMjk=","name":"testrest.Owcyk6pl.reply.rejected.csv","createdTime":"2018-10-29T23:26:48Z","lastModifiedTime":"2018-10-29T23:26:48Z","date":"2018-10-29","mimeType":"text/csv","size":512},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-30T09:14:14Z","lastModifiedTime":"2018-10-30T09:14:14Z","date":"2018-10-29","mimeType":"text/csv","size":4947},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","name":"TransactionDetailReport.csv","createdTime":"2018-10-30T09:19:49Z","lastModifiedTime":"2018-10-30T09:19:49Z","date":"2018-10-29","mimeType":"text/csv","size":90632},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-30T11:13:24Z","lastModifiedTime":"2018-10-30T11:13:24Z","date":"2018-10-29","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOQ==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-30T11:33:09Z","lastModifiedTime":"2018-10-30T11:33:09Z","date":"2018-10-29","mimeType":"text/csv","size":184},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-31T09:14:12Z","lastModifiedTime":"2018-10-31T09:14:12Z","date":"2018-10-30","mimeType":"text/csv","size":11967},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","name":"TransactionDetailReport.csv","createdTime":"2018-10-31T09:20:02Z","lastModifiedTime":"2018-10-31T09:20:02Z","date":"2018-10-30","mimeType":"text/csv","size":93034},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-31T11:16:13Z","lastModifiedTime":"2018-10-31T11:16:13Z","date":"2018-10-30","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0zMA==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-31T11:45:03Z","lastModifiedTime":"2018-10-31T11:45:03Z","date":"2018-10-30","mimeType":"text/csv","size":184}]} +2019-02-25 11:45:29.213 [main] INFO - Response Code: 200 +2019-02-25 11:45:29.213 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b1c38087-b934-499e-9a72-de5d8825bbba +Cache-Control: no-cache, no-transform +ETag: "1355734779-gzip" +Expires: Mon, 25 Feb 2019 06:15:29 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:29 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6172508a-21c1-4212-9e2f-f97266a0ff0b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075324604 +OkHttp-Received-Millis: 1551075329197 + +2019-02-25 11:45:29.213 [main] INFO - ********* END *********: +2019-02-25 11:45:29.260 [main] INFO - ********* START ********* +2019-02-25 11:45:29.260 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:29.260 [main] INFO - Request Type: GET +2019-02-25 11:45:29.260 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testtest, requestType=GET} +2019-02-25 11:45:29.260 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:29.260 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:29.260 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:29.260 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="zDb55JNlbXg8UbmHNR2TFKxp7bqHT/7296+Y+ZpSrxw=" +2019-02-25 11:45:29.260 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:29.728 [main] INFO - Request Body: null +2019-02-25 11:45:29.728 [main] INFO - Response Message: Merchant - Unauthorised access to Reseller/Account +2019-02-25 11:45:29.728 [main] INFO - Response Code: 403 +2019-02-25 11:45:29.728 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_62a6a25c-2fd3-4e79-997f-d2e6b5bd4dad +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:29 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: db9b4fb6-b425-44e5-9c1b-05660e02bffd +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075329260 +OkHttp-Received-Millis: 1551075329728 + +2019-02-25 11:45:29.728 [main] INFO - ********* END *********: +2019-02-25 11:45:29.750 [main] INFO - ********* START ********* +2019-02-25 11:45:29.750 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:29.750 [main] INFO - Request Type: GET +2019-02-25 11:45:29.750 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA%3D%3D?organizationId=testrest, requestType=GET} +2019-02-25 11:45:29.750 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:29.750 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:29.750 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:29.750 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="+2+hZUiLq6XTFUI9XfMRrRhYs++DZ+HpDoNy2RMSuGU=" +2019-02-25 11:45:29.750 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:30.218 [main] INFO - Request Body: null +2019-02-25 11:45:30.218 [main] INFO - Response Message: testrest,TRRReport,TransactionRequestReport,1.10,2018-10-19T16:00:00Z to 2018-10-20T16:00:00Z +RequestID,RequestDate,MerchantReferenceNumber,MerchantID +5399662771246550003001,2018-10-19T16:24:37Z,TC50171_3,testrest +5399664781416551403001,2018-10-19T16:27:58Z,TC50171_3,testrest +5399666196306552903001,2018-10-19T16:30:19Z,TC50171_3,testrest +5399666357576981903005,2018-10-19T16:30:35Z,TC50171_3,testrest +5399680347956058103004,2018-10-19T16:53:54Z,TC50171_3,testrest +5399680431216058303004,2018-10-19T16:54:03Z,TC50171_3,testrest +5399684302416000903005,2018-10-19T17:00:30Z,TC50171_3,testrest +5399684505506723403002,2018-10-19T17:00:50Z,TC50171_3,testrest +5399684781686729303003,2018-10-19T17:01:18Z,TC50171_3,testrest +5399742716346290903004,2018-10-19T18:37:51Z,TC50171_3,testrest +5399742808726291703004,2018-10-19T18:38:00Z,TC50171_3,testrest +5399743679866242703005,2018-10-19T18:39:28Z,TC50171_3,testrest +5399751921786020803003,2018-10-19T18:53:12Z,TC50171_3,testrest +5399761919726317303005,2018-10-19T19:09:52Z,TC50171_3,testrest +5399787878246907603001,2018-10-19T19:53:07Z,TC50171_3,testrest +5399793339576405603004,2018-10-19T20:02:14Z,405195660::1,testrest +5399807626196378603005,2018-10-19T20:26:02Z,405195660::1,testrest +5399810449296963303001,2018-10-19T20:30:45Z,33557799,testrest +5399829987226032203001,2018-10-19T21:03:18Z,1234567890,testrest +5399844740286070303001,2018-10-19T21:27:54Z,TC50171_3,testrest +5399845077266611803006,2018-10-19T21:28:27Z,TC50171_3,testrest +5399845139246229503002,2018-10-19T21:28:34Z,TC50171_3,testrest +5399889652786155003001,2018-10-19T22:42:45Z,TC50171_3,testrest +5399900584196720203006,2018-10-19T23:00:58Z,1234567890,testrest + +2019-02-25 11:45:30.218 [main] INFO - Response Code: 200 +2019-02-25 11:45:30.218 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_c34a25b4-2396-4366-a2ba-c504180ed5bc +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 25 Feb 2019 06:15:30 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Mon, 25 Feb 2019 06:15:30 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: cee57d31-44b8-476b-bdb2-c732b031fbbe +OkHttp-Sent-Millis: 1551075329750 +OkHttp-Received-Millis: 1551075330218 + +2019-02-25 11:45:30.218 [main] INFO - ********* END *********: +2019-02-25 11:45:30.250 [main] INFO - ********* START ********* +2019-02-25 11:45:30.250 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:30.250 [main] INFO - Request Type: GET +2019-02-25 11:45:30.250 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0?organizationId=testrest, requestType=GET} +2019-02-25 11:45:30.250 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:30.250 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:30.250 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:30.250 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="YPgYMlNdVf6uTwK6HaY6JwyiGH+vXf8RI2kGczJ5DM0=" +2019-02-25 11:45:30.250 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:30.734 [main] INFO - Request Body: null +2019-02-25 11:45:30.734 [main] INFO - Response Message: + + Field validation errors + cybsapi.validation.errors + VALIDATION_ERROR + + cybsapi.file.id.invalid + fileId + Invalid File ID + + + +2019-02-25 11:45:30.734 [main] INFO - Response Code: 400 +2019-02-25 11:45:30.734 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a1c10121-2c44-4539-b66e-a07a29f7a20f +Cache-Control: no-cache, no-transform +ETag: "-807714005-gzip" +Expires: Mon, 25 Feb 2019 06:15:30 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Mon, 25 Feb 2019 06:15:30 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: fc5287c2-7fa3-4483-bf6a-539f55949853 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075330250 +OkHttp-Received-Millis: 1551075330734 + +2019-02-25 11:45:30.734 [main] INFO - ********* END *********: +2019-02-25 11:45:30.758 [main] INFO - ********* START ********* +2019-02-25 11:45:30.758 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:30.758 [main] INFO - Request Type: GET +2019-02-25 11:45:30.758 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/Texture, requestType=GET} +2019-02-25 11:45:30.758 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:30.758 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:30.758 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:30.758 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="wdl7NVV99GkSs6YERO88MvgcLRGqDQMad4BYniNk9vg=" +2019-02-25 11:45:30.758 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:31.226 [main] INFO - Request Body: null +2019-02-25 11:45:31.226 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0230","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"} +2019-02-25 11:45:31.226 [main] INFO - Response Code: 200 +2019-02-25 11:45:31.226 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e0722e77-eec4-46f0-ad1c-36ffc71b967c +X-OPNET-Transaction-Trace: a2_543c5194-4c27-49d1-bed2-4ee5081ebd89 +Cache-Control: no-cache, no-transform +ETag: "-1844867216-gzip" +Expires: Mon, 25 Feb 2019 06:15:31 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:31 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 356d3fe1-014b-4a5d-ac0a-28edf0018f43 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075330758 +OkHttp-Received-Millis: 1551075331226 + +2019-02-25 11:45:31.226 [main] INFO - ********* END *********: +2019-02-25 11:45:31.257 [main] INFO - ********* START ********* +2019-02-25 11:45:31.257 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:31.257 [main] INFO - Request Type: GET +2019-02-25 11:45:31.257 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/bplkmdgsd, requestType=GET} +2019-02-25 11:45:31.257 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:31.257 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:31.257 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:31.257 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="aPMsz8peMcUQk36MIera6O/Zfi7AsnjBXn//bkuhEdo=" +2019-02-25 11:45:31.257 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:31.711 [main] INFO - Request Body: null +2019-02-25 11:45:31.711 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/bplkmdgsd"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"Requested subscription does not exist."} +2019-02-25 11:45:31.711 [main] INFO - Response Code: 404 +2019-02-25 11:45:31.711 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_adafbc4a-636f-4414-98eb-3d7a5fdb5765 +X-OPNET-Transaction-Trace: a2_5c7595f3-1c08-462b-aece-810cc9b39c23 +Cache-Control: no-cache, no-transform +ETag: "1764052161-gzip" +Expires: Mon, 25 Feb 2019 06:15:31 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:31 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 5b80d022-4856-4258-b3ce-bb1a2ceca358 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075331257 +OkHttp-Received-Millis: 1551075331711 + +2019-02-25 11:45:31.711 [main] INFO - ********* END *********: +2019-02-25 11:45:31.726 [main] INFO - ********* START ********* +2019-02-25 11:45:31.726 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:31.726 [main] INFO - Request Type: GET +2019-02-25 11:45:31.726 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=testrest, requestType=GET} +2019-02-25 11:45:31.726 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:31.726 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:31.726 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:31.726 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="SRReCxCiSvJx4BlBqXIEj+5kbZy8MoANs6Zp/zgk/y8=" +2019-02-25 11:45:31.726 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:32.195 [main] INFO - Request Body: null +2019-02-25 11:45:32.195 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest"}},"reportDefinitions":[{"type":"Detail","reportDefinitionId":202,"reportDefintionName":"PortfolioExceptionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Portfolio Exception Detail Report"},{"type":"Summary","reportDefinitionId":308,"reportDefintionName":"PaymentTypeByCurrencyClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":231,"reportDefintionName":"AcquirerExceptionDetailClass","supportedFormats":["text/csv"],"description":"Acquirer Exception Detail Report"},{"type":"Summary","reportDefinitionId":306,"reportDefintionName":"TransactionsByProductClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":230,"reportDefintionName":"AcquirerDetailClass","supportedFormats":["text/csv"],"description":"Acquirer Detail Report"},{"type":"Summary","reportDefinitionId":304,"reportDefintionName":"SalesRefundsClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":218,"reportDefintionName":"DepositDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Merchant Bank Deposit Details"},{"type":"Detail","reportDefinitionId":210,"reportDefintionName":"TransactionRequestClass","supportedFormats":["application/xml","text/csv"],"description":"Recon Transaction Request Report"},{"type":"Detail","reportDefinitionId":200,"reportDefintionName":"PortfolioTransactionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Portfolio Transaction Request Report"},{"type":"Summary","reportDefinitionId":342,"reportDefintionName":"FundingByProductClass","supportedFormats":["application/xml","application/json","text/csv"],"description":"Recon Funding By Product - JSON"},{"type":"Detail","reportDefinitionId":216,"reportDefintionName":"AgingDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All Settled transactions that have not been funded"},{"type":"Detail","reportDefinitionId":400,"reportDefintionName":"DecisionManagerEventDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Decision Manager Event Detail Report"},{"type":"Detail","reportDefinitionId":620,"reportDefintionName":"SubscriptionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Subscription Detail Report"},{"type":"Summary","reportDefinitionId":302,"reportDefintionName":"TransactionAggregateClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Summary","reportDefinitionId":410,"reportDefintionName":"FeeSummaryClass","supportedFormats":["text/csv"],"description":"Fee Summary CSV Report"},{"type":"Detail","reportDefinitionId":212,"reportDefintionName":"ExceptionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Recon Exception Detail Report"},{"type":"Detail","reportDefinitionId":233,"reportDefintionName":"AcquirerReconciliationSummaryClass","supportedFormats":["text/csv"],"description":"Acquirer Reconciliation Summary Report"},{"type":"Summary","reportDefinitionId":300,"reportDefintionName":"TransactionsByCurrencyClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":232,"reportDefintionName":"AcquirerChargebackDetailClass","supportedFormats":["text/csv"],"description":"Acquirer Chargeback Detail Report"},{"type":"Detail","reportDefinitionId":215,"reportDefintionName":"FundingDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All transactions that were funded in the given interval"},{"type":"Summary","reportDefinitionId":305,"reportDefintionName":"PaymentTypeSummaryClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":310,"reportDefintionName":"GatewayTransactionRequestClass","supportedFormats":["application/xml","text/csv"],"description":"All Gateway transactions by the processor"},{"type":"Summary","reportDefinitionId":341,"reportDefintionName":"FundingByCurrencyClass","supportedFormats":["application/xml","application/json","text/csv"],"description":"Recon Funding Volume - JSON"},{"type":"Detail","reportDefinitionId":220,"reportDefintionName":"InvoiceSummaryClass","supportedFormats":["application/xml","text/csv"],"description":"Merchant Invoice Details"},{"type":"Detail","reportDefinitionId":213,"reportDefintionName":"ProcessorSettlementDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Processor Settlement and Refund Detail Report"},{"type":"Summary","reportDefinitionId":343,"reportDefintionName":"FundingByPaymentTypeClass","supportedFormats":["application/xml","application/json","text/csv"],"description":"Recon Funding By Payment Type - JSON"},{"type":"Detail","reportDefinitionId":222,"reportDefintionName":"ConversionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Conversion Detail CSV Report"},{"type":"Summary","reportDefinitionId":307,"reportDefintionName":"ProductByCurrencyClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":520,"reportDefintionName":"POSTerminalExceptionClass","supportedFormats":["application/xml","text/csv"],"description":"POS Terminal Exception Report"},{"type":"Detail","reportDefinitionId":211,"reportDefintionName":"PaymentBatchDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Recon Batch Detail Report"},{"type":"Detail","reportDefinitionId":203,"reportDefintionName":"GatewayTransactionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All Gateway transactions by the processor"},{"type":"Detail","reportDefinitionId":270,"reportDefintionName":"JPTransactionDetailClass","supportedFormats":["text/csv"],"description":"Transaction detail report for CSKK merchants"},{"type":"Summary","reportDefinitionId":303,"reportDefintionName":"AuthorizationAnalysisClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Summary","reportDefinitionId":301,"reportDefintionName":"TransactionVolumeClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":217,"reportDefintionName":"ChargebackAndRetrievalDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All Chargebacks, Representments and Retrievals"},{"type":"Detail","reportDefinitionId":219,"reportDefintionName":"FeeDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All fee details"},{"type":"Detail","reportDefinitionId":201,"reportDefintionName":"PortfolioBatchDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Portfolio Batch Detail Report"},{"type":"Detail","reportDefinitionId":401,"reportDefintionName":"DecisionManagerDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Decision Manager Details CSV Report"},{"type":"Detail","reportDefinitionId":221,"reportDefintionName":"PayerAuthDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Payer Auth Details XML Report"},{"type":"Detail","reportDefinitionId":271,"reportDefintionName":"ServiceFeeDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Service Fee report"},{"type":"Summary","reportDefinitionId":340,"reportDefintionName":"FundingVolumeClass","supportedFormats":["application/xml","application/json","text/csv"],"description":"Recon Funding Volume - CSV"},{"type":"Detail","reportDefinitionId":214,"reportDefintionName":"ProcessorEventsDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All processor events regarding the transaction life cycle"}]} +2019-02-25 11:45:32.195 [main] INFO - Response Code: 200 +2019-02-25 11:45:32.195 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_8945a65b-4cb5-411f-aa6b-220b742038c7 +X-OPNET-Transaction-Trace: a2_4ed8d45a-8042-4e95-a533-a7fb3b7d789f +Cache-Control: no-cache, no-transform +ETag: "1846674451-gzip" +Expires: Mon, 25 Feb 2019 06:15:32 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:31 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 29c236dd-9ec0-4c7c-bef5-90359af03ac0 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075331742 +OkHttp-Received-Millis: 1551075332179 + +2019-02-25 11:45:32.195 [main] INFO - ********* END *********: +2019-02-25 11:45:32.211 [main] INFO - ********* START ********* +2019-02-25 11:45:32.211 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:32.211 [main] INFO - Request Type: GET +2019-02-25 11:45:32.211 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=bplkmdghd, requestType=GET} +2019-02-25 11:45:32.211 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:32.211 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:32.211 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:32.211 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="5tFi5RLZVdp0yPlC8ZciU4etMjVyyoROxll4kj+uplg=" +2019-02-25 11:45:32.211 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:32.664 [main] INFO - Request Body: null +2019-02-25 11:45:32.664 [main] INFO - Response Message: Invalid Merchant +2019-02-25 11:45:32.664 [main] INFO - Response Code: 400 +2019-02-25 11:45:32.664 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_7dc022cb-c1c1-4053-b448-0addf39a8a7e +X-OPNET-Transaction-Trace: a2_f56254af-10fa-4a46-a322-dd09fc2b427a +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:32 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 5f4bb96f-1ec8-44df-ab8b-5b44eb7ce866 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075332211 +OkHttp-Received-Millis: 1551075332648 + +2019-02-25 11:45:32.664 [main] INFO - ********* END *********: +2019-02-25 11:45:32.670 [main] INFO - ********* START ********* +2019-02-25 11:45:32.670 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:32.670 [main] INFO - Request Type: GET +2019-02-25 11:45:32.670 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/AcquirerExceptionDetailClass, requestType=GET} +2019-02-25 11:45:32.670 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:32.686 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:32.686 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:32.686 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="MLsaCWknfRm1Pe9fSZXSpkm7y5NX9w/mfwPHTcDHxIY=" +2019-02-25 11:45:32.686 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:33.155 [main] INFO - Request Body: null +2019-02-25 11:45:33.155 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass"}},"attributes":[{"id":"3200","name":"AdditionalInformation.CardAcceptorID","description":"Card Acceptor ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3201","name":"AdditionalInformation.CardAcceptorName","description":"Card Acceptor Name","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3202","name":"AdditionalInformation.CardAcceptorTerminalID","description":"Card Acceptor Terminal ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3203","name":"AdditionalInformation.ForwardingInstitutionID","description":"Forwarding Institution ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3204","name":"AdditionalInformation.IssuerAffiliateBIN","description":"Issuer Affiliate BIN","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3205","name":"AdditionalInformation.MerchantType","description":"Merchant Type","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3206","name":"AdditionalInformation.RecurringPaymentIndicatorFlag","description":"Recurring Payment Indicator flag","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3223","name":"TransactionDetails.SourceMerchantID","description":"Source Merchant ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3225","name":"Fee.ReimbursementFee","description":"Reimbursement Fee","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3226","name":"Fee.ReimbursementFeeDebitCreditIndicator","description":"Reimbursement Fee Debit Credit Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3227","name":"Fee.SettlementServiceIndicator","description":"Settlement Service Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3228","name":"Fee.TransactionIntegrityFee","description":"Transaction Integrity Fee","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3229","name":"Fee.TransactionIntegrityFeeDebitCreditIndicator","description":"Transaction Integrity Fee Debit Credit Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3230","name":"Settlement.CardholderBillingAmount","description":"Cardholder Billing Amount","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3231","name":"Settlement.CardholderBillingCurrencyCode","description":"Cardholder Billing Currency Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3232","name":"Settlement.RateTableDate","description":"Rate Table Date","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3234","name":"Settlement.OctSettlementAmount","description":"Settlement Amount","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3235","name":"Settlement.OctSettlementCurrencyCode","description":"Settlement Currency Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3237","name":"TransactionDetails.AcquirerBusinessID","description":"Acquirer Business ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3238","name":"TransactionDetails.AcquiringInstitutionID","description":"Acquiring Institution ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3239","name":"TransactionDetails.AffiliateBIN","description":"Affiliate BIN","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3240","name":"TransactionDetails.AuthorizationIDRespCode","description":"Authorization ID Resp. Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3241","name":"TransactionDetails.BatchNumber","description":"Batch Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3242","name":"TransactionDetails.BusinessApplicationIdentifier","description":"Business Application Identifier","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3243","name":"TransactionDetails.CardNumber","description":"Card Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3244","name":"TransactionDetails.CurrencyCodeForTransactionAmount","description":"Currency Code For Transaction Amount","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3245","name":"TransactionDetails.DataRecipient","description":"Data Recipient","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3246","name":"TransactionDetails.DCCIndicator","description":"DCC Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3247","name":"TransactionDetails.DestinationStationID","description":"Destination Station ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3248","name":"TransactionDetails.DowngradeReasonCode","description":"Downgrade Reason Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3249","name":"TransactionDetails.FundsTransferSRE","description":"Funds Transfer SRE","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3250","name":"TransactionDetails.IssuerAcquirerIndicator","description":"Issuer Acquirer Indicator","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3251","name":"TransactionDetails.MessageReasonCode","description":"Message Reason Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3252","name":"TransactionDetails.MVVCode","description":"MVV Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3253","name":"TransactionDetails.NetworkID","description":"Network ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3254","name":"TransactionDetails.OnlineSettlementDate","description":"Online Settlement Date","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3255","name":"TransactionDetails.ProcessingCode","description":"Processing Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3256","name":"TransactionDetails.ProcessorID","description":"Processor ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3257","name":"TransactionDetails.ProductID","description":"Product ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3258","name":"TransactionDetails.ProductSubtype","description":"Product Subtype","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3259","name":"TransactionDetails.RequestMessageType","description":"Request Message Type","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3260","name":"TransactionDetails.ResponseCode","description":"Response Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3261","name":"TransactionDetails.RetrievalReferenceNumber","description":"Retrieval Reference Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3262","name":"TransactionDetails.SettlementDate","description":"Settlement Date","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3263","name":"TransactionDetails.SourceOfFunds","description":"Source of Funds","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3264","name":"TransactionDetails.SourceStationID","description":"Source Station ID","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3265","name":"TransactionDetails.SRE","description":"SRE","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3266","name":"TransactionDetails.STIPReasonCode","description":"STIP Reason Code","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3267","name":"TransactionDetails.TraceNumber","description":"Trace Number","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3268","name":"TransactionDetails.TransactionAmount","description":"Transaction Amount","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3269","name":"TransactionDetails.TransactionIdentifier","description":"Transaction Identifier","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3270","name":"TransactionDetails.VssProcessingDate","description":"VSS PROCESSING DATE","filterType":null,"required":false,"supportedType":null,"default":false},{"id":"3278","name":"TransactionDetails.RequestId","description":"Request ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3279","name":"TransactionDetails.MerchantId","description":"Merchant ID","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3280","name":"TransactionDetails.PaymentMethodType","description":"Payment Method Type","filterType":null,"required":true,"supportedType":null,"default":true},{"id":"3281","name":"TransactionDetails.PaymentMethodDesc","description":"Payment Method Description","filterType":null,"required":true,"supportedType":null,"default":true}],"description":"Acquirer Exception Detail Report","reportDefinitionId":231,"reportDefintionName":"AcquirerExceptionDetailClass","supportedFormats":["text/csv"],"type":"Detail"} +2019-02-25 11:45:33.155 [main] INFO - Response Code: 200 +2019-02-25 11:45:33.155 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b55e7441-8122-4c1c-8bcd-bff0d11495d0 +X-OPNET-Transaction-Trace: a2_982f3942-a660-4dff-a4db-424096215f40 +Cache-Control: no-cache, no-transform +ETag: "-78621274-gzip" +Expires: Mon, 25 Feb 2019 06:15:33 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:32 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 3f6c504e-183e-4bba-b7f7-4d22615b07d1 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075332686 +OkHttp-Received-Millis: 1551075333155 + +2019-02-25 11:45:33.155 [main] INFO - ********* END *********: +2019-02-25 11:45:33.170 [main] INFO - ********* START ********* +2019-02-25 11:45:33.170 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:33.170 [main] INFO - Request Type: GET +2019-02-25 11:45:33.170 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/SubscDetail, requestType=GET} +2019-02-25 11:45:33.170 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:33.170 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:33.170 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:33.186 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="WydmUHmUgR6k8EnmZa5yTAvMqIoK1sG9S1DKE8KMWlo=" +2019-02-25 11:45:33.186 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:33.608 [main] INFO - Request Body: null +2019-02-25 11:45:33.608 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/SubscDetail"}}} +2019-02-25 11:45:33.608 [main] INFO - Response Code: 404 +2019-02-25 11:45:33.608 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_06b1d9be-aa43-4005-a041-1de11d8a7b1b +X-OPNET-Transaction-Trace: a2_625da426-dadb-4749-b58e-ec01b5774b93 +Cache-Control: no-cache, no-transform +ETag: "204857944-gzip" +Expires: Mon, 25 Feb 2019 06:15:33 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:32 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: b5071390-1cd3-48e8-90ee-64fe33d999a5 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075333186 +OkHttp-Received-Millis: 1551075333608 + +2019-02-25 11:45:33.608 [main] INFO - ********* END *********: +2019-02-25 11:45:33.640 [main] INFO - ********* START ********* +2019-02-25 11:45:33.640 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:33.640 [main] INFO - Request Type: GET +2019-02-25 11:45:33.640 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest, requestType=GET} +2019-02-25 11:45:33.640 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:33.640 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:33.640 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:33.640 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="rJsZdrBAighN1FaXHvg06QwitDHC/6WQi6z0dsQv6mI=" +2019-02-25 11:45:33.640 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:34.233 [main] INFO - Request Body: null +2019-02-25 11:45:34.233 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest"}},"groupId":null,"notificationType":null,"organizationId":"testrest","reportAccessType":null,"reportDefinitionId":"210","reportEndTime":"2018-09-02T07:00:00.000Z","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{"173":[]},"reportFrequency":"ADHOC","reportId":"79642c43-2368-0cd5-e053-a2588e0a7b3c","reportMimeType":"application/xml","reportName":"testrest_v2","reportPreferences":{"signedAmounts":true,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":"SOAPI"},"reportStartTime":"2018-09-01T07:00:00.000Z","reportStatus":"COMPLETED","requestedBy":null,"selectedOrganizationId":null,"subscriptionType":"CUSTOM","timezone":"GMT"} +2019-02-25 11:45:34.233 [main] INFO - Response Code: 200 +2019-02-25 11:45:34.233 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_1d357bdd-1756-4efe-8ff7-3a7cec06f4a5 +X-OPNET-Transaction-Trace: a2_9746c12b-9805-4fc6-aad2-e343b74d0ad8 +Cache-Control: no-cache, no-transform +ETag: "609183382-gzip" +Expires: Mon, 25 Feb 2019 06:15:34 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:34 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 53f34956-2493-415d-874a-cd5fa1a450bd +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075333655 +OkHttp-Received-Millis: 1551075334217 + +2019-02-25 11:45:34.233 [main] INFO - ********* END *********: +2019-02-25 11:45:34.264 [main] INFO - ********* START ********* +2019-02-25 11:45:34.264 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:34.264 [main] INFO - Request Type: GET +2019-02-25 11:45:34.264 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest, requestType=GET} +2019-02-25 11:45:34.264 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:34.264 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:34.264 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:34.264 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="dkV39db48X0AqPx8r9O4Ni6EnPBSMoYNXyhQyBhnXJw=" +2019-02-25 11:45:34.264 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:34.733 [main] INFO - Request Body: null +2019-02-25 11:45:34.733 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"No reports found for given reportId. ReportId :: '79642c43-2368-0cd5-e053-a2588e0a'"} +2019-02-25 11:45:34.733 [main] INFO - Response Code: 404 +2019-02-25 11:45:34.733 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_55491859-95e3-4c89-b49b-cc345d475bd9 +X-OPNET-Transaction-Trace: a2_b45e2661-13c9-4507-a715-6ac51846f17c +Cache-Control: no-cache, no-transform +ETag: "-830509477-gzip" +Expires: Mon, 25 Feb 2019 06:15:34 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:34 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 3fb2a617-f4dd-4350-bb39-b867669010f0 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075334264 +OkHttp-Received-Millis: 1551075334717 + +2019-02-25 11:45:34.733 [main] INFO - ********* END *********: +2019-02-25 11:45:34.736 [main] INFO - ********* START ********* +2019-02-25 11:45:34.736 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:34.736 [main] INFO - Request Type: GET +2019-02-25 11:45:34.736 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=bkalama, requestType=GET} +2019-02-25 11:45:34.736 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:34.736 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:34.736 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:34.736 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="BX3sosijZ0mMaLAXeUKW2m8KiB5PJzCS1Z3KYCY+LdI=" +2019-02-25 11:45:34.736 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:35.174 [main] INFO - Request Body: null +2019-02-25 11:45:35.174 [main] INFO - Response Message: Invalid Merchant +2019-02-25 11:45:35.174 [main] INFO - Response Code: 400 +2019-02-25 11:45:35.174 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_3bf10ea2-6905-49c9-a101-6b760825d1ea +X-OPNET-Transaction-Trace: a2_8fd3e1bb-1a9e-4192-96fd-9391383fbc91 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:35 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e656dd84-4816-40be-876c-1ad6519c8b70 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075334753 +OkHttp-Received-Millis: 1551075335174 + +2019-02-25 11:45:35.174 [main] INFO - ********* END *********: +2019-02-25 11:45:35.190 [main] INFO - ********* START ********* +2019-02-25 11:45:35.190 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:35.190 [main] INFO - Request Type: GET +2019-02-25 11:45:35.190 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=GET} +2019-02-25 11:45:35.190 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:35.190 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:35.190 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:35.190 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="qY3/CGVRORIKrUOMSuUFoY1lqCB6YWnEyuRfnuO7+38=" +2019-02-25 11:45:35.190 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:35.893 [main] INFO - Request Body: null +2019-02-25 11:45:35.893 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"_embedded":{"Subscriptions":[{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/1111muy"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"1111muy","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0600","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/78999sd6"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"78999sd6","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"1300","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Alex"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Alex","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0950","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Antena"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"text/csv","reportName":"Antena","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0950","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/CYBS_REP_test_2556"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"CYBS_REP_test_2556","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":4,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Ceaser"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"Ceaser","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Cybersource-rest-py1"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"Cybersource-rest-py1","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Jackson"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"Monthly","reportMimeType":"text/csv","reportName":"Jackson","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/ProcessorEventsDetailReport"}},"groupId":null,"organizationId":null,"reportDefinitionId":"214","reportDefinitionName":"ProcessorEventsDetailClass","reportFields":["PaymentMethod.BoletoNumber","Request.RequestID","PaymentData.TransactionRefNumber","Request.TransactionDate","Request.MerchantReferenceNumber","Request.MerchantID","Event.ProcessorMessage","Event.EventDate","Event.Event","Event.Amount","Event.CurrencyCode","PaymentData.ProcessorTID","Request.LocalizedRequestDate"],"reportFilters":{},"reportFrequency":"daily","reportMimeType":"text/csv","reportName":"ProcessorEventsDetailReport","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0000","subscriptionStatus":"ACTIVE","subscriptionType":"STANDARD","timezone":"America/Los_Angeles"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/QA_test_reporting_org"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"QA_test_reporting_org","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0406","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/R"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"R","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0940","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Subsc2_cybs_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"Subsc2_cybs_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0200","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Subscrip_cybs_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"Subscrip_cybs_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0100","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Subsp87_cybs_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"Subsp87_cybs_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0300","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/TRR_138"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"TRR_138","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/TRR_1383"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"TRR_1383","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/TRR_677"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"TRR_677","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0230","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_a"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture_a","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0910","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_e"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_e","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":6,"startTime":"0930","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_f"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture_f","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":7,"startTime":"0940","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_j"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture_j","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":11,"startTime":"0957","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_k"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_k","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":12,"startTime":"0958","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_s"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_s","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0920","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_t"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_t","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":4,"startTime":"0915","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0930","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Textuvij"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Textuvij","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0920","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Tider"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"text/csv","reportName":"Tider","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/TransactionRequestReport"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["PaymentData.AuthorizationCode","PaymentData.CurrencyCode","BillTo.FirstName","BillTo.LastName","BillTo.MiddleName","BillTo.Address1","BillTo.Address2","BillTo.City","BillTo.State","BillTo.Zip","BillTo.Email","BillTo.Phone","PaymentMethod.CardType","PaymentMethod.ExpirationMonth","PaymentMethod.ExpirationYear","PaymentMethod.AccountSuffix","Application.Rcode","Application.Rflag","Application.Rmsg","PaymentData.Amount","Request.RequestID","PaymentData.TransactionRefNumber","Request.TransactionDate","Request.MerchantReferenceNumber","Application.Name","Request.MerchantID","Request.LocalizedRequestDate"],"reportFilters":{},"reportFrequency":"daily","reportMimeType":"text/csv","reportName":"TransactionRequestReport","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0000","subscriptionStatus":"INACTIVE","subscriptionType":"STANDARD","timezone":"America/Los_Angeles"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Vendor"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Vendor","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Zodaic"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"Zodaic","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":5,"startTime":"0330","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/bxgsfdt66"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"bxgsfdt66","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1700","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/chena"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"chena","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/createsubscription_report"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"createsubscription_report","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0406","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/dfdf"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"dfdf","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1200","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/dgusgdfyfydugfnnfhgg"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"dgusgdfyfydugfnnfhgg","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/dhsjhsdfuihduifyifuy"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"dhsjhsdfuihduifyifuy","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1100","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/gggg"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"gggg","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1500","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/subs_cybs_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"subs_cybs_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0700","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testReport_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"testReport_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0959","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_myname"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"test_myname","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"2000","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v3"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"test_v3","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v456777"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"test_v456777","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0800","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v4567778"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"test_v4567778","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0800","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v5001"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"test_v5001","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v571"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"test_v571","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0920","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v5801"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"test_v5801","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0920","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v600"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"test_v600","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":4,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_V7683"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"testrest_V7683","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0951","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_V76833"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"testrest_V76833","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0957","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcript"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"testrest_subcript","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1100","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_karthikeyan"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_karthikeyan","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v12"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_v12","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v13"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_v13","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1700","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v155"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_v155","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":6,"startTime":"0930","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v17854"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_v17854","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0600","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v2989"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"testrest_subcription_v2989","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"1900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v4"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"testrest_subcription_v4","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v7"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"testrest_subcription_v7","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0115","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v278"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_v278","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":5,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"testrest_v604","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0950","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrestsa_subcription_v1"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrestsa_subcription_v1","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0902","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testv2_subscriprion"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testv2_subscriprion","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/ttttt"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"ttttt","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"1000","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/uit"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"uit","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"1500","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"}]}} +2019-02-25 11:45:35.893 [main] INFO - Response Code: 200 +2019-02-25 11:45:35.893 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_42cc02ba-e0ff-4bd7-848c-e4fdb4713667 +X-OPNET-Transaction-Trace: a2_c22e6c8c-7964-494f-b035-b086fd654938 +Cache-Control: no-cache, no-transform +ETag: "301837359-gzip" +Expires: Mon, 25 Feb 2019 06:15:35 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:35 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 55d53294-5319-40a9-b8e9-796383414fa4 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075335205 +OkHttp-Received-Millis: 1551075335893 + +2019-02-25 11:45:35.893 [main] INFO - ********* END *********: +2019-02-25 11:45:35.920 [main] INFO - ********* START ********* +2019-02-25 11:45:35.920 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:35.920 [main] INFO - Request Type: POST +2019-02-25 11:45:35.920 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-25 11:45:35.920 [main] INFO - Digest: SHA-256=loFSrgLcFUKQZ5yG+wiEAwrYOdwvmVHAUHYgknwquSs= +2019-02-25 11:45:35.920 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:35.920 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:35.920 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:35.920 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="T3NgjtmmBcgH4k5YWEJDCNohDscv7xALyVNWNY0EiC8=" +2019-02-25 11:45:35.920 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:36.717 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_feb8","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-25 11:45:36.717 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"815d1fc7-5ca6-9241-e053-a2588e0a46c1","message":"Task already exists with same report name ","localizationKey":"cybsapi.task.name.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 11:45:36.717 [main] INFO - Response Code: 400 +2019-02-25 11:45:36.717 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_e484bbd0-2afa-497a-8508-d83bf81350c3 +X-OPNET-Transaction-Trace: a2_ed588403-b319-4180-836d-4123c550f0e8 +Cache-Control: no-cache, no-transform +ETag: "1012578100-gzip" +Expires: Mon, 25 Feb 2019 06:15:36 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:35 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 16b9aa78-3b6c-40aa-b013-52949388b035 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075335952 +OkHttp-Received-Millis: 1551075336717 + +2019-02-25 11:45:36.717 [main] INFO - ********* END *********: +2019-02-25 11:45:36.749 [main] INFO - ********* START ********* +2019-02-25 11:45:36.749 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:36.749 [main] INFO - Request Type: POST +2019-02-25 11:45:36.749 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-25 11:45:36.749 [main] INFO - Digest: SHA-256=WRIH+BI7wCOOoyM2il5xk/FPn4NdlvPoyhCGODb0BzU= +2019-02-25 11:45:36.749 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:36.749 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:36.749 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:36.749 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="o2lTI77U2U+R6xGYXrlHDqGWQ7pLM2yTb/gwAV7cWw8=" +2019-02-25 11:45:36.749 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:37.264 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequ","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v2","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-25 11:45:37.264 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"reportDefinitionName","message":"Invalid report definition specified","localizationKey":"cybsapi.report.reportDefinition.invalid"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 11:45:37.264 [main] INFO - Response Code: 400 +2019-02-25 11:45:37.264 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_fe03ddfa-1545-46c1-8210-3f324fe1faa8 +X-OPNET-Transaction-Trace: a2_1b2baa10-b40f-4f70-9371-2bce41bdd023 +Cache-Control: no-cache, no-transform +ETag: "-393622008-gzip" +Expires: Mon, 25 Feb 2019 06:15:37 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:37 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a045b5f3-14e7-4048-8fca-c63fc56e0a61 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075336764 +OkHttp-Received-Millis: 1551075337264 + +2019-02-25 11:45:37.264 [main] INFO - ********* END *********: +2019-02-25 11:45:37.291 [main] INFO - ********* START ********* +2019-02-25 11:45:37.291 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:37.291 [main] INFO - Request Type: PUT +2019-02-25 11:45:37.291 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-25 11:45:37.291 [main] INFO - Digest: SHA-256=3GVWPPOG00/7W5sr122EHVr03BhuMZC6jcQgIczD8FQ= +2019-02-25 11:45:37.291 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:37.291 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:37.291 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:37.291 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="2vsmTSRjsTYKeOluH7nz/or+F3guW/LCIyvdtDtuKhk=" +2019-02-25 11:45:37.291 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:38.008 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testReport_test","timezone":"America/Chicago","startTime":"0959","startDay":1} +2019-02-25 11:45:38.008 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"testReport_test","message":"Report already exists with same fields ","localizationKey":"cybsapi.report.fields.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 11:45:38.008 [main] INFO - Response Code: 400 +2019-02-25 11:45:38.008 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_40d9d118-ec93-4595-ba56-3d33f1360f26 +X-OPNET-Transaction-Trace: a2_e04058de-cb03-485a-bf24-64fa4418d33d +Cache-Control: no-cache, no-transform +ETag: "-787171079-gzip" +Expires: Mon, 25 Feb 2019 06:15:37 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:37 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 0f0d1c59-5ced-4d4b-8d96-a39e2790a07c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075337320 +OkHttp-Received-Millis: 1551075338008 + +2019-02-25 11:45:38.008 [main] INFO - ********* END *********: +2019-02-25 11:45:38.024 [main] INFO - ********* START ********* +2019-02-25 11:45:38.024 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:38.024 [main] INFO - Request Type: PUT +2019-02-25 11:45:38.024 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-25 11:45:38.024 [main] INFO - Digest: SHA-256=hCJRiwHTt4C8/2AZ98pRY06mb+al8+7W4Y38zplArt0= +2019-02-25 11:45:38.024 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:38.024 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:38.024 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:38.024 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="YHzDsaiuusQuLKS+xWKjjxsQzXWtf6oEoG7DMAJ1eJc=" +2019-02-25 11:45:38.024 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:38.446 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0959","startDay":1} +2019-02-25 11:45:38.446 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"reportDefinitionName","message":"Invalid report definition specified","localizationKey":"cybsapi.report.reportDefinition.invalid"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 11:45:38.446 [main] INFO - Response Code: 400 +2019-02-25 11:45:38.446 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_45cf0426-63b3-42e2-83c7-6f8d1b81bae3 +X-OPNET-Transaction-Trace: a2_fe70aa71-cadc-4f66-b831-eb5a3378e758 +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Mon, 25 Feb 2019 06:15:38 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:37 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d6c0b5c0-f38d-4b4f-bcfb-0d86ad9cdf20 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075338039 +OkHttp-Received-Millis: 1551075338446 + +2019-02-25 11:45:38.446 [main] INFO - ********* END *********: +2019-02-25 11:45:38.478 [main] INFO - ********* START ********* +2019-02-25 11:45:38.478 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:38.478 [main] INFO - Request Type: DELETE +2019-02-25 11:45:38.478 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/testrest_v604, requestType=DELETE} +2019-02-25 11:45:38.478 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:38.478 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:38.478 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:38.478 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="+NEE4RSjHECP+xQvzmT+j7wkjDmDbdLx+7k1eukHYvE=" +2019-02-25 11:45:38.478 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:38.946 [main] INFO - Request Body: null +2019-02-25 11:45:38.946 [main] INFO - Response Message: null +2019-02-25 11:45:38.946 [main] INFO - Response Code: 200 +2019-02-25 11:45:38.946 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_39bfe001-aee2-457d-af6e-f5651da65eab +X-OPNET-Transaction-Trace: a2_40582782-ffe6-4661-a5d7-ae4defdf3e20 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 25 Feb 2019 06:15:38 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:38 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: da87c290-a11e-40f2-9374-7e0152909bff +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075338493 +OkHttp-Received-Millis: 1551075338946 + +2019-02-25 11:45:38.946 [main] INFO - ********* END *********: +2019-02-25 11:45:38.978 [main] INFO - ********* START ********* +2019-02-25 11:45:38.978 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:38.978 [main] INFO - Request Type: DELETE +2019-02-25 11:45:38.978 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/ghsrrawasbhfhcb, requestType=DELETE} +2019-02-25 11:45:38.978 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:38.978 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:38.978 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:38.978 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="nb/ehCUJIU1DIvWIL1eNI/FbEiRRHSXWna9MD6tjmF4=" +2019-02-25 11:45:38.978 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:39.399 [main] INFO - Request Body: null +2019-02-25 11:45:39.399 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/ghsrrawasbhfhcb"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"Requested subscription does not exist."} +2019-02-25 11:45:39.399 [main] INFO - Response Code: 404 +2019-02-25 11:45:39.399 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d95ad79b-3abf-4e77-955c-b169c013b2cd +X-OPNET-Transaction-Trace: a2_d61b3317-f65f-4c32-8a49-379bb67393b2 +Cache-Control: no-cache, no-transform +ETag: "860016692-gzip" +Expires: Mon, 25 Feb 2019 06:15:39 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:39 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 07c2fda3-e03d-4188-ab86-c9c518e9aed7 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075338993 +OkHttp-Received-Millis: 1551075339399 + +2019-02-25 11:45:39.399 [main] INFO - ********* END *********: +2019-02-25 11:45:39.431 [main] INFO - ********* START ********* +2019-02-25 11:45:39.431 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:39.431 [main] INFO - Request Type: GET +2019-02-25 11:45:39.431 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-25 11:45:39.431 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:39.431 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:39.431 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:39.431 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="3Y/zMw76mDWCy+74UHYRsxTU79AcZumbGU34ht25z3g=" +2019-02-25 11:45:39.431 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:46.212 [main] INFO - Request Body: null +2019-02-25 11:45:46.212 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime"}},"reportSearchResults":[{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-01T16:00:00.000Z","reportEndTime":"2018-08-02T16:00:00.000Z","timezone":"America/Chicago","reportId":"726ba2c2-5b4d-7cff-e053-a2588e0ad3fd","organizationId":"testrest","queuedTime":"2018-08-02T17:34:53.000Z","reportGenerationTime":"2018-08-02T17:34:56.000Z","reportCompletedTime":"2018-08-02T17:34:58.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-02T16:00:00.000Z","reportEndTime":"2018-08-03T16:00:00.000Z","timezone":"America/Chicago","reportId":"728b155d-dbe2-2db9-e053-a2588e0a1848","organizationId":"testrest","queuedTime":"2018-08-03T17:33:01.000Z","reportGenerationTime":"2018-08-03T17:33:04.000Z","reportCompletedTime":"2018-08-03T17:33:05.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-03T16:00:00.000Z","reportEndTime":"2018-08-04T16:00:00.000Z","timezone":"America/Chicago","reportId":"7293dd60-2ff4-2dc3-e053-a2588e0a5d2e","organizationId":"testrest","queuedTime":"2018-08-04T17:32:23.000Z","reportGenerationTime":"2018-08-04T17:32:27.000Z","reportCompletedTime":"2018-08-04T17:32:28.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-04T16:00:00.000Z","reportEndTime":"2018-08-05T16:00:00.000Z","timezone":"America/Chicago","reportId":"7293dd60-7cce-2dc3-e053-a2588e0a5d2e","organizationId":"testrest","queuedTime":"2018-08-05T17:30:34.000Z","reportGenerationTime":"2018-08-05T17:30:38.000Z","reportCompletedTime":"2018-08-05T17:30:40.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-05T16:00:00.000Z","reportEndTime":"2018-08-06T16:00:00.000Z","timezone":"America/Chicago","reportId":"7294af2d-dec6-2dad-e053-a2588e0a6e57","organizationId":"testrest","queuedTime":"2018-08-06T17:34:10.000Z","reportGenerationTime":"2018-08-06T17:34:13.000Z","reportCompletedTime":"2018-08-06T17:34:15.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-06T16:00:00.000Z","reportEndTime":"2018-08-07T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d4c960-e05d-2dbd-e053-a2588e0a4952","organizationId":"testrest","queuedTime":"2018-08-07T17:33:37.000Z","reportGenerationTime":"2018-08-07T17:33:40.000Z","reportCompletedTime":"2018-08-07T17:33:41.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-07T16:00:00.000Z","reportEndTime":"2018-08-08T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d4c960-e530-2dbd-e053-a2588e0a4952","organizationId":"testrest","queuedTime":"2018-08-08T17:32:44.000Z","reportGenerationTime":"2018-08-08T17:32:46.000Z","reportCompletedTime":"2018-08-08T17:32:48.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"TRRReport","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-07T16:00:00.000Z","reportEndTime":"2018-08-08T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d4c960-e531-2dbd-e053-a2588e0a4952","organizationId":"testrest","queuedTime":"2018-08-08T17:32:44.000Z","reportGenerationTime":"2018-08-08T17:32:46.000Z","reportCompletedTime":"2018-08-08T17:32:48.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-08T16:00:00.000Z","reportEndTime":"2018-08-09T16:00:00.000Z","timezone":"America/Chicago","reportId":"728b155d-df16-2db9-e053-a2588e0a1848","organizationId":"testrest","queuedTime":"2018-08-09T17:31:11.000Z","reportGenerationTime":"2018-08-09T17:31:13.000Z","reportCompletedTime":"2018-08-09T17:31:15.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"TRRReport","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-08T16:00:00.000Z","reportEndTime":"2018-08-09T16:00:00.000Z","timezone":"America/Chicago","reportId":"728b155d-df17-2db9-e053-a2588e0a1848","organizationId":"testrest","queuedTime":"2018-08-09T17:31:11.000Z","reportGenerationTime":"2018-08-09T17:31:13.000Z","reportCompletedTime":"2018-08-09T17:31:15.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-09T16:00:00.000Z","reportEndTime":"2018-08-10T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d09c70-2a69-2da5-e053-a2588e0a2ca5","organizationId":"testrest","queuedTime":"2018-08-10T17:34:01.000Z","reportGenerationTime":"2018-08-10T17:34:04.000Z","reportCompletedTime":"2018-08-10T17:34:05.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"TRRReport","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-09T16:00:00.000Z","reportEndTime":"2018-08-10T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d09c70-2a6a-2da5-e053-a2588e0a2ca5","organizationId":"testrest","queuedTime":"2018-08-10T17:34:01.000Z","reportGenerationTime":"2018-08-10T17:34:04.000Z","reportCompletedTime":"2018-08-10T17:34:06.000Z","selectedOrganizationId":null,"groupId":null}]} +2019-02-25 11:45:46.212 [main] INFO - Response Code: 200 +2019-02-25 11:45:46.212 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e51516b6-a5f4-4fdc-bb99-f76d619db5ba +X-OPNET-Transaction-Trace: a2_17f2ce46-ec7b-4a26-bf5a-433d5453d8cb +Cache-Control: no-cache, no-transform +ETag: "98577355-gzip" +Expires: Mon, 25 Feb 2019 06:15:46 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:45 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 004818ca-026f-4ad4-9997-2f89c6b7f2de +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075339431 +OkHttp-Received-Millis: 1551075346212 + +2019-02-25 11:45:46.212 [main] INFO - ********* END *********: +2019-02-25 11:45:46.259 [main] INFO - ********* START ********* +2019-02-25 11:45:46.259 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:46.259 [main] INFO - Request Type: GET +2019-02-25 11:45:46.259 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime, requestType=GET} +2019-02-25 11:45:46.259 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:46.259 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:46.259 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:46.259 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="kxrsF7Jaujp3cIXBU0UndCPpsVhBpt2igIYqNAV8zkE=" +2019-02-25 11:45:46.259 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:46.696 [main] INFO - Request Body: null +2019-02-25 11:45:46.696 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"timeQueryType","message":"Time Query Type is invalid","localizationKey":null}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 11:45:46.696 [main] INFO - Response Code: 400 +2019-02-25 11:45:46.696 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_23f8cb3b-8aca-472a-acf2-8bc2e7282ee4 +X-OPNET-Transaction-Trace: a2_85c88b87-ccc8-4288-83cf-76f0118223b9 +Cache-Control: no-cache, no-transform +ETag: "480352859-gzip" +Expires: Mon, 25 Feb 2019 06:15:46 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:46 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 618e80a0-df61-4650-a961-95269b6dc38f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075346259 +OkHttp-Received-Millis: 1551075346696 + +2019-02-25 11:45:46.696 [main] INFO - ********* END *********: +2019-02-25 11:45:46.723 [main] INFO - ********* START ********* +2019-02-25 11:45:46.723 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:46.723 [main] INFO - Request Type: GET +2019-02-25 11:45:46.723 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2019-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-25 11:45:46.723 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:46.723 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:46.723 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:46.723 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Nhj89X27Jw70oQ+gLnvg9eoF2675g5wbM5AZK3opxKo=" +2019-02-25 11:45:46.723 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:47.161 [main] INFO - Request Body: null +2019-02-25 11:45:47.161 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2019-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"No Reports found."} +2019-02-25 11:45:47.161 [main] INFO - Response Code: 404 +2019-02-25 11:45:47.161 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d554b8bc-19ad-4ef1-9969-53b78a0acf90 +X-OPNET-Transaction-Trace: a2_0e9d30a6-3cfe-4498-a46c-3ab7cdb98a76 +Cache-Control: no-cache, no-transform +ETag: "1803701484-gzip" +Expires: Mon, 25 Feb 2019 06:15:47 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:46 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a1068f28-3c77-4869-899c-41f9ed7ee27a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075346723 +OkHttp-Received-Millis: 1551075347161 + +2019-02-25 11:45:47.161 [main] INFO - ********* END *********: +2019-02-25 11:45:47.192 [main] INFO - ********* START ********* +2019-02-25 11:45:47.192 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:47.192 [main] INFO - Request Type: GET +2019-02-25 11:45:47.192 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00, requestType=GET} +2019-02-25 11:45:47.192 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:47.192 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:47.192 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:47.192 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="x8AiJ6BOZ1XLv0kZzj2x4kxJ+rN/ALuXbZkP5gkckH0=" +2019-02-25 11:45:47.192 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:47.817 [main] INFO - Request Body: null +2019-02-25 11:45:47.817 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"No results found for the given dates"} +2019-02-25 11:45:47.817 [main] INFO - Response Code: 404 +2019-02-25 11:45:47.817 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_6759694c-52cb-4d78-a87b-01f8a06507e0 +X-OPNET-Transaction-Trace: a2_470668bf-6ebb-49ae-be05-e3bc32cf1310 +Cache-Control: no-cache, no-transform +ETag: "1442562825-gzip" +Expires: Mon, 25 Feb 2019 06:15:47 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:47 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: bc93e0da-1f8e-4450-ae38-5d7dc7655682 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075347192 +OkHttp-Received-Millis: 1551075347817 + +2019-02-25 11:45:47.817 [main] INFO - ********* END *********: +2019-02-25 11:45:47.834 [main] INFO - ********* START ********* +2019-02-25 11:45:47.834 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:47.834 [main] INFO - Request Type: GET +2019-02-25 11:45:47.850 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/notification-of-changes?startTime=2019-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-05-30T12%3A00%3A00.000-05%3A00, requestType=GET} +2019-02-25 11:45:47.850 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:47.850 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:47.850 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:47.850 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="uProSLii2voLqylYk3457GjzFFAzuOHnIi13AU1n2ro=" +2019-02-25 11:45:47.850 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:48.256 [main] INFO - Request Body: null +2019-02-25 11:45:48.256 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/notification-of-changes?startTime=2019-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-05-30T12%3A00%3A00.000-05%3A00"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 11:45:48.272 [main] INFO - Response Code: 400 +2019-02-25 11:45:48.272 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e27d2382-65c4-44a9-957b-0e0433ea0d36 +X-OPNET-Transaction-Trace: a2_66b72f17-ea0e-431f-9988-307cbeefc05e +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:47 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a0a63e8c-4afe-477f-b709-e583126146d0 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075347850 +OkHttp-Received-Millis: 1551075348256 + +2019-02-25 11:45:48.272 [main] INFO - ********* END *********: +2019-02-25 11:45:48.303 [main] INFO - ********* START ********* +2019-02-25 11:45:48.303 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:48.303 [main] INFO - Request Type: GET +2019-02-25 11:45:48.303 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-25 11:45:48.303 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:48.303 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:48.303 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:48.303 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ttZiLwwr2Dzu964xk0nqDI1eMiqRH7CDBK5EwvexWz8=" +2019-02-25 11:45:48.303 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:48.756 [main] INFO - Request Body: null +2019-02-25 11:45:48.756 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/purchase-refund-details"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 11:45:48.756 [main] INFO - Response Code: 400 +2019-02-25 11:45:48.756 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_730e134a-a890-4bf1-a743-d3fe97d24e38 +X-OPNET-Transaction-Trace: a2_dfb55273-2a93-4d70-81f1-a97969c56899 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:47 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d716adb1-c8b0-4908-a069-8dd1e5fc506a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075348303 +OkHttp-Received-Millis: 1551075348756 + +2019-02-25 11:45:48.756 [main] INFO - ********* END *********: +2019-02-25 11:45:48.772 [main] INFO - ********* START ********* +2019-02-25 11:45:48.772 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:48.772 [main] INFO - Request Type: GET +2019-02-25 11:45:48.772 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2019-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-25 11:45:48.772 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:48.772 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:48.772 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:48.772 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ppOwBfLAFsh91X0nKLOgAjfCHyEoF3xFXFZfwBQcPEc=" +2019-02-25 11:45:48.772 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:49.240 [main] INFO - Request Body: null +2019-02-25 11:45:49.240 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/purchase-refund-details"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 11:45:49.240 [main] INFO - Response Code: 400 +2019-02-25 11:45:49.240 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_cb1beed6-acd3-4b67-8dde-0ed5c5a69fff +X-OPNET-Transaction-Trace: a2_286e96b7-1942-4786-8623-5af46e4252a6 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:49 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 495ba798-7300-47cd-b95b-258fa53541ed +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075348772 +OkHttp-Received-Millis: 1551075349225 + +2019-02-25 11:45:49.240 [main] INFO - ********* END *********: +2019-02-25 11:45:49.259 [main] INFO - ********* START ********* +2019-02-25 11:45:49.259 [main] INFO - Authentication Type : http_signature +2019-02-25 11:45:49.259 [main] INFO - Request Type: GET +2019-02-25 11:45:49.259 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=udapaa&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-25 11:45:49.259 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:45:49.259 [main] INFO - Date: Mon, 25 Feb 2019 06:14:02 GMT +2019-02-25 11:45:49.259 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:45:49.259 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Jd6iKBASkZUyZ7g0G4kv2PArzjsjsSjNypLG4xjjzkE=" +2019-02-25 11:45:49.259 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:45:49.666 [main] INFO - Request Body: null +2019-02-25 11:45:49.666 [main] INFO - Response Message: Invalid Merchant +2019-02-25 11:45:49.666 [main] INFO - Response Code: 400 +2019-02-25 11:45:49.666 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d2d80c28-7aa5-4761-bd05-eaa058b0339b +X-OPNET-Transaction-Trace: a2_4821868d-3df8-4c61-8a07-b66a5e2e74ed +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:15:49 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 60763a6a-d57b-445e-bb31-4aa72e9e4f97 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551075349259 +OkHttp-Received-Millis: 1551075349650 + +2019-02-25 11:45:49.666 [main] INFO - ********* END *********: +2019-02-25 11:59:29.141 [main] INFO - ********* START ********* +2019-02-25 11:59:29.159 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:29.159 [main] INFO - Request Type: POST +2019-02-25 11:59:29.160 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-25 11:59:29.161 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-25 11:59:29.197 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:29.198 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:29.199 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:29.199 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="X6WP5j2KfQEgXr1ERXLfB4tFDMl/Xq/7iXhkb2w2Aao=" +2019-02-25 11:59:29.199 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:30.684 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-25 11:59:30.685 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_payment"},"id":"5510761702186636303005","orderInformation":{"amountDetails":{"authorizedAmount":"100.00","currency":"XXXXXXXXX"}},"processorInformation":{"approvalCode":"888888","responseCode":"100","avs":{"code":"X","codeRaw":"I1"}},"reconciliationId":"79003451QSEY0DFC","status":"AUTHORIZED","submitTimeUtc":"2019-02-25T06:29:30Z","_links":{"self":{"href":"/pts/v2/payments/5510761702186636303005","method":"GET"},"authReversal":{"href":"/pts/v2/payments/5510761702186636303005/reversals","method":"POST"},"capture":{"href":"/pts/v2/payments/5510761702186636303005/captures","method":"POST"},"refund":{"href":"/pts/v2/payments/5510761702186636303005/refunds","method":"POST"},"void":{"href":"/pts/v2/payments/5510761702186636303005/voids","method":"POST"}}} +2019-02-25 11:59:30.686 [main] INFO - Response Code: 201 +2019-02-25 11:59:30.686 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 414ms +v-c-correlation-id: 66a7fb5f-5f82-44d7-9b82-f5a923b88a90 +OkHttp-Sent-Millis: 1551076170050 +OkHttp-Received-Millis: 1551076170666 + +2019-02-25 11:59:30.686 [main] INFO - ********* END *********: +2019-02-25 11:59:30.777 [main] INFO - ********* START ********* +2019-02-25 11:59:30.778 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:30.778 [main] INFO - Request Type: POST +2019-02-25 11:59:30.779 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-25 11:59:30.779 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-25 11:59:30.779 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:30.779 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:30.779 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:30.779 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="sQHV+BNQJYzuGsrxbXR8WpUJBOojO65Y1EONMkQo8u0=" +2019-02-25 11:59:30.781 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:31.331 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-25 11:59:31.331 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_payment"},"id":"5510761709526404003001","orderInformation":{"amountDetails":{"authorizedAmount":"200.00","currency":"XXXXXXXXX"}},"processorInformation":{"approvalCode":"888888","responseCode":"100","avs":{"code":"X","codeRaw":"I1"}},"reconciliationId":"79003454QSEY0DFF","status":"AUTHORIZED","submitTimeUtc":"2019-02-25T06:29:31Z","_links":{"self":{"href":"/pts/v2/payments/5510761709526404003001","method":"GET"},"authReversal":{"href":"/pts/v2/payments/5510761709526404003001/reversals","method":"POST"},"capture":{"href":"/pts/v2/payments/5510761709526404003001/captures","method":"POST"},"refund":{"href":"/pts/v2/payments/5510761709526404003001/refunds","method":"POST"},"void":{"href":"/pts/v2/payments/5510761709526404003001/voids","method":"POST"}}} +2019-02-25 11:59:31.332 [main] INFO - Response Code: 201 +2019-02-25 11:59:31.332 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 347ms +v-c-correlation-id: e6733c62-bb23-420a-b438-005c73dbcfc6 +OkHttp-Sent-Millis: 1551076170785 +OkHttp-Received-Millis: 1551076171330 + +2019-02-25 11:59:31.332 [main] INFO - ********* END *********: +2019-02-25 11:59:31.350 [main] INFO - ********* START ********* +2019-02-25 11:59:31.350 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:31.351 [main] INFO - Request Type: POST +2019-02-25 11:59:31.351 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-25 11:59:31.352 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-25 11:59:31.352 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:31.352 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:31.353 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:31.353 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="3pjU+MYv0ZqgTNXRtF0LXbuxSb7hipTjbURXgbMsR88=" +2019-02-25 11:59:31.353 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:31.867 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-25 11:59:31.868 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:29:31Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"orderInformation.amountDetails.amount","reason":"INVALID_DATA"}]} +2019-02-25 11:59:31.868 [main] INFO - Response Code: 400 +2019-02-25 11:59:31.869 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 317ms +v-c-correlation-id: b1d5199f-aa1f-47de-b5b0-6ff661627097 +OkHttp-Sent-Millis: 1551076171356 +OkHttp-Received-Millis: 1551076171866 + +2019-02-25 11:59:31.869 [main] INFO - ********* END *********: +2019-02-25 11:59:31.943 [main] INFO - ********* START ********* +2019-02-25 11:59:31.944 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:31.944 [main] INFO - Request Type: POST +2019-02-25 11:59:31.945 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/captures, requestType=POST} +2019-02-25 11:59:31.945 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-02-25 11:59:31.946 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:31.946 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:31.946 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:31.947 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="DxKVPODsd950BV0eHRcqopNXI+pGoXlr7rWFJhCYKb0=" +2019-02-25 11:59:31.947 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:32.424 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-25 11:59:32.425 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_capture"},"id":"5510761721096908403006","orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"reconciliationId":"79001688QSEY0D3E","status":"PENDING","submitTimeUtc":"2019-02-25T06:29:32Z","_links":{"self":{"href":"/pts/v2/captures/5510761721096908403006","method":"GET"},"refund":{"href":"/pts/v2/captures/5510761721096908403006/refunds","method":"POST"},"void":{"href":"/pts/v2/captures/5510761721096908403006/voids","method":"POST"}}} +2019-02-25 11:59:32.425 [main] INFO - Response Code: 201 +2019-02-25 11:59:32.426 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 292ms +v-c-correlation-id: 030a70e0-b8e1-4ee9-b6e5-5bc193463ec8 +OkHttp-Sent-Millis: 1551076171953 +OkHttp-Received-Millis: 1551076172424 + +2019-02-25 11:59:32.426 [main] INFO - ********* END *********: +2019-02-25 11:59:32.459 [main] INFO - ********* START ********* +2019-02-25 11:59:32.460 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:32.460 [main] INFO - Request Type: POST +2019-02-25 11:59:32.460 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/captures, requestType=POST} +2019-02-25 11:59:32.461 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-02-25 11:59:32.461 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:32.462 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:32.462 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:32.462 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="XKfQ724unpc8tzTUhb4urD0Yu63Hlxs5QvYDUFQFbug=" +2019-02-25 11:59:32.462 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:32.967 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-25 11:59:32.967 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:29:32Z","status":"INVALID_REQUEST","reason":"EXCEEDS_AUTH_AMOUNT","message":"Decline - The requested amount exceeds the originally authorized amount. Occurs, for example, if you try to capture an amount larger than the original authorization amount."} +2019-02-25 11:59:32.968 [main] INFO - Response Code: 400 +2019-02-25 11:59:32.968 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 283 +X-Cnection: close +x-response-time: 308ms +v-c-correlation-id: 1e4bb42d-8527-404e-994d-7ba5d3c5cbda +OkHttp-Sent-Millis: 1551076172466 +OkHttp-Received-Millis: 1551076172966 + +2019-02-25 11:59:32.968 [main] INFO - ********* END *********: +2019-02-25 11:59:32.986 [main] INFO - ********* START ********* +2019-02-25 11:59:32.986 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:32.986 [main] INFO - Request Type: POST +2019-02-25 11:59:32.987 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/56546567456/captures, requestType=POST} +2019-02-25 11:59:32.987 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-02-25 11:59:32.988 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:32.988 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:32.988 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:32.988 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="r1jbGrC/puvX/xzhutGTlzlyWZdySBGWxpUZ9n2F34c=" +2019-02-25 11:59:32.989 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:33.474 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-25 11:59:33.474 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:29:33Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 11:59:33.475 [main] INFO - Response Code: 400 +2019-02-25 11:59:33.475 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 302ms +v-c-correlation-id: f535d8f9-6e45-4c2d-a550-21af7b488cc5 +OkHttp-Sent-Millis: 1551076172990 +OkHttp-Received-Millis: 1551076173473 + +2019-02-25 11:59:33.475 [main] INFO - ********* END *********: +2019-02-25 11:59:33.513 [main] INFO - ********* START ********* +2019-02-25 11:59:33.514 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:33.514 [main] INFO - Request Type: POST +2019-02-25 11:59:33.514 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/reversals, requestType=POST} +2019-02-25 11:59:33.515 [main] INFO - Digest: SHA-256=+nVNWFcK5wejoED726n/0CNM4MAETj2u1DH6s02VUIk= +2019-02-25 11:59:33.515 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:33.515 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:33.516 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:33.516 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="COW7si/sgf10By5fbsVnHzpclwNx9CWe/JYHXGQW5Vk=" +2019-02-25 11:59:33.516 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:34.067 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"100.00"},"reason":"testing"}} +2019-02-25 11:59:34.068 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:29:34Z","status":"INVALID_REQUEST","reason":"TRANSACTION_ALREADY_REVERSED_OR_SETTLED","message":"Decline - The transaction has already been settled or reversed."} +2019-02-25 11:59:34.068 [main] INFO - Response Code: 400 +2019-02-25 11:59:34.068 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 194 +X-Cnection: close +x-response-time: 363ms +v-c-correlation-id: ab9de096-e62a-4580-bddd-e9ea2cf17965 +OkHttp-Sent-Millis: 1551076173523 +OkHttp-Received-Millis: 1551076174067 + +2019-02-25 11:59:34.069 [main] INFO - ********* END *********: +2019-02-25 11:59:34.086 [main] INFO - ********* START ********* +2019-02-25 11:59:34.086 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:34.086 [main] INFO - Request Type: POST +2019-02-25 11:59:34.087 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/reversals, requestType=POST} +2019-02-25 11:59:34.087 [main] INFO - Digest: SHA-256=pAGeIXg2n5jV3A6rwpZbKaLbAzo/U73Yk5w2Zu0QX4M= +2019-02-25 11:59:34.087 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:34.088 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:34.088 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:34.088 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="HSwAGJIll1OaXuPrI26U25lBzn8pcjYaFNdn0GbqSvA=" +2019-02-25 11:59:34.088 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:34.571 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"200"},"reason":"testing"}} +2019-02-25 11:59:34.572 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:29:34Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"reversalInformation.amountDetails.totalAmount","reason":"INVALID_DATA"}]} +2019-02-25 11:59:34.573 [main] INFO - Response Code: 400 +2019-02-25 11:59:34.573 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 264 +X-Cnection: close +x-response-time: 296ms +v-c-correlation-id: 396ab47c-d013-4724-ad90-4492f19f1d97 +OkHttp-Sent-Millis: 1551076174091 +OkHttp-Received-Millis: 1551076174571 + +2019-02-25 11:59:34.573 [main] INFO - ********* END *********: +2019-02-25 11:59:34.590 [main] INFO - ********* START ********* +2019-02-25 11:59:34.590 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:34.591 [main] INFO - Request Type: POST +2019-02-25 11:59:34.591 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/767675757666/reversals, requestType=POST} +2019-02-25 11:59:34.591 [main] INFO - Digest: SHA-256=RnqH1+fiMX9fBKoMyq/WM8zd/qr2MMABzEgQHthyeSc= +2019-02-25 11:59:34.592 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:34.592 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:34.592 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:34.593 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="EXl1WT0VOgzDj7f1Tr7QEE8dJ6i5bNKCKEb+Dx9GJ3A=" +2019-02-25 11:59:34.593 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:35.107 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"100"},"reason":"testing"}} +2019-02-25 11:59:35.108 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:29:35Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 11:59:35.109 [main] INFO - Response Code: 400 +2019-02-25 11:59:35.109 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 318ms +v-c-correlation-id: 58f6c338-0e17-43db-a52c-7f51afb90a0b +OkHttp-Sent-Millis: 1551076174596 +OkHttp-Received-Millis: 1551076175105 + +2019-02-25 11:59:35.110 [main] INFO - ********* END *********: +2019-02-25 11:59:35.176 [main] INFO - ********* START ********* +2019-02-25 11:59:35.176 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:35.177 [main] INFO - Request Type: POST +2019-02-25 11:59:35.177 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-25 11:59:35.178 [main] INFO - Digest: SHA-256=zxGx3jITWtX9QIzslmEjtRBRSY1fB9P+o4iF5tlE4Oo= +2019-02-25 11:59:35.178 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:35.178 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:35.179 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:35.179 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="OI4GfhBQT1Ue06qD3lzYOzpdynv810NkWILmjoP+D9Q=" +2019-02-25 11:59:35.180 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:35.674 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 11:59:35.675 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_credits"},"creditAmountDetails":{"currency":"XXXXXXXXX","creditAmount":"100.00"},"id":"5510761753416377203002","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"789733568SF0DP6X","status":"PENDING","submitTimeUtc":"2019-02-25T06:29:35Z","_links":{"self":{"href":"/pts/v2/credits/5510761753416377203002","method":"GET"},"void":{"href":"/pts/v2/credits/5510761753416377203002/voids","method":"POST"}}} +2019-02-25 11:59:35.675 [main] INFO - Response Code: 201 +2019-02-25 11:59:35.675 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 463 +X-Cnection: close +x-response-time: 305ms +v-c-correlation-id: 25b57f6c-8a68-413b-8b19-90bdacfaa29d +OkHttp-Sent-Millis: 1551076175188 +OkHttp-Received-Millis: 1551076175673 + +2019-02-25 11:59:35.676 [main] INFO - ********* END *********: +2019-02-25 11:59:35.703 [main] INFO - ********* START ********* +2019-02-25 11:59:35.704 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:35.704 [main] INFO - Request Type: POST +2019-02-25 11:59:35.704 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-25 11:59:35.705 [main] INFO - Digest: SHA-256=uT4XJKlq0xIzVkS9dGPs0tcDwyAp7ONh+358ol986cw= +2019-02-25 11:59:35.705 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:35.705 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:35.705 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:35.706 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="+3UArmbUFXciMh/VDBXVR/6/14OfEE/CI2IDk/nk1zc=" +2019-02-25 11:59:35.706 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:36.400 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 11:59:36.400 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_credits"},"creditAmountDetails":{"currency":"XXXXXXXXX","creditAmount":"200.00"},"id":"5510761758906329403003","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"78973722VSBVN8EU","status":"PENDING","submitTimeUtc":"2019-02-25T06:29:36Z","_links":{"self":{"href":"/pts/v2/credits/5510761758906329403003","method":"GET"},"void":{"href":"/pts/v2/credits/5510761758906329403003/voids","method":"POST"}}} +2019-02-25 11:59:36.401 [main] INFO - Response Code: 201 +2019-02-25 11:59:36.401 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 463 +X-Cnection: close +x-response-time: 485ms +v-c-correlation-id: 67a52e27-60c1-42b3-a714-047e30da3d22 +OkHttp-Sent-Millis: 1551076175714 +OkHttp-Received-Millis: 1551076176399 + +2019-02-25 11:59:36.401 [main] INFO - ********* END *********: +2019-02-25 11:59:36.419 [main] INFO - ********* START ********* +2019-02-25 11:59:36.419 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:36.420 [main] INFO - Request Type: POST +2019-02-25 11:59:36.420 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-25 11:59:36.420 [main] INFO - Digest: SHA-256=4d6LdcAephqc3ZxTiCs5DRzvla4hZ9OijS7F7lbH+MA= +2019-02-25 11:59:36.420 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:36.421 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:36.421 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:36.421 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="YfpYVV387JlkV6tpEuMGjtXRwA8/16AhyF3LuMsaihc=" +2019-02-25 11:59:36.422 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:36.933 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"GHTR25","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 11:59:36.933 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:29:36Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"orderInformation.amountDetails.amount","reason":"INVALID_DATA"}]} +2019-02-25 11:59:36.933 [main] INFO - Response Code: 400 +2019-02-25 11:59:36.934 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 315ms +v-c-correlation-id: 34502f50-4f27-42f8-a352-c54205b2a244 +OkHttp-Sent-Millis: 1551076176424 +OkHttp-Received-Millis: 1551076176932 + +2019-02-25 11:59:36.934 [main] INFO - ********* END *********: +2019-02-25 11:59:36.964 [main] INFO - ********* START ********* +2019-02-25 11:59:36.964 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:36.964 [main] INFO - Request Type: POST +2019-02-25 11:59:36.965 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/refunds, requestType=POST} +2019-02-25 11:59:36.965 [main] INFO - Digest: SHA-256=I+1qD0zhOoAiatjE27A6YBxkUKBTRSBoS6VKc2mS8Bc= +2019-02-25 11:59:36.965 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:36.966 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:36.966 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:36.966 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="kiwt3ZcAEXCUMJQ+s96lzKJg//FGQxx/7fKljn8U01E=" +2019-02-25 11:59:36.967 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:37.497 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}}} +2019-02-25 11:59:37.498 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_refund_payment"},"creditAmountDetails":{"currency":"XXXXXXXXX"},"id":"5510761771246329603003","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"78973181PSF0DT4Q","refundAmountDetails":{"currency":"XXXXXXXXX","refundAmount":"100.00"},"status":"PENDING","submitTimeUtc":"2019-02-25T06:29:37Z","_links":{"self":{"href":"/pts/v2/refunds/5510761771246329603003","method":"GET"},"void":{"href":"/pts/v2/refunds/5510761771246329603003/voids","method":"POST"}}} +2019-02-25 11:59:37.499 [main] INFO - Response Code: 201 +2019-02-25 11:59:37.499 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 511 +X-Cnection: close +x-response-time: 343ms +v-c-correlation-id: b4900185-8042-4962-ada8-da72231ea719 +OkHttp-Sent-Millis: 1551076176972 +OkHttp-Received-Millis: 1551076177497 + +2019-02-25 11:59:37.499 [main] INFO - ********* END *********: +2019-02-25 11:59:37.523 [main] INFO - ********* START ********* +2019-02-25 11:59:37.523 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:37.524 [main] INFO - Request Type: POST +2019-02-25 11:59:37.524 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/refunds, requestType=POST} +2019-02-25 11:59:37.524 [main] INFO - Digest: SHA-256=k43sFGLkconY+lZ+qk3SH20ZjY4hdnzlhh7bkAtP+34= +2019-02-25 11:59:37.525 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:37.525 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:37.525 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:37.526 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="e8LaYqeUXYoNHUSHqwnGZxzEMIXgubwynXmyRABgjQg=" +2019-02-25 11:59:37.526 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:38.039 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}}} +2019-02-25 11:59:38.039 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_refund_payment"},"creditAmountDetails":{"currency":"XXXXXXXXX"},"id":"5510761776856377303002","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"789733578SF0DP6Y","refundAmountDetails":{"currency":"XXXXXXXXX","refundAmount":"200.00"},"status":"PENDING","submitTimeUtc":"2019-02-25T06:29:37Z","_links":{"self":{"href":"/pts/v2/refunds/5510761776856377303002","method":"GET"},"void":{"href":"/pts/v2/refunds/5510761776856377303002/voids","method":"POST"}}} +2019-02-25 11:59:38.040 [main] INFO - Response Code: 201 +2019-02-25 11:59:38.040 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 511 +X-Cnection: close +x-response-time: 316ms +v-c-correlation-id: 12273796-a787-4e55-afe6-d8595a24628f +OkHttp-Sent-Millis: 1551076177528 +OkHttp-Received-Millis: 1551076178038 + +2019-02-25 11:59:38.041 [main] INFO - ********* END *********: +2019-02-25 11:59:38.057 [main] INFO - ********* START ********* +2019-02-25 11:59:38.058 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:38.058 [main] INFO - Request Type: POST +2019-02-25 11:59:38.058 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/676557657545457/refunds, requestType=POST} +2019-02-25 11:59:38.058 [main] INFO - Digest: SHA-256=3OkTv9EQccMckYHiNHUzAweMWa91L1CQXTmCvjjQHoU= +2019-02-25 11:59:38.059 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:38.059 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:38.059 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:38.060 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="/lHS48PBJH2wuqD0nu1HVKedT4d3d4rsdMrk9+IAw3Y=" +2019-02-25 11:59:38.060 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:38.593 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"}}} +2019-02-25 11:59:38.594 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:29:38Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 11:59:38.594 [main] INFO - Response Code: 400 +2019-02-25 11:59:38.594 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 347ms +v-c-correlation-id: 4af87b59-5494-49d9-855b-0fcbe41ac235 +OkHttp-Sent-Millis: 1551076178062 +OkHttp-Received-Millis: 1551076178589 + +2019-02-25 11:59:38.595 [main] INFO - ********* END *********: +2019-02-25 11:59:38.618 [main] INFO - ********* START ********* +2019-02-25 11:59:38.619 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:38.619 [main] INFO - Request Type: POST +2019-02-25 11:59:38.619 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5510757573906363803002/refunds, requestType=POST} +2019-02-25 11:59:38.620 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-25 11:59:38.620 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:38.620 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:38.620 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:38.621 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="THCEGZUJ5YbnXXZ+syk8nAllv1QqldegwXBpLID3lFc=" +2019-02-25 11:59:38.621 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:39.185 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 11:59:39.186 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_refund_capture"},"creditAmountDetails":{"currency":"XXXXXXXXX"},"id":"5510761787836274803004","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"78973723VSBVN8EV","refundAmountDetails":{"currency":"XXXXXXXXX","refundAmount":"100.00"},"status":"PENDING","submitTimeUtc":"2019-02-25T06:29:39Z","_links":{"self":{"href":"/pts/v2/refunds/5510761787836274803004","method":"GET"},"void":{"href":"/pts/v2/refunds/5510761787836274803004/voids","method":"POST"}}} +2019-02-25 11:59:39.186 [main] INFO - Response Code: 201 +2019-02-25 11:59:39.186 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 511 +X-Cnection: close +x-response-time: 376ms +v-c-correlation-id: 5eadce3e-6b9a-4e6d-8d47-f4bd5aa1708d +OkHttp-Sent-Millis: 1551076178626 +OkHttp-Received-Millis: 1551076179184 + +2019-02-25 11:59:39.187 [main] INFO - ********* END *********: +2019-02-25 11:59:39.204 [main] INFO - ********* START ********* +2019-02-25 11:59:39.204 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:39.205 [main] INFO - Request Type: POST +2019-02-25 11:59:39.205 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5510757573906363803002/refunds, requestType=POST} +2019-02-25 11:59:39.205 [main] INFO - Digest: SHA-256=wpSGzbtW0BUOhzWs7lfUWgOPwslWGPDCGWzRLNsbsWk= +2019-02-25 11:59:39.205 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:39.206 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:39.206 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:39.206 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="CEz1Hb8eRXsCxzOagghc5xPNCtXY87UzS2Ysib4RyKU=" +2019-02-25 11:59:39.207 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:40.698 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 11:59:40.699 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_refund_capture"},"creditAmountDetails":{"currency":"XXXXXXXXX"},"id":"5510761793626275003004","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"78973182PSF0DT4R","refundAmountDetails":{"currency":"XXXXXXXXX","refundAmount":"200.00"},"status":"PENDING","submitTimeUtc":"2019-02-25T06:29:40Z","_links":{"self":{"href":"/pts/v2/refunds/5510761793626275003004","method":"GET"},"void":{"href":"/pts/v2/refunds/5510761793626275003004/voids","method":"POST"}}} +2019-02-25 11:59:40.699 [main] INFO - Response Code: 201 +2019-02-25 11:59:40.700 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 511 +X-Cnection: close +x-response-time: 1310ms +v-c-correlation-id: d84f1be0-70af-4b5d-b470-0101ecb564aa +OkHttp-Sent-Millis: 1551076179209 +OkHttp-Received-Millis: 1551076180698 + +2019-02-25 11:59:40.700 [main] INFO - ********* END *********: +2019-02-25 11:59:40.717 [main] INFO - ********* START ********* +2019-02-25 11:59:40.718 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:40.718 [main] INFO - Request Type: POST +2019-02-25 11:59:40.718 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/7567677656567/refunds, requestType=POST} +2019-02-25 11:59:40.718 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-25 11:59:40.719 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:40.719 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:40.719 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:40.720 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="5f9R3jGgvFIulvwrkdc/uXbQN0yOm0KeAqhNbnfQxew=" +2019-02-25 11:59:40.720 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:41.231 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 11:59:41.231 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:29:41Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 11:59:41.232 [main] INFO - Response Code: 400 +2019-02-25 11:59:41.232 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 321ms +v-c-correlation-id: 1f72be0a-d5fe-4025-baac-53011d18ef4c +OkHttp-Sent-Millis: 1551076180722 +OkHttp-Received-Millis: 1551076181230 + +2019-02-25 11:59:41.233 [main] INFO - ********* END *********: +2019-02-25 11:59:41.261 [main] INFO - ********* START ********* +2019-02-25 11:59:41.262 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:41.262 [main] INFO - Request Type: POST +2019-02-25 11:59:41.262 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/voids, requestType=POST} +2019-02-25 11:59:41.262 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-25 11:59:41.263 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:41.263 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:41.263 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:41.263 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="cqZnIhOisIHzWcyQq06o4pnN2ULPxP4Scwnc6y3nEIA=" +2019-02-25 11:59:41.264 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:41.795 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-02-25 11:59:41.795 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:29:41Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-25 11:59:41.795 [main] INFO - Response Code: 400 +2019-02-25 11:59:41.796 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 326ms +v-c-correlation-id: a8659f33-042d-4ab3-8ddb-4dcb4efef796 +OkHttp-Sent-Millis: 1551076181271 +OkHttp-Received-Millis: 1551076181794 + +2019-02-25 11:59:41.796 [main] INFO - ********* END *********: +2019-02-25 11:59:41.813 [main] INFO - ********* START ********* +2019-02-25 11:59:41.813 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:41.813 [main] INFO - Request Type: POST +2019-02-25 11:59:41.814 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5475754754/voids, requestType=POST} +2019-02-25 11:59:41.814 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-25 11:59:41.814 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:41.814 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:41.815 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:41.815 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="gzFFm5z000Jw7Uyht2gwZ45/ce80tGckVxOIsCd784I=" +2019-02-25 11:59:41.815 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:42.314 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-02-25 11:59:42.314 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:29:42Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 11:59:42.315 [main] INFO - Response Code: 400 +2019-02-25 11:59:42.315 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 318ms +v-c-correlation-id: f3433d08-34e7-4b51-8e54-496e34c50632 +OkHttp-Sent-Millis: 1551076181817 +OkHttp-Received-Millis: 1551076182314 + +2019-02-25 11:59:42.315 [main] INFO - ********* END *********: +2019-02-25 11:59:42.336 [main] INFO - ********* START ********* +2019-02-25 11:59:42.337 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:42.337 [main] INFO - Request Type: POST +2019-02-25 11:59:42.337 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5510757573906363803002/voids, requestType=POST} +2019-02-25 11:59:42.338 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-25 11:59:42.338 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:42.338 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:42.338 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:42.339 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="PPfX+uHzERlIPLMdD1QkAj6Z1Rd47urrAEk7a6qpulw=" +2019-02-25 11:59:42.339 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:42.839 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture_void"}} +2019-02-25 11:59:42.839 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:29:42Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-25 11:59:42.839 [main] INFO - Response Code: 400 +2019-02-25 11:59:42.840 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 313ms +v-c-correlation-id: 88126fb5-2393-4e45-85fc-782990d566df +OkHttp-Sent-Millis: 1551076182342 +OkHttp-Received-Millis: 1551076182838 + +2019-02-25 11:59:42.840 [main] INFO - ********* END *********: +2019-02-25 11:59:42.862 [main] INFO - ********* START ********* +2019-02-25 11:59:42.862 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:42.862 [main] INFO - Request Type: POST +2019-02-25 11:59:42.863 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/551075757390555803002/voids, requestType=POST} +2019-02-25 11:59:42.863 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-25 11:59:42.863 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:42.864 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:42.864 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:42.864 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="GMrS2srYkKlpt9jz0hGpXyNwauqyxP74eUv+kB7l1Pg=" +2019-02-25 11:59:42.864 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:52.892 [main] INFO - ********* START ********* +2019-02-25 11:59:52.892 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:52.893 [main] INFO - Request Type: POST +2019-02-25 11:59:52.893 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/5510757573906363803002/voids, requestType=POST} +2019-02-25 11:59:52.893 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-25 11:59:52.894 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:52.894 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:52.894 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:52.894 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="d7ssG85BDsbSkY0wWr1pldbCQdDuw2NpYPxdpWZBPzE=" +2019-02-25 11:59:52.895 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:53.710 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credit_void"}} +2019-02-25 11:59:53.711 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:29:53Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-25 11:59:53.711 [main] INFO - Response Code: 400 +2019-02-25 11:59:53.711 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 330ms +v-c-correlation-id: 48f5e4bd-f3fc-47b4-8766-a15c1dd51f0b +OkHttp-Sent-Millis: 1551076193109 +OkHttp-Received-Millis: 1551076193709 + +2019-02-25 11:59:53.712 [main] INFO - ********* END *********: +2019-02-25 11:59:53.730 [main] INFO - ********* START ********* +2019-02-25 11:59:53.731 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:53.731 [main] INFO - Request Type: POST +2019-02-25 11:59:53.731 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/547676/voids, requestType=POST} +2019-02-25 11:59:53.732 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-25 11:59:53.732 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:53.732 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:53.733 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:53.733 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="zfeJ/k/uHfZ8BaMn6RTb0xb6AdY5iwx58rMvcsECzmw=" +2019-02-25 11:59:53.733 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:54.269 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credit_void"}} +2019-02-25 11:59:54.270 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:29:54Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 11:59:54.270 [main] INFO - Response Code: 400 +2019-02-25 11:59:54.271 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 357ms +v-c-correlation-id: c050a1cd-2a33-49ff-a03b-c6591e250475 +OkHttp-Sent-Millis: 1551076193735 +OkHttp-Received-Millis: 1551076194269 + +2019-02-25 11:59:54.271 [main] INFO - ********* END *********: +2019-02-25 11:59:54.295 [main] INFO - ********* START ********* +2019-02-25 11:59:54.295 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:54.296 [main] INFO - Request Type: POST +2019-02-25 11:59:54.296 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/5510757573906363803002/voids, requestType=POST} +2019-02-25 11:59:54.296 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-25 11:59:54.296 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:54.297 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:54.297 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:54.297 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="7EoPexglhih6PupHJUn/N9ETGRb4C7VVmBqbmwxRu2k=" +2019-02-25 11:59:54.297 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:54.793 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_void"}} +2019-02-25 11:59:54.793 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:29:54Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-25 11:59:54.794 [main] INFO - Response Code: 400 +2019-02-25 11:59:54.794 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 318ms +v-c-correlation-id: b9c2c7b0-d48c-4f2e-a95b-97d7c5e2de47 +OkHttp-Sent-Millis: 1551076194302 +OkHttp-Received-Millis: 1551076194792 + +2019-02-25 11:59:54.794 [main] INFO - ********* END *********: +2019-02-25 11:59:54.811 [main] INFO - ********* START ********* +2019-02-25 11:59:54.811 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:54.812 [main] INFO - Request Type: POST +2019-02-25 11:59:54.812 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/45654754745/voids, requestType=POST} +2019-02-25 11:59:54.812 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-25 11:59:54.813 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:54.813 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:54.813 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:54.814 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="2mweoFu8bqxgYfImuaLmCZTWpnaiz6Wk2Bu9m7PL4ds=" +2019-02-25 11:59:54.814 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:55.283 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_void"}} +2019-02-25 11:59:55.284 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:29:55Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 11:59:55.284 [main] INFO - Response Code: 400 +2019-02-25 11:59:55.285 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 299ms +v-c-correlation-id: e055bb8a-e8e7-45ed-b75e-3064c3ad641d +OkHttp-Sent-Millis: 1551076194816 +OkHttp-Received-Millis: 1551076195282 + +2019-02-25 11:59:55.285 [main] INFO - ********* END *********: +2019-02-25 11:59:55.343 [main] INFO - ********* START ********* +2019-02-25 11:59:55.344 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:55.344 [main] INFO - Request Type: POST +2019-02-25 11:59:55.344 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-25 11:59:55.344 [main] INFO - Digest: SHA-256=rp59HYGOOXP6bWKiVpWMNgj4QjYai6gMk27yt69dPh8= +2019-02-25 11:59:55.345 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:55.345 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:55.345 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:55.346 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="bLGZzcXdPmYxf8UdsHboUOjz06sCKtSJrO75No3yChM=" +2019-02-25 11:59:55.346 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:56.026 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"33557799"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"FD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-25 11:59:56.026 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"33557799"},"id":"5510761954886277803004","orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"paymentInformation":{"accountFeatures":{"feeProgramIndicator":"FE1"}},"processorInformation":{"systemTraceAuditNumber":"155199","approvalCode":"831000","responseCodeSource":"5","transactionId":"016153570198200","responseCode":"00"},"reconciliationId":"5510761954886277803004","status":"ACCEPTED","submitTimeUtc":"2019-02-25T062955Z"} +2019-02-25 11:59:56.027 [main] INFO - Response Code: 201 +2019-02-25 11:59:56.027 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 493 +X-Cnection: close +x-response-time: 508ms +v-c-correlation-id: 9276acb6-7f0f-4168-9ccf-1bf4ff414a8f +OkHttp-Sent-Millis: 1551076195350 +OkHttp-Received-Millis: 1551076196025 + +2019-02-25 11:59:56.027 [main] INFO - ********* END *********: +2019-02-25 11:59:56.045 [main] INFO - ********* START ********* +2019-02-25 11:59:56.045 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:56.045 [main] INFO - Request Type: POST +2019-02-25 11:59:56.045 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-25 11:59:56.046 [main] INFO - Digest: SHA-256=WV4kmV6NZQKID4sN4WMbFxFXqbg/hn8kxL7FOS4jQXk= +2019-02-25 11:59:56.046 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:56.046 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:56.046 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:56.047 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="FTt6hRrmqf311aSloPx2g7PR0StEOMYRloniUoptQSs=" +2019-02-25 11:59:56.047 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:56.650 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"12345"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"GD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-25 11:59:56.651 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"12345"},"id":"5510761961806406103001","orderInformation":{"amountDetails":{"totalAmount":"200.00","currency":"XXXXXXXXX"}},"paymentInformation":{"accountFeatures":{"feeProgramIndicator":"FE1"}},"processorInformation":{"systemTraceAuditNumber":"106750","approvalCode":"831000","responseCodeSource":"5","transactionId":"016153570198200","responseCode":"00"},"reconciliationId":"5510761961806406103001","status":"ACCEPTED","submitTimeUtc":"2019-02-25T062956Z"} +2019-02-25 11:59:56.651 [main] INFO - Response Code: 201 +2019-02-25 11:59:56.651 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 490 +X-Cnection: close +x-response-time: 433ms +v-c-correlation-id: bb094e1b-2230-4501-820b-94a0bb36d489 +OkHttp-Sent-Millis: 1551076196049 +OkHttp-Received-Millis: 1551076196650 + +2019-02-25 11:59:56.652 [main] INFO - ********* END *********: +2019-02-25 11:59:56.671 [main] INFO - ********* START ********* +2019-02-25 11:59:56.671 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:56.671 [main] INFO - Request Type: POST +2019-02-25 11:59:56.672 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-25 11:59:56.672 [main] INFO - Digest: SHA-256=w9ZjmtCKOCPKH6OZhKI9VKNlfIK5wZLl6ZxwHbxFJsQ= +2019-02-25 11:59:56.672 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:56.672 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:56.673 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:56.673 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="S2pbx9db9+W8aTlnXvcN3KZaUsRymcBemTNisa+JlLQ=" +2019-02-25 11:59:56.673 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:57.143 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"6789"},"orderInformation":{"amountDetails":{"totalAmount":"DSWAZ1","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"MD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-25 11:59:57.143 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:29:57Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"orderInformation.amountDetails.amount","reason":"INVALID_DATA"}]} +2019-02-25 11:59:57.143 [main] INFO - Response Code: 400 +2019-02-25 11:59:57.144 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 298ms +v-c-correlation-id: a37db55b-f409-4213-8f3e-9b45d62441eb +OkHttp-Sent-Millis: 1551076196675 +OkHttp-Received-Millis: 1551076197142 + +2019-02-25 11:59:57.144 [main] INFO - ********* END *********: +2019-02-25 11:59:57.168 [main] INFO - ********* START ********* +2019-02-25 11:59:57.168 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:57.169 [main] INFO - Request Type: POST +2019-02-25 11:59:57.169 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-25 11:59:57.169 [main] INFO - Digest: SHA-256=YljtibTei+du4xVIDxMr3HBsyLAEDuiYaag9TcU9jHA= +2019-02-25 11:59:57.170 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:57.170 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:57.170 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:57.170 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="s9wJ7uMEWzwmbuyYbxm9CAMkpqwHY0ZSbf1PL/O56FE=" +2019-02-25 11:59:57.171 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:57.358 [main] INFO - Request Body: {"encryptionType":"RsaOaep256"} +2019-02-25 11:59:57.359 [main] INFO - Response Message: {"keyId":"0745Fu8NZpJyKgoeNrAi5x1kCB8JnaoS","der":{"format":"X.509","algorithm":"RSA","publicKey":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApmuati2z91cGbydUP2LbSXBbYo3YDcrl1xBL6lhv55z7D+kpfn6sOGCJsnmWGQAVv553gEsUBE7DRW/DvHL5qYy3PEDR9JwCU0+8myF0fEiwpZBikJYfO/AtNrlwze949UJ8WkQxcwNeMi9aHyhVB1lDWgTy1MjBvPr6Pb8L5aauh+AQukW8i3nnvMWibzIs0qBuDPFXTaKnojKF4zF/+MU3RVFYvr0gqrUC1s/YTQ19JNbXPAaUSLdHy+wG/xZQ0AkMxCj3xIdzD+UkL7tbarIA67rGElM5d/BuyyX1SsXIF8MxuruhUBzk3R1H/Y1Z7wLpWDxDo0zq7Ajl43jjjwIDAQAB"},"jwk":{"kty":"RSA","use":"enc","kid":"0745Fu8NZpJyKgoeNrAi5x1kCB8JnaoS","n":"pmuati2z91cGbydUP2LbSXBbYo3YDcrl1xBL6lhv55z7D-kpfn6sOGCJsnmWGQAVv553gEsUBE7DRW_DvHL5qYy3PEDR9JwCU0-8myF0fEiwpZBikJYfO_AtNrlwze949UJ8WkQxcwNeMi9aHyhVB1lDWgTy1MjBvPr6Pb8L5aauh-AQukW8i3nnvMWibzIs0qBuDPFXTaKnojKF4zF_-MU3RVFYvr0gqrUC1s_YTQ19JNbXPAaUSLdHy-wG_xZQ0AkMxCj3xIdzD-UkL7tbarIA67rGElM5d_BuyyX1SsXIF8MxuruhUBzk3R1H_Y1Z7wLpWDxDo0zq7Ajl43jjjw","e":"AQAB"}} +2019-02-25 11:59:57.359 [main] INFO - Response Code: 200 +2019-02-25 11:59:57.359 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=R70ST2u1xrrsKvWsqszqy2rFh4ZvmdniIBcWsq2WFIY= +Content-Type: application/json;charset=UTF-8 +Content-Length: 927 +Date: Mon, 25 Feb 2019 06:29:57 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 0ecee17e-3761-4544-8c4c-3aaf26936e64 +OkHttp-Sent-Millis: 1551076197176 +OkHttp-Received-Millis: 1551076197358 + +2019-02-25 11:59:57.359 [main] INFO - ********* END *********: +2019-02-25 11:59:57.385 [main] INFO - ********* START ********* +2019-02-25 11:59:57.385 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:57.385 [main] INFO - Request Type: POST +2019-02-25 11:59:57.386 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-25 11:59:57.386 [main] INFO - Digest: SHA-256=gEZo4PozZVgCrpNd3JKwGruwMOoyFI70wP0aDjupsBk= +2019-02-25 11:59:57.386 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:57.386 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:57.387 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:57.387 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="TFRKhkOpojYTmG3QO8iBlG1u2RlVBkJUHOK1u2ObpMA=" +2019-02-25 11:59:57.387 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:57.554 [main] INFO - Request Body: {"encryptionType":"PqaPabc255"} +2019-02-25 11:59:57.555 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"One or more validation errors occurred","correlationId":null,"details":[{"location":"encryptionType","message":"encryptionType is invalid"}],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-25 11:59:57.555 [main] INFO - Response Code: 400 +2019-02-25 11:59:57.555 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Mon, 25 Feb 2019 06:29:57 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 3f69ed09-7b31-4cff-bd65-758a88c48a37 +OkHttp-Sent-Millis: 1551076197389 +OkHttp-Received-Millis: 1551076197553 + +2019-02-25 11:59:57.556 [main] INFO - ********* END *********: +2019-02-25 11:59:57.577 [main] INFO - ********* START ********* +2019-02-25 11:59:57.577 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:57.578 [main] INFO - Request Type: POST +2019-02-25 11:59:57.578 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-25 11:59:57.579 [main] INFO - Digest: SHA-256=bena9bhB3Jy4uPvfu1tAC0uN8AuzzM+xjqmDwR5//EA= +2019-02-25 11:59:57.579 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:57.579 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:57.580 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:57.580 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="7QOBJq2aqKXdhohk2sMOSdEy84aJzTp95lb7vAmaq28=" +2019-02-25 11:59:57.580 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:57.755 [main] INFO - Request Body: {"encryptionType":"None"} +2019-02-25 11:59:57.755 [main] INFO - Response Message: {"keyId":"07dQKQLT9GreVc75IDj8aLQXrxVpyFpd","der":{"format":"X.509","algorithm":"RSA","publicKey":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjbEdOe5uI6J3iiz/FIcvmADwyzKs/8ae5eFO8GH2fBeTNu/z5S3szRvoZXjhADGG8J6spfrEL13tyVHzHI61hkz7iBMyxtmrGhn3vWMl7WFMmzSv2MhF2lrBSJNxhi3T+8qnZ7cP+FKigqynhpVZRZXPOZHSZW+pEfyeoSjgwCxrPJh4DJPteUFF6l3ivYBKTI0KDbLAhL70vWSLoteqtJV6jEY+2k6tBeKjyCQzWpWrxnr2DLhjXzCSmoyfOnf7huVHYiXZunWYKNR5p9XOQ85ZSOBJ4CA9JMcouM1vNJFgvpPssG4i/wS2OtVnVgK9eCKT6xiJJa3pOqz0XDiVCwIDAQAB"},"jwk":null} +2019-02-25 11:59:57.755 [main] INFO - Response Code: 200 +2019-02-25 11:59:57.756 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=aNB3Rd1RpAMPcWScDwXefndGFY/mnnl+fMSqVtznA90= +Content-Type: application/json;charset=UTF-8 +Content-Length: 505 +Date: Mon, 25 Feb 2019 06:29:57 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: efa768e5-e079-4465-be74-ffa5fde0fe84 +OkHttp-Sent-Millis: 1551076197584 +OkHttp-Received-Millis: 1551076197754 + +2019-02-25 11:59:57.756 [main] INFO - ********* END *********: +2019-02-25 11:59:57.775 [main] INFO - ********* START ********* +2019-02-25 11:59:57.776 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:57.776 [main] INFO - Request Type: POST +2019-02-25 11:59:57.776 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-25 11:59:57.776 [main] INFO - Digest: SHA-256=RGxc6GDM4hd0Lz1J24GEBLuX6JSK+r0fZi1/r0x/0Xo= +2019-02-25 11:59:57.777 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:57.777 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:57.777 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:57.777 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="szTcZejM/q8z23VYs6fxdGBO5zxr9eI73eAG/kUVwek=" +2019-02-25 11:59:57.778 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:57.944 [main] INFO - Request Body: {"encryptionType":"SDMP"} +2019-02-25 11:59:57.944 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"One or more validation errors occurred","correlationId":null,"details":[{"location":"encryptionType","message":"encryptionType is invalid"}],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-25 11:59:57.944 [main] INFO - Response Code: 400 +2019-02-25 11:59:57.945 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Mon, 25 Feb 2019 06:29:57 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ad41f550-8d25-4558-8d24-17eeacd4bb8d +OkHttp-Sent-Millis: 1551076197779 +OkHttp-Received-Millis: 1551076197943 + +2019-02-25 11:59:57.945 [main] INFO - ********* END *********: +2019-02-25 11:59:58.016 [main] INFO - ********* START ********* +2019-02-25 11:59:58.017 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:58.017 [main] INFO - Request Type: POST +2019-02-25 11:59:58.017 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-25 11:59:58.018 [main] INFO - Digest: SHA-256=jNQYA9OvDKi2aiMe5v1oD0pmWKO9fh7qs1uh97o7grM= +2019-02-25 11:59:58.018 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:58.018 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:58.018 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:58.019 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="U24dqpuGFmJexwjlfdinDQ60RdmfUrCw/Xj0RPVFzLk=" +2019-02-25 11:59:58.019 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:58.173 [main] INFO - Request Body: {"keyId":"07UkZGZbFt1M6JUZqCqh4sNZCa5AzOdP","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-25 11:59:58.173 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [07UkZGZbFt1M6JUZqCqh4sNZCa5AzOdP]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-25 11:59:58.173 [main] INFO - Response Code: 400 +2019-02-25 11:59:58.174 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=yNhy6XvPZH9AhqmOChigyYTJE6xEkAU74Tim2mLyaOw= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Mon, 25 Feb 2019 06:29:57 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 3109c19a-4d82-4ab1-a8fe-1cdebc448b16 +OkHttp-Sent-Millis: 1551076198026 +OkHttp-Received-Millis: 1551076198172 + +2019-02-25 11:59:58.174 [main] INFO - ********* END *********: +2019-02-25 11:59:58.190 [main] INFO - ********* START ********* +2019-02-25 11:59:58.191 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:58.191 [main] INFO - Request Type: POST +2019-02-25 11:59:58.191 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-25 11:59:58.192 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-02-25 11:59:58.192 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:58.192 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:58.193 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:58.193 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="T1UUV7ShqFKiXUwHOYiBp9gJHAYi2Yi7l8TKyEmUiL0=" +2019-02-25 11:59:58.193 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:58.328 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-25 11:59:58.329 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [0023154mudgshfyrtdgfj456fhdggdg1]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-25 11:59:58.329 [main] INFO - Response Code: 400 +2019-02-25 11:59:58.329 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Mon, 25 Feb 2019 06:29:57 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4c30e196-e4ce-494f-8363-9331c664aa92 +OkHttp-Sent-Millis: 1551076198195 +OkHttp-Received-Millis: 1551076198328 + +2019-02-25 11:59:58.330 [main] INFO - ********* END *********: +2019-02-25 11:59:58.378 [main] INFO - ********* START ********* +2019-02-25 11:59:58.378 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:58.378 [main] INFO - Request Type: POST +2019-02-25 11:59:58.378 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-25 11:59:58.379 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-25 11:59:58.379 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:58.379 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:58.379 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:58.380 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="CMGnUwx2NL6IUToMGxhFjSdlPufwpiU2fsesehJLPDo=" +2019-02-25 11:59:58.380 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:58.631 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-25 11:59:58.631 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}} +2019-02-25 11:59:58.632 [main] INFO - Response Code: 200 +2019-02-25 11:59:58.632 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_a3c19bef-036c-42b3-a1b5-6bde6f55a24f +uniqueTransactionID: 25b6b043-7061-433d-bc32-2ff8ee4e692b +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "gaZK/nV+l22isZ3TbN3ZzT9IaEaq3CvEWNIjknrm2LY=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 25 Feb 2019 06:29:58 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: be09e73f-6fa9-4f5b-9a5b-d1018fb6fa0b +OkHttp-Sent-Millis: 1551076198385 +OkHttp-Received-Millis: 1551076198631 + +2019-02-25 11:59:58.632 [main] INFO - ********* END *********: +2019-02-25 11:59:58.658 [main] INFO - ********* START ********* +2019-02-25 11:59:58.658 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:58.658 [main] INFO - Request Type: POST +2019-02-25 11:59:58.659 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-25 11:59:58.659 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-25 11:59:58.659 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:58.659 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:58.660 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:58.660 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="CMGnUwx2NL6IUToMGxhFjSdlPufwpiU2fsesehJLPDo=" +2019-02-25 11:59:58.660 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:58.837 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-25 11:59:58.837 [main] INFO - Response Message: {"errors":[{"type":"invalidHeaders","message":"Invalid header values","details":[{"name":"profile-id"}]}]} +2019-02-25 11:59:58.838 [main] INFO - Response Code: 400 +2019-02-25 11:59:58.838 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_33ab1da2-cfaf-47ef-b4ba-d51607a5c171 +uniqueTransactionID: c603d629-5897-4e42-af21-60afa6ede257 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Mon, 25 Feb 2019 06:29:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 2473c9e4-61db-4650-93d7-9b3cd8b1eba1 +OkHttp-Sent-Millis: 1551076198663 +OkHttp-Received-Millis: 1551076198836 + +2019-02-25 11:59:58.838 [main] INFO - ********* END *********: +2019-02-25 11:59:58.899 [main] INFO - ********* START ********* +2019-02-25 11:59:58.899 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:58.900 [main] INFO - Request Type: POST +2019-02-25 11:59:58.900 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-25 11:59:58.900 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-25 11:59:58.900 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:58.901 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:58.901 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:58.901 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ZzdZVYr/DF0i2T9p2cTqCTkwJpplPc7Oqs3KhgAXrUw=" +2019-02-25 11:59:58.901 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:59.139 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-25 11:59:59.139 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/82B2E6E233CB35DBE05340588D0A822E"}},"id":"82B2E6E233CB35DBE05340588D0A822E","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"metadata":{"creator":"testrest"}}}} +2019-02-25 11:59:59.139 [main] INFO - Response Code: 201 +2019-02-25 11:59:59.139 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_7d08a276-4ae0-4035-8bb0-18f6ae303323 +uniqueTransactionID: 017886cf-7935-4105-a2b1-28c2a22b74a4 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/paymentinstruments/82B2E6E233CB35DBE05340588D0A822E +ETag: "ooRX7jL3/kFjl4n8rbPmFD3JLLpweX0X9Woi4ugB/N0=" +instrumentidentifier-created: false +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1001 +Date: Mon, 25 Feb 2019 06:29:59 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: ec379509-e0d7-4d83-be4c-3f628e43162c +OkHttp-Sent-Millis: 1551076198908 +OkHttp-Received-Millis: 1551076199138 + +2019-02-25 11:59:59.140 [main] INFO - ********* END *********: +2019-02-25 11:59:59.163 [main] INFO - ********* START ********* +2019-02-25 11:59:59.163 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:59.163 [main] INFO - Request Type: POST +2019-02-25 11:59:59.164 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-25 11:59:59.164 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-25 11:59:59.164 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:59.164 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:59.165 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:59.165 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ZzdZVYr/DF0i2T9p2cTqCTkwJpplPc7Oqs3KhgAXrUw=" +2019-02-25 11:59:59.165 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:59.347 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-25 11:59:59.347 [main] INFO - Response Message: {"errors":[{"type":"invalidHeaders","message":"Invalid header values","details":[{"name":"profile-id"}]}]} +2019-02-25 11:59:59.347 [main] INFO - Response Code: 400 +2019-02-25 11:59:59.347 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_3d98c704-7e1b-4053-a1ed-ce0ff3a57d41 +uniqueTransactionID: f6040a56-20ee-4b7d-9f6d-b81281a70764 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Mon, 25 Feb 2019 06:29:59 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: fdb6f201-c1db-4bcc-9776-becbce346845 +OkHttp-Sent-Millis: 1551076199167 +OkHttp-Received-Millis: 1551076199347 + +2019-02-25 11:59:59.349 [main] INFO - ********* END *********: +2019-02-25 11:59:59.372 [main] INFO - ********* START ********* +2019-02-25 11:59:59.372 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:59.372 [main] INFO - Request Type: GET +2019-02-25 11:59:59.372 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7010000000016241111, requestType=GET} +2019-02-25 11:59:59.373 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:59.373 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:59.373 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:59.373 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="dC9S1kUMXiwZwgpBpAUlw3sYf1LsWp+OZLVUGo6j+L8=" +2019-02-25 11:59:59.374 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:59.590 [main] INFO - Request Body: null +2019-02-25 11:59:59.590 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}} +2019-02-25 11:59:59.594 [main] INFO - Response Code: 200 +2019-02-25 11:59:59.594 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_b8dc8176-daed-4061-b37d-05fdb96c5bde +uniqueTransactionID: 596acd4c-738c-4770-a9ab-c8d7e5945c6d +Pragma: no-cache +X-Application-Context: application +ETag: "gaZK/nV+l22isZ3TbN3ZzT9IaEaq3CvEWNIjknrm2LY=" +Token-Class: instrumentIdentifier +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 25 Feb 2019 06:29:58 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 9148177f-54a6-4367-9192-01601eee8d94 +OkHttp-Sent-Millis: 1551076199376 +OkHttp-Received-Millis: 1551076199590 + +2019-02-25 11:59:59.595 [main] INFO - ********* END *********: +2019-02-25 11:59:59.613 [main] INFO - ********* START ********* +2019-02-25 11:59:59.614 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:59.614 [main] INFO - Request Type: GET +2019-02-25 11:59:59.614 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546, requestType=GET} +2019-02-25 11:59:59.614 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:59.614 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:59.616 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:59.616 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="6dPdM7CXm1hBct/cD/QXqAoOekNBPKOE8/AB+s4F4uY=" +2019-02-25 11:59:59.616 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 11:59:59.804 [main] INFO - Request Body: null +2019-02-25 11:59:59.805 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 11:59:59.805 [main] INFO - Response Code: 404 +2019-02-25 11:59:59.805 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_c47b224c-caaf-4a82-aea1-95e22f2418dd +uniqueTransactionID: d78a2ea7-7d0c-49cd-bc1b-9f5724b23356 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:29:59 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 64071572-5d90-4e5f-ad16-0a3481db3f6c +OkHttp-Sent-Millis: 1551076199616 +OkHttp-Received-Millis: 1551076199804 + +2019-02-25 11:59:59.806 [main] INFO - ********* END *********: +2019-02-25 11:59:59.830 [main] INFO - ********* START ********* +2019-02-25 11:59:59.830 [main] INFO - Authentication Type : http_signature +2019-02-25 11:59:59.831 [main] INFO - Request Type: PATCH +2019-02-25 11:59:59.831 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654, requestType=PATCH} +2019-02-25 11:59:59.831 [main] INFO - Digest: SHA-256=8WWAL+hDoWtF/EyxX3M/HpCKmkkPnnqbqKxbc3iH/JY= +2019-02-25 11:59:59.831 [main] INFO - v-c-merchant-id: testrest +2019-02-25 11:59:59.832 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 11:59:59.832 [main] INFO - Host: apitest.cybersource.com +2019-02-25 11:59:59.832 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="cFRasIIRQfnuc9WDNz3Uane19+3NVF+RwI/Anpp5hAU=" +2019-02-25 11:59:59.832 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:00.028 [main] INFO - Request Body: {"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-25 12:00:00.029 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}} +2019-02-25 12:00:00.029 [main] INFO - Response Code: 200 +2019-02-25 12:00:00.029 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_2b7da77c-ee05-494f-859e-98ccf2a2a87c +uniqueTransactionID: f4c0c815-3242-460a-8d6c-57cd087314da +Pragma: no-cache +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654 +ETag: "wq660vu+4l9GqGP6GxR5UkuwC9WhaAviLcSRAkHUGvw=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 25 Feb 2019 06:29:59 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 5e101ca2-fcb3-480f-9188-9b2c6b1a15e1 +OkHttp-Sent-Millis: 1551076199838 +OkHttp-Received-Millis: 1551076200028 + +2019-02-25 12:00:00.030 [main] INFO - ********* END *********: +2019-02-25 12:00:00.048 [main] INFO - ********* START ********* +2019-02-25 12:00:00.048 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:00.049 [main] INFO - Request Type: PATCH +2019-02-25 12:00:00.049 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000123455, requestType=PATCH} +2019-02-25 12:00:00.049 [main] INFO - Digest: SHA-256=8WWAL+hDoWtF/EyxX3M/HpCKmkkPnnqbqKxbc3iH/JY= +2019-02-25 12:00:00.049 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:00.050 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:00.050 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:00.050 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="F0H4cCaKtLEiqze7i0MEj2esoh17TsQGz1u6cNRfqRs=" +2019-02-25 12:00:00.050 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:00.237 [main] INFO - Request Body: {"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-25 12:00:00.238 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:00:00.238 [main] INFO - Response Code: 404 +2019-02-25 12:00:00.238 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_f053b886-14c0-4af0-b16f-baef717c7891 +uniqueTransactionID: 49cd3e80-9799-48d3-8f1e-54154688b548 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:29:59 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: c824a40b-db73-42d6-850e-036268d4ad68 +OkHttp-Sent-Millis: 1551076200053 +OkHttp-Received-Millis: 1551076200237 + +2019-02-25 12:00:00.239 [main] INFO - ********* END *********: +2019-02-25 12:00:00.259 [main] INFO - ********* START ********* +2019-02-25 12:00:00.260 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:00.260 [main] INFO - Request Type: DELETE +2019-02-25 12:00:00.261 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7010000000006721114, requestType=DELETE} +2019-02-25 12:00:00.261 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:00.261 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:00.261 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:00.262 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="LXAGE6NKcWjCWuthLO7Dk0ufUIyQqYWVm/2iJFaIULE=" +2019-02-25 12:00:00.262 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:00.461 [main] INFO - Request Body: null +2019-02-25 12:00:00.462 [main] INFO - Response Message: {"errors":[{"type":"notAvailable","message":"Token not available"}]} +2019-02-25 12:00:00.462 [main] INFO - Response Code: 410 +2019-02-25 12:00:00.462 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_f5d77571-3af8-43dd-af51-3d9765496d64 +uniqueTransactionID: bcdc31b4-3b5e-4127-8966-f10b13695abe +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 68 +Date: Mon, 25 Feb 2019 06:30:00 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: b094210e-1837-4e30-9e77-d1a285bf86ef +OkHttp-Sent-Millis: 1551076200263 +OkHttp-Received-Millis: 1551076200461 + +2019-02-25 12:00:00.462 [main] INFO - ********* END *********: +2019-02-25 12:00:00.479 [main] INFO - ********* START ********* +2019-02-25 12:00:00.480 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:00.480 [main] INFO - Request Type: DELETE +2019-02-25 12:00:00.480 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546, requestType=DELETE} +2019-02-25 12:00:00.481 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:00.481 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:00.481 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:00.481 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="yCLmaFRkcxEcip4lfaaPEXSofRgLaLqvbnmGgtsvVjc=" +2019-02-25 12:00:00.481 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:00.677 [main] INFO - Request Body: null +2019-02-25 12:00:00.678 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:00:00.678 [main] INFO - Response Code: 404 +2019-02-25 12:00:00.678 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_4f279e26-45df-4ff5-83ee-8bd15a3c1fd6 +uniqueTransactionID: 3c98f513-2345-425c-ad7a-51da4281c4be +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:29:59 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 73205a76-0f53-4760-9967-5fe4a7665c24 +OkHttp-Sent-Millis: 1551076200484 +OkHttp-Received-Millis: 1551076200677 + +2019-02-25 12:00:00.678 [main] INFO - ********* END *********: +2019-02-25 12:00:00.698 [main] INFO - ********* START ********* +2019-02-25 12:00:00.699 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:00.699 [main] INFO - Request Type: GET +2019-02-25 12:00:00.699 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603, requestType=GET} +2019-02-25 12:00:00.699 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:00.700 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:00.700 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:00.700 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="sh2lzJ4hOTHoJv4WqvOYGgS8e5UwkaZmC6/rXETPk0o=" +2019-02-25 12:00:00.700 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:00.907 [main] INFO - Request Body: null +2019-02-25 12:00:00.907 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603"}},"id":"7EFF4BA832B12424E05340588D0AC603","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}} +2019-02-25 12:00:00.907 [main] INFO - Response Code: 200 +2019-02-25 12:00:00.908 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_cfc78605-bf2a-48f8-983e-d14c724c30e9 +uniqueTransactionID: f7423322-75a4-46d0-a2c2-fb9c85441928 +Pragma: no-cache +X-Application-Context: application +ETag: "VL0SCaNg7Rc0LHH8BfLhex0FkY/P4IgbrXHPb8TxDps=" +Token-Class: paymentInstrument +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1142 +Date: Mon, 25 Feb 2019 06:30:00 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: de6d3efe-74e3-4fc4-94c0-d331f8dfe3b6 +OkHttp-Sent-Millis: 1551076200703 +OkHttp-Received-Millis: 1551076200906 + +2019-02-25 12:00:00.908 [main] INFO - ********* END *********: +2019-02-25 12:00:00.925 [main] INFO - ********* START ********* +2019-02-25 12:00:00.925 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:00.926 [main] INFO - Request Type: GET +2019-02-25 12:00:00.926 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7654264589567855546, requestType=GET} +2019-02-25 12:00:00.926 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:00.926 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:00.926 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:00.927 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="fV1ocgZ6xPyNzJLFOLJRM74RJt/oc2xK2Q+8yeRi944=" +2019-02-25 12:00:00.927 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:01.138 [main] INFO - Request Body: null +2019-02-25 12:00:01.138 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:00:01.138 [main] INFO - Response Code: 404 +2019-02-25 12:00:01.139 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_d95d554d-cb3a-454c-999f-2a4cda21656c +uniqueTransactionID: 2cf1f11e-6c3f-49f8-9871-2fb952619259 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:30:00 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: b5fa1972-48c1-4fbf-a573-9cdd1313d3bb +OkHttp-Sent-Millis: 1551076200927 +OkHttp-Received-Millis: 1551076201137 + +2019-02-25 12:00:01.139 [main] INFO - ********* END *********: +2019-02-25 12:00:01.166 [main] INFO - ********* START ********* +2019-02-25 12:00:01.166 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:01.167 [main] INFO - Request Type: PATCH +2019-02-25 12:00:01.167 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603, requestType=PATCH} +2019-02-25 12:00:01.167 [main] INFO - Digest: SHA-256=JVhG6cWRtiU/QoMjxKqN0Sqpzxt5BxE40ELswsMV4eU= +2019-02-25 12:00:01.167 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:01.168 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:01.168 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:01.168 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="nmiNlIoWIkM2kTdYguM2yPKcTDcKw0dkhvj4xNyNLhw=" +2019-02-25 12:00:01.168 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:01.408 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-25 12:00:01.409 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603"}},"id":"7EFF4BA832B12424E05340588D0AC603","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}} +2019-02-25 12:00:01.409 [main] INFO - Response Code: 200 +2019-02-25 12:00:01.409 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_43e69cf1-dfba-490c-a2bb-47eb68a88d4f +uniqueTransactionID: 52a5a508-4e39-47c5-a69f-ac9e954acefa +Pragma: no-cache +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603 +ETag: "yAnu3GX+anyVOBttYXGTsd5qwwaTiJeRZy4+44UlTcM=" +instrumentidentifier-created: false +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1142 +Date: Mon, 25 Feb 2019 06:30:01 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: ee4e0043-598b-4bad-9940-b619733f68be +OkHttp-Sent-Millis: 1551076201172 +OkHttp-Received-Millis: 1551076201408 + +2019-02-25 12:00:01.409 [main] INFO - ********* END *********: +2019-02-25 12:00:01.427 [main] INFO - ********* START ********* +2019-02-25 12:00:01.428 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:01.428 [main] INFO - Request Type: PATCH +2019-02-25 12:00:01.428 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B124123456789545854565, requestType=PATCH} +2019-02-25 12:00:01.428 [main] INFO - Digest: SHA-256=JVhG6cWRtiU/QoMjxKqN0Sqpzxt5BxE40ELswsMV4eU= +2019-02-25 12:00:01.429 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:01.429 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:01.429 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:01.429 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="WcqwfgVBee272IUENoTJ8SqqEOYX21gPn906siEgX6g=" +2019-02-25 12:00:01.430 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:01.625 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-25 12:00:01.625 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:00:01.625 [main] INFO - Response Code: 404 +2019-02-25 12:00:01.626 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_405e5f66-0d66-4e36-980c-aa320f867451 +uniqueTransactionID: fdf7661b-4545-49b7-afc2-f5a7c7ce13a9 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:30:01 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: a2c796d9-00bd-45ea-b6a2-5ae896913d29 +OkHttp-Sent-Millis: 1551076201431 +OkHttp-Received-Millis: 1551076201624 + +2019-02-25 12:00:01.626 [main] INFO - ********* END *********: +2019-02-25 12:00:01.651 [main] INFO - ********* START ********* +2019-02-25 12:00:01.652 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:01.652 [main] INFO - Request Type: DELETE +2019-02-25 12:00:01.656 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/80756F4698591109E05341588E0A4B95, requestType=DELETE} +2019-02-25 12:00:01.659 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:01.660 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:01.660 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:01.660 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="DQnKi5a7s6e+9d0fHLemjgYVHqjCPBGDsaAtYbO0or4=" +2019-02-25 12:00:01.661 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:01.849 [main] INFO - Request Body: null +2019-02-25 12:00:01.850 [main] INFO - Response Message: {"errors":[{"type":"notAvailable","message":"Token not available"}]} +2019-02-25 12:00:01.850 [main] INFO - Response Code: 410 +2019-02-25 12:00:01.850 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_41bb4193-f458-4768-963a-5f21ad151de8 +uniqueTransactionID: 82ee454c-d1b2-4dde-8011-c59c329104ff +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 68 +Date: Mon, 25 Feb 2019 06:30:01 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 1a0dc4e3-6f98-4844-b39f-69c6b8d33817 +OkHttp-Sent-Millis: 1551076201664 +OkHttp-Received-Millis: 1551076201849 + +2019-02-25 12:00:01.850 [main] INFO - ********* END *********: +2019-02-25 12:00:01.868 [main] INFO - ********* START ********* +2019-02-25 12:00:01.868 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:01.869 [main] INFO - Request Type: DELETE +2019-02-25 12:00:01.869 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/76542645895678555464562155478555, requestType=DELETE} +2019-02-25 12:00:01.869 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:01.869 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:01.870 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:01.870 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="fxJW17VLyvtMnhes+sXhzl9q7aTpA7vWc0080K+P4e4=" +2019-02-25 12:00:01.870 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:02.070 [main] INFO - Request Body: null +2019-02-25 12:00:02.070 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:00:02.071 [main] INFO - Response Code: 404 +2019-02-25 12:00:02.071 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_35e1bead-d44b-41de-9da2-2b40b2cdf3f3 +uniqueTransactionID: 3345e2a0-e4db-4340-bb40-35891e26858c +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:30:01 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: bae3b6d1-b52a-4dff-84f5-4a2558d6809f +OkHttp-Sent-Millis: 1551076201873 +OkHttp-Received-Millis: 1551076202070 + +2019-02-25 12:00:02.071 [main] INFO - ********* END *********: +2019-02-25 12:00:02.091 [main] INFO - ********* START ********* +2019-02-25 12:00:02.091 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:02.092 [main] INFO - Request Type: GET +2019-02-25 12:00:02.092 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-25 12:00:02.092 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:02.092 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:02.093 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:02.093 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="kogKYdSfX/lK4lE3AyiGwS0g1ImqJioI5ZlqDE70a4E=" +2019-02-25 12:00:02.093 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:02.382 [main] INFO - Request Body: null +2019-02-25 12:00:02.382 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=0&limit=20"},"first":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=0&limit=20"},"next":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=20&limit=20"},"last":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=120&limit=20"}},"object":"collection","offset":0,"limit":20,"count":20,"total":131,"_embedded":{"paymentInstruments":[{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/798C4DC7AEE4D943E05340588D0A8A9E"}},"id":"798C4DC7AEE4D943E05340588D0A8A9E","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7986A6266E5D8728E05340588D0A082F"}},"id":"7986A6266E5D8728E05340588D0A082F","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79863A720BFB3614E05340588D0AC61D"}},"id":"79863A720BFB3614E05340588D0AC61D","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7986100CF0631311E05340588D0AC258"}},"id":"7986100CF0631311E05340588D0AC258","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79849FC7687CFF78E05340588D0A8D10"}},"id":"79849FC7687CFF78E05340588D0A8D10","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79276DA1D0233CA6E05340588D0ADD47"}},"id":"79276DA1D0233CA6E05340588D0ADD47","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79276DA1D01C3CA6E05340588D0ADD47"}},"id":"79276DA1D01C3CA6E05340588D0ADD47","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/790D20FA65E14107E05340588D0A56FC"}},"id":"790D20FA65E14107E05340588D0A56FC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/790B7C9B64C7062AE05340588D0A6BFC"}},"id":"790B7C9B64C7062AE05340588D0A6BFC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78FC4875384A727AE05340588D0A9FEB"}},"id":"78FC4875384A727AE05340588D0A9FEB","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78FC48753847727AE05340588D0A9FEB"}},"id":"78FC48753847727AE05340588D0A9FEB","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F9029E6777F865E05340588D0AD0EA"}},"id":"78F9029E6777F865E05340588D0AD0EA","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F906F76015F1BDE05340588D0AC573"}},"id":"78F906F76015F1BDE05340588D0AC573","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F72C08537094CAE05340588D0ACDD3"}},"id":"78F72C08537094CAE05340588D0ACDD3","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78E7CFD5C149EA3BE05340588D0AB20B"}},"id":"78E7CFD5C149EA3BE05340588D0AB20B","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78E7CFD5C144EA3BE05340588D0AB20B"}},"id":"78E7CFD5C144EA3BE05340588D0AB20B","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78DFC955E6E1B4A4E05340588D0ADD6A"}},"id":"78DFC955E6E1B4A4E05340588D0ADD6A","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78DFC955E6DCB4A4E05340588D0ADD6A"}},"id":"78DFC955E6DCB4A4E05340588D0ADD6A","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/787C21D78039BB12E05341588E0ABAF2"}},"id":"787C21D78039BB12E05341588E0ABAF2","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/787C0A20BEA79250E05341588E0ADA22"}},"id":"787C0A20BEA79250E05341588E0ADA22","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}}]}} +2019-02-25 12:00:02.384 [main] INFO - Response Code: 200 +2019-02-25 12:00:02.384 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_ea06b0fe-2803-4712-a408-663ff2edb5dc +uniqueTransactionID: 6e562f50-3005-4dec-9ac1-37c54ef84d53 +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 131 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Mon, 25 Feb 2019 06:30:01 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: f8e4e641-a13b-4620-8c81-14c936f0d895 +OkHttp-Sent-Millis: 1551076202097 +OkHttp-Received-Millis: 1551076202366 + +2019-02-25 12:00:02.384 [main] INFO - ********* END *********: +2019-02-25 12:00:02.420 [main] INFO - ********* START ********* +2019-02-25 12:00:02.420 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:02.421 [main] INFO - Request Type: GET +2019-02-25 12:00:02.421 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-25 12:00:02.421 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:02.421 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:02.422 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:02.422 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="5kdkofjdSk/vjEIEEaWz4ZJFD9E/qfFnYFEra9ctGKY=" +2019-02-25 12:00:02.422 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:02.608 [main] INFO - Request Body: null +2019-02-25 12:00:02.609 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:00:02.609 [main] INFO - Response Code: 404 +2019-02-25 12:00:02.609 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_eaf6874f-9223-433e-aa9d-e277ef020075 +uniqueTransactionID: fadaef94-84a5-43d0-a33a-87e07345a78c +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:30:02 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 7593135f-ff1c-4266-86e8-c77bcd30adea +OkHttp-Sent-Millis: 1551076202422 +OkHttp-Received-Millis: 1551076202608 + +2019-02-25 12:00:02.609 [main] INFO - ********* END *********: +2019-02-25 12:00:02.636 [main] INFO - ********* START ********* +2019-02-25 12:00:02.636 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:02.637 [main] INFO - Request Type: GET +2019-02-25 12:00:02.637 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches/Owcyk6pl, requestType=GET} +2019-02-25 12:00:02.637 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:02.637 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:02.638 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:02.638 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="zs5V3WZJAcBzIb7gFiP9akGBlNXyfCaqrvryVPW6XRg=" +2019-02-25 12:00:02.638 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:02.935 [main] INFO - Request Body: null +2019-02-25 12:00:02.935 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/pts/v1/transaction-batches/Owcyk6pl"}},"acceptedTransactionCount":0,"completionDate":"2018-10-29","id":"Owcyk6pl","links":{"transactions":[{"href":"https://apitest.cybersource.com:-1/v1/payments/5408556076096093004012","method":"Get"},{"href":"https://apitest.cybersource.com:-1/v1/payments/5408556076166022104010","method":"Get"}]},"rejectedTransactionCount":2,"status":"Completed","transactionCount":2,"uploadDate":"2018-10-29"} +2019-02-25 12:00:02.936 [main] INFO - Response Code: 200 +2019-02-25 12:00:02.936 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e116a564-eb84-4906-8a64-cbea3a7be0cb +Cache-Control: no-cache, no-transform +ETag: "-1139639258" +Expires: Mon, 25 Feb 2019 06:30:02 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:02 GMT +X-Cnection: close +v-c-correlation-id: ef86987b-83d9-4ded-b503-3460e4ba769c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076202639 +OkHttp-Received-Millis: 1551076202929 + +2019-02-25 12:00:02.936 [main] INFO - ********* END *********: +2019-02-25 12:00:02.954 [main] INFO - ********* START ********* +2019-02-25 12:00:02.954 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:02.954 [main] INFO - Request Type: GET +2019-02-25 12:00:02.954 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches/CYBS123, requestType=GET} +2019-02-25 12:00:02.955 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:02.955 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:02.955 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:02.955 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="1AO3niUS8d8r6an7tMRurrKxeBc7t2fd6/s6Lvf4Z28=" +2019-02-25 12:00:02.955 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:03.224 [main] INFO - Request Body: null +2019-02-25 12:00:03.226 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/pts/v1/transaction-batches/CYBS123"}},"invalidFields":null,"message":"The requested resource does not exist","messageKey":null,"missingFields":null} +2019-02-25 12:00:03.226 [main] INFO - Response Code: 404 +2019-02-25 12:00:03.226 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_73247096-5b8f-40a4-ab94-f4b951ff774d +X-OPNET-Transaction-Trace: a2_f4ce7961-b255-48ef-a62d-639ed23b444d +Cache-Control: no-cache, no-transform +ETag: "-975452876" +Expires: Mon, 25 Feb 2019 06:30:03 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:03 GMT +X-Cnection: close +v-c-correlation-id: 558467a9-2fb4-4e62-a688-09e815ceff06 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076202956 +OkHttp-Received-Millis: 1551076203224 + +2019-02-25 12:00:03.226 [main] INFO - ********* END *********: +2019-02-25 12:00:03.352 [main] INFO - ********* START ********* +2019-02-25 12:00:03.352 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:03.353 [main] INFO - Request Type: GET +2019-02-25 12:00:03.353 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-25 12:00:03.353 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:03.354 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:03.354 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:03.354 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="kR5xplGE09xMlbWfdSXLkzk/vKJfOpi/sftOL8OrZIY=" +2019-02-25 12:00:03.354 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:03.593 [main] INFO - Request Body: null +2019-02-25 12:00:03.594 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/pts/v1/transaction-batches"}},"submitTimeUtc":"2019-02-25T06:30:03.505Z","transactionBatches":[{"id":"Owcyk6pl","uploadDate":"2018-10-29","completionDate":"2018-10-29","transactionCount":2,"acceptedTransactionCount":0,"rejectedTransactionCount":2,"status":"Completed"},{"id":"91Li4SD7","uploadDate":"2018-10-29","completionDate":"2018-10-29","transactionCount":0,"acceptedTransactionCount":0,"rejectedTransactionCount":0,"status":"OnHold"}]} +2019-02-25 12:00:03.594 [main] INFO - Response Code: 200 +2019-02-25 12:00:03.594 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_0a0ea51b-eb83-497d-9b90-af979b80d78b +X-OPNET-Transaction-Trace: a2_91b02f9d-afbe-4874-8bbb-cb0993ee3542 +Cache-Control: no-cache, no-transform +ETag: "1965575562" +Expires: Mon, 25 Feb 2019 06:30:03 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:03 GMT +X-Cnection: close +v-c-correlation-id: 233cf307-b446-4015-9921-f0a48941e680 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076203359 +OkHttp-Received-Millis: 1551076203592 + +2019-02-25 12:00:03.594 [main] INFO - ********* END *********: +2019-02-25 12:00:03.619 [main] INFO - ********* START ********* +2019-02-25 12:00:03.619 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:03.620 [main] INFO - Request Type: GET +2019-02-25 12:00:03.620 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2019-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-25 12:00:03.620 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:03.621 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:03.621 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:03.621 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="GeoUYXhMzdonRWl/RGSMzqh2LcWp1DLMDFjgOwZgb/8=" +2019-02-25 12:00:03.622 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:03.846 [main] INFO - Request Body: null +2019-02-25 12:00:03.846 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/payment/pts/v1/transaction-batches?startTime=2019-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z"}},"invalidFields":{"name":"endTime","reasonMessage":"The start time should precede the end time"},"message":"Field validation errors","messageKey":null,"missingFields":null} +2019-02-25 12:00:03.846 [main] INFO - Response Code: 400 +2019-02-25 12:00:03.847 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_abf4a361-a9c7-4517-8af3-0de98e501c12 +Cache-Control: no-cache, no-transform +ETag: "-1732043611" +Expires: Mon, 25 Feb 2019 06:30:03 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:02 GMT +X-Cnection: close +v-c-correlation-id: 0ec5de2c-1c32-4a23-a101-51ef71b5f016 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076203622 +OkHttp-Received-Millis: 1551076203844 + +2019-02-25 12:00:03.847 [main] INFO - ********* END *********: +2019-02-25 12:00:03.870 [main] INFO - ********* START ********* +2019-02-25 12:00:03.870 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:03.871 [main] INFO - Request Type: GET +2019-02-25 12:00:03.871 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/transactions/5408386919326811103004, requestType=GET} +2019-02-25 12:00:03.871 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:03.871 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:03.872 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:03.872 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="a3OYrZomE6futku/WXqDpXOqJE3nybec8CXK9m/wmW0=" +2019-02-25 12:00:03.872 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:04.185 [main] INFO - Request Body: null +2019-02-25 12:00:04.185 [main] INFO - Response Message: {"id":"5408386919326811103004","rootId":"5408386919326811103004","reconciliationId":"781606613NGFNJJE","submitTimeUTC":"2018-10-29T18:44:52Z","merchantId":"testrest","applicationInformation":{"reasonCode":100,"applications":[{"name":"ics_auth","reasonCode":"100","rCode":"1","rFlag":"SOK","reconciliationId":"781606613NGFNJJE","rMessage":"Request was processed successfully.","returnCode":1010000}]},"buyerInformation":{},"clientReferenceInformation":{"code":"TC50171_3","applicationName":"REST API","applicationVersion":"1.0"},"consumerAuthenticationInformation":{"eciRaw":"7"},"deviceInformation":{},"installmentInformation":{},"fraudMarkingInformation":{},"merchantDefinedInformation":{},"merchantInformation":{"merchantDescriptor":{"name":"testrest"}},"orderInformation":{"billTo":{"firstName":"JOHN","lastName":"DOE","address1":"1 Market St","address2":"Address 2","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","company":"Visa","email":"XXXXXXXXX","country":"US","phoneNumber":"4158880000"},"shipTo":{},"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX","taxAmount":"0","authorizedAmount":"102.21"},"shippingDetails":{},"lineItems":[{"productCode":"default","taxAmount":0,"quantity":1,"unitPrice":102.21}]},"paymentInformation":{"paymentMethod":{"name":"smartpay","type":"credit card","subType":"VI"},"customer":{},"card":{"suffix":"1111","prefix":"411111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"Credit card"},"invoice":{},"accountFeatures":{}},"processingInformation":{"paymentSolution":"Visa","commerceIndicator":"7","authorizationOptions":{"authType":"O"},"bankTransferOptions":{}},"processorInformation":{"processor":{"name":"smartpay"},"approvalCode":"888888","responseCode":"100","avs":{"code":"X ","codeRaw":"I1"},"cardVerification":{},"achVerification":{"resultCodeRaw":"100"},"electronicVerificationResults":{}},"pointOfSaleInformation":{},"riskInformation":{"score":{}},"senderInformation":{},"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5408386919326811103004","method":"GET"}}} +2019-02-25 12:00:04.185 [main] INFO - Response Code: 200 +2019-02-25 12:00:04.186 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_fc4d09d8-e2a6-4b05-afb1-50b4c0617319 +Cache-Control: no-cache, no-transform +ETag: "-1543210418" +Expires: Mon, 25 Feb 2019 06:30:04 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:04 GMT +X-Cnection: close +v-c-correlation-id: 7ceb1b83-705c-4b0a-832d-2c12df731398 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076203877 +OkHttp-Received-Millis: 1551076204182 + +2019-02-25 12:00:04.186 [main] INFO - ********* END *********: +2019-02-25 12:00:04.295 [main] INFO - ********* START ********* +2019-02-25 12:00:04.296 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:04.296 [main] INFO - Request Type: GET +2019-02-25 12:00:04.296 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/transactions/1234567898745651235454, requestType=GET} +2019-02-25 12:00:04.296 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:04.297 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:04.297 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:04.297 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="/NI9/yifSr4qqJ+j9S5v5IAvUuvYoRg9UcoBKsilf8g=" +2019-02-25 12:00:04.297 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:04.496 [main] INFO - Request Body: null +2019-02-25 12:00:04.497 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/payment/tss/v2/transactions/1234567898745651235454"}},"invalidFields":null,"message":"The requested resource does not exist","messageKey":null,"missingFields":null} +2019-02-25 12:00:04.497 [main] INFO - Response Code: 404 +2019-02-25 12:00:04.497 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_91abaf38-a6f0-45e6-818d-ac750be98f70 +Cache-Control: no-cache, no-transform +ETag: "1151868788" +Expires: Mon, 25 Feb 2019 06:30:04 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:04 GMT +X-Cnection: close +v-c-correlation-id: 9288f398-f401-4519-b899-172b26582809 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076204298 +OkHttp-Received-Millis: 1551076204495 + +2019-02-25 12:00:04.498 [main] INFO - ********* END *********: +2019-02-25 12:00:04.530 [main] INFO - ********* START ********* +2019-02-25 12:00:04.530 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:04.530 [main] INFO - Request Type: POST +2019-02-25 12:00:04.530 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-25 12:00:04.531 [main] INFO - Digest: SHA-256=yv1HHIWB0ukuo0JfNKnkDCUcVm1OrwOQ7U4IgWX3zTs= +2019-02-25 12:00:04.531 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:04.531 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:04.531 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:04.532 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="wzr/ltYjRWSv2xUSxkJdNUzCfsKjLfhTaZ0+6D3WQZQ=" +2019-02-25 12:00:04.532 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:05.041 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientReferenceInformation.code:12345","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-25 12:00:05.041 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/4bc26943-f37e-4139-9119-5ea63c7e5ede","method":"GET"}},"searchId":"4bc26943-f37e-4139-9119-5ea63c7e5ede","save":false,"name":"TSS search","query":"clientReferenceInformation.code:12345","count":64,"totalCount":64,"limit":80,"offset":0,"sort":"id:asc, submitTimeUtc:asc","timezone":"America/Chicago","submitTimeUtc":"2019-02-25T06:30:04Z","_embedded":{"transactionSummaries":[{"id":"5468475396886870703005","submitTimeUtc":"2019-01-07T07:52:19Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468475396886870703005","method":"GET"}}},{"id":"5468478041966220703004","submitTimeUtc":"2019-01-07T07:56:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468478041966220703004","method":"GET"}}},{"id":"5468480179436393003006","submitTimeUtc":"2019-01-07T08:00:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480179436393003006","method":"GET"}}},{"id":"5468480690446811803002","submitTimeUtc":"2019-01-07T08:01:09Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480690446811803002","method":"GET"}}},{"id":"5468485285666814803002","submitTimeUtc":"2019-01-07T08:08:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485285666814803002","method":"GET"}}},{"id":"5468485710916881003005","submitTimeUtc":"2019-01-07T08:09:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485710916881003005","method":"GET"}}},{"id":"5469521708616037903005","submitTimeUtc":"2019-01-08T12:56:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469521708616037903005","method":"GET"}}},{"id":"5469522883506039403005","submitTimeUtc":"2019-01-08T12:58:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469522883506039403005","method":"GET"}}},{"id":"5469524080436600903006","submitTimeUtc":"2019-01-08T13:00:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524080436600903006","method":"GET"}}},{"id":"5469524351696601103006","submitTimeUtc":"2019-01-08T13:00:35Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524351696601103006","method":"GET"}}},{"id":"5469525663736980803002","submitTimeUtc":"2019-01-08T13:02:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469525663736980803002","method":"GET"}}},{"id":"5469529727066047603005","submitTimeUtc":"2019-01-08T13:09:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469529727066047603005","method":"GET"}}},{"id":"5469535101246615503006","submitTimeUtc":"2019-01-08T13:18:30Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469535101246615503006","method":"GET"}}},{"id":"5469588461766085503005","submitTimeUtc":"2019-01-08T14:47:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469588461766085503005","method":"GET"}}},{"id":"5469589378676352103001","submitTimeUtc":"2019-01-08T14:48:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589378676352103001","method":"GET"}}},{"id":"5469589534636352203001","submitTimeUtc":"2019-01-08T14:49:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589534636352203001","method":"GET"}}},{"id":"5470167162946434803001","submitTimeUtc":"2019-01-09T06:51:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5470167162946434803001","method":"GET"}}},{"id":"5471404274096790203002","submitTimeUtc":"2019-01-10T17:13:47Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5471404274096790203002","method":"GET"}}},{"id":"5475240476326666304005","submitTimeUtc":"2019-01-15T03:47:27Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240476326666304005","method":"GET"}}},{"id":"5475240647986666504005","submitTimeUtc":"2019-01-15T03:47:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240647986666504005","method":"GET"}}},{"id":"5475240694246602504002","submitTimeUtc":"2019-01-15T03:47:49Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240694246602504002","method":"GET"}}},{"id":"5480449281766424303002","submitTimeUtc":"2019-01-21T04:28:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5480449281766424303002","method":"GET"}}},{"id":"5484294159526049603003","submitTimeUtc":"2019-01-25T15:16:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5484294159526049603003","method":"GET"}}},{"id":"5486140097596056803002","submitTimeUtc":"2019-01-27T18:33:29Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486140097596056803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486140097596056803002","method":"GET"}}},{"id":"5486143740386376403005","submitTimeUtc":"2019-01-27T18:39:34Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486143740386376403005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486143740386376403005","method":"GET"}}},{"id":"5486146109726057203002","submitTimeUtc":"2019-01-27T18:43:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486146109726057203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486146109726057203002","method":"GET"}}},{"id":"5486149568856057803002","submitTimeUtc":"2019-01-27T18:49:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486149568856057803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486149568856057803002","method":"GET"}}},{"id":"5486150058926377303005","submitTimeUtc":"2019-01-27T18:50:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150058926377303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150058926377303005","method":"GET"}}},{"id":"5486150718046057903002","submitTimeUtc":"2019-01-27T18:51:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150718046057903002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150718046057903002","method":"GET"}}},{"id":"5486151464616710103006","submitTimeUtc":"2019-01-27T18:52:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486151464616710103006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486151464616710103006","method":"GET"}}},{"id":"5486152183786377503005","submitTimeUtc":"2019-01-27T18:53:38Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486152183786377503005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486152183786377503005","method":"GET"}}},{"id":"5486154059186996103003","submitTimeUtc":"2019-01-27T18:56:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486154059186996103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486154059186996103003","method":"GET"}}},{"id":"5486156635686378003005","submitTimeUtc":"2019-01-27T19:01:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486156635686378003005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486156635686378003005","method":"GET"}}},{"id":"5486157519836378103005","submitTimeUtc":"2019-01-27T19:02:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486157519836378103005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486157519836378103005","method":"GET"}}},{"id":"5486159910726712503006","submitTimeUtc":"2019-01-27T19:06:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486159910726712503006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486159910726712503006","method":"GET"}}},{"id":"5486160598666060203002","submitTimeUtc":"2019-01-27T19:07:40Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486160598666060203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486160598666060203002","method":"GET"}}},{"id":"5488539943826733503004","submitTimeUtc":"2019-01-30T13:13:14Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5488539943826733503004","method":"GET"}}},{"id":"5492626323766108104003","submitTimeUtc":"2019-02-04T06:43:52Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5492626323766108104003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5492626323766108104003","method":"GET"}}},{"id":"5493718508496900303005","submitTimeUtc":"2019-02-05T13:04:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718508496900303005","method":"GET"}}},{"id":"5493718987966748103006","submitTimeUtc":"2019-02-05T13:04:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718987966748103006","method":"GET"}}},{"id":"5495325909106773503001","submitTimeUtc":"2019-02-07T09:43:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495325909106773503001"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495325909106773503001","method":"GET"}}},{"id":"5495326432436411603006","submitTimeUtc":"2019-02-07T09:44:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495326432436411603006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495326432436411603006","method":"GET"}}},{"id":"5495345378096803303002","submitTimeUtc":"2019-02-07T10:15:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495345378096803303002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495345378096803303002","method":"GET"}}},{"id":"5495351977316834703003","submitTimeUtc":"2019-02-07T10:26:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495351977316834703003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495351977316834703003","method":"GET"}}},{"id":"5495352459166850703004","submitTimeUtc":"2019-02-07T10:27:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495352459166850703004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495352459166850703004","method":"GET"}}},{"id":"5495353943786840303005","submitTimeUtc":"2019-02-07T10:29:54Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495353943786840303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495353943786840303005","method":"GET"}}},{"id":"5495375735936863103004","submitTimeUtc":"2019-02-07T11:06:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495375735936863103004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495375735936863103004","method":"GET"}}},{"id":"5496424976256414603001","submitTimeUtc":"2019-02-08T16:14:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5496424976256414603001","method":"GET"}}},{"id":"5498675776826871703002","submitTimeUtc":"2019-02-11T06:46:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498675776826871703002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498675776826871703002","method":"GET"}}},{"id":"5498689371686278103003","submitTimeUtc":"2019-02-11T07:08:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498689371686278103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498689371686278103003","method":"GET"}}},{"id":"5500338731966034504001","submitTimeUtc":"2019-02-13T04:57:53Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500338731966034504001","method":"GET"}}},{"id":"5500340288796036604001","submitTimeUtc":"2019-02-13T05:00:28Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500340288796036604001","method":"GET"}}},{"id":"5500431596766884904002","submitTimeUtc":"2019-02-13T07:32:39Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500431596766884904002","method":"GET"}}},{"id":"5500437054766214104001","submitTimeUtc":"2019-02-13T07:41:45Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500437054766214104001","method":"GET"}}},{"id":"5501219025486844803004","submitTimeUtc":"2019-02-14T05:25:02Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501219025486844803004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501219025486844803004","method":"GET"}}},{"id":"5501289951276934603004","submitTimeUtc":"2019-02-14T07:23:15Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501289951276934603004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501289951276934603004","method":"GET"}}},{"id":"5501373458936421203003","submitTimeUtc":"2019-02-14T09:42:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501373458936421203003","method":"GET"}}},{"id":"5501376636716307403002","submitTimeUtc":"2019-02-14T09:47:43Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501376636716307403002","method":"GET"}}},{"id":"5510721117946649203006","submitTimeUtc":"2019-02-25T05:21:51Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510721117946649203006","method":"GET"}}},{"id":"5510721851706959203004","submitTimeUtc":"2019-02-25T05:23:05Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510721851706959203004","method":"GET"}}},{"id":"5510723131456972003004","submitTimeUtc":"2019-02-25T05:25:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510723131456972003004","method":"GET"}}},{"id":"5510723667506096803002","submitTimeUtc":"2019-02-25T05:26:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510723667506096803002","method":"GET"}}},{"id":"5510753094246858203006","submitTimeUtc":"2019-02-25T06:15:09Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5510753094246858203006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510753094246858203006","method":"GET"}}},{"id":"5510761961806406103001","submitTimeUtc":"2019-02-25T06:29:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5510761961806406103001"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510761961806406103001","method":"GET"}}}]}} +2019-02-25 12:00:05.046 [main] INFO - Response Code: 201 +2019-02-25 12:00:05.046 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_bba57841-fdeb-435c-a0c6-c0348af69502 +X-OPNET-Transaction-Trace: a2_b13a0bc1-9474-40b5-aa84-d0f4aea59173 +Cache-Control: no-cache, no-transform +ETag: "-1194363851" +Expires: Mon, 25 Feb 2019 06:30:04 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 25 Feb 2019 06:30:04 GMT +X-Cnection: close +v-c-correlation-id: 676c43e8-6243-4574-8ebe-721aeb2b2f56 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076204537 +OkHttp-Received-Millis: 1551076205035 + +2019-02-25 12:00:05.046 [main] INFO - ********* END *********: +2019-02-25 12:00:05.135 [main] INFO - ********* START ********* +2019-02-25 12:00:05.136 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:05.136 [main] INFO - Request Type: POST +2019-02-25 12:00:05.137 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-25 12:00:05.137 [main] INFO - Digest: SHA-256=MvPxo/GwSzPCnxUumNRkM4jYV4dEdR0iQ6mljgTLqrs= +2019-02-25 12:00:05.137 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:05.137 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:05.138 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:05.138 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="S0QSSn0dfMd6/GkEi3Iuuw3LRBUeUh9G2syMEBzfgSQ=" +2019-02-25 12:00:05.138 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:05.335 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientRefeInfo.code:52465","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-25 12:00:05.336 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches"}},"invalidFields":{"name":"query","reasonMessage":"unsupported field"},"message":"Incorrectly formatted query string","messageKey":"INCORRECT_QUERY_STRING","missingFields":null} +2019-02-25 12:00:05.336 [main] INFO - Response Code: 400 +2019-02-25 12:00:05.336 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_4cca6bfb-0583-4e91-8a43-3735acbae848 +X-OPNET-Transaction-Trace: a2_f3bd233e-3f43-4752-8608-582a54c21af5 +Cache-Control: no-cache, no-transform +ETag: "-652493791" +Expires: Mon, 25 Feb 2019 06:30:05 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 25 Feb 2019 06:30:05 GMT +X-Cnection: close +v-c-correlation-id: 58ce3960-7275-4f91-94e6-3c5cdb30c723 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076205140 +OkHttp-Received-Millis: 1551076205334 + +2019-02-25 12:00:05.337 [main] INFO - ********* END *********: +2019-02-25 12:00:05.358 [main] INFO - ********* START ********* +2019-02-25 12:00:05.359 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:05.359 [main] INFO - Request Type: GET +2019-02-25 12:00:05.359 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/cf031711-465f-42cc-8275-2308f5ca0459, requestType=GET} +2019-02-25 12:00:05.360 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:05.360 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:05.360 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:05.360 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="DUnqeSx5Cktj+Ek82LKXmZ4YHq63CVDi21IkP7oxsSY=" +2019-02-25 12:00:05.361 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:07.811 [main] INFO - Request Body: null +2019-02-25 12:00:07.812 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/cf031711-465f-42cc-8275-2308f5ca0459","method":"GET"}},"searchId":"cf031711-465f-42cc-8275-2308f5ca0459","save":false,"name":"TSS search","query":"clientReferenceInformation.code:12345","count":64,"totalCount":64,"limit":100,"offset":0,"sort":"id:asc, submitTimeUtc:asc","timezone":"America/Chicago","submitTimeUtc":"2019-02-21T05:00:14Z","_embedded":{"transactionSummaries":[{"id":"5468475396886870703005","submitTimeUtc":"2019-01-07T07:52:19Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468475396886870703005","method":"GET"}}},{"id":"5468478041966220703004","submitTimeUtc":"2019-01-07T07:56:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468478041966220703004","method":"GET"}}},{"id":"5468480179436393003006","submitTimeUtc":"2019-01-07T08:00:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480179436393003006","method":"GET"}}},{"id":"5468480690446811803002","submitTimeUtc":"2019-01-07T08:01:09Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480690446811803002","method":"GET"}}},{"id":"5468485285666814803002","submitTimeUtc":"2019-01-07T08:08:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485285666814803002","method":"GET"}}},{"id":"5468485710916881003005","submitTimeUtc":"2019-01-07T08:09:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485710916881003005","method":"GET"}}},{"id":"5469521708616037903005","submitTimeUtc":"2019-01-08T12:56:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469521708616037903005","method":"GET"}}},{"id":"5469522883506039403005","submitTimeUtc":"2019-01-08T12:58:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469522883506039403005","method":"GET"}}},{"id":"5469524080436600903006","submitTimeUtc":"2019-01-08T13:00:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524080436600903006","method":"GET"}}},{"id":"5469524351696601103006","submitTimeUtc":"2019-01-08T13:00:35Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524351696601103006","method":"GET"}}},{"id":"5469525663736980803002","submitTimeUtc":"2019-01-08T13:02:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469525663736980803002","method":"GET"}}},{"id":"5469529727066047603005","submitTimeUtc":"2019-01-08T13:09:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469529727066047603005","method":"GET"}}},{"id":"5469535101246615503006","submitTimeUtc":"2019-01-08T13:18:30Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469535101246615503006","method":"GET"}}},{"id":"5469588461766085503005","submitTimeUtc":"2019-01-08T14:47:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469588461766085503005","method":"GET"}}},{"id":"5469589378676352103001","submitTimeUtc":"2019-01-08T14:48:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589378676352103001","method":"GET"}}},{"id":"5469589534636352203001","submitTimeUtc":"2019-01-08T14:49:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589534636352203001","method":"GET"}}},{"id":"5470167162946434803001","submitTimeUtc":"2019-01-09T06:51:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5470167162946434803001","method":"GET"}}},{"id":"5471404274096790203002","submitTimeUtc":"2019-01-10T17:13:47Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5471404274096790203002","method":"GET"}}},{"id":"5475240476326666304005","submitTimeUtc":"2019-01-15T03:47:27Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240476326666304005","method":"GET"}}},{"id":"5475240647986666504005","submitTimeUtc":"2019-01-15T03:47:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240647986666504005","method":"GET"}}},{"id":"5475240694246602504002","submitTimeUtc":"2019-01-15T03:47:49Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240694246602504002","method":"GET"}}},{"id":"5480449281766424303002","submitTimeUtc":"2019-01-21T04:28:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5480449281766424303002","method":"GET"}}},{"id":"5484294159526049603003","submitTimeUtc":"2019-01-25T15:16:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5484294159526049603003","method":"GET"}}},{"id":"5486140097596056803002","submitTimeUtc":"2019-01-27T18:33:29Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486140097596056803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486140097596056803002","method":"GET"}}},{"id":"5486143740386376403005","submitTimeUtc":"2019-01-27T18:39:34Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486143740386376403005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486143740386376403005","method":"GET"}}},{"id":"5486146109726057203002","submitTimeUtc":"2019-01-27T18:43:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486146109726057203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486146109726057203002","method":"GET"}}},{"id":"5486149568856057803002","submitTimeUtc":"2019-01-27T18:49:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486149568856057803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486149568856057803002","method":"GET"}}},{"id":"5486150058926377303005","submitTimeUtc":"2019-01-27T18:50:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150058926377303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150058926377303005","method":"GET"}}},{"id":"5486150718046057903002","submitTimeUtc":"2019-01-27T18:51:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150718046057903002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150718046057903002","method":"GET"}}},{"id":"5486151464616710103006","submitTimeUtc":"2019-01-27T18:52:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486151464616710103006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486151464616710103006","method":"GET"}}},{"id":"5486152183786377503005","submitTimeUtc":"2019-01-27T18:53:38Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486152183786377503005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486152183786377503005","method":"GET"}}},{"id":"5486154059186996103003","submitTimeUtc":"2019-01-27T18:56:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486154059186996103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486154059186996103003","method":"GET"}}},{"id":"5486156635686378003005","submitTimeUtc":"2019-01-27T19:01:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486156635686378003005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486156635686378003005","method":"GET"}}},{"id":"5486157519836378103005","submitTimeUtc":"2019-01-27T19:02:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486157519836378103005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486157519836378103005","method":"GET"}}},{"id":"5486159910726712503006","submitTimeUtc":"2019-01-27T19:06:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486159910726712503006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486159910726712503006","method":"GET"}}},{"id":"5486160598666060203002","submitTimeUtc":"2019-01-27T19:07:40Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486160598666060203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486160598666060203002","method":"GET"}}},{"id":"5488539943826733503004","submitTimeUtc":"2019-01-30T13:13:14Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5488539943826733503004","method":"GET"}}},{"id":"5492626323766108104003","submitTimeUtc":"2019-02-04T06:43:52Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5492626323766108104003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5492626323766108104003","method":"GET"}}},{"id":"5493718508496900303005","submitTimeUtc":"2019-02-05T13:04:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718508496900303005","method":"GET"}}},{"id":"5493718987966748103006","submitTimeUtc":"2019-02-05T13:04:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718987966748103006","method":"GET"}}},{"id":"5495325909106773503001","submitTimeUtc":"2019-02-07T09:43:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495325909106773503001"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495325909106773503001","method":"GET"}}},{"id":"5495326432436411603006","submitTimeUtc":"2019-02-07T09:44:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495326432436411603006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495326432436411603006","method":"GET"}}},{"id":"5495345378096803303002","submitTimeUtc":"2019-02-07T10:15:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495345378096803303002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495345378096803303002","method":"GET"}}},{"id":"5495351977316834703003","submitTimeUtc":"2019-02-07T10:26:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495351977316834703003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495351977316834703003","method":"GET"}}},{"id":"5495352459166850703004","submitTimeUtc":"2019-02-07T10:27:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495352459166850703004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495352459166850703004","method":"GET"}}},{"id":"5495353943786840303005","submitTimeUtc":"2019-02-07T10:29:54Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495353943786840303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495353943786840303005","method":"GET"}}},{"id":"5495375735936863103004","submitTimeUtc":"2019-02-07T11:06:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495375735936863103004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495375735936863103004","method":"GET"}}},{"id":"5496424976256414603001","submitTimeUtc":"2019-02-08T16:14:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5496424976256414603001","method":"GET"}}},{"id":"5498675776826871703002","submitTimeUtc":"2019-02-11T06:46:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498675776826871703002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498675776826871703002","method":"GET"}}},{"id":"5498689371686278103003","submitTimeUtc":"2019-02-11T07:08:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498689371686278103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498689371686278103003","method":"GET"}}},{"id":"5500338731966034504001","submitTimeUtc":"2019-02-13T04:57:53Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500338731966034504001","method":"GET"}}},{"id":"5500340288796036604001","submitTimeUtc":"2019-02-13T05:00:28Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500340288796036604001","method":"GET"}}},{"id":"5500431596766884904002","submitTimeUtc":"2019-02-13T07:32:39Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500431596766884904002","method":"GET"}}},{"id":"5500437054766214104001","submitTimeUtc":"2019-02-13T07:41:45Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500437054766214104001","method":"GET"}}},{"id":"5501219025486844803004","submitTimeUtc":"2019-02-14T05:25:02Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501219025486844803004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501219025486844803004","method":"GET"}}},{"id":"5501289951276934603004","submitTimeUtc":"2019-02-14T07:23:15Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501289951276934603004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501289951276934603004","method":"GET"}}},{"id":"5501373458936421203003","submitTimeUtc":"2019-02-14T09:42:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501373458936421203003","method":"GET"}}},{"id":"5501376636716307403002","submitTimeUtc":"2019-02-14T09:47:43Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501376636716307403002","method":"GET"}}},{"id":"5510721117946649203006","submitTimeUtc":"2019-02-25T05:21:51Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510721117946649203006","method":"GET"}}},{"id":"5510721851706959203004","submitTimeUtc":"2019-02-25T05:23:05Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510721851706959203004","method":"GET"}}},{"id":"5510723131456972003004","submitTimeUtc":"2019-02-25T05:25:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510723131456972003004","method":"GET"}}},{"id":"5510723667506096803002","submitTimeUtc":"2019-02-25T05:26:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510723667506096803002","method":"GET"}}},{"id":"5510753094246858203006","submitTimeUtc":"2019-02-25T06:15:09Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5510753094246858203006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510753094246858203006","method":"GET"}}},{"id":"5510761961806406103001","submitTimeUtc":"2019-02-25T06:29:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5510761961806406103001"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510761961806406103001","method":"GET"}}}]}} +2019-02-25 12:00:07.815 [main] INFO - Response Code: 200 +2019-02-25 12:00:07.816 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_832c4451-c187-4e4b-89dd-2e089bae0ba3 +Cache-Control: no-cache, no-transform +ETag: "-756485979" +Expires: Mon, 25 Feb 2019 06:30:05 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 25 Feb 2019 06:30:05 GMT +X-Cnection: close +v-c-correlation-id: 82be4bb3-0ea0-486a-8894-fb70746138ac +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076205363 +OkHttp-Received-Millis: 1551076206811 + +2019-02-25 12:00:07.816 [main] INFO - ********* END *********: +2019-02-25 12:00:07.858 [main] INFO - ********* START ********* +2019-02-25 12:00:07.858 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:07.859 [main] INFO - Request Type: GET +2019-02-25 12:00:07.859 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc, requestType=GET} +2019-02-25 12:00:07.859 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:07.860 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:07.860 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:07.860 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="4lwGWpePfev6MV3qLsjBFNnAdvyX8vszXc/UyNlxJx8=" +2019-02-25 12:00:07.860 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:08.059 [main] INFO - Request Body: null +2019-02-25 12:00:08.059 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc"}},"invalidFields":null,"message":"search Id not fount.","messageKey":null,"missingFields":null} +2019-02-25 12:00:08.059 [main] INFO - Response Code: 400 +2019-02-25 12:00:08.060 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_71690c71-0afc-4b8a-a5f9-f7736f1f660e +X-OPNET-Transaction-Trace: a2_a2211b3c-4daa-4d13-9343-9ec85bb220cf +Cache-Control: no-cache, no-transform +ETag: "-1662750822" +Expires: Mon, 25 Feb 2019 06:30:07 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 25 Feb 2019 06:30:07 GMT +X-Cnection: close +v-c-correlation-id: e357ca54-f248-4797-97ad-ccd7e4652e73 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076207861 +OkHttp-Received-Millis: 1551076208057 + +2019-02-25 12:00:08.060 [main] INFO - ********* END *********: +2019-02-25 12:00:08.088 [main] INFO - ********* START ********* +2019-02-25 12:00:08.088 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:08.089 [main] INFO - Request Type: GET +2019-02-25 12:00:08.089 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-25 12:00:08.089 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:08.089 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:08.090 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:08.090 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="zuOvddN4iT89ivqzDWW2bL/Pr6S3pv8xx5By4qKxz+c=" +2019-02-25 12:00:08.090 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:08.338 [main] INFO - Request Body: null +2019-02-25 12:00:08.338 [main] INFO - Response Message: {"users":[{"accountInformation":{"userName":"testrest","roleId":"admin","permissions":["CustomerProfileViewPermission","CustomerProfileDeletePermission","CustomerProfileManagementPermission","CustomerProfileTransactionPermission","SubscriptionViewPermission","SubscriptionDeletePermission","SubscriptionManagementPermission","SubscriptionTransactionPermission","VirtualTerminalSettingsViewPermission","VirtualTerminalSettingsManagementPermission","VirtualTerminalTransactionPermission","PaymentVerificationPermission","PaymentDebitPermission","PaymentCreditPermission","PaymentStandAloneCreditPermission","PaymentServiceFeeRefundPermission","PaymentCancellationPermission","ReportSettingsViewPermission","ReportSettingsManagementPermission","ReportViewPermission","ReportDownloadPermission","ELCViewPermission","ELCReturnPermission","ELCResetPermission","DMConfigurationManagementPermission","DMProfileManagementPermission","DMProfileViewPermission","DMListManagementPermission","DMListViewPermission","DMVelocityManagementPermission","DMVelocityViewPermission","DMQueueSettingsManagementPermission","DMQueueSettingsViewPermission","DMReplayRequestManagementPermission","DMReplayRequestViewPermission","CMQueueSearchPermission","CMConvertOrderPermission","CMQueueAssignmentPermission","CMReleaseOwnershipPermission","CMReviewAnyOrderPermission","CMCaseAssignmentPermission","CMPriorityChangePermission","CMMoveOrdersToOtherQueuePermission","CMThirdPartyConfigurationPermission","CMPerformanceStatisticsReviewPermission","CMTimeLimitResetPermission","CMUnrestrictedOrderManagementPermission","CMConvertRejectedOrdersPermission","CMStealOwnershipPermission","CMCaseSLAExemptionPermission","CMThirdPartyRequestsPermission","UserViewPermission","UserUpdatePermission","UserManagementPermission","BankingInformationManagementPermission","MerchantInformationManagementPermission","APIKeyManagementPermission","MessageCenterViewPermission","HOPScriptManagementPermission","HOPSettingsViewPermission","HOPSettingsManagementPermission","HPASecurityManagementPermission","HPASettingsViewPermission","HPASettingsManagementPermission","HPATransactionSearchPermission","TransactionViewPermission","MarkAsTrustedPermission","MarkAsTemporarilyTrustedPermission","MarkAsSuspectPermission","MarkForReviewPermission","RemoveFromHistoryPermission","AccountNumberViewPermission","BatchUploadPermission","ReauthorizePermission","ReauthorizeSettlePermission","NewOrderFromAuthPermission","FullAuthorizationReversalPermission","AUStatusPermission","AUPgpUploadPermission","CbkMgmtAssignChargebackPermission","CbkMgmtViewChargebackPermission","CbkMgmtAcceptAndRebuttalChargebackPermission","CbkMgmtTakeOwnershipPermission","AuditSearchPermission","TransactionSearchExportPermission","CbkMgmtReturnChargebackToQueuePermission","BeneficiaryDetailsViewPermission","BeneficiaryDetailsUpdatePermission","IpConfigurationPermission","SecureFileDownloadPermission","SecureFileUploadPermission","ServiceFeeSettingsViewPermission","ServiceFeeSettingsManagementPermission","MposDeviceManagementPermission","MposDeviceAccessPermission","MposDeviceTIDManagementPermission","PayoutsVirtualTerminalPermission","PayoutsVirtualTerminalSettingsViewPermission","PayoutsVirtualTerminalSettingsManagementPermission","TerminalManagementPermission","ProcessorSettingsPermission","PortfolioRiskControlsViewPermission","PortfolioRiskControlsManagementPermission","MerchantRiskControlsViewPermission","MerchantRiskControlsManagementPermission","KeysManagementPermission","KeysViewPermission","DigitalPaymentsViewPermission","DigitalPaymentsManagementPermission","PayerAuthConfigurationViewPermission","PayerAuthConfigurationManagementPermission","SmartAuthSettingsViewPermission","SmartAuthSettingsManagementPermission","GroupsViewPermission","GroupsManagementPermission","IpSettingsViewPermission","IpSettingsManagementPermission","MerchantBoardingViewPermission","MerchantBoardingManagementPermission","TokenDashboardViewPermission","TokenDashboardManagementPermission","TerminalListViewPermission","MposDeviceViewPermission","ReaderStatusPanelViewPermission","ReaderStatusPanelManagementPermission"],"status":"active","createdTime":"2017-11-17T22:38:06.000Z","lastAccessTime":"2019-02-25T06:00:11.000Z","languagePreference":"","timezone":""},"organizationInformation":{"organizationId":"testrest"},"contactInformation":{"email":"glondhe@visa.com","phoneNumber":"","firstName":"gaurav","lastName":"londhe"},"customFields":{}}]} +2019-02-25 12:00:08.341 [main] INFO - Response Code: 200 +2019-02-25 12:00:08.341 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_93239532-28c0-4ca9-9299-ba816632e9c7 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:08 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: fe7efc15-4bf1-421c-a5a3-3ce765a77b98 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076208095 +OkHttp-Received-Millis: 1551076208336 + +2019-02-25 12:00:08.341 [main] INFO - ********* END *********: +2019-02-25 12:00:08.376 [main] INFO - ********* START ********* +2019-02-25 12:00:08.376 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:08.376 [main] INFO - Request Type: GET +2019-02-25 12:00:08.377 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testre&roleId=admin, requestType=GET} +2019-02-25 12:00:08.377 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:08.377 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:08.377 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:08.377 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="eJd8sLD9pgHTCr+3NDU0Vq04CrgALF8PKgugaH9c+j8=" +2019-02-25 12:00:08.378 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:08.590 [main] INFO - Request Body: null +2019-02-25 12:00:08.590 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-25 12:00:08.590 [main] INFO - Response Code: 401 +2019-02-25 12:00:08.590 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_67557915-2dab-415a-9229-6a57167ad75a +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:08 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4116502e-cdac-4524-9c29-a5e47516ce94 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076208380 +OkHttp-Received-Millis: 1551076208588 + +2019-02-25 12:00:08.591 [main] INFO - ********* END *********: +2019-02-25 12:00:08.616 [main] INFO - ********* START ********* +2019-02-25 12:00:08.617 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:08.617 [main] INFO - Request Type: GET +2019-02-25 12:00:08.617 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest, requestType=GET} +2019-02-25 12:00:08.618 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:08.618 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:08.618 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:08.618 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="8DuofQZpLY6rgjVUSD5oDzMVZkuL1DXpM6gERHG2eHk=" +2019-02-25 12:00:08.619 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:09.210 [main] INFO - Request Body: null +2019-02-25 12:00:09.210 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest","method":"GET"},"files":[{"fileId":"RGVtb19SZXBvcnQtNzg1NWQxM2YtOTM5Ny01MTEzLWUwNTMtYTI1ODhlMGE3MTkyLnhtbC0yMDE4LTEwLTIw","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzg1NWQxM2YtOTM5Ny01MTEzLWUwNTMtYTI1ODhlMGE3MTkyLnhtbC0yMDE4LTEwLTIw","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMA==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMA==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4NTZhMzQ5LTZmMjQtNTEwZi1lMDUzLWEyNTg4ZTBhZWQxYi5jc3YtMjAxOC0xMC0yMQ==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4NTZhMzQ5LTZmMjQtNTEwZi1lMDUzLWEyNTg4ZTBhZWQxYi5jc3YtMjAxOC0xMC0yMQ==","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzg1NmEzNDktNmYyMy01MTBmLWUwNTMtYTI1ODhlMGFlZDFiLnhtbC0yMDE4LTEwLTIx","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzg1NmEzNDktNmYyMy01MTBmLWUwNTMtYTI1ODhlMGFlZDFiLnhtbC0yMDE4LTEwLTIx","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMQ==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMQ==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4Y2MwNWI2LWRjYTAtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yMg==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4Y2MwNWI2LWRjYTAtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yMg==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzhjYzA1YjYtZGM5Zi01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTIy","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzhjYzA1YjYtZGM5Zi01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTIy","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMg==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMg==","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4N2FiNjRlLTA0ODEtNTEzNS1lMDUzLWEyNTg4ZTBhMDExMC5jc3YtMjAxOC0xMC0yMw==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4N2FiNjRlLTA0ODEtNTEzNS1lMDUzLWEyNTg4ZTBhMDExMC5jc3YtMjAxOC0xMC0yMw==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzg3YWI2NGUtMDQ4MC01MTM1LWUwNTMtYTI1ODhlMGEwMTEwLnhtbC0yMDE4LTEwLTIz","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzg3YWI2NGUtMDQ4MC01MTM1LWUwNTMtYTI1ODhlMGEwMTEwLnhtbC0yMDE4LTEwLTIz","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMw==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMw==","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzhjYzA1YjYtZGVmZS01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTI0","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzhjYzA1YjYtZGVmZS01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTI0","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4Y2MwNWI2LWRlZmYtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yNA==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4Y2MwNWI2LWRlZmYtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yNA==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNA==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNA==","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkwOGJiYjQtMmQ2MS01OGQxLWUwNTMtYTI1ODhlMGFlOTJiLnhtbC0yMDE4LTEwLTI1","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkwOGJiYjQtMmQ2MS01OGQxLWUwNTMtYTI1ODhlMGFlOTJiLnhtbC0yMDE4LTEwLTI1","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc5MDhiYmI0LTJkNjItNThkMS1lMDUzLWEyNTg4ZTBhZTkyYi5jc3YtMjAxOC0xMC0yNQ==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc5MDhiYmI0LTJkNjItNThkMS1lMDUzLWEyNTg4ZTBhZTkyYi5jc3YtMjAxOC0xMC0yNQ==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNQ==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNQ==","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc5MWRjMGJlLWRkMmEtNzIwYS1lMDUzLWEyNTg4ZTBhZGQ3Yi5jc3YtMjAxOC0xMC0yNg==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc5MWRjMGJlLWRkMmEtNzIwYS1lMDUzLWEyNTg4ZTBhZGQ3Yi5jc3YtMjAxOC0xMC0yNg==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkxZGMwYmUtZGQyOS03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI2","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkxZGMwYmUtZGQyOS03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI2","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNg==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNg==","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc5MzFkODJkLWNmNGEtNzFmYS1lMDUzLWEyNTg4ZTBhYjI3YS5jc3YtMjAxOC0xMC0yNw==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc5MzFkODJkLWNmNGEtNzFmYS1lMDUzLWEyNTg4ZTBhYjI3YS5jc3YtMjAxOC0xMC0yNw==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkzMWQ4MmQtY2Y0OS03MWZhLWUwNTMtYTI1ODhlMGFiMjdhLnhtbC0yMDE4LTEwLTI3","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkzMWQ4MmQtY2Y0OS03MWZhLWUwNTMtYTI1ODhlMGFiMjdhLnhtbC0yMDE4LTEwLTI3","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNw==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNw==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkzMzdjYmItY2YyMi03MjAyLWUwNTMtYTI1ODhlMGFhYzA5LnhtbC0yMDE4LTEwLTI4","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkzMzdjYmItY2YyMi03MjAyLWUwNTMtYTI1ODhlMGFhYzA5LnhtbC0yMDE4LTEwLTI4","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc5MzM3Y2JiLWNmMjMtNzIwMi1lMDUzLWEyNTg4ZTBhYWMwOS5jc3YtMjAxOC0xMC0yOA==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc5MzM3Y2JiLWNmMjMtNzIwMi1lMDUzLWEyNTg4ZTBhYWMwOS5jc3YtMjAxOC0xMC0yOA==","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOA==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOA==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","method":"GET"},{"fileId":"dGVzdHJlc3QuT3djeWs2cGwucmVwbHkuYWxsLmNzdi0yMDE4LTEwLTI5","href":"https://apitest.cybersource.com/sfs/v1/files/dGVzdHJlc3QuT3djeWs2cGwucmVwbHkuYWxsLmNzdi0yMDE4LTEwLTI5","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkxZGMwYmYtYTUxMy03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI5","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkxZGMwYmYtYTUxMy03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI5","method":"GET"},{"fileId":"dGVzdHJlc3QuT3djeWs2cGwucmVwbHkucmVqZWN0ZWQuY3N2LTIwMTgtMTAtMjk=","href":"https://apitest.cybersource.com/sfs/v1/files/dGVzdHJlc3QuT3djeWs2cGwucmVwbHkucmVqZWN0ZWQuY3N2LTIwMTgtMTAtMjk=","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOQ==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOQ==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0zMA==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0zMA==","method":"GET"}]},"fileDetails":[{"fileId":"RGVtb19SZXBvcnQtNzg1NWQxM2YtOTM5Ny01MTEzLWUwNTMtYTI1ODhlMGE3MTkyLnhtbC0yMDE4LTEwLTIw","name":"Demo_Report-7855d13f-9397-5113-e053-a2588e0a7192.xml","createdTime":"2018-10-20T17:31:36Z","lastModifiedTime":"2018-10-20T17:31:36Z","date":"2018-10-20","mimeType":"application/xml","size":3248},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-21T08:54:56Z","lastModifiedTime":"2018-10-21T08:54:56Z","date":"2018-10-20","mimeType":"text/csv","size":636},{"fileId":"VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA==","name":"TRRReport-7855d13f-9398-5113-e053-a2588e0a7192.csv","createdTime":"2018-10-20T17:31:36Z","lastModifiedTime":"2018-10-20T17:31:36Z","date":"2018-10-20","mimeType":"text/csv","size":1696},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","name":"TransactionDetailReport.csv","createdTime":"2018-10-21T09:06:01Z","lastModifiedTime":"2018-10-21T09:06:01Z","date":"2018-10-20","mimeType":"text/csv","size":2149},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-21T10:39:46Z","lastModifiedTime":"2018-10-21T10:39:46Z","date":"2018-10-20","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMA==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-21T10:56:31Z","lastModifiedTime":"2018-10-21T10:56:31Z","date":"2018-10-20","mimeType":"text/csv","size":184},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","name":"TransactionDetailReport.csv","createdTime":"2018-10-22T09:08:33Z","lastModifiedTime":"2018-10-22T09:08:33Z","date":"2018-10-21","mimeType":"text/csv","size":2149},{"fileId":"VFJSUmVwb3J0LTc4NTZhMzQ5LTZmMjQtNTEwZi1lMDUzLWEyNTg4ZTBhZWQxYi5jc3YtMjAxOC0xMC0yMQ==","name":"TRRReport-7856a349-6f24-510f-e053-a2588e0aed1b.csv","createdTime":"2018-10-21T17:30:41Z","lastModifiedTime":"2018-10-21T17:30:41Z","date":"2018-10-21","mimeType":"text/csv","size":153},{"fileId":"RGVtb19SZXBvcnQtNzg1NmEzNDktNmYyMy01MTBmLWUwNTMtYTI1ODhlMGFlZDFiLnhtbC0yMDE4LTEwLTIx","name":"Demo_Report-7856a349-6f23-510f-e053-a2588e0aed1b.xml","createdTime":"2018-10-21T17:30:41Z","lastModifiedTime":"2018-10-21T17:30:41Z","date":"2018-10-21","mimeType":"application/xml","size":461},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-22T08:53:03Z","lastModifiedTime":"2018-10-22T08:53:03Z","date":"2018-10-21","mimeType":"text/csv","size":213},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMQ==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-22T10:55:08Z","lastModifiedTime":"2018-10-22T10:55:08Z","date":"2018-10-21","mimeType":"text/csv","size":184},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-22T10:38:53Z","lastModifiedTime":"2018-10-22T10:38:53Z","date":"2018-10-21","mimeType":"text/csv","size":781},{"fileId":"VFJSUmVwb3J0LTc4Y2MwNWI2LWRjYTAtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yMg==","name":"TRRReport-78cc05b6-dca0-5102-e053-a2588e0a3aa9.csv","createdTime":"2018-10-22T17:33:46Z","lastModifiedTime":"2018-10-22T17:33:46Z","date":"2018-10-22","mimeType":"text/csv","size":20255},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-23T09:06:11Z","lastModifiedTime":"2018-10-23T09:06:11Z","date":"2018-10-22","mimeType":"text/csv","size":4208},{"fileId":"RGVtb19SZXBvcnQtNzhjYzA1YjYtZGM5Zi01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTIy","name":"Demo_Report-78cc05b6-dc9f-5102-e053-a2588e0a3aa9.xml","createdTime":"2018-10-22T17:33:46Z","lastModifiedTime":"2018-10-22T17:33:46Z","date":"2018-10-22","mimeType":"application/xml","size":35844},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","name":"TransactionDetailReport.csv","createdTime":"2018-10-23T09:32:46Z","lastModifiedTime":"2018-10-23T09:32:46Z","date":"2018-10-22","mimeType":"text/csv","size":221387},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-23T10:56:26Z","lastModifiedTime":"2018-10-23T10:56:26Z","date":"2018-10-22","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMg==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-23T11:13:16Z","lastModifiedTime":"2018-10-23T11:13:16Z","date":"2018-10-22","mimeType":"text/csv","size":184},{"fileId":"VFJSUmVwb3J0LTc4N2FiNjRlLTA0ODEtNTEzNS1lMDUzLWEyNTg4ZTBhMDExMC5jc3YtMjAxOC0xMC0yMw==","name":"TRRReport-787ab64e-0481-5135-e053-a2588e0a0110.csv","createdTime":"2018-10-23T17:32:01Z","lastModifiedTime":"2018-10-23T17:32:01Z","date":"2018-10-23","mimeType":"text/csv","size":72824},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-24T09:03:32Z","lastModifiedTime":"2018-10-24T09:03:32Z","date":"2018-10-23","mimeType":"text/csv","size":18379},{"fileId":"RGVtb19SZXBvcnQtNzg3YWI2NGUtMDQ4MC01MTM1LWUwNTMtYTI1ODhlMGEwMTEwLnhtbC0yMDE4LTEwLTIz","name":"Demo_Report-787ab64e-0480-5135-e053-a2588e0a0110.xml","createdTime":"2018-10-23T17:32:01Z","lastModifiedTime":"2018-10-23T17:32:01Z","date":"2018-10-23","mimeType":"application/xml","size":129108},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","name":"TransactionDetailReport.csv","createdTime":"2018-10-24T09:23:42Z","lastModifiedTime":"2018-10-24T09:23:42Z","date":"2018-10-23","mimeType":"text/csv","size":262829},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-24T10:47:33Z","lastModifiedTime":"2018-10-24T10:47:33Z","date":"2018-10-23","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMw==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-24T11:03:18Z","lastModifiedTime":"2018-10-24T11:03:18Z","date":"2018-10-23","mimeType":"text/csv","size":184},{"fileId":"RGVtb19SZXBvcnQtNzhjYzA1YjYtZGVmZS01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTI0","name":"Demo_Report-78cc05b6-defe-5102-e053-a2588e0a3aa9.xml","createdTime":"2018-10-24T17:34:39Z","lastModifiedTime":"2018-10-24T17:34:39Z","date":"2018-10-24","mimeType":"application/xml","size":86420},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-25T08:56:09Z","lastModifiedTime":"2018-10-25T08:56:09Z","date":"2018-10-24","mimeType":"text/csv","size":9411},{"fileId":"VFJSUmVwb3J0LTc4Y2MwNWI2LWRlZmYtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yNA==","name":"TRRReport-78cc05b6-deff-5102-e053-a2588e0a3aa9.csv","createdTime":"2018-10-24T17:34:44Z","lastModifiedTime":"2018-10-24T17:34:44Z","date":"2018-10-24","mimeType":"text/csv","size":48913},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","name":"TransactionDetailReport.csv","createdTime":"2018-10-25T09:18:24Z","lastModifiedTime":"2018-10-25T09:18:24Z","date":"2018-10-24","mimeType":"text/csv","size":244813},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-25T10:38:34Z","lastModifiedTime":"2018-10-25T10:38:34Z","date":"2018-10-24","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNA==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-25T10:53:49Z","lastModifiedTime":"2018-10-25T10:53:49Z","date":"2018-10-24","mimeType":"text/csv","size":184},{"fileId":"RGVtb19SZXBvcnQtNzkwOGJiYjQtMmQ2MS01OGQxLWUwNTMtYTI1ODhlMGFlOTJiLnhtbC0yMDE4LTEwLTI1","name":"Demo_Report-7908bbb4-2d61-58d1-e053-a2588e0ae92b.xml","createdTime":"2018-10-25T17:35:14Z","lastModifiedTime":"2018-10-25T17:35:14Z","date":"2018-10-25","mimeType":"application/xml","size":63336},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-26T09:01:48Z","lastModifiedTime":"2018-10-26T09:01:48Z","date":"2018-10-25","mimeType":"text/csv","size":21068},{"fileId":"VFJSUmVwb3J0LTc5MDhiYmI0LTJkNjItNThkMS1lMDUzLWEyNTg4ZTBhZTkyYi5jc3YtMjAxOC0xMC0yNQ==","name":"TRRReport-7908bbb4-2d62-58d1-e053-a2588e0ae92b.csv","createdTime":"2018-10-25T17:35:14Z","lastModifiedTime":"2018-10-25T17:35:14Z","date":"2018-10-25","mimeType":"text/csv","size":37260},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","name":"TransactionDetailReport.csv","createdTime":"2018-10-26T09:17:38Z","lastModifiedTime":"2018-10-26T09:17:38Z","date":"2018-10-25","mimeType":"text/csv","size":196149},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-26T10:45:53Z","lastModifiedTime":"2018-10-26T10:45:53Z","date":"2018-10-25","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNQ==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-26T11:01:28Z","lastModifiedTime":"2018-10-26T11:01:28Z","date":"2018-10-25","mimeType":"text/csv","size":184},{"fileId":"VFJSUmVwb3J0LTc5MWRjMGJlLWRkMmEtNzIwYS1lMDUzLWEyNTg4ZTBhZGQ3Yi5jc3YtMjAxOC0xMC0yNg==","name":"TRRReport-791dc0be-dd2a-720a-e053-a2588e0add7b.csv","createdTime":"2018-10-26T17:31:54Z","lastModifiedTime":"2018-10-26T17:31:54Z","date":"2018-10-26","mimeType":"text/csv","size":21634},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-27T09:09:59Z","lastModifiedTime":"2018-10-27T09:09:59Z","date":"2018-10-26","mimeType":"text/csv","size":25586},{"fileId":"RGVtb19SZXBvcnQtNzkxZGMwYmUtZGQyOS03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI2","name":"Demo_Report-791dc0be-dd29-720a-e053-a2588e0add7b.xml","createdTime":"2018-10-26T17:31:54Z","lastModifiedTime":"2018-10-26T17:31:54Z","date":"2018-10-26","mimeType":"application/xml","size":37584},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","name":"TransactionDetailReport.csv","createdTime":"2018-10-27T09:19:10Z","lastModifiedTime":"2018-10-27T09:19:10Z","date":"2018-10-26","mimeType":"text/csv","size":144149},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-27T11:08:00Z","lastModifiedTime":"2018-10-27T11:08:00Z","date":"2018-10-26","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNg==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-27T11:26:55Z","lastModifiedTime":"2018-10-27T11:26:55Z","date":"2018-10-26","mimeType":"text/csv","size":184},{"fileId":"VFJSUmVwb3J0LTc5MzFkODJkLWNmNGEtNzFmYS1lMDUzLWEyNTg4ZTBhYjI3YS5jc3YtMjAxOC0xMC0yNw==","name":"TRRReport-7931d82d-cf4a-71fa-e053-a2588e0ab27a.csv","createdTime":"2018-10-27T17:35:11Z","lastModifiedTime":"2018-10-27T17:35:11Z","date":"2018-10-27","mimeType":"text/csv","size":14120},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","name":"TransactionDetailReport.csv","createdTime":"2018-10-28T09:13:03Z","lastModifiedTime":"2018-10-28T09:13:03Z","date":"2018-10-27","mimeType":"text/csv","size":24269},{"fileId":"RGVtb19SZXBvcnQtNzkzMWQ4MmQtY2Y0OS03MWZhLWUwNTMtYTI1ODhlMGFiMjdhLnhtbC0yMDE4LTEwLTI3","name":"Demo_Report-7931d82d-cf49-71fa-e053-a2588e0ab27a.xml","createdTime":"2018-10-27T17:35:11Z","lastModifiedTime":"2018-10-27T17:35:11Z","date":"2018-10-27","mimeType":"application/xml","size":24360},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-28T09:17:18Z","lastModifiedTime":"2018-10-28T09:17:18Z","date":"2018-10-27","mimeType":"text/csv","size":18700},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-28T11:09:43Z","lastModifiedTime":"2018-10-28T11:09:43Z","date":"2018-10-27","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNw==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-28T11:29:43Z","lastModifiedTime":"2018-10-28T11:29:43Z","date":"2018-10-27","mimeType":"text/csv","size":184},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","name":"TransactionDetailReport.csv","createdTime":"2018-10-29T09:11:31Z","lastModifiedTime":"2018-10-29T09:11:31Z","date":"2018-10-28","mimeType":"text/csv","size":5296},{"fileId":"RGVtb19SZXBvcnQtNzkzMzdjYmItY2YyMi03MjAyLWUwNTMtYTI1ODhlMGFhYzA5LnhtbC0yMDE4LTEwLTI4","name":"Demo_Report-79337cbb-cf22-7202-e053-a2588e0aac09.xml","createdTime":"2018-10-28T17:35:19Z","lastModifiedTime":"2018-10-28T17:35:19Z","date":"2018-10-28","mimeType":"application/xml","size":696},{"fileId":"VFJSUmVwb3J0LTc5MzM3Y2JiLWNmMjMtNzIwMi1lMDUzLWEyNTg4ZTBhYWMwOS5jc3YtMjAxOC0xMC0yOA==","name":"TRRReport-79337cbb-cf23-7202-e053-a2588e0aac09.csv","createdTime":"2018-10-28T17:35:24Z","lastModifiedTime":"2018-10-28T17:35:24Z","date":"2018-10-28","mimeType":"text/csv","size":279},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOA==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-29T11:27:31Z","lastModifiedTime":"2018-10-29T11:27:31Z","date":"2018-10-28","mimeType":"text/csv","size":184},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-29T09:11:56Z","lastModifiedTime":"2018-10-29T09:11:56Z","date":"2018-10-28","mimeType":"text/csv","size":1254},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-29T11:07:51Z","lastModifiedTime":"2018-10-29T11:07:51Z","date":"2018-10-28","mimeType":"text/csv","size":781},{"fileId":"dGVzdHJlc3QuT3djeWs2cGwucmVwbHkuYWxsLmNzdi0yMDE4LTEwLTI5","name":"testrest.Owcyk6pl.reply.all.csv","createdTime":"2018-10-29T23:26:48Z","lastModifiedTime":"2018-10-29T23:26:48Z","date":"2018-10-29","mimeType":"text/csv","size":512},{"fileId":"RGVtb19SZXBvcnQtNzkxZGMwYmYtYTUxMy03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI5","name":"Demo_Report-791dc0bf-a513-720a-e053-a2588e0add7b.xml","createdTime":"2018-10-29T17:31:08Z","lastModifiedTime":"2018-10-29T17:31:08Z","date":"2018-10-29","mimeType":"application/xml","size":29116},{"fileId":"dGVzdHJlc3QuT3djeWs2cGwucmVwbHkucmVqZWN0ZWQuY3N2LTIwMTgtMTAtMjk=","name":"testrest.Owcyk6pl.reply.rejected.csv","createdTime":"2018-10-29T23:26:48Z","lastModifiedTime":"2018-10-29T23:26:48Z","date":"2018-10-29","mimeType":"text/csv","size":512},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-30T09:14:14Z","lastModifiedTime":"2018-10-30T09:14:14Z","date":"2018-10-29","mimeType":"text/csv","size":4947},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","name":"TransactionDetailReport.csv","createdTime":"2018-10-30T09:19:49Z","lastModifiedTime":"2018-10-30T09:19:49Z","date":"2018-10-29","mimeType":"text/csv","size":90632},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-30T11:13:24Z","lastModifiedTime":"2018-10-30T11:13:24Z","date":"2018-10-29","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOQ==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-30T11:33:09Z","lastModifiedTime":"2018-10-30T11:33:09Z","date":"2018-10-29","mimeType":"text/csv","size":184},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-31T09:14:12Z","lastModifiedTime":"2018-10-31T09:14:12Z","date":"2018-10-30","mimeType":"text/csv","size":11967},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","name":"TransactionDetailReport.csv","createdTime":"2018-10-31T09:20:02Z","lastModifiedTime":"2018-10-31T09:20:02Z","date":"2018-10-30","mimeType":"text/csv","size":93034},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-31T11:16:13Z","lastModifiedTime":"2018-10-31T11:16:13Z","date":"2018-10-30","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0zMA==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-31T11:45:03Z","lastModifiedTime":"2018-10-31T11:45:03Z","date":"2018-10-30","mimeType":"text/csv","size":184}]} +2019-02-25 12:00:09.212 [main] INFO - Response Code: 200 +2019-02-25 12:00:09.213 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a74ad546-910a-4721-825a-c65a7056045a +Cache-Control: no-cache, no-transform +ETag: "1310518504-gzip" +Expires: Mon, 25 Feb 2019 06:30:09 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:09 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 031bb5f7-d983-4253-a23e-94ab73e6e741 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076208623 +OkHttp-Received-Millis: 1551076209204 + +2019-02-25 12:00:09.213 [main] INFO - ********* END *********: +2019-02-25 12:00:09.257 [main] INFO - ********* START ********* +2019-02-25 12:00:09.257 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:09.258 [main] INFO - Request Type: GET +2019-02-25 12:00:09.258 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testtest, requestType=GET} +2019-02-25 12:00:09.258 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:09.258 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:09.259 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:09.259 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="bg3TokmDbgneITQLfOkDBKHKGw2k6rThAlt9ljYvCpw=" +2019-02-25 12:00:09.259 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:09.717 [main] INFO - Request Body: null +2019-02-25 12:00:09.717 [main] INFO - Response Message: Merchant - Unauthorised access to Reseller/Account +2019-02-25 12:00:09.718 [main] INFO - Response Code: 403 +2019-02-25 12:00:09.718 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_35578eeb-f054-4b42-a355-945a819b5272 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:09 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 30690db8-7bde-423f-b82b-fb60d587b94d +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076209259 +OkHttp-Received-Millis: 1551076209715 + +2019-02-25 12:00:09.718 [main] INFO - ********* END *********: +2019-02-25 12:00:09.741 [main] INFO - ********* START ********* +2019-02-25 12:00:09.741 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:09.741 [main] INFO - Request Type: GET +2019-02-25 12:00:09.742 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA%3D%3D?organizationId=testrest, requestType=GET} +2019-02-25 12:00:09.742 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:09.742 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:09.742 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:09.743 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="B1rDi3OowKEnxDPTbKca7Dp42e8nKNq4fowEiLJfRE0=" +2019-02-25 12:00:09.743 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:10.214 [main] INFO - Request Body: null +2019-02-25 12:00:10.214 [main] INFO - Response Message: testrest,TRRReport,TransactionRequestReport,1.10,2018-10-19T16:00:00Z to 2018-10-20T16:00:00Z +RequestID,RequestDate,MerchantReferenceNumber,MerchantID +5399662771246550003001,2018-10-19T16:24:37Z,TC50171_3,testrest +5399664781416551403001,2018-10-19T16:27:58Z,TC50171_3,testrest +5399666196306552903001,2018-10-19T16:30:19Z,TC50171_3,testrest +5399666357576981903005,2018-10-19T16:30:35Z,TC50171_3,testrest +5399680347956058103004,2018-10-19T16:53:54Z,TC50171_3,testrest +5399680431216058303004,2018-10-19T16:54:03Z,TC50171_3,testrest +5399684302416000903005,2018-10-19T17:00:30Z,TC50171_3,testrest +5399684505506723403002,2018-10-19T17:00:50Z,TC50171_3,testrest +5399684781686729303003,2018-10-19T17:01:18Z,TC50171_3,testrest +5399742716346290903004,2018-10-19T18:37:51Z,TC50171_3,testrest +5399742808726291703004,2018-10-19T18:38:00Z,TC50171_3,testrest +5399743679866242703005,2018-10-19T18:39:28Z,TC50171_3,testrest +5399751921786020803003,2018-10-19T18:53:12Z,TC50171_3,testrest +5399761919726317303005,2018-10-19T19:09:52Z,TC50171_3,testrest +5399787878246907603001,2018-10-19T19:53:07Z,TC50171_3,testrest +5399793339576405603004,2018-10-19T20:02:14Z,405195660::1,testrest +5399807626196378603005,2018-10-19T20:26:02Z,405195660::1,testrest +5399810449296963303001,2018-10-19T20:30:45Z,33557799,testrest +5399829987226032203001,2018-10-19T21:03:18Z,1234567890,testrest +5399844740286070303001,2018-10-19T21:27:54Z,TC50171_3,testrest +5399845077266611803006,2018-10-19T21:28:27Z,TC50171_3,testrest +5399845139246229503002,2018-10-19T21:28:34Z,TC50171_3,testrest +5399889652786155003001,2018-10-19T22:42:45Z,TC50171_3,testrest +5399900584196720203006,2018-10-19T23:00:58Z,1234567890,testrest + +2019-02-25 12:00:10.215 [main] INFO - Response Code: 200 +2019-02-25 12:00:10.215 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_3e5bd6f6-8e8d-4e1b-b57c-d7281f749896 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 25 Feb 2019 06:30:10 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Mon, 25 Feb 2019 06:30:09 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 47d63d7b-7d74-4283-8bdb-a7ad93505ab4 +OkHttp-Sent-Millis: 1551076209743 +OkHttp-Received-Millis: 1551076210214 + +2019-02-25 12:00:10.215 [main] INFO - ********* END *********: +2019-02-25 12:00:10.248 [main] INFO - ********* START ********* +2019-02-25 12:00:10.248 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:10.248 [main] INFO - Request Type: GET +2019-02-25 12:00:10.248 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0?organizationId=testrest, requestType=GET} +2019-02-25 12:00:10.249 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:10.249 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:10.249 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:10.249 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="VIzp7qKo9QjGPyR4j2Zdy8gjux2K/Ge+9CaCyJ+B0K8=" +2019-02-25 12:00:10.250 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:10.724 [main] INFO - Request Body: null +2019-02-25 12:00:10.724 [main] INFO - Response Message: + + Field validation errors + cybsapi.validation.errors + VALIDATION_ERROR + + cybsapi.file.id.invalid + fileId + Invalid File ID + + + +2019-02-25 12:00:10.724 [main] INFO - Response Code: 400 +2019-02-25 12:00:10.724 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_f744bf11-3260-4e3f-8ac6-cb1ae807b99c +Cache-Control: no-cache, no-transform +ETag: "-807714005-gzip" +Expires: Mon, 25 Feb 2019 06:30:10 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Mon, 25 Feb 2019 06:30:10 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 472a19f3-7de9-46df-aff0-b915c31ef3c1 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076210250 +OkHttp-Received-Millis: 1551076210722 + +2019-02-25 12:00:10.725 [main] INFO - ********* END *********: +2019-02-25 12:00:10.747 [main] INFO - ********* START ********* +2019-02-25 12:00:10.748 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:10.748 [main] INFO - Request Type: GET +2019-02-25 12:00:10.748 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/Texture, requestType=GET} +2019-02-25 12:00:10.748 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:10.749 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:10.749 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:10.749 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="y7XcR7yhjpvQZ1tN/cHDJHP+4gZkyOajmduv348xsQw=" +2019-02-25 12:00:10.749 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:11.211 [main] INFO - Request Body: null +2019-02-25 12:00:11.212 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0230","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"} +2019-02-25 12:00:11.212 [main] INFO - Response Code: 200 +2019-02-25 12:00:11.212 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d795335f-0071-4a04-a583-8bae59242a92 +X-OPNET-Transaction-Trace: a2_7a7f1bc7-6aa9-4e6d-b6f1-5629563a5616 +Cache-Control: no-cache, no-transform +ETag: "-1844867216-gzip" +Expires: Mon, 25 Feb 2019 06:30:11 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:11 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7637cb45-3aea-4bcf-ab86-0a7bbd683299 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076210753 +OkHttp-Received-Millis: 1551076211210 + +2019-02-25 12:00:11.212 [main] INFO - ********* END *********: +2019-02-25 12:00:11.241 [main] INFO - ********* START ********* +2019-02-25 12:00:11.242 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:11.242 [main] INFO - Request Type: GET +2019-02-25 12:00:11.242 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/bplkmdgsd, requestType=GET} +2019-02-25 12:00:11.242 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:11.243 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:11.243 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:11.243 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="NAC3fYKjEbyTuQI32ibvDy7HMxoIv0qsVlw9tN4W0+8=" +2019-02-25 12:00:11.243 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:11.652 [main] INFO - Request Body: null +2019-02-25 12:00:11.653 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/bplkmdgsd"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"Requested subscription does not exist."} +2019-02-25 12:00:11.653 [main] INFO - Response Code: 404 +2019-02-25 12:00:11.653 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_5c2a34cc-e0ce-403f-a869-e75d9839dae8 +X-OPNET-Transaction-Trace: a2_714c040e-b645-45f8-915b-64bf47523f8c +Cache-Control: no-cache, no-transform +ETag: "1764052161-gzip" +Expires: Mon, 25 Feb 2019 06:30:11 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:10 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: dfb33441-f8e6-4e93-8649-fa8ad291b279 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076211244 +OkHttp-Received-Millis: 1551076211651 + +2019-02-25 12:00:11.654 [main] INFO - ********* END *********: +2019-02-25 12:00:11.675 [main] INFO - ********* START ********* +2019-02-25 12:00:11.676 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:11.676 [main] INFO - Request Type: GET +2019-02-25 12:00:11.676 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=testrest, requestType=GET} +2019-02-25 12:00:11.676 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:11.676 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:11.677 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:11.677 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="aqfSh+Y6vplQ2v9W/2Pi3A0Fq1DP0hjJkenFCYLqQAc=" +2019-02-25 12:00:11.677 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:12.123 [main] INFO - Request Body: null +2019-02-25 12:00:12.123 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest"}},"reportDefinitions":[{"type":"Detail","reportDefinitionId":202,"reportDefintionName":"PortfolioExceptionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Portfolio Exception Detail Report"},{"type":"Summary","reportDefinitionId":308,"reportDefintionName":"PaymentTypeByCurrencyClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":231,"reportDefintionName":"AcquirerExceptionDetailClass","supportedFormats":["text/csv"],"description":"Acquirer Exception Detail Report"},{"type":"Summary","reportDefinitionId":306,"reportDefintionName":"TransactionsByProductClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":230,"reportDefintionName":"AcquirerDetailClass","supportedFormats":["text/csv"],"description":"Acquirer Detail Report"},{"type":"Summary","reportDefinitionId":304,"reportDefintionName":"SalesRefundsClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":218,"reportDefintionName":"DepositDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Merchant Bank Deposit Details"},{"type":"Detail","reportDefinitionId":210,"reportDefintionName":"TransactionRequestClass","supportedFormats":["application/xml","text/csv"],"description":"Recon Transaction Request Report"},{"type":"Detail","reportDefinitionId":200,"reportDefintionName":"PortfolioTransactionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Portfolio Transaction Request Report"},{"type":"Summary","reportDefinitionId":342,"reportDefintionName":"FundingByProductClass","supportedFormats":["application/xml","application/json","text/csv"],"description":"Recon Funding By Product - JSON"},{"type":"Detail","reportDefinitionId":216,"reportDefintionName":"AgingDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All Settled transactions that have not been funded"},{"type":"Detail","reportDefinitionId":400,"reportDefintionName":"DecisionManagerEventDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Decision Manager Event Detail Report"},{"type":"Detail","reportDefinitionId":620,"reportDefintionName":"SubscriptionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Subscription Detail Report"},{"type":"Summary","reportDefinitionId":302,"reportDefintionName":"TransactionAggregateClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Summary","reportDefinitionId":410,"reportDefintionName":"FeeSummaryClass","supportedFormats":["text/csv"],"description":"Fee Summary CSV Report"},{"type":"Detail","reportDefinitionId":212,"reportDefintionName":"ExceptionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Recon Exception Detail Report"},{"type":"Detail","reportDefinitionId":233,"reportDefintionName":"AcquirerReconciliationSummaryClass","supportedFormats":["text/csv"],"description":"Acquirer Reconciliation Summary Report"},{"type":"Summary","reportDefinitionId":300,"reportDefintionName":"TransactionsByCurrencyClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":232,"reportDefintionName":"AcquirerChargebackDetailClass","supportedFormats":["text/csv"],"description":"Acquirer Chargeback Detail Report"},{"type":"Detail","reportDefinitionId":215,"reportDefintionName":"FundingDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All transactions that were funded in the given interval"},{"type":"Summary","reportDefinitionId":305,"reportDefintionName":"PaymentTypeSummaryClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":310,"reportDefintionName":"GatewayTransactionRequestClass","supportedFormats":["application/xml","text/csv"],"description":"All Gateway transactions by the processor"},{"type":"Summary","reportDefinitionId":341,"reportDefintionName":"FundingByCurrencyClass","supportedFormats":["application/xml","application/json","text/csv"],"description":"Recon Funding Volume - JSON"},{"type":"Detail","reportDefinitionId":220,"reportDefintionName":"InvoiceSummaryClass","supportedFormats":["application/xml","text/csv"],"description":"Merchant Invoice Details"},{"type":"Detail","reportDefinitionId":213,"reportDefintionName":"ProcessorSettlementDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Processor Settlement and Refund Detail Report"},{"type":"Summary","reportDefinitionId":343,"reportDefintionName":"FundingByPaymentTypeClass","supportedFormats":["application/xml","application/json","text/csv"],"description":"Recon Funding By Payment Type - JSON"},{"type":"Detail","reportDefinitionId":222,"reportDefintionName":"ConversionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Conversion Detail CSV Report"},{"type":"Summary","reportDefinitionId":307,"reportDefintionName":"ProductByCurrencyClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":520,"reportDefintionName":"POSTerminalExceptionClass","supportedFormats":["application/xml","text/csv"],"description":"POS Terminal Exception Report"},{"type":"Detail","reportDefinitionId":211,"reportDefintionName":"PaymentBatchDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Recon Batch Detail Report"},{"type":"Detail","reportDefinitionId":203,"reportDefintionName":"GatewayTransactionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All Gateway transactions by the processor"},{"type":"Detail","reportDefinitionId":270,"reportDefintionName":"JPTransactionDetailClass","supportedFormats":["text/csv"],"description":"Transaction detail report for CSKK merchants"},{"type":"Summary","reportDefinitionId":303,"reportDefintionName":"AuthorizationAnalysisClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Summary","reportDefinitionId":301,"reportDefintionName":"TransactionVolumeClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":217,"reportDefintionName":"ChargebackAndRetrievalDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All Chargebacks, Representments and Retrievals"},{"type":"Detail","reportDefinitionId":219,"reportDefintionName":"FeeDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All fee details"},{"type":"Detail","reportDefinitionId":201,"reportDefintionName":"PortfolioBatchDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Portfolio Batch Detail Report"},{"type":"Detail","reportDefinitionId":401,"reportDefintionName":"DecisionManagerDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Decision Manager Details CSV Report"},{"type":"Detail","reportDefinitionId":221,"reportDefintionName":"PayerAuthDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Payer Auth Details XML Report"},{"type":"Detail","reportDefinitionId":271,"reportDefintionName":"ServiceFeeDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Service Fee report"},{"type":"Summary","reportDefinitionId":340,"reportDefintionName":"FundingVolumeClass","supportedFormats":["application/xml","application/json","text/csv"],"description":"Recon Funding Volume - CSV"},{"type":"Detail","reportDefinitionId":214,"reportDefintionName":"ProcessorEventsDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All processor events regarding the transaction life cycle"}]} +2019-02-25 12:00:12.123 [main] INFO - Response Code: 200 +2019-02-25 12:00:12.124 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_5455e319-4701-4197-aade-ff309685bd0c +X-OPNET-Transaction-Trace: a2_e8192892-3da3-4b4b-b3f8-71f8f744a240 +Cache-Control: no-cache, no-transform +ETag: "1846674451-gzip" +Expires: Mon, 25 Feb 2019 06:30:12 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:11 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: bcb2276c-731c-41a2-b510-3e1369745721 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076211681 +OkHttp-Received-Millis: 1551076212121 + +2019-02-25 12:00:12.124 [main] INFO - ********* END *********: +2019-02-25 12:00:12.155 [main] INFO - ********* START ********* +2019-02-25 12:00:12.156 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:12.157 [main] INFO - Request Type: GET +2019-02-25 12:00:12.157 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=bplkmdghd, requestType=GET} +2019-02-25 12:00:12.157 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:12.158 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:12.158 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:12.158 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Uw/FMGD9Mewk/y/GeuDvMWmWXapFuq5Vm8/gYcREgU8=" +2019-02-25 12:00:12.158 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:12.577 [main] INFO - Request Body: null +2019-02-25 12:00:12.577 [main] INFO - Response Message: Invalid Merchant +2019-02-25 12:00:12.577 [main] INFO - Response Code: 400 +2019-02-25 12:00:12.578 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_bc2160b8-500a-4176-ac76-4e4f50c59f35 +X-OPNET-Transaction-Trace: a2_768cc5bf-3bb1-4cc0-a70f-7a67842d8b82 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 860c42e1-dda4-4aeb-bacf-8efda0e48212 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076212159 +OkHttp-Received-Millis: 1551076212568 + +2019-02-25 12:00:12.578 [main] INFO - ********* END *********: +2019-02-25 12:00:12.597 [main] INFO - ********* START ********* +2019-02-25 12:00:12.599 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:12.599 [main] INFO - Request Type: GET +2019-02-25 12:00:12.599 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/AcquirerExceptionDetailClass, requestType=GET} +2019-02-25 12:00:12.599 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:12.599 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:12.599 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:12.599 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="7H1hRqD6oeDVfxFBltgyiJ5t85MtZCVzu2SKJ+tSFFs=" +2019-02-25 12:00:12.599 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:13.044 [main] INFO - Request Body: null +2019-02-25 12:00:13.044 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass"}},"attributes":[{"id":"3200","name":"AdditionalInformation.CardAcceptorID","description":"Card Acceptor ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3201","name":"AdditionalInformation.CardAcceptorName","description":"Card Acceptor Name","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3202","name":"AdditionalInformation.CardAcceptorTerminalID","description":"Card Acceptor Terminal ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3203","name":"AdditionalInformation.ForwardingInstitutionID","description":"Forwarding Institution ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3204","name":"AdditionalInformation.IssuerAffiliateBIN","description":"Issuer Affiliate BIN","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3205","name":"AdditionalInformation.MerchantType","description":"Merchant Type","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3206","name":"AdditionalInformation.RecurringPaymentIndicatorFlag","description":"Recurring Payment Indicator flag","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3223","name":"TransactionDetails.SourceMerchantID","description":"Source Merchant ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3225","name":"Fee.ReimbursementFee","description":"Reimbursement Fee","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3226","name":"Fee.ReimbursementFeeDebitCreditIndicator","description":"Reimbursement Fee Debit Credit Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3227","name":"Fee.SettlementServiceIndicator","description":"Settlement Service Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3228","name":"Fee.TransactionIntegrityFee","description":"Transaction Integrity Fee","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3229","name":"Fee.TransactionIntegrityFeeDebitCreditIndicator","description":"Transaction Integrity Fee Debit Credit Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3230","name":"Settlement.CardholderBillingAmount","description":"Cardholder Billing Amount","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3231","name":"Settlement.CardholderBillingCurrencyCode","description":"Cardholder Billing Currency Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3232","name":"Settlement.RateTableDate","description":"Rate Table Date","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3234","name":"Settlement.OctSettlementAmount","description":"Settlement Amount","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3235","name":"Settlement.OctSettlementCurrencyCode","description":"Settlement Currency Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3237","name":"TransactionDetails.AcquirerBusinessID","description":"Acquirer Business ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3238","name":"TransactionDetails.AcquiringInstitutionID","description":"Acquiring Institution ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3239","name":"TransactionDetails.AffiliateBIN","description":"Affiliate BIN","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3240","name":"TransactionDetails.AuthorizationIDRespCode","description":"Authorization ID Resp. Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3241","name":"TransactionDetails.BatchNumber","description":"Batch Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3242","name":"TransactionDetails.BusinessApplicationIdentifier","description":"Business Application Identifier","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3243","name":"TransactionDetails.CardNumber","description":"Card Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3244","name":"TransactionDetails.CurrencyCodeForTransactionAmount","description":"Currency Code For Transaction Amount","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3245","name":"TransactionDetails.DataRecipient","description":"Data Recipient","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3246","name":"TransactionDetails.DCCIndicator","description":"DCC Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3247","name":"TransactionDetails.DestinationStationID","description":"Destination Station ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3248","name":"TransactionDetails.DowngradeReasonCode","description":"Downgrade Reason Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3249","name":"TransactionDetails.FundsTransferSRE","description":"Funds Transfer SRE","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3250","name":"TransactionDetails.IssuerAcquirerIndicator","description":"Issuer Acquirer Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3251","name":"TransactionDetails.MessageReasonCode","description":"Message Reason Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3252","name":"TransactionDetails.MVVCode","description":"MVV Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3253","name":"TransactionDetails.NetworkID","description":"Network ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3254","name":"TransactionDetails.OnlineSettlementDate","description":"Online Settlement Date","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3255","name":"TransactionDetails.ProcessingCode","description":"Processing Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3256","name":"TransactionDetails.ProcessorID","description":"Processor ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3257","name":"TransactionDetails.ProductID","description":"Product ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3258","name":"TransactionDetails.ProductSubtype","description":"Product Subtype","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3259","name":"TransactionDetails.RequestMessageType","description":"Request Message Type","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3260","name":"TransactionDetails.ResponseCode","description":"Response Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3261","name":"TransactionDetails.RetrievalReferenceNumber","description":"Retrieval Reference Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3262","name":"TransactionDetails.SettlementDate","description":"Settlement Date","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3263","name":"TransactionDetails.SourceOfFunds","description":"Source of Funds","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3264","name":"TransactionDetails.SourceStationID","description":"Source Station ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3265","name":"TransactionDetails.SRE","description":"SRE","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3266","name":"TransactionDetails.STIPReasonCode","description":"STIP Reason Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3267","name":"TransactionDetails.TraceNumber","description":"Trace Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3268","name":"TransactionDetails.TransactionAmount","description":"Transaction Amount","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3269","name":"TransactionDetails.TransactionIdentifier","description":"Transaction Identifier","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3270","name":"TransactionDetails.VssProcessingDate","description":"VSS PROCESSING DATE","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3278","name":"TransactionDetails.RequestId","description":"Request ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3279","name":"TransactionDetails.MerchantId","description":"Merchant ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3280","name":"TransactionDetails.PaymentMethodType","description":"Payment Method Type","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3281","name":"TransactionDetails.PaymentMethodDesc","description":"Payment Method Description","filterType":null,"supportedType":null,"required":true,"default":true}],"description":"Acquirer Exception Detail Report","reportDefinitionId":231,"reportDefintionName":"AcquirerExceptionDetailClass","supportedFormats":["text/csv"],"type":"Detail"} +2019-02-25 12:00:13.045 [main] INFO - Response Code: 200 +2019-02-25 12:00:13.045 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_6ae60609-efdc-41f6-955f-609a289d5d66 +X-OPNET-Transaction-Trace: a2_3551813c-04f7-491f-b46a-7b9945100b4a +Cache-Control: no-cache, no-transform +ETag: "991045918-gzip" +Expires: Mon, 25 Feb 2019 06:30:12 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 79b172f1-5af2-4ee6-9d26-20134818c051 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076212603 +OkHttp-Received-Millis: 1551076213041 + +2019-02-25 12:00:13.045 [main] INFO - ********* END *********: +2019-02-25 12:00:13.071 [main] INFO - ********* START ********* +2019-02-25 12:00:13.071 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:13.072 [main] INFO - Request Type: GET +2019-02-25 12:00:13.072 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/SubscDetail, requestType=GET} +2019-02-25 12:00:13.072 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:13.072 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:13.073 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:13.073 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="BGfbuiGxoSlh1fzpsvF8pJCc0g2gXCNwbziRMlKJ9jA=" +2019-02-25 12:00:13.073 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:13.481 [main] INFO - Request Body: null +2019-02-25 12:00:13.481 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/SubscDetail"}}} +2019-02-25 12:00:13.481 [main] INFO - Response Code: 404 +2019-02-25 12:00:13.482 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_192fabd6-2573-428c-9858-6359ab98aa0d +X-OPNET-Transaction-Trace: a2_ce163ea2-414f-407d-b4f6-bcb4bb5bc187 +Cache-Control: no-cache, no-transform +ETag: "204857944-gzip" +Expires: Mon, 25 Feb 2019 06:30:13 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d67e19ec-7821-4539-adca-0149d5fcecdf +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076213073 +OkHttp-Received-Millis: 1551076213480 + +2019-02-25 12:00:13.482 [main] INFO - ********* END *********: +2019-02-25 12:00:13.504 [main] INFO - ********* START ********* +2019-02-25 12:00:13.504 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:13.504 [main] INFO - Request Type: GET +2019-02-25 12:00:13.504 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest, requestType=GET} +2019-02-25 12:00:13.505 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:13.505 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:13.505 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:13.506 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="uT+ozGilmr5YRFc59N81I8ykTnQhCSX/nk2uia3UM2A=" +2019-02-25 12:00:13.506 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:13.969 [main] INFO - Request Body: null +2019-02-25 12:00:13.970 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest"}},"groupId":null,"notificationType":null,"organizationId":"testrest","reportAccessType":null,"reportDefinitionId":"210","reportEndTime":"2018-09-02T07:00:00.000Z","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{"173":[]},"reportFrequency":"ADHOC","reportId":"79642c43-2368-0cd5-e053-a2588e0a7b3c","reportMimeType":"application/xml","reportName":"testrest_v2","reportPreferences":{"signedAmounts":true,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":"SOAPI"},"reportStartTime":"2018-09-01T07:00:00.000Z","reportStatus":"COMPLETED","requestedBy":null,"selectedOrganizationId":null,"subscriptionType":"CUSTOM","timezone":"GMT"} +2019-02-25 12:00:13.970 [main] INFO - Response Code: 200 +2019-02-25 12:00:13.970 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_7b251204-0a8d-40ba-a3af-d7cb11e6f6c1 +X-OPNET-Transaction-Trace: a2_6b1b5d5d-1bae-44a2-9960-36a586673baa +Cache-Control: no-cache, no-transform +ETag: "609183382-gzip" +Expires: Mon, 25 Feb 2019 06:30:13 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:13 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 70e22091-5e4d-4bd3-9858-ff7af62805ac +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076213510 +OkHttp-Received-Millis: 1551076213968 + +2019-02-25 12:00:13.970 [main] INFO - ********* END *********: +2019-02-25 12:00:13.996 [main] INFO - ********* START ********* +2019-02-25 12:00:13.996 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:13.997 [main] INFO - Request Type: GET +2019-02-25 12:00:13.997 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest, requestType=GET} +2019-02-25 12:00:13.997 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:13.997 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:13.998 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:13.998 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="oR8ovC4w2IkxOJP21rygfdZQ5kRy4pKZvVAwqGscWfw=" +2019-02-25 12:00:13.998 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:14.439 [main] INFO - Request Body: null +2019-02-25 12:00:14.439 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"No reports found for given reportId. ReportId :: '79642c43-2368-0cd5-e053-a2588e0a'"} +2019-02-25 12:00:14.440 [main] INFO - Response Code: 404 +2019-02-25 12:00:14.440 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b03c4ca3-da7f-4ec6-b8cb-1d42a10f8c08 +X-OPNET-Transaction-Trace: a2_ade154f8-27a5-473d-a562-85bf451e61b0 +Cache-Control: no-cache, no-transform +ETag: "-830509477-gzip" +Expires: Mon, 25 Feb 2019 06:30:14 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:13 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 735c9395-9f0c-4ac5-bce9-698b1935fb41 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076213998 +OkHttp-Received-Millis: 1551076214438 + +2019-02-25 12:00:14.440 [main] INFO - ********* END *********: +2019-02-25 12:00:14.457 [main] INFO - ********* START ********* +2019-02-25 12:00:14.457 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:14.457 [main] INFO - Request Type: GET +2019-02-25 12:00:14.457 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=bkalama, requestType=GET} +2019-02-25 12:00:14.457 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:14.457 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:14.457 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:14.457 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="GVsXhNGSrjBYLZbBThRygWrXtwGqYFOGJohzHmLdLg0=" +2019-02-25 12:00:14.459 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:14.878 [main] INFO - Request Body: null +2019-02-25 12:00:14.879 [main] INFO - Response Message: Invalid Merchant +2019-02-25 12:00:14.879 [main] INFO - Response Code: 400 +2019-02-25 12:00:14.879 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b58121bc-6d02-4dd8-a4a9-d54cc7de56db +X-OPNET-Transaction-Trace: a2_cf26ee1d-e6b1-4447-8254-8f0a24f53dfd +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:14 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6df89dbc-6d55-41d4-96b2-3429334ff64e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076214459 +OkHttp-Received-Millis: 1551076214877 + +2019-02-25 12:00:14.879 [main] INFO - ********* END *********: +2019-02-25 12:00:14.900 [main] INFO - ********* START ********* +2019-02-25 12:00:14.900 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:14.900 [main] INFO - Request Type: GET +2019-02-25 12:00:14.900 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=GET} +2019-02-25 12:00:14.901 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:14.901 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:14.901 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:14.901 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="rWHKSMTT2OxRgnOlIXxPOq7+whZYW9KQWTnkv1uPwV0=" +2019-02-25 12:00:14.901 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:15.635 [main] INFO - Request Body: null +2019-02-25 12:00:15.635 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"_embedded":{"Subscriptions":[{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/1111muy"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"1111muy","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0600","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/78999sd6"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"78999sd6","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"1300","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Alex"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Alex","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0950","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Antena"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"text/csv","reportName":"Antena","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0950","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/CYBS_REP_test_2556"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"CYBS_REP_test_2556","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":4,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Ceaser"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"Ceaser","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Cybersource-rest-py1"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"Cybersource-rest-py1","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Jackson"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"Monthly","reportMimeType":"text/csv","reportName":"Jackson","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/ProcessorEventsDetailReport"}},"groupId":null,"organizationId":null,"reportDefinitionId":"214","reportDefinitionName":"ProcessorEventsDetailClass","reportFields":["PaymentMethod.BoletoNumber","Request.RequestID","PaymentData.TransactionRefNumber","Request.TransactionDate","Request.MerchantReferenceNumber","Request.MerchantID","Event.ProcessorMessage","Event.EventDate","Event.Event","Event.Amount","Event.CurrencyCode","PaymentData.ProcessorTID","Request.LocalizedRequestDate"],"reportFilters":{},"reportFrequency":"daily","reportMimeType":"text/csv","reportName":"ProcessorEventsDetailReport","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0000","subscriptionStatus":"ACTIVE","subscriptionType":"STANDARD","timezone":"America/Los_Angeles"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/QA_test_reporting_org"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"QA_test_reporting_org","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0406","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/R"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"R","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0940","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Subsc2_cybs_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"Subsc2_cybs_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0200","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Subscrip_cybs_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"Subscrip_cybs_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0100","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Subsp87_cybs_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"Subsp87_cybs_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0300","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/TRR_138"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"TRR_138","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/TRR_1383"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"TRR_1383","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/TRR_677"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"TRR_677","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0230","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_a"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture_a","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0910","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_e"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_e","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":6,"startTime":"0930","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_f"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture_f","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":7,"startTime":"0940","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_j"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture_j","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":11,"startTime":"0957","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_k"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_k","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":12,"startTime":"0958","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_s"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_s","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0920","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_t"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_t","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":4,"startTime":"0915","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0930","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Textuvij"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Textuvij","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0920","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Tider"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"text/csv","reportName":"Tider","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/TransactionRequestReport"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["PaymentData.AuthorizationCode","PaymentData.CurrencyCode","BillTo.FirstName","BillTo.LastName","BillTo.MiddleName","BillTo.Address1","BillTo.Address2","BillTo.City","BillTo.State","BillTo.Zip","BillTo.Email","BillTo.Phone","PaymentMethod.CardType","PaymentMethod.ExpirationMonth","PaymentMethod.ExpirationYear","PaymentMethod.AccountSuffix","Application.Rcode","Application.Rflag","Application.Rmsg","PaymentData.Amount","Request.RequestID","PaymentData.TransactionRefNumber","Request.TransactionDate","Request.MerchantReferenceNumber","Application.Name","Request.MerchantID","Request.LocalizedRequestDate"],"reportFilters":{},"reportFrequency":"daily","reportMimeType":"text/csv","reportName":"TransactionRequestReport","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0000","subscriptionStatus":"INACTIVE","subscriptionType":"STANDARD","timezone":"America/Los_Angeles"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Vendor"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Vendor","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Zodaic"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"Zodaic","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":5,"startTime":"0330","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/bxgsfdt66"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"bxgsfdt66","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1700","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/chena"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"chena","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/createsubscription_report"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"createsubscription_report","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0406","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/dfdf"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"dfdf","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1200","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/dgusgdfyfydugfnnfhgg"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"dgusgdfyfydugfnnfhgg","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/dhsjhsdfuihduifyifuy"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"dhsjhsdfuihduifyifuy","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1100","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/gggg"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"gggg","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1500","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/subs_cybs_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"subs_cybs_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0700","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testReport_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"testReport_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0959","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_myname"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"test_myname","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"2000","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v3"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"test_v3","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v456777"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"test_v456777","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0800","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v4567778"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"test_v4567778","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0800","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v5001"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"test_v5001","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v571"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"test_v571","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0920","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v5801"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"test_v5801","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0920","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v600"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"test_v600","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":4,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_V7683"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"testrest_V7683","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0951","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_V76833"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"testrest_V76833","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0957","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcript"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"testrest_subcript","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1100","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_karthikeyan"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_karthikeyan","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v12"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_v12","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v13"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_v13","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1700","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v155"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_v155","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":6,"startTime":"0930","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v17854"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_v17854","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0600","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v2989"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"testrest_subcription_v2989","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"1900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v4"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"testrest_subcription_v4","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v7"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"testrest_subcription_v7","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0115","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v278"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_v278","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":5,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrestsa_subcription_v1"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrestsa_subcription_v1","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0902","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testv2_subscriprion"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testv2_subscriprion","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/ttttt"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"ttttt","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"1000","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/uit"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"uit","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"1500","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"}]}} +2019-02-25 12:00:15.637 [main] INFO - Response Code: 200 +2019-02-25 12:00:15.637 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_cf545ba8-90f8-4e31-a667-0d34b80d1083 +X-OPNET-Transaction-Trace: a2_f9bebab5-3943-45ca-9c35-d547a9a9a3ad +Cache-Control: no-cache, no-transform +ETag: "-1595738260-gzip" +Expires: Mon, 25 Feb 2019 06:30:15 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:15 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 27edf742-cb90-445d-b953-0faf4d2ae22b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076214903 +OkHttp-Received-Millis: 1551076215631 + +2019-02-25 12:00:15.637 [main] INFO - ********* END *********: +2019-02-25 12:00:15.664 [main] INFO - ********* START ********* +2019-02-25 12:00:15.664 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:15.664 [main] INFO - Request Type: POST +2019-02-25 12:00:15.665 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-25 12:00:15.665 [main] INFO - Digest: SHA-256=loFSrgLcFUKQZ5yG+wiEAwrYOdwvmVHAUHYgknwquSs= +2019-02-25 12:00:15.665 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:15.665 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:15.665 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:15.666 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Cvl1/1h35IQ4qVZdL3t5SevB7Ntjscc5EnOe5rXMDi0=" +2019-02-25 12:00:15.666 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:16.422 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_feb8","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-25 12:00:16.423 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"815d1fc7-5ca6-9241-e053-a2588e0a46c1","message":"Task already exists with same report name ","localizationKey":"cybsapi.task.name.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:00:16.423 [main] INFO - Response Code: 400 +2019-02-25 12:00:16.424 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_cfb3104f-a1a8-4ee8-b388-55a8e8ad4c3a +X-OPNET-Transaction-Trace: a2_a98cb0e6-6573-4b92-bb70-a28ffc707b4c +Cache-Control: no-cache, no-transform +ETag: "1012578100-gzip" +Expires: Mon, 25 Feb 2019 06:30:16 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:16 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a738bfda-2356-413e-96a3-7c4572adeb09 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076215668 +OkHttp-Received-Millis: 1551076216413 + +2019-02-25 12:00:16.424 [main] INFO - ********* END *********: +2019-02-25 12:00:16.444 [main] INFO - ********* START ********* +2019-02-25 12:00:16.444 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:16.444 [main] INFO - Request Type: POST +2019-02-25 12:00:16.445 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-25 12:00:16.445 [main] INFO - Digest: SHA-256=WRIH+BI7wCOOoyM2il5xk/FPn4NdlvPoyhCGODb0BzU= +2019-02-25 12:00:16.445 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:16.445 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:16.446 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:16.446 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="jEIZi+2OLs4moCRa5Mtu3FqCz5gXaPxdzIqDwVVU5W0=" +2019-02-25 12:00:16.446 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:16.880 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequ","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v2","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-25 12:00:16.880 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"reportDefinitionName","message":"Invalid report definition specified","localizationKey":"cybsapi.report.reportDefinition.invalid"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:00:16.880 [main] INFO - Response Code: 400 +2019-02-25 12:00:16.880 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_7b352096-f31a-4c4f-88c8-3683fb89e4f4 +X-OPNET-Transaction-Trace: a2_910a4a5a-28d8-4eb0-9615-222bb1d84222 +Cache-Control: no-cache, no-transform +ETag: "-393622008-gzip" +Expires: Mon, 25 Feb 2019 06:30:16 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:16 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 5b19185d-f7f1-4168-9b24-587bce6a5e61 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076216448 +OkHttp-Received-Millis: 1551076216880 + +2019-02-25 12:00:16.880 [main] INFO - ********* END *********: +2019-02-25 12:00:16.912 [main] INFO - ********* START ********* +2019-02-25 12:00:16.912 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:16.912 [main] INFO - Request Type: PUT +2019-02-25 12:00:16.913 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-25 12:00:16.913 [main] INFO - Digest: SHA-256=3GVWPPOG00/7W5sr122EHVr03BhuMZC6jcQgIczD8FQ= +2019-02-25 12:00:16.913 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:16.913 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:16.914 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:16.914 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="YBoO56btxuKp4F/7dLyY6RMi/0VbEiKkpeNqBpa+HQU=" +2019-02-25 12:00:16.914 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:17.628 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testReport_test","timezone":"America/Chicago","startTime":"0959","startDay":1} +2019-02-25 12:00:17.629 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"testReport_test","message":"Report already exists with same fields ","localizationKey":"cybsapi.report.fields.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:00:17.629 [main] INFO - Response Code: 400 +2019-02-25 12:00:17.629 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d3b92fb7-8f01-4b6c-8b7b-051571c5a279 +X-OPNET-Transaction-Trace: a2_56e6fb5a-3a45-4dc9-89ea-7f7e9886490d +Cache-Control: no-cache, no-transform +ETag: "-787171079-gzip" +Expires: Mon, 25 Feb 2019 06:30:17 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:16 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 0ada68b8-1598-4047-a810-e7e726f13669 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076216917 +OkHttp-Received-Millis: 1551076217627 + +2019-02-25 12:00:17.629 [main] INFO - ********* END *********: +2019-02-25 12:00:17.646 [main] INFO - ********* START ********* +2019-02-25 12:00:17.647 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:17.647 [main] INFO - Request Type: PUT +2019-02-25 12:00:17.647 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-25 12:00:17.647 [main] INFO - Digest: SHA-256=hCJRiwHTt4C8/2AZ98pRY06mb+al8+7W4Y38zplArt0= +2019-02-25 12:00:17.648 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:17.648 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:17.648 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:17.648 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ooAzb8sSNN8r4+AYKH1VsQbJ6hYYAHVzIN+PEeG5qbo=" +2019-02-25 12:00:17.649 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:18.131 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0959","startDay":1} +2019-02-25 12:00:18.132 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"reportDefinitionName","message":"Invalid report definition specified","localizationKey":"cybsapi.report.reportDefinition.invalid"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:00:18.132 [main] INFO - Response Code: 400 +2019-02-25 12:00:18.132 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_68757da0-bb37-4de0-abcf-22231a6976ef +X-OPNET-Transaction-Trace: a2_e267c9cc-a96f-4421-b10e-2f23119d29ad +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Mon, 25 Feb 2019 06:30:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:17 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6931d7bd-82fc-4229-bd36-28abae79abbf +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076217650 +OkHttp-Received-Millis: 1551076218130 + +2019-02-25 12:00:18.133 [main] INFO - ********* END *********: +2019-02-25 12:00:18.152 [main] INFO - ********* START ********* +2019-02-25 12:00:18.152 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:18.152 [main] INFO - Request Type: DELETE +2019-02-25 12:00:18.153 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/testrest_v604, requestType=DELETE} +2019-02-25 12:00:18.153 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:18.153 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:18.153 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:18.153 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="37fQh5nA9FNPcsC74rdqA2B5rEBDuYRCPB1GzRR81W0=" +2019-02-25 12:00:18.154 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:18.554 [main] INFO - Request Body: null +2019-02-25 12:00:18.554 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"Requested subscription does not exist."} +2019-02-25 12:00:18.555 [main] INFO - Response Code: 404 +2019-02-25 12:00:18.555 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_7c602474-8184-4536-b687-230f30a7ff8b +X-OPNET-Transaction-Trace: a2_f72d9e18-aa41-4d14-b329-418bb8a2b1d4 +Cache-Control: no-cache, no-transform +ETag: "1483526712-gzip" +Expires: Mon, 25 Feb 2019 06:30:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:17 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 8af3918b-d8d3-40f9-9269-96c8ff90421d +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076218156 +OkHttp-Received-Millis: 1551076218553 + +2019-02-25 12:00:18.555 [main] INFO - ********* END *********: +2019-02-25 12:00:18.572 [main] INFO - ********* START ********* +2019-02-25 12:00:18.572 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:18.572 [main] INFO - Request Type: DELETE +2019-02-25 12:00:18.572 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/ghsrrawasbhfhcb, requestType=DELETE} +2019-02-25 12:00:18.572 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:18.573 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:18.573 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:18.573 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="dBJTRO9i20aa6cqKejbqO69y5JX0QninCuugWiM+5YU=" +2019-02-25 12:00:18.573 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:19.054 [main] INFO - Request Body: null +2019-02-25 12:00:19.055 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/ghsrrawasbhfhcb"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"Requested subscription does not exist."} +2019-02-25 12:00:19.055 [main] INFO - Response Code: 404 +2019-02-25 12:00:19.055 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a02fc1ff-3f78-4994-bdeb-473ba89f8b4c +X-OPNET-Transaction-Trace: a2_6b888689-7d16-43f1-b373-55846a9c0f6d +Cache-Control: no-cache, no-transform +ETag: "860016692-gzip" +Expires: Mon, 25 Feb 2019 06:30:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:18 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7cead8dd-7818-43b2-9e8c-82b335e90505 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076218575 +OkHttp-Received-Millis: 1551076219053 + +2019-02-25 12:00:19.055 [main] INFO - ********* END *********: +2019-02-25 12:00:19.076 [main] INFO - ********* START ********* +2019-02-25 12:00:19.076 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:19.076 [main] INFO - Request Type: GET +2019-02-25 12:00:19.077 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-25 12:00:19.077 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:19.077 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:19.077 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:19.078 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="7LQaUsNlWkxf6DC05y50hBokDwxZk/yJFLAmiEvxIeE=" +2019-02-25 12:00:19.078 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:19.737 [main] INFO - Request Body: null +2019-02-25 12:00:19.737 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime"}},"reportSearchResults":[{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-01T16:00:00.000Z","reportEndTime":"2018-08-02T16:00:00.000Z","timezone":"America/Chicago","reportId":"726ba2c2-5b4d-7cff-e053-a2588e0ad3fd","organizationId":"testrest","queuedTime":"2018-08-02T17:34:53.000Z","reportGenerationTime":"2018-08-02T17:34:56.000Z","reportCompletedTime":"2018-08-02T17:34:58.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-02T16:00:00.000Z","reportEndTime":"2018-08-03T16:00:00.000Z","timezone":"America/Chicago","reportId":"728b155d-dbe2-2db9-e053-a2588e0a1848","organizationId":"testrest","queuedTime":"2018-08-03T17:33:01.000Z","reportGenerationTime":"2018-08-03T17:33:04.000Z","reportCompletedTime":"2018-08-03T17:33:05.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-03T16:00:00.000Z","reportEndTime":"2018-08-04T16:00:00.000Z","timezone":"America/Chicago","reportId":"7293dd60-2ff4-2dc3-e053-a2588e0a5d2e","organizationId":"testrest","queuedTime":"2018-08-04T17:32:23.000Z","reportGenerationTime":"2018-08-04T17:32:27.000Z","reportCompletedTime":"2018-08-04T17:32:28.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-04T16:00:00.000Z","reportEndTime":"2018-08-05T16:00:00.000Z","timezone":"America/Chicago","reportId":"7293dd60-7cce-2dc3-e053-a2588e0a5d2e","organizationId":"testrest","queuedTime":"2018-08-05T17:30:34.000Z","reportGenerationTime":"2018-08-05T17:30:38.000Z","reportCompletedTime":"2018-08-05T17:30:40.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-05T16:00:00.000Z","reportEndTime":"2018-08-06T16:00:00.000Z","timezone":"America/Chicago","reportId":"7294af2d-dec6-2dad-e053-a2588e0a6e57","organizationId":"testrest","queuedTime":"2018-08-06T17:34:10.000Z","reportGenerationTime":"2018-08-06T17:34:13.000Z","reportCompletedTime":"2018-08-06T17:34:15.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-06T16:00:00.000Z","reportEndTime":"2018-08-07T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d4c960-e05d-2dbd-e053-a2588e0a4952","organizationId":"testrest","queuedTime":"2018-08-07T17:33:37.000Z","reportGenerationTime":"2018-08-07T17:33:40.000Z","reportCompletedTime":"2018-08-07T17:33:41.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-07T16:00:00.000Z","reportEndTime":"2018-08-08T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d4c960-e530-2dbd-e053-a2588e0a4952","organizationId":"testrest","queuedTime":"2018-08-08T17:32:44.000Z","reportGenerationTime":"2018-08-08T17:32:46.000Z","reportCompletedTime":"2018-08-08T17:32:48.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"TRRReport","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-07T16:00:00.000Z","reportEndTime":"2018-08-08T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d4c960-e531-2dbd-e053-a2588e0a4952","organizationId":"testrest","queuedTime":"2018-08-08T17:32:44.000Z","reportGenerationTime":"2018-08-08T17:32:46.000Z","reportCompletedTime":"2018-08-08T17:32:48.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-08T16:00:00.000Z","reportEndTime":"2018-08-09T16:00:00.000Z","timezone":"America/Chicago","reportId":"728b155d-df16-2db9-e053-a2588e0a1848","organizationId":"testrest","queuedTime":"2018-08-09T17:31:11.000Z","reportGenerationTime":"2018-08-09T17:31:13.000Z","reportCompletedTime":"2018-08-09T17:31:15.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"TRRReport","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-08T16:00:00.000Z","reportEndTime":"2018-08-09T16:00:00.000Z","timezone":"America/Chicago","reportId":"728b155d-df17-2db9-e053-a2588e0a1848","organizationId":"testrest","queuedTime":"2018-08-09T17:31:11.000Z","reportGenerationTime":"2018-08-09T17:31:13.000Z","reportCompletedTime":"2018-08-09T17:31:15.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-09T16:00:00.000Z","reportEndTime":"2018-08-10T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d09c70-2a69-2da5-e053-a2588e0a2ca5","organizationId":"testrest","queuedTime":"2018-08-10T17:34:01.000Z","reportGenerationTime":"2018-08-10T17:34:04.000Z","reportCompletedTime":"2018-08-10T17:34:05.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"TRRReport","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-09T16:00:00.000Z","reportEndTime":"2018-08-10T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d09c70-2a6a-2da5-e053-a2588e0a2ca5","organizationId":"testrest","queuedTime":"2018-08-10T17:34:01.000Z","reportGenerationTime":"2018-08-10T17:34:04.000Z","reportCompletedTime":"2018-08-10T17:34:06.000Z","selectedOrganizationId":null,"groupId":null}]} +2019-02-25 12:00:19.737 [main] INFO - Response Code: 200 +2019-02-25 12:00:19.738 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d9d10cca-d296-4420-9db7-483df58f0d95 +X-OPNET-Transaction-Trace: a2_2f323e7c-eb95-4495-9a7e-c5f75f79cb90 +Cache-Control: no-cache, no-transform +ETag: "98577355-gzip" +Expires: Mon, 25 Feb 2019 06:30:19 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:19 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 59514d43-f709-42c2-b09b-7315d85c85bb +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076219083 +OkHttp-Received-Millis: 1551076219734 + +2019-02-25 12:00:19.738 [main] INFO - ********* END *********: +2019-02-25 12:00:19.766 [main] INFO - ********* START ********* +2019-02-25 12:00:19.766 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:19.766 [main] INFO - Request Type: GET +2019-02-25 12:00:19.767 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime, requestType=GET} +2019-02-25 12:00:19.767 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:19.767 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:19.767 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:19.768 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ILt5zAlCPPyMS6HcYhox7Cp9qewWEzDcnXtVLn5FUYY=" +2019-02-25 12:00:19.768 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:20.216 [main] INFO - Request Body: null +2019-02-25 12:00:20.217 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"timeQueryType","message":"Time Query Type is invalid","localizationKey":null}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:00:20.217 [main] INFO - Response Code: 400 +2019-02-25 12:00:20.217 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_779e0ccc-a503-4243-9221-38f054edb210 +X-OPNET-Transaction-Trace: a2_ed45d695-d0b6-4981-977e-12a46219d4bb +Cache-Control: no-cache, no-transform +ETag: "480352859-gzip" +Expires: Mon, 25 Feb 2019 06:30:20 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:20 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 42763c6d-f5c1-4cd9-be8b-1e09e2580efb +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076219769 +OkHttp-Received-Millis: 1551076220215 + +2019-02-25 12:00:20.217 [main] INFO - ********* END *********: +2019-02-25 12:00:20.234 [main] INFO - ********* START ********* +2019-02-25 12:00:20.235 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:20.235 [main] INFO - Request Type: GET +2019-02-25 12:00:20.235 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2019-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-25 12:00:20.235 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:20.236 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:20.236 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:20.236 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="puQMs/29ptzzg45rudl6Yn4u2U/yJkrXs4KCqU8YAFg=" +2019-02-25 12:00:20.236 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:20.676 [main] INFO - Request Body: null +2019-02-25 12:00:20.677 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2019-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"No Reports found."} +2019-02-25 12:00:20.677 [main] INFO - Response Code: 404 +2019-02-25 12:00:20.678 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_c383d848-d24a-4f53-93e0-5979cbc8cf88 +X-OPNET-Transaction-Trace: a2_69d9d70f-6110-486e-92ac-cc1a80c6011a +Cache-Control: no-cache, no-transform +ETag: "1803701484-gzip" +Expires: Mon, 25 Feb 2019 06:30:20 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:20 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d781f656-e48e-454c-8137-6618111174ed +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076220237 +OkHttp-Received-Millis: 1551076220666 + +2019-02-25 12:00:20.678 [main] INFO - ********* END *********: +2019-02-25 12:00:20.701 [main] INFO - ********* START ********* +2019-02-25 12:00:20.701 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:20.702 [main] INFO - Request Type: GET +2019-02-25 12:00:20.702 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00, requestType=GET} +2019-02-25 12:00:20.702 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:20.702 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:20.703 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:20.703 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="XzqyTNYHy2X1VExcR2FNUacDo+raQNB43BXh0C6zmrA=" +2019-02-25 12:00:20.703 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:21.160 [main] INFO - Request Body: null +2019-02-25 12:00:21.160 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"No results found for the given dates"} +2019-02-25 12:00:21.160 [main] INFO - Response Code: 404 +2019-02-25 12:00:21.160 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_140035b6-d09b-4974-b421-e9b70056b427 +X-OPNET-Transaction-Trace: a2_8e1d3262-5f75-4cfc-937f-492d0244e54c +Cache-Control: no-cache, no-transform +ETag: "1442562825-gzip" +Expires: Mon, 25 Feb 2019 06:30:21 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:21 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7aeefda1-6c22-4ae0-b048-e98801ad1cb6 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076220707 +OkHttp-Received-Millis: 1551076221158 + +2019-02-25 12:00:21.161 [main] INFO - ********* END *********: +2019-02-25 12:00:21.177 [main] INFO - ********* START ********* +2019-02-25 12:00:21.178 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:21.178 [main] INFO - Request Type: GET +2019-02-25 12:00:21.178 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/notification-of-changes?startTime=2019-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-05-30T12%3A00%3A00.000-05%3A00, requestType=GET} +2019-02-25 12:00:21.179 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:21.179 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:21.179 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:21.179 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="oEj1tetPN9+TnkqizmxPd+liVb1E9YUDauB/ZlDHln0=" +2019-02-25 12:00:21.180 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:21.616 [main] INFO - Request Body: null +2019-02-25 12:00:21.617 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/notification-of-changes?startTime=2019-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-05-30T12%3A00%3A00.000-05%3A00"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:00:21.617 [main] INFO - Response Code: 400 +2019-02-25 12:00:21.617 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_3a00e033-dd1c-4e47-8872-f373e691a336 +X-OPNET-Transaction-Trace: a2_242d457f-947e-45a0-b828-daee90b1ca78 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:21 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4f92f0da-5393-4630-8f5b-9c40dbfc2d95 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076221180 +OkHttp-Received-Millis: 1551076221616 + +2019-02-25 12:00:21.618 [main] INFO - ********* END *********: +2019-02-25 12:00:21.641 [main] INFO - ********* START ********* +2019-02-25 12:00:21.642 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:21.642 [main] INFO - Request Type: GET +2019-02-25 12:00:21.642 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-25 12:00:21.643 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:21.643 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:21.643 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:21.643 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="K4hBhw/oooht94lFtshnP4E9QFRDutRhr8MwqtZ/Log=" +2019-02-25 12:00:21.644 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:22.082 [main] INFO - Request Body: null +2019-02-25 12:00:22.083 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/purchase-refund-details"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:00:22.083 [main] INFO - Response Code: 400 +2019-02-25 12:00:22.083 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_51da6da4-3a7a-4bc5-a0d6-3fb4d9269982 +X-OPNET-Transaction-Trace: a2_2257deb1-e3fb-4a7b-9dfd-af7d7dbc1108 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:21 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 526cbf8e-395e-4a99-ac0b-03969895329e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076221645 +OkHttp-Received-Millis: 1551076222081 + +2019-02-25 12:00:22.083 [main] INFO - ********* END *********: +2019-02-25 12:00:22.101 [main] INFO - ********* START ********* +2019-02-25 12:00:22.101 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:22.102 [main] INFO - Request Type: GET +2019-02-25 12:00:22.102 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2019-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-25 12:00:22.102 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:22.103 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:22.103 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:22.103 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="C1BLHkv3rdSnvfBNyg55c/nLzCqi6EbfmTjjnoyLIvw=" +2019-02-25 12:00:22.103 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:22.517 [main] INFO - Request Body: null +2019-02-25 12:00:22.517 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/purchase-refund-details"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:00:22.517 [main] INFO - Response Code: 400 +2019-02-25 12:00:22.518 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_dd59cd6e-fab6-4212-8484-d3982587a5a1 +X-OPNET-Transaction-Trace: a2_14bb7fcb-7d83-492d-9c21-4e8dfd6c6845 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:22 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4c8003f8-3321-42e1-9d02-bedabc47ca1f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076222104 +OkHttp-Received-Millis: 1551076222515 + +2019-02-25 12:00:22.518 [main] INFO - ********* END *********: +2019-02-25 12:00:22.535 [main] INFO - ********* START ********* +2019-02-25 12:00:22.535 [main] INFO - Authentication Type : http_signature +2019-02-25 12:00:22.535 [main] INFO - Request Type: GET +2019-02-25 12:00:22.536 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=udapaa&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-25 12:00:22.536 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:00:22.536 [main] INFO - Date: Mon, 25 Feb 2019 06:29:28 GMT +2019-02-25 12:00:22.536 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:00:22.537 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="d6BiCpQ/YGX1UQgGvC4aDvIlXWOH1pvRS9F+NORqAS8=" +2019-02-25 12:00:22.537 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:00:22.926 [main] INFO - Request Body: null +2019-02-25 12:00:22.926 [main] INFO - Response Message: Invalid Merchant +2019-02-25 12:00:22.927 [main] INFO - Response Code: 400 +2019-02-25 12:00:22.927 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_fb17eea5-9179-4b84-9e4f-ed8ed60c0611 +X-OPNET-Transaction-Trace: a2_3d3f94e7-bafc-4dbc-b130-bfc500b550c5 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:30:22 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7671bfa6-44ec-40af-9bbf-a04da8c741ba +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076222537 +OkHttp-Received-Millis: 1551076222925 + +2019-02-25 12:00:22.927 [main] INFO - ********* END *********: +2019-02-25 12:12:10.831 [main] INFO - ********* START ********* +2019-02-25 12:12:10.843 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:10.844 [main] INFO - Request Type: POST +2019-02-25 12:12:10.844 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-25 12:12:10.845 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-25 12:12:10.845 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:10.846 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:10.846 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:10.846 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="W5F5l/MR3CrBBBS1/8lVvrFfFYXtEhBQOJj1C/e+kN8=" +2019-02-25 12:12:10.847 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:12.311 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-25 12:12:12.313 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_payment"},"id":"5510769319316322603004","orderInformation":{"amountDetails":{"authorizedAmount":"100.00","currency":"XXXXXXXXX"}},"processorInformation":{"approvalCode":"888888","responseCode":"100","avs":{"code":"X","codeRaw":"I1"}},"reconciliationId":"79005304YSEY0DRG","status":"AUTHORIZED","submitTimeUtc":"2019-02-25T06:42:12Z","_links":{"self":{"href":"/pts/v2/payments/5510769319316322603004","method":"GET"},"authReversal":{"href":"/pts/v2/payments/5510769319316322603004/reversals","method":"POST"},"capture":{"href":"/pts/v2/payments/5510769319316322603004/captures","method":"POST"},"refund":{"href":"/pts/v2/payments/5510769319316322603004/refunds","method":"POST"},"void":{"href":"/pts/v2/payments/5510769319316322603004/voids","method":"POST"}}} +2019-02-25 12:12:12.313 [main] INFO - Response Code: 201 +2019-02-25 12:12:12.314 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 316ms +v-c-correlation-id: e15ac3fb-1f4a-4ecc-9afa-9336d165afaf +OkHttp-Sent-Millis: 1551076931784 +OkHttp-Received-Millis: 1551076932286 + +2019-02-25 12:12:12.314 [main] INFO - ********* END *********: +2019-02-25 12:12:12.420 [main] INFO - ********* START ********* +2019-02-25 12:12:12.420 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:12.420 [main] INFO - Request Type: POST +2019-02-25 12:12:12.421 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-25 12:12:12.422 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-25 12:12:12.422 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:12.423 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:12.423 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:12.423 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="BzhTD54mtaGvfWKIqw5GXHLku/xHugSv+PTq59BtBfU=" +2019-02-25 12:12:12.424 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:13.010 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-25 12:12:13.010 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_payment"},"id":"5510769325776405003003","orderInformation":{"amountDetails":{"authorizedAmount":"200.00","currency":"XXXXXXXXX"}},"processorInformation":{"approvalCode":"888888","responseCode":"100","avs":{"code":"X","codeRaw":"I1"}},"reconciliationId":"790051298SEY0ECU","status":"AUTHORIZED","submitTimeUtc":"2019-02-25T06:42:12Z","_links":{"self":{"href":"/pts/v2/payments/5510769325776405003003","method":"GET"},"authReversal":{"href":"/pts/v2/payments/5510769325776405003003/reversals","method":"POST"},"capture":{"href":"/pts/v2/payments/5510769325776405003003/captures","method":"POST"},"refund":{"href":"/pts/v2/payments/5510769325776405003003/refunds","method":"POST"},"void":{"href":"/pts/v2/payments/5510769325776405003003/voids","method":"POST"}}} +2019-02-25 12:12:13.011 [main] INFO - Response Code: 201 +2019-02-25 12:12:13.011 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 407ms +v-c-correlation-id: 03ecaec1-6b69-48f8-a879-6e1fe0ee5237 +OkHttp-Sent-Millis: 1551076932429 +OkHttp-Received-Millis: 1551076933008 + +2019-02-25 12:12:13.012 [main] INFO - ********* END *********: +2019-02-25 12:12:13.030 [main] INFO - ********* START ********* +2019-02-25 12:12:13.030 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:13.031 [main] INFO - Request Type: POST +2019-02-25 12:12:13.031 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-25 12:12:13.032 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-25 12:12:13.032 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:13.032 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:13.033 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:13.033 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="u8NSHLP4/Ze885E/Y5TDvFFQpbiUk/jd4z7y0SgRLJs=" +2019-02-25 12:12:13.033 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:13.589 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-25 12:12:13.590 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:42:13Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"orderInformation.amountDetails.amount","reason":"INVALID_DATA"}]} +2019-02-25 12:12:13.591 [main] INFO - Response Code: 400 +2019-02-25 12:12:13.591 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 387ms +v-c-correlation-id: 109def6c-e459-4eb6-9efb-bb90947dfb0d +OkHttp-Sent-Millis: 1551076933035 +OkHttp-Received-Millis: 1551076933588 + +2019-02-25 12:12:13.592 [main] INFO - ********* END *********: +2019-02-25 12:12:13.680 [main] INFO - ********* START ********* +2019-02-25 12:12:13.680 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:13.681 [main] INFO - Request Type: POST +2019-02-25 12:12:13.681 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/captures, requestType=POST} +2019-02-25 12:12:13.681 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-02-25 12:12:13.719 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:13.719 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:13.720 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:13.720 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="RG+FXNnlWBGwFHkI3+wQsnFMT7HEBCt9VXGOJEBN8hs=" +2019-02-25 12:12:13.720 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:14.244 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-25 12:12:14.244 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_capture"},"id":"5510769338606322803004","orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"reconciliationId":"785503905SF0G4HK","status":"PENDING","submitTimeUtc":"2019-02-25T06:42:14Z","_links":{"self":{"href":"/pts/v2/captures/5510769338606322803004","method":"GET"},"refund":{"href":"/pts/v2/captures/5510769338606322803004/refunds","method":"POST"},"void":{"href":"/pts/v2/captures/5510769338606322803004/voids","method":"POST"}}} +2019-02-25 12:12:14.245 [main] INFO - Response Code: 201 +2019-02-25 12:12:14.245 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 351ms +v-c-correlation-id: b5b492bd-02cd-4e39-abaf-5ea31fa7710d +OkHttp-Sent-Millis: 1551076933727 +OkHttp-Received-Millis: 1551076934243 + +2019-02-25 12:12:14.245 [main] INFO - ********* END *********: +2019-02-25 12:12:14.275 [main] INFO - ********* START ********* +2019-02-25 12:12:14.275 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:14.275 [main] INFO - Request Type: POST +2019-02-25 12:12:14.275 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/captures, requestType=POST} +2019-02-25 12:12:14.277 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-02-25 12:12:14.277 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:14.277 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:14.277 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:14.278 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="zwFJeqctRtkPqEKvLXkusVcT/AN0M6l1sFKIIBnW4zc=" +2019-02-25 12:12:14.278 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:14.761 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-25 12:12:14.761 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:42:14Z","status":"INVALID_REQUEST","reason":"EXCEEDS_AUTH_AMOUNT","message":"Decline - The requested amount exceeds the originally authorized amount. Occurs, for example, if you try to capture an amount larger than the original authorization amount."} +2019-02-25 12:12:14.762 [main] INFO - Response Code: 400 +2019-02-25 12:12:14.762 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 283 +X-Cnection: close +x-response-time: 316ms +v-c-correlation-id: a4544fe5-c9dc-40da-8088-f0e13b0bdd73 +OkHttp-Sent-Millis: 1551076934280 +OkHttp-Received-Millis: 1551076934760 + +2019-02-25 12:12:14.762 [main] INFO - ********* END *********: +2019-02-25 12:12:14.783 [main] INFO - ********* START ********* +2019-02-25 12:12:14.783 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:14.784 [main] INFO - Request Type: POST +2019-02-25 12:12:14.784 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/56546567456/captures, requestType=POST} +2019-02-25 12:12:14.785 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-02-25 12:12:14.785 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:14.785 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:14.786 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:14.786 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="JjsokeB9TN5s3VyplQSEj8QW8oRZgI/RotXS/QXO1cE=" +2019-02-25 12:12:14.786 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:15.333 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-25 12:12:15.333 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:42:15Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 12:12:15.333 [main] INFO - Response Code: 400 +2019-02-25 12:12:15.334 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 366ms +v-c-correlation-id: 7ecf1a77-07e4-488d-abcd-3caa52c7d1c4 +OkHttp-Sent-Millis: 1551076934796 +OkHttp-Received-Millis: 1551076935332 + +2019-02-25 12:12:15.334 [main] INFO - ********* END *********: +2019-02-25 12:12:15.378 [main] INFO - ********* START ********* +2019-02-25 12:12:15.378 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:15.379 [main] INFO - Request Type: POST +2019-02-25 12:12:15.379 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/reversals, requestType=POST} +2019-02-25 12:12:15.380 [main] INFO - Digest: SHA-256=+nVNWFcK5wejoED726n/0CNM4MAETj2u1DH6s02VUIk= +2019-02-25 12:12:15.380 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:15.381 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:15.381 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:15.381 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="C+taCNYafNZJyO9ys/2zuo/jxr1y8TgK1NUR5LXsKrM=" +2019-02-25 12:12:15.382 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:15.960 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"100.00"},"reason":"testing"}} +2019-02-25 12:12:15.961 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:42:15Z","status":"INVALID_REQUEST","reason":"TRANSACTION_ALREADY_REVERSED_OR_SETTLED","message":"Decline - The transaction has already been settled or reversed."} +2019-02-25 12:12:15.961 [main] INFO - Response Code: 400 +2019-02-25 12:12:15.962 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 194 +X-Cnection: close +x-response-time: 407ms +v-c-correlation-id: f9a50226-53a5-4f4c-8d31-4a5175cf45dd +OkHttp-Sent-Millis: 1551076935389 +OkHttp-Received-Millis: 1551076935960 + +2019-02-25 12:12:15.962 [main] INFO - ********* END *********: +2019-02-25 12:12:15.979 [main] INFO - ********* START ********* +2019-02-25 12:12:15.980 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:15.980 [main] INFO - Request Type: POST +2019-02-25 12:12:15.981 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/reversals, requestType=POST} +2019-02-25 12:12:15.981 [main] INFO - Digest: SHA-256=pAGeIXg2n5jV3A6rwpZbKaLbAzo/U73Yk5w2Zu0QX4M= +2019-02-25 12:12:15.981 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:15.981 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:15.981 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:15.982 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="h8XjiqrYJMzSRaaptKgip+lqpceMUok/ZdxTFuc0I/s=" +2019-02-25 12:12:15.982 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:16.469 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"200"},"reason":"testing"}} +2019-02-25 12:12:16.470 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:42:16Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"reversalInformation.amountDetails.totalAmount","reason":"INVALID_DATA"}]} +2019-02-25 12:12:16.470 [main] INFO - Response Code: 400 +2019-02-25 12:12:16.471 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 264 +X-Cnection: close +x-response-time: 316ms +v-c-correlation-id: 2285c0af-00c1-4ef6-b125-2662cec55387 +OkHttp-Sent-Millis: 1551076935985 +OkHttp-Received-Millis: 1551076936469 + +2019-02-25 12:12:16.471 [main] INFO - ********* END *********: +2019-02-25 12:12:16.489 [main] INFO - ********* START ********* +2019-02-25 12:12:16.489 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:16.489 [main] INFO - Request Type: POST +2019-02-25 12:12:16.490 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/767675757666/reversals, requestType=POST} +2019-02-25 12:12:16.490 [main] INFO - Digest: SHA-256=RnqH1+fiMX9fBKoMyq/WM8zd/qr2MMABzEgQHthyeSc= +2019-02-25 12:12:16.490 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:16.491 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:16.491 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:16.492 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="OhW1FcyZIQRUe5Bx40EA00pVwYh0LiZusbbAWOqywTE=" +2019-02-25 12:12:16.492 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:16.933 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"100"},"reason":"testing"}} +2019-02-25 12:12:16.934 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:42:16Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 12:12:16.934 [main] INFO - Response Code: 400 +2019-02-25 12:12:16.935 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 270ms +v-c-correlation-id: 6235e923-d74c-4662-b894-fb60d6a8b782 +OkHttp-Sent-Millis: 1551076936494 +OkHttp-Received-Millis: 1551076936932 + +2019-02-25 12:12:16.935 [main] INFO - ********* END *********: +2019-02-25 12:12:16.992 [main] INFO - ********* START ********* +2019-02-25 12:12:16.992 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:16.993 [main] INFO - Request Type: POST +2019-02-25 12:12:16.993 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-25 12:12:16.994 [main] INFO - Digest: SHA-256=zxGx3jITWtX9QIzslmEjtRBRSY1fB9P+o4iF5tlE4Oo= +2019-02-25 12:12:16.994 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:16.994 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:16.995 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:16.995 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="6JNAxy3kmyR2oTNhsDbdntiB3ctprjpQsxGFmSglV3Y=" +2019-02-25 12:12:16.995 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:17.494 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 12:12:17.495 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_credits"},"creditAmountDetails":{"currency":"XXXXXXXXX","creditAmount":"100.00"},"id":"5510769371446411003002","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"789733808SF0DP7N","status":"PENDING","submitTimeUtc":"2019-02-25T06:42:17Z","_links":{"self":{"href":"/pts/v2/credits/5510769371446411003002","method":"GET"},"void":{"href":"/pts/v2/credits/5510769371446411003002/voids","method":"POST"}}} +2019-02-25 12:12:17.495 [main] INFO - Response Code: 201 +2019-02-25 12:12:17.496 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 463 +X-Cnection: close +x-response-time: 318ms +v-c-correlation-id: d52fcf1e-6bbf-44a4-b75c-78a5b1de5019 +OkHttp-Sent-Millis: 1551076937003 +OkHttp-Received-Millis: 1551076937493 + +2019-02-25 12:12:17.496 [main] INFO - ********* END *********: +2019-02-25 12:12:17.534 [main] INFO - ********* START ********* +2019-02-25 12:12:17.534 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:17.534 [main] INFO - Request Type: POST +2019-02-25 12:12:17.537 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-25 12:12:17.537 [main] INFO - Digest: SHA-256=uT4XJKlq0xIzVkS9dGPs0tcDwyAp7ONh+358ol986cw= +2019-02-25 12:12:17.537 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:17.537 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:17.537 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:17.537 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="p8J39lquzzuzrGLOwr9IsT84Penbhzs6+xmy/KVsQ3Y=" +2019-02-25 12:12:17.538 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:18.032 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 12:12:18.034 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_credits"},"creditAmountDetails":{"currency":"XXXXXXXXX","creditAmount":"200.00"},"id":"5510769376866405503003","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"78973749VSBVN8FM","status":"PENDING","submitTimeUtc":"2019-02-25T06:42:17Z","_links":{"self":{"href":"/pts/v2/credits/5510769376866405503003","method":"GET"},"void":{"href":"/pts/v2/credits/5510769376866405503003/voids","method":"POST"}}} +2019-02-25 12:12:18.034 [main] INFO - Response Code: 201 +2019-02-25 12:12:18.034 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 463 +X-Cnection: close +x-response-time: 324ms +v-c-correlation-id: e82749dc-6ea7-42de-9553-7b796705b686 +OkHttp-Sent-Millis: 1551076937541 +OkHttp-Received-Millis: 1551076938032 + +2019-02-25 12:12:18.034 [main] INFO - ********* END *********: +2019-02-25 12:12:18.055 [main] INFO - ********* START ********* +2019-02-25 12:12:18.055 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:18.055 [main] INFO - Request Type: POST +2019-02-25 12:12:18.056 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-25 12:12:18.056 [main] INFO - Digest: SHA-256=4d6LdcAephqc3ZxTiCs5DRzvla4hZ9OijS7F7lbH+MA= +2019-02-25 12:12:18.057 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:18.057 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:18.057 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:18.058 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="vd+MNdazFHBfGv1AH0lRbLiTfaZHyGk/rpJFUynnVyM=" +2019-02-25 12:12:18.058 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:18.540 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"GHTR25","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 12:12:18.541 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:42:18Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"orderInformation.amountDetails.amount","reason":"INVALID_DATA"}]} +2019-02-25 12:12:18.541 [main] INFO - Response Code: 400 +2019-02-25 12:12:18.541 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 311ms +v-c-correlation-id: b152ae98-d86d-4a62-925b-51555ab92b9a +OkHttp-Sent-Millis: 1551076938060 +OkHttp-Received-Millis: 1551076938539 + +2019-02-25 12:12:18.541 [main] INFO - ********* END *********: +2019-02-25 12:12:18.571 [main] INFO - ********* START ********* +2019-02-25 12:12:18.571 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:18.571 [main] INFO - Request Type: POST +2019-02-25 12:12:18.571 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/refunds, requestType=POST} +2019-02-25 12:12:18.571 [main] INFO - Digest: SHA-256=I+1qD0zhOoAiatjE27A6YBxkUKBTRSBoS6VKc2mS8Bc= +2019-02-25 12:12:18.571 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:18.571 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:18.571 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:18.571 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="hBuyRz2dS/9WcF4ch3FqHNi78YuXF75KTOtDb+H98KY=" +2019-02-25 12:12:18.576 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:19.063 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}}} +2019-02-25 12:12:19.064 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_refund_payment"},"creditAmountDetails":{"currency":"XXXXXXXXX"},"id":"5510769387166411303002","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"789733818SF0DP7O","refundAmountDetails":{"currency":"XXXXXXXXX","refundAmount":"100.00"},"status":"PENDING","submitTimeUtc":"2019-02-25T06:42:18Z","_links":{"self":{"href":"/pts/v2/refunds/5510769387166411303002","method":"GET"},"void":{"href":"/pts/v2/refunds/5510769387166411303002/voids","method":"POST"}}} +2019-02-25 12:12:19.064 [main] INFO - Response Code: 201 +2019-02-25 12:12:19.064 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 511 +X-Cnection: close +x-response-time: 312ms +v-c-correlation-id: 2e9dbbf8-c20b-4fbc-be9c-f7c0e744ddf3 +OkHttp-Sent-Millis: 1551076938583 +OkHttp-Received-Millis: 1551076939062 + +2019-02-25 12:12:19.065 [main] INFO - ********* END *********: +2019-02-25 12:12:19.088 [main] INFO - ********* START ********* +2019-02-25 12:12:19.089 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:19.089 [main] INFO - Request Type: POST +2019-02-25 12:12:19.090 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/refunds, requestType=POST} +2019-02-25 12:12:19.090 [main] INFO - Digest: SHA-256=k43sFGLkconY+lZ+qk3SH20ZjY4hdnzlhh7bkAtP+34= +2019-02-25 12:12:19.090 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:19.090 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:19.091 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:19.091 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="X++fJJGC/Xtmw1beMT10CLxMUjHq8014f58Ce0XMs4A=" +2019-02-25 12:12:19.092 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:19.593 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}}} +2019-02-25 12:12:19.594 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_refund_payment"},"creditAmountDetails":{"currency":"XXXXXXXXX"},"id":"5510769392356482103001","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"79004813PSF0DT5O","refundAmountDetails":{"currency":"XXXXXXXXX","refundAmount":"200.00"},"status":"PENDING","submitTimeUtc":"2019-02-25T06:42:19Z","_links":{"self":{"href":"/pts/v2/refunds/5510769392356482103001","method":"GET"},"void":{"href":"/pts/v2/refunds/5510769392356482103001/voids","method":"POST"}}} +2019-02-25 12:12:19.594 [main] INFO - Response Code: 201 +2019-02-25 12:12:19.594 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 511 +X-Cnection: close +x-response-time: 325ms +v-c-correlation-id: 44564b68-bf21-49d2-bf05-d87d0a2e03a3 +OkHttp-Sent-Millis: 1551076939095 +OkHttp-Received-Millis: 1551076939593 + +2019-02-25 12:12:19.595 [main] INFO - ********* END *********: +2019-02-25 12:12:19.612 [main] INFO - ********* START ********* +2019-02-25 12:12:19.613 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:19.613 [main] INFO - Request Type: POST +2019-02-25 12:12:19.613 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/676557657545457/refunds, requestType=POST} +2019-02-25 12:12:19.614 [main] INFO - Digest: SHA-256=3OkTv9EQccMckYHiNHUzAweMWa91L1CQXTmCvjjQHoU= +2019-02-25 12:12:19.614 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:19.614 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:19.614 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:19.615 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="G5or1O651W2xrefMKYM9I1ouppxa0IsRVM65WBIuUOk=" +2019-02-25 12:12:19.615 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:20.115 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"}}} +2019-02-25 12:12:20.116 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:42:20Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 12:12:20.116 [main] INFO - Response Code: 400 +2019-02-25 12:12:20.116 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 333ms +v-c-correlation-id: 5642ab09-9804-43db-87b4-dc9936d4cd6b +OkHttp-Sent-Millis: 1551076939618 +OkHttp-Received-Millis: 1551076940114 + +2019-02-25 12:12:20.117 [main] INFO - ********* END *********: +2019-02-25 12:12:20.143 [main] INFO - ********* START ********* +2019-02-25 12:12:20.144 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:20.144 [main] INFO - Request Type: POST +2019-02-25 12:12:20.144 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5510757573906363803002/refunds, requestType=POST} +2019-02-25 12:12:20.144 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-25 12:12:20.145 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:20.145 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:20.145 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:20.146 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="AtUA/scnVvepo+bk5aKUiwVkRznhr395OiKn8QWfFr4=" +2019-02-25 12:12:20.146 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:20.686 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 12:12:20.686 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_refund_capture"},"creditAmountDetails":{"currency":"XXXXXXXXX"},"id":"5510769402926411503002","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"79004814PSF0DT5P","refundAmountDetails":{"currency":"XXXXXXXXX","refundAmount":"100.00"},"status":"PENDING","submitTimeUtc":"2019-02-25T06:42:20Z","_links":{"self":{"href":"/pts/v2/refunds/5510769402926411503002","method":"GET"},"void":{"href":"/pts/v2/refunds/5510769402926411503002/voids","method":"POST"}}} +2019-02-25 12:12:20.687 [main] INFO - Response Code: 201 +2019-02-25 12:12:20.687 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 511 +X-Cnection: close +x-response-time: 367ms +v-c-correlation-id: efa98449-4935-4b7a-b6ce-57867cfa28b7 +OkHttp-Sent-Millis: 1551076940150 +OkHttp-Received-Millis: 1551076940685 + +2019-02-25 12:12:20.688 [main] INFO - ********* END *********: +2019-02-25 12:12:20.706 [main] INFO - ********* START ********* +2019-02-25 12:12:20.706 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:20.707 [main] INFO - Request Type: POST +2019-02-25 12:12:20.707 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5510757573906363803002/refunds, requestType=POST} +2019-02-25 12:12:20.707 [main] INFO - Digest: SHA-256=wpSGzbtW0BUOhzWs7lfUWgOPwslWGPDCGWzRLNsbsWk= +2019-02-25 12:12:20.708 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:20.708 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:20.708 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:20.708 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="hi0VCnRq2C7sO5Hn/S8BQV55vhneKVVuGVjmKB1Gk4A=" +2019-02-25 12:12:20.709 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:21.211 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 12:12:21.211 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_refund_capture"},"creditAmountDetails":{"currency":"XXXXXXXXX"},"id":"5510769408546405603003","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"78973750VSBVN8FN","refundAmountDetails":{"currency":"XXXXXXXXX","refundAmount":"200.00"},"status":"PENDING","submitTimeUtc":"2019-02-25T06:42:21Z","_links":{"self":{"href":"/pts/v2/refunds/5510769408546405603003","method":"GET"},"void":{"href":"/pts/v2/refunds/5510769408546405603003/voids","method":"POST"}}} +2019-02-25 12:12:21.211 [main] INFO - Response Code: 201 +2019-02-25 12:12:21.212 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 511 +X-Cnection: close +x-response-time: 334ms +v-c-correlation-id: 216619bd-a4c2-436f-a7d9-62d058ddad73 +OkHttp-Sent-Millis: 1551076940711 +OkHttp-Received-Millis: 1551076941210 + +2019-02-25 12:12:21.212 [main] INFO - ********* END *********: +2019-02-25 12:12:21.231 [main] INFO - ********* START ********* +2019-02-25 12:12:21.231 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:21.231 [main] INFO - Request Type: POST +2019-02-25 12:12:21.232 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/7567677656567/refunds, requestType=POST} +2019-02-25 12:12:21.232 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-25 12:12:21.232 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:21.232 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:21.233 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:21.233 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="9vmaJcE0lg+ZHy+Xmjiz7XKeLb9pInOAfg3hs71Z7XM=" +2019-02-25 12:12:21.233 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:21.727 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 12:12:21.727 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:42:21Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 12:12:21.727 [main] INFO - Response Code: 400 +2019-02-25 12:12:21.728 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 326ms +v-c-correlation-id: 1eb68189-8419-46f5-aed2-2421eedc2532 +OkHttp-Sent-Millis: 1551076941235 +OkHttp-Received-Millis: 1551076941726 + +2019-02-25 12:12:21.728 [main] INFO - ********* END *********: +2019-02-25 12:12:21.753 [main] INFO - ********* START ********* +2019-02-25 12:12:21.753 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:21.753 [main] INFO - Request Type: POST +2019-02-25 12:12:21.754 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/voids, requestType=POST} +2019-02-25 12:12:21.754 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-25 12:12:21.754 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:21.754 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:21.755 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:21.755 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="+oZmPNpauV73AQOAkOEehYPDtM/cXpCpNcjPQhP7jWU=" +2019-02-25 12:12:21.755 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:22.402 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-02-25 12:12:22.402 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:42:22Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-25 12:12:22.403 [main] INFO - Response Code: 400 +2019-02-25 12:12:22.403 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 465ms +v-c-correlation-id: e7be1cfc-dd6b-43d5-9959-2fbea83228f2 +OkHttp-Sent-Millis: 1551076941761 +OkHttp-Received-Millis: 1551076942401 + +2019-02-25 12:12:22.403 [main] INFO - ********* END *********: +2019-02-25 12:12:22.420 [main] INFO - ********* START ********* +2019-02-25 12:12:22.420 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:22.421 [main] INFO - Request Type: POST +2019-02-25 12:12:22.421 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5475754754/voids, requestType=POST} +2019-02-25 12:12:22.421 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-25 12:12:22.422 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:22.422 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:22.422 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:22.422 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="t/weNpOvdwPwDZ4An1twlV9lH/494kM2/vOnkU3ZSDI=" +2019-02-25 12:12:22.423 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:22.939 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-02-25 12:12:22.939 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:42:22Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 12:12:22.940 [main] INFO - Response Code: 400 +2019-02-25 12:12:22.940 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 343ms +v-c-correlation-id: 3cd7c823-4073-47e1-add2-f8da3f786810 +OkHttp-Sent-Millis: 1551076942424 +OkHttp-Received-Millis: 1551076942939 + +2019-02-25 12:12:22.941 [main] INFO - ********* END *********: +2019-02-25 12:12:22.964 [main] INFO - ********* START ********* +2019-02-25 12:12:22.964 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:22.964 [main] INFO - Request Type: POST +2019-02-25 12:12:22.965 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5510757573906363803002/voids, requestType=POST} +2019-02-25 12:12:22.965 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-25 12:12:22.965 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:22.965 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:22.966 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:22.966 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="znNyLgj3yHA0g+drflc9c5hGJkwU4lioD/93RDhQ6F4=" +2019-02-25 12:12:22.966 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:23.535 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture_void"}} +2019-02-25 12:12:23.536 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:42:23Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-25 12:12:23.536 [main] INFO - Response Code: 400 +2019-02-25 12:12:23.537 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 381ms +v-c-correlation-id: ea0cd40c-6574-420f-8009-7d5425952d3c +OkHttp-Sent-Millis: 1551076942970 +OkHttp-Received-Millis: 1551076943535 + +2019-02-25 12:12:23.537 [main] INFO - ********* END *********: +2019-02-25 12:12:23.557 [main] INFO - ********* START ********* +2019-02-25 12:12:23.557 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:23.557 [main] INFO - Request Type: POST +2019-02-25 12:12:23.558 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/551075757390555803002/voids, requestType=POST} +2019-02-25 12:12:23.558 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-25 12:12:23.558 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:23.559 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:23.559 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:23.559 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="3Mrt0NQ/VIyvpDXFTBCUPBH8EfavOzCEzXxYEW8Eucs=" +2019-02-25 12:12:23.559 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:33.583 [main] INFO - ********* START ********* +2019-02-25 12:12:33.584 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:33.584 [main] INFO - Request Type: POST +2019-02-25 12:12:33.584 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/5510757573906363803002/voids, requestType=POST} +2019-02-25 12:12:33.585 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-25 12:12:33.585 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:33.585 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:33.585 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:33.586 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="jisuNKch1buow2/MYzT6YuzerRlU8RLhf9k1DKUoWCQ=" +2019-02-25 12:12:33.586 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:34.559 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credit_void"}} +2019-02-25 12:12:34.560 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:42:34Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-25 12:12:34.560 [main] INFO - Response Code: 400 +2019-02-25 12:12:34.560 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 432ms +v-c-correlation-id: 1b0d9d57-8abd-4485-88c4-e17a6a3049bc +OkHttp-Sent-Millis: 1551076953824 +OkHttp-Received-Millis: 1551076954559 + +2019-02-25 12:12:34.561 [main] INFO - ********* END *********: +2019-02-25 12:12:34.577 [main] INFO - ********* START ********* +2019-02-25 12:12:34.577 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:34.577 [main] INFO - Request Type: POST +2019-02-25 12:12:34.578 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/547676/voids, requestType=POST} +2019-02-25 12:12:34.578 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-25 12:12:34.578 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:34.578 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:34.579 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:34.579 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="eI15vkr/EE1++4i6VWGA0DXoz99t8qZqdjNsjQD/kw8=" +2019-02-25 12:12:34.579 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:35.078 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credit_void"}} +2019-02-25 12:12:35.079 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:42:35Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 12:12:35.079 [main] INFO - Response Code: 400 +2019-02-25 12:12:35.079 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 318ms +v-c-correlation-id: a77bb3d5-dad4-4336-a99d-282c79280954 +OkHttp-Sent-Millis: 1551076954583 +OkHttp-Received-Millis: 1551076955078 + +2019-02-25 12:12:35.079 [main] INFO - ********* END *********: +2019-02-25 12:12:35.104 [main] INFO - ********* START ********* +2019-02-25 12:12:35.104 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:35.105 [main] INFO - Request Type: POST +2019-02-25 12:12:35.105 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/5510757573906363803002/voids, requestType=POST} +2019-02-25 12:12:35.105 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-25 12:12:35.106 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:35.106 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:35.106 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:35.106 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="LFN9YWR1nT6HEV3wqDRRB0Lh7uWZBRuVIhres8aOaZI=" +2019-02-25 12:12:35.107 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:35.793 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_void"}} +2019-02-25 12:12:35.793 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:42:35Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-25 12:12:35.793 [main] INFO - Response Code: 400 +2019-02-25 12:12:35.794 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 499ms +v-c-correlation-id: 1e19cbb3-d7cb-4ad0-ba56-3126547dd3d7 +OkHttp-Sent-Millis: 1551076955110 +OkHttp-Received-Millis: 1551076955792 + +2019-02-25 12:12:35.794 [main] INFO - ********* END *********: +2019-02-25 12:12:35.811 [main] INFO - ********* START ********* +2019-02-25 12:12:35.811 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:35.811 [main] INFO - Request Type: POST +2019-02-25 12:12:35.813 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/45654754745/voids, requestType=POST} +2019-02-25 12:12:35.814 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-25 12:12:35.814 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:35.814 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:35.814 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:35.815 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="pR+uxgspU/tHdwKlAJ+KLHYV5njU9DLYPY6btL8vC20=" +2019-02-25 12:12:35.815 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:36.328 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_void"}} +2019-02-25 12:12:36.329 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:42:36Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 12:12:36.329 [main] INFO - Response Code: 400 +2019-02-25 12:12:36.332 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 331ms +v-c-correlation-id: dd09ffab-118d-4fc7-90d5-ffd237520386 +OkHttp-Sent-Millis: 1551076955817 +OkHttp-Received-Millis: 1551076956328 + +2019-02-25 12:12:36.332 [main] INFO - ********* END *********: +2019-02-25 12:12:36.388 [main] INFO - ********* START ********* +2019-02-25 12:12:36.388 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:36.388 [main] INFO - Request Type: POST +2019-02-25 12:12:36.389 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-25 12:12:36.389 [main] INFO - Digest: SHA-256=rp59HYGOOXP6bWKiVpWMNgj4QjYai6gMk27yt69dPh8= +2019-02-25 12:12:36.389 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:36.390 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:36.390 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:36.390 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="GCM08Pl4hpCjrdVw7TPBZ6bP5+vCGCXpvu+qqNYT70Y=" +2019-02-25 12:12:36.391 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:37.095 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"33557799"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"FD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-25 12:12:37.096 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"33557799"},"id":"5510769565596939903006","orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"paymentInformation":{"accountFeatures":{"feeProgramIndicator":"FE1"}},"processorInformation":{"systemTraceAuditNumber":"106822","approvalCode":"831000","responseCodeSource":"5","transactionId":"016153570198200","responseCode":"00"},"reconciliationId":"5510769565596939903006","status":"ACCEPTED","submitTimeUtc":"2019-02-25T064236Z"} +2019-02-25 12:12:37.096 [main] INFO - Response Code: 201 +2019-02-25 12:12:37.096 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 493 +X-Cnection: close +x-response-time: 502ms +v-c-correlation-id: cba8991c-2f9f-46d4-b788-6482b70b7f95 +OkHttp-Sent-Millis: 1551076956393 +OkHttp-Received-Millis: 1551076957095 + +2019-02-25 12:12:37.097 [main] INFO - ********* END *********: +2019-02-25 12:12:37.115 [main] INFO - ********* START ********* +2019-02-25 12:12:37.115 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:37.115 [main] INFO - Request Type: POST +2019-02-25 12:12:37.115 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-25 12:12:37.116 [main] INFO - Digest: SHA-256=WV4kmV6NZQKID4sN4WMbFxFXqbg/hn8kxL7FOS4jQXk= +2019-02-25 12:12:37.116 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:37.116 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:37.116 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:37.116 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="PyxEvRJsAgJRiKEwWKF08qCshvhWE16+h7Bh1aT0L+Q=" +2019-02-25 12:12:37.116 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:37.873 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"12345"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"GD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-25 12:12:37.873 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"12345"},"id":"5510769572776406003003","orderInformation":{"amountDetails":{"totalAmount":"200.00","currency":"XXXXXXXXX"}},"paymentInformation":{"accountFeatures":{"feeProgramIndicator":"FE1"}},"processorInformation":{"systemTraceAuditNumber":"106823","approvalCode":"831000","responseCodeSource":"5","transactionId":"016153570198200","responseCode":"00"},"reconciliationId":"5510769572776406003003","status":"ACCEPTED","submitTimeUtc":"2019-02-25T064237Z"} +2019-02-25 12:12:37.873 [main] INFO - Response Code: 201 +2019-02-25 12:12:37.874 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 490 +X-Cnection: close +x-response-time: 556ms +v-c-correlation-id: fdd270b9-6788-4ce6-b391-ef964e0b5c1e +OkHttp-Sent-Millis: 1551076957120 +OkHttp-Received-Millis: 1551076957872 + +2019-02-25 12:12:37.874 [main] INFO - ********* END *********: +2019-02-25 12:12:37.891 [main] INFO - ********* START ********* +2019-02-25 12:12:37.891 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:37.891 [main] INFO - Request Type: POST +2019-02-25 12:12:37.892 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-25 12:12:37.892 [main] INFO - Digest: SHA-256=w9ZjmtCKOCPKH6OZhKI9VKNlfIK5wZLl6ZxwHbxFJsQ= +2019-02-25 12:12:37.892 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:37.893 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:37.893 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:37.893 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="XSkPms8vDx8ydYKFhkTQD6YjlDPAJUy5pm7b++jzJe8=" +2019-02-25 12:12:37.893 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:38.403 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"6789"},"orderInformation":{"amountDetails":{"totalAmount":"DSWAZ1","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"MD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-25 12:12:38.404 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:42:38Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"orderInformation.amountDetails.amount","reason":"INVALID_DATA"}]} +2019-02-25 12:12:38.404 [main] INFO - Response Code: 400 +2019-02-25 12:12:38.404 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 325ms +v-c-correlation-id: df7b91fc-e6e8-464f-982c-169df064c0ba +OkHttp-Sent-Millis: 1551076957895 +OkHttp-Received-Millis: 1551076958403 + +2019-02-25 12:12:38.405 [main] INFO - ********* END *********: +2019-02-25 12:12:38.430 [main] INFO - ********* START ********* +2019-02-25 12:12:38.431 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:38.431 [main] INFO - Request Type: POST +2019-02-25 12:12:38.431 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-25 12:12:38.431 [main] INFO - Digest: SHA-256=YljtibTei+du4xVIDxMr3HBsyLAEDuiYaag9TcU9jHA= +2019-02-25 12:12:38.432 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:38.432 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:38.432 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:38.432 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="upLqheaeX1y5m0Nawf7nUPI2FEZaxOZHHJwDryx8CKo=" +2019-02-25 12:12:38.433 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:38.633 [main] INFO - Request Body: {"encryptionType":"RsaOaep256"} +2019-02-25 12:12:38.633 [main] INFO - Response Message: {"keyId":"078vxfyH1Q46daZpREmXJ1beyZ9yK2sm","der":{"format":"X.509","algorithm":"RSA","publicKey":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmw+OwJOUAJRKcYccutwx4hi68WOCvSxT7SykBPI9lPR5gtoBZ+iYLBuG4suUoXesz9Rp4tCIfc8YPyT9vowmqMEmATrklLEA36Qcmu6INoA8lIrFkS1W4G53Qo2Y26D5WfUy+K1vR1O4clfB6jrVU8VZev8Gx36CBGy+ez6fuLO7lOTbkXFmh5b2wHf04dPwqjg+OBadbH5CNpmx+Y3oXK10i+M2rTvi5TgOmzUZsv/UZ98R4aejQv3GSy2aB5iM0byHQ59DpJHaePlyYl0at9VcL6SF2vutQldI2ryVsQgpTO0fx4m0nZszsA1J0xiXybLnBmTlg05aDBZewvyz3wIDAQAB"},"jwk":{"kty":"RSA","use":"enc","kid":"078vxfyH1Q46daZpREmXJ1beyZ9yK2sm","n":"mw-OwJOUAJRKcYccutwx4hi68WOCvSxT7SykBPI9lPR5gtoBZ-iYLBuG4suUoXesz9Rp4tCIfc8YPyT9vowmqMEmATrklLEA36Qcmu6INoA8lIrFkS1W4G53Qo2Y26D5WfUy-K1vR1O4clfB6jrVU8VZev8Gx36CBGy-ez6fuLO7lOTbkXFmh5b2wHf04dPwqjg-OBadbH5CNpmx-Y3oXK10i-M2rTvi5TgOmzUZsv_UZ98R4aejQv3GSy2aB5iM0byHQ59DpJHaePlyYl0at9VcL6SF2vutQldI2ryVsQgpTO0fx4m0nZszsA1J0xiXybLnBmTlg05aDBZewvyz3w","e":"AQAB"}} +2019-02-25 12:12:38.634 [main] INFO - Response Code: 200 +2019-02-25 12:12:38.634 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=Rjj3vwY+xn8MMsY1E7Sq6q4L1J08pbj5aHVVxwkTTSQ= +Content-Type: application/json;charset=UTF-8 +Content-Length: 927 +Date: Mon, 25 Feb 2019 06:42:38 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c730d529-5e36-4606-b990-42992699b3a8 +OkHttp-Sent-Millis: 1551076958439 +OkHttp-Received-Millis: 1551076958633 + +2019-02-25 12:12:38.634 [main] INFO - ********* END *********: +2019-02-25 12:12:38.656 [main] INFO - ********* START ********* +2019-02-25 12:12:38.657 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:38.657 [main] INFO - Request Type: POST +2019-02-25 12:12:38.657 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-25 12:12:38.657 [main] INFO - Digest: SHA-256=gEZo4PozZVgCrpNd3JKwGruwMOoyFI70wP0aDjupsBk= +2019-02-25 12:12:38.658 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:38.658 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:38.658 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:38.658 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="fxi4JTK6HMocXICkTC/08D4vVm27y4g7USEgtksuPLU=" +2019-02-25 12:12:38.659 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:38.840 [main] INFO - Request Body: {"encryptionType":"PqaPabc255"} +2019-02-25 12:12:38.841 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"One or more validation errors occurred","correlationId":null,"details":[{"location":"encryptionType","message":"encryptionType is invalid"}],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-25 12:12:38.841 [main] INFO - Response Code: 400 +2019-02-25 12:12:38.841 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Mon, 25 Feb 2019 06:42:38 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 26511eea-e8bd-47a4-90e5-92053e8d904b +OkHttp-Sent-Millis: 1551076958660 +OkHttp-Received-Millis: 1551076958840 + +2019-02-25 12:12:38.841 [main] INFO - ********* END *********: +2019-02-25 12:12:38.861 [main] INFO - ********* START ********* +2019-02-25 12:12:38.862 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:38.862 [main] INFO - Request Type: POST +2019-02-25 12:12:38.862 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-25 12:12:38.863 [main] INFO - Digest: SHA-256=bena9bhB3Jy4uPvfu1tAC0uN8AuzzM+xjqmDwR5//EA= +2019-02-25 12:12:38.863 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:38.863 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:38.863 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:38.864 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="OgTaJFaajyqpxOnO0igB/htSZslYPS9PMQd1MlwBpGA=" +2019-02-25 12:12:38.864 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:39.063 [main] INFO - Request Body: {"encryptionType":"None"} +2019-02-25 12:12:39.064 [main] INFO - Response Message: {"keyId":"07oQKIXtdU6srd4km6VoxYwsMPSO93St","der":{"format":"X.509","algorithm":"RSA","publicKey":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnWR9449SdDGOdLkOjYxX4KVxkGtO8R6U5aWYwDBMCT4QCvdMjKak2qvY2UJJt1p/V4nyuP1qgYwE7/C1fF8aysVdBX85svT+JCgEQPY3Lfce5vHihEcnDBJsoIWqXUK0nHmJatSMmByGuSEuMlsfX7+m6yK7/XMSXJ/dPp8bLhN9MDDbFuXnIxktTKJpZkP63GhijpGgYdV+IezhrhKz/0sx4d6YugV8i+fxbyWvlJ2kpUosEKUDdsGyaE49u+DNTNgl/T7JGpp1/gcrKZqhoyfTxOqretvCvC66ohli4JIS9Y9OYlmGJ3lVfpjJQmnOpAAxQRuL2IeXuabqfkinWwIDAQAB"},"jwk":null} +2019-02-25 12:12:39.064 [main] INFO - Response Code: 200 +2019-02-25 12:12:39.064 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=rx/aW2wRpcpXO4pWGjJYPwYVfVQ1TOcbBL0dw7vbiVo= +Content-Type: application/json;charset=UTF-8 +Content-Length: 505 +Date: Mon, 25 Feb 2019 06:42:38 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 65130309-32e6-456c-8ecb-ee20bf347488 +OkHttp-Sent-Millis: 1551076958867 +OkHttp-Received-Millis: 1551076959063 + +2019-02-25 12:12:39.064 [main] INFO - ********* END *********: +2019-02-25 12:12:39.081 [main] INFO - ********* START ********* +2019-02-25 12:12:39.082 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:39.082 [main] INFO - Request Type: POST +2019-02-25 12:12:39.082 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-25 12:12:39.083 [main] INFO - Digest: SHA-256=RGxc6GDM4hd0Lz1J24GEBLuX6JSK+r0fZi1/r0x/0Xo= +2019-02-25 12:12:39.083 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:39.083 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:39.083 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:39.084 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="OJANrp5m1tyx4lEFr4FOTN7DEldrUzUXMTRA7dH9LdE=" +2019-02-25 12:12:39.084 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:39.264 [main] INFO - Request Body: {"encryptionType":"SDMP"} +2019-02-25 12:12:39.265 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"One or more validation errors occurred","correlationId":null,"details":[{"location":"encryptionType","message":"encryptionType is invalid"}],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-25 12:12:39.265 [main] INFO - Response Code: 400 +2019-02-25 12:12:39.265 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Mon, 25 Feb 2019 06:42:38 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: f172e4a1-2ac9-4fe0-9365-365146e63057 +OkHttp-Sent-Millis: 1551076959086 +OkHttp-Received-Millis: 1551076959264 + +2019-02-25 12:12:39.266 [main] INFO - ********* END *********: +2019-02-25 12:12:39.294 [main] INFO - ********* START ********* +2019-02-25 12:12:39.295 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:39.295 [main] INFO - Request Type: POST +2019-02-25 12:12:39.295 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-25 12:12:39.296 [main] INFO - Digest: SHA-256=jNQYA9OvDKi2aiMe5v1oD0pmWKO9fh7qs1uh97o7grM= +2019-02-25 12:12:39.296 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:39.297 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:39.297 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:39.297 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="GTfiIbNMJ/n58bK+3InJ0RoSkQbpVOztPOetHSZrjyI=" +2019-02-25 12:12:39.298 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:39.448 [main] INFO - Request Body: {"keyId":"07UkZGZbFt1M6JUZqCqh4sNZCa5AzOdP","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-25 12:12:39.449 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [07UkZGZbFt1M6JUZqCqh4sNZCa5AzOdP]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-25 12:12:39.449 [main] INFO - Response Code: 400 +2019-02-25 12:12:39.449 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=yNhy6XvPZH9AhqmOChigyYTJE6xEkAU74Tim2mLyaOw= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Mon, 25 Feb 2019 06:42:38 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 88316623-99ca-4336-a415-110fc00de430 +OkHttp-Sent-Millis: 1551076959304 +OkHttp-Received-Millis: 1551076959448 + +2019-02-25 12:12:39.450 [main] INFO - ********* END *********: +2019-02-25 12:12:39.467 [main] INFO - ********* START ********* +2019-02-25 12:12:39.468 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:39.468 [main] INFO - Request Type: POST +2019-02-25 12:12:39.468 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-25 12:12:39.469 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-02-25 12:12:39.469 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:39.469 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:39.470 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:39.470 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="jVe2qKEhxO0iAtPPbLuc+mxs8edzdezc4wqQAMeAwsc=" +2019-02-25 12:12:39.470 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:39.618 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-25 12:12:39.619 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [0023154mudgshfyrtdgfj456fhdggdg1]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-25 12:12:39.619 [main] INFO - Response Code: 400 +2019-02-25 12:12:39.619 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Mon, 25 Feb 2019 06:42:38 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 194f293f-293e-411b-bfea-ac30979c2643 +OkHttp-Sent-Millis: 1551076959472 +OkHttp-Received-Millis: 1551076959618 + +2019-02-25 12:12:39.620 [main] INFO - ********* END *********: +2019-02-25 12:12:39.684 [main] INFO - ********* START ********* +2019-02-25 12:12:39.684 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:39.684 [main] INFO - Request Type: POST +2019-02-25 12:12:39.684 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-25 12:12:39.685 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-25 12:12:39.685 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:39.685 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:39.685 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:39.686 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="1Zz2m1yxTNJYzTPuVyavOR1h7XCCrXhpYH+MGeVtw/w=" +2019-02-25 12:12:39.686 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:39.899 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-25 12:12:39.900 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}} +2019-02-25 12:12:39.901 [main] INFO - Response Code: 200 +2019-02-25 12:12:39.901 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_6cca73d9-1881-43b7-ab84-6c21b6d96928 +uniqueTransactionID: 8b037fef-1f6b-4615-9fce-ac7a290e5d8f +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "gaZK/nV+l22isZ3TbN3ZzT9IaEaq3CvEWNIjknrm2LY=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 25 Feb 2019 06:42:39 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: a3fd18fe-6c2d-49bb-9bd0-4fb783324132 +OkHttp-Sent-Millis: 1551076959692 +OkHttp-Received-Millis: 1551076959899 + +2019-02-25 12:12:39.901 [main] INFO - ********* END *********: +2019-02-25 12:12:39.923 [main] INFO - ********* START ********* +2019-02-25 12:12:39.923 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:39.923 [main] INFO - Request Type: POST +2019-02-25 12:12:39.923 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-25 12:12:39.924 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-25 12:12:39.924 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:39.925 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:39.925 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:39.925 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="1Zz2m1yxTNJYzTPuVyavOR1h7XCCrXhpYH+MGeVtw/w=" +2019-02-25 12:12:39.925 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:40.120 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-25 12:12:40.121 [main] INFO - Response Message: {"errors":[{"type":"invalidHeaders","message":"Invalid header values","details":[{"name":"profile-id"}]}]} +2019-02-25 12:12:40.121 [main] INFO - Response Code: 400 +2019-02-25 12:12:40.121 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_bd28e7e6-2e5b-48a9-bcec-3f84d980aed4 +uniqueTransactionID: e01d09d0-2362-41d8-9722-e84769cfd06b +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Mon, 25 Feb 2019 06:42:39 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 22238471-74dc-46d3-bbc0-80c5bae2d99d +OkHttp-Sent-Millis: 1551076959927 +OkHttp-Received-Millis: 1551076960120 + +2019-02-25 12:12:40.121 [main] INFO - ********* END *********: +2019-02-25 12:12:40.182 [main] INFO - ********* START ********* +2019-02-25 12:12:40.182 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:40.183 [main] INFO - Request Type: POST +2019-02-25 12:12:40.183 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-25 12:12:40.183 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-25 12:12:40.184 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:40.184 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:40.184 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:40.185 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="c6jfm8iFGwENr3681RZWlJaiE7hVvxm/HTcxn5AMATk=" +2019-02-25 12:12:40.185 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:40.416 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-25 12:12:40.417 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/82B3361C7B9B5D9FE05340588D0A8700"}},"id":"82B3361C7B9B5D9FE05340588D0A8700","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"metadata":{"creator":"testrest"}}}} +2019-02-25 12:12:40.417 [main] INFO - Response Code: 201 +2019-02-25 12:12:40.417 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_69ed50fc-3e1d-44cc-8038-3eed852c5f9c +uniqueTransactionID: 23be65e8-fd5b-4514-91ce-a83cb988a4bd +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/paymentinstruments/82B3361C7B9B5D9FE05340588D0A8700 +ETag: "3+mHp+X/u6GtE0B21EABl8m75OY+1142rbaf0FHETHM=" +instrumentidentifier-created: false +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1001 +Date: Mon, 25 Feb 2019 06:42:40 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 6bb6c6ef-4ef1-4674-9d5d-25ee22b11244 +OkHttp-Sent-Millis: 1551076960190 +OkHttp-Received-Millis: 1551076960416 + +2019-02-25 12:12:40.417 [main] INFO - ********* END *********: +2019-02-25 12:12:40.439 [main] INFO - ********* START ********* +2019-02-25 12:12:40.440 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:40.440 [main] INFO - Request Type: POST +2019-02-25 12:12:40.440 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-25 12:12:40.441 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-25 12:12:40.441 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:40.441 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:40.441 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:40.442 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="c6jfm8iFGwENr3681RZWlJaiE7hVvxm/HTcxn5AMATk=" +2019-02-25 12:12:40.442 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:40.635 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-25 12:12:40.635 [main] INFO - Response Message: {"errors":[{"type":"invalidHeaders","message":"Invalid header values","details":[{"name":"profile-id"}]}]} +2019-02-25 12:12:40.635 [main] INFO - Response Code: 400 +2019-02-25 12:12:40.636 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_66f60fa3-0264-4bac-bde6-e2f619bff8d1 +uniqueTransactionID: 5f1548dc-66ab-403e-8e54-770407986e8b +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Mon, 25 Feb 2019 06:42:39 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 18785fee-caa3-4818-b819-56faf3dbd8d6 +OkHttp-Sent-Millis: 1551076960444 +OkHttp-Received-Millis: 1551076960634 + +2019-02-25 12:12:40.636 [main] INFO - ********* END *********: +2019-02-25 12:12:40.659 [main] INFO - ********* START ********* +2019-02-25 12:12:40.659 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:40.660 [main] INFO - Request Type: GET +2019-02-25 12:12:40.660 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7010000000016241111, requestType=GET} +2019-02-25 12:12:40.660 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:40.660 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:40.660 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:40.661 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="usis1bgRtJ+l90Yq/JRREDkUTLLhhPFJBh5kV2aWaFo=" +2019-02-25 12:12:40.661 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:40.860 [main] INFO - Request Body: null +2019-02-25 12:12:40.861 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}} +2019-02-25 12:12:40.861 [main] INFO - Response Code: 200 +2019-02-25 12:12:40.862 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_53cd15cd-087f-4cc0-87fe-ca6614b0e30c +uniqueTransactionID: 6284b079-b9a3-464a-9e2f-707f1336e9f5 +Pragma: no-cache +X-Application-Context: application +ETag: "gaZK/nV+l22isZ3TbN3ZzT9IaEaq3CvEWNIjknrm2LY=" +Token-Class: instrumentIdentifier +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 25 Feb 2019 06:42:39 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 16a4bb25-356b-4b82-aa36-a3463c4503a8 +OkHttp-Sent-Millis: 1551076960663 +OkHttp-Received-Millis: 1551076960860 + +2019-02-25 12:12:40.862 [main] INFO - ********* END *********: +2019-02-25 12:12:40.883 [main] INFO - ********* START ********* +2019-02-25 12:12:40.884 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:40.884 [main] INFO - Request Type: GET +2019-02-25 12:12:40.884 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546, requestType=GET} +2019-02-25 12:12:40.885 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:40.885 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:40.885 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:40.886 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="EjCLI4odFvQ1jXPBwEkB1/A6/UBIVwDlRDdovn6eUQQ=" +2019-02-25 12:12:40.886 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:41.099 [main] INFO - Request Body: null +2019-02-25 12:12:41.099 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:12:41.100 [main] INFO - Response Code: 404 +2019-02-25 12:12:41.100 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_c58fd2c6-cb84-4cee-85c2-044926f645cc +uniqueTransactionID: cd3c238b-55ad-4a0e-adb5-5f3f105ed162 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:42:40 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 674c5584-0f10-4990-884a-155b4570cbf2 +OkHttp-Sent-Millis: 1551076960887 +OkHttp-Received-Millis: 1551076961098 + +2019-02-25 12:12:41.100 [main] INFO - ********* END *********: +2019-02-25 12:12:41.128 [main] INFO - ********* START ********* +2019-02-25 12:12:41.129 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:41.129 [main] INFO - Request Type: PATCH +2019-02-25 12:12:41.129 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654, requestType=PATCH} +2019-02-25 12:12:41.130 [main] INFO - Digest: SHA-256=8WWAL+hDoWtF/EyxX3M/HpCKmkkPnnqbqKxbc3iH/JY= +2019-02-25 12:12:41.130 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:41.130 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:41.131 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:41.131 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Prn93mHOIIZQg0BwHhWDBgTHIBCwd5+26gDyCOD39yY=" +2019-02-25 12:12:41.131 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:41.337 [main] INFO - Request Body: {"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-25 12:12:41.338 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}} +2019-02-25 12:12:41.338 [main] INFO - Response Code: 200 +2019-02-25 12:12:41.339 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_742f659e-a994-452f-8cae-b9e17a5bb491 +uniqueTransactionID: 92424745-16e9-4a29-8ab8-ca65c2df8a3d +Pragma: no-cache +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654 +ETag: "e7cH7JokqubAx7IWG5Du+Ytz8TjdEIUS9CVHgTQFH+U=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 25 Feb 2019 06:42:41 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 8c3b94d8-cba1-40a4-ace4-3f437d2fe68b +OkHttp-Sent-Millis: 1551076961135 +OkHttp-Received-Millis: 1551076961337 + +2019-02-25 12:12:41.339 [main] INFO - ********* END *********: +2019-02-25 12:12:41.356 [main] INFO - ********* START ********* +2019-02-25 12:12:41.362 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:41.362 [main] INFO - Request Type: PATCH +2019-02-25 12:12:41.362 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000123455, requestType=PATCH} +2019-02-25 12:12:41.363 [main] INFO - Digest: SHA-256=8WWAL+hDoWtF/EyxX3M/HpCKmkkPnnqbqKxbc3iH/JY= +2019-02-25 12:12:41.363 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:41.363 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:41.364 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:41.364 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="qPi/t23r8Obo2OuPqnGT23YMdaKnMWhZ+ubgyTzgaWg=" +2019-02-25 12:12:41.364 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:41.565 [main] INFO - Request Body: {"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-25 12:12:41.566 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:12:41.566 [main] INFO - Response Code: 404 +2019-02-25 12:12:41.567 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_32ff5fb1-7890-4398-ad57-8573692faf60 +uniqueTransactionID: 3821adfb-54df-4b7e-963e-874d27396d6b +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:42:41 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: e1edb1fb-e739-416d-b435-34fdb7cf95fa +OkHttp-Sent-Millis: 1551076961366 +OkHttp-Received-Millis: 1551076961565 + +2019-02-25 12:12:41.567 [main] INFO - ********* END *********: +2019-02-25 12:12:41.589 [main] INFO - ********* START ********* +2019-02-25 12:12:41.590 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:41.590 [main] INFO - Request Type: DELETE +2019-02-25 12:12:41.590 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7010000000006721114, requestType=DELETE} +2019-02-25 12:12:41.590 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:41.591 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:41.591 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:41.591 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="wcGlu26Ns+ryCge0FAgc94a++DIgn5gDD0utOD2WAac=" +2019-02-25 12:12:41.591 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:41.800 [main] INFO - Request Body: null +2019-02-25 12:12:41.800 [main] INFO - Response Message: {"errors":[{"type":"notAvailable","message":"Token not available"}]} +2019-02-25 12:12:41.800 [main] INFO - Response Code: 410 +2019-02-25 12:12:41.801 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_a0d7f652-ea05-4b99-8cbb-1e4401b50aec +uniqueTransactionID: 6f7cf42e-4db9-46ee-a6cb-1a6982d94193 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 68 +Date: Mon, 25 Feb 2019 06:42:41 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 84e77343-9ed4-4f41-bc2f-c2b55377bd42 +OkHttp-Sent-Millis: 1551076961593 +OkHttp-Received-Millis: 1551076961799 + +2019-02-25 12:12:41.801 [main] INFO - ********* END *********: +2019-02-25 12:12:41.818 [main] INFO - ********* START ********* +2019-02-25 12:12:41.819 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:41.819 [main] INFO - Request Type: DELETE +2019-02-25 12:12:41.819 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546, requestType=DELETE} +2019-02-25 12:12:41.819 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:41.820 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:41.820 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:41.820 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="/8UgrNz9z0pR3/z+4Jh+H7MWKlEcbdYuNr9q7iyR3gI=" +2019-02-25 12:12:41.820 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:42.024 [main] INFO - Request Body: null +2019-02-25 12:12:42.024 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:12:42.025 [main] INFO - Response Code: 404 +2019-02-25 12:12:42.025 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_efc1f38d-e24f-4548-9e22-27293ba62c48 +uniqueTransactionID: d8404081-d4a5-4445-96a1-b6b4ab91a423 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:42:41 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: ad85f4c9-d84d-4b27-bc89-728b60fce059 +OkHttp-Sent-Millis: 1551076961823 +OkHttp-Received-Millis: 1551076962024 + +2019-02-25 12:12:42.025 [main] INFO - ********* END *********: +2019-02-25 12:12:42.049 [main] INFO - ********* START ********* +2019-02-25 12:12:42.049 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:42.049 [main] INFO - Request Type: GET +2019-02-25 12:12:42.049 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603, requestType=GET} +2019-02-25 12:12:42.050 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:42.050 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:42.050 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:42.050 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="fxt2ekXbGZfaOWYqzvqpqWqfU1v6Fnd9FZ2fzxT91pE=" +2019-02-25 12:12:42.051 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:42.250 [main] INFO - Request Body: null +2019-02-25 12:12:42.251 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603"}},"id":"7EFF4BA832B12424E05340588D0AC603","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}} +2019-02-25 12:12:42.251 [main] INFO - Response Code: 200 +2019-02-25 12:12:42.252 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_3859cf18-e92a-4260-a511-62f246d73f42 +uniqueTransactionID: 78fa26b1-b3ec-42ce-b094-0971915ed79d +Pragma: no-cache +X-Application-Context: application +ETag: "yAnu3GX+anyVOBttYXGTsd5qwwaTiJeRZy4+44UlTcM=" +Token-Class: paymentInstrument +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1142 +Date: Mon, 25 Feb 2019 06:42:41 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: ca8dc754-44fe-40a4-b5d2-65f57ecbc93d +OkHttp-Sent-Millis: 1551076962053 +OkHttp-Received-Millis: 1551076962250 + +2019-02-25 12:12:42.252 [main] INFO - ********* END *********: +2019-02-25 12:12:42.269 [main] INFO - ********* START ********* +2019-02-25 12:12:42.269 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:42.270 [main] INFO - Request Type: GET +2019-02-25 12:12:42.270 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7654264589567855546, requestType=GET} +2019-02-25 12:12:42.270 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:42.270 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:42.271 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:42.271 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="01f705j5DvbV6qmYqazl5JNKCxTl2KnaNak9Po7pHWU=" +2019-02-25 12:12:42.271 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:42.468 [main] INFO - Request Body: null +2019-02-25 12:12:42.469 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:12:42.469 [main] INFO - Response Code: 404 +2019-02-25 12:12:42.469 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_10c26f04-ba8b-450c-8e5c-f83f7aa74af3 +uniqueTransactionID: ab012401-08c8-4836-8d71-386dbf066dde +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:42:42 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: c8578bcb-4111-45bf-a661-754016be7c74 +OkHttp-Sent-Millis: 1551076962271 +OkHttp-Received-Millis: 1551076962468 + +2019-02-25 12:12:42.470 [main] INFO - ********* END *********: +2019-02-25 12:12:42.498 [main] INFO - ********* START ********* +2019-02-25 12:12:42.498 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:42.498 [main] INFO - Request Type: PATCH +2019-02-25 12:12:42.499 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603, requestType=PATCH} +2019-02-25 12:12:42.499 [main] INFO - Digest: SHA-256=JVhG6cWRtiU/QoMjxKqN0Sqpzxt5BxE40ELswsMV4eU= +2019-02-25 12:12:42.500 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:42.500 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:42.500 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:42.501 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="dJd74+sbNu6/UcPYxmhSRz+cM8PhSVMUB8yle7tK1Ag=" +2019-02-25 12:12:42.501 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:42.727 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-25 12:12:42.727 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603"}},"id":"7EFF4BA832B12424E05340588D0AC603","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}} +2019-02-25 12:12:42.727 [main] INFO - Response Code: 200 +2019-02-25 12:12:42.728 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_c20dbb0e-b5e7-4e79-a50b-d34321c7e695 +uniqueTransactionID: f22346d0-33da-4611-82a4-22797d960a66 +Pragma: no-cache +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603 +ETag: "Qa+AUAUyJ+oecC13Fl18vzzHPCeH1Cn8fLAACo5rGus=" +instrumentidentifier-created: false +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1142 +Date: Mon, 25 Feb 2019 06:42:42 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 81ea72af-b265-4934-bf0f-61e93cb90a4c +OkHttp-Sent-Millis: 1551076962505 +OkHttp-Received-Millis: 1551076962726 + +2019-02-25 12:12:42.728 [main] INFO - ********* END *********: +2019-02-25 12:12:42.746 [main] INFO - ********* START ********* +2019-02-25 12:12:42.747 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:42.747 [main] INFO - Request Type: PATCH +2019-02-25 12:12:42.747 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B124123456789545854565, requestType=PATCH} +2019-02-25 12:12:42.748 [main] INFO - Digest: SHA-256=JVhG6cWRtiU/QoMjxKqN0Sqpzxt5BxE40ELswsMV4eU= +2019-02-25 12:12:42.748 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:42.748 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:42.748 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:42.748 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Y6Mb7Xa65+G0TqOH0qyc50eW3BSkcKr2Nav1EcKzyV0=" +2019-02-25 12:12:42.749 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:42.944 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-25 12:12:42.944 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:12:42.944 [main] INFO - Response Code: 404 +2019-02-25 12:12:42.944 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_51bedf2c-1054-44fd-8ae8-5ec5d2754749 +uniqueTransactionID: 854c40c3-35f4-497a-bf57-dfa2531dd12a +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:42:42 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: e1a75585-c6b1-4288-b144-e7f5b3708677 +OkHttp-Sent-Millis: 1551076962752 +OkHttp-Received-Millis: 1551076962943 + +2019-02-25 12:12:42.944 [main] INFO - ********* END *********: +2019-02-25 12:12:42.966 [main] INFO - ********* START ********* +2019-02-25 12:12:42.966 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:42.967 [main] INFO - Request Type: DELETE +2019-02-25 12:12:42.967 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/80756F4698591109E05341588E0A4B95, requestType=DELETE} +2019-02-25 12:12:42.967 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:42.967 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:42.968 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:42.968 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="hcq046RcidLfcYELZppM3TfdBQhW8XMWLIXlY/oqV0I=" +2019-02-25 12:12:42.968 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:43.163 [main] INFO - Request Body: null +2019-02-25 12:12:43.164 [main] INFO - Response Message: {"errors":[{"type":"notAvailable","message":"Token not available"}]} +2019-02-25 12:12:43.164 [main] INFO - Response Code: 410 +2019-02-25 12:12:43.164 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_972a2257-2cba-4c82-990e-9545cf8470a7 +uniqueTransactionID: 71b5664e-2562-4c56-ab82-7f60888a567b +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 68 +Date: Mon, 25 Feb 2019 06:42:42 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: eb50e0a0-78eb-4b1a-beae-819978fe7367 +OkHttp-Sent-Millis: 1551076962970 +OkHttp-Received-Millis: 1551076963163 + +2019-02-25 12:12:43.165 [main] INFO - ********* END *********: +2019-02-25 12:12:43.182 [main] INFO - ********* START ********* +2019-02-25 12:12:43.182 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:43.182 [main] INFO - Request Type: DELETE +2019-02-25 12:12:43.183 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/76542645895678555464562155478555, requestType=DELETE} +2019-02-25 12:12:43.183 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:43.183 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:43.184 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:43.184 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="NvbaTn+EEbA0tf09GAYnAEIMNuWbimjT439aixjO+wY=" +2019-02-25 12:12:43.184 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:43.390 [main] INFO - Request Body: null +2019-02-25 12:12:43.391 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:12:43.391 [main] INFO - Response Code: 404 +2019-02-25 12:12:43.391 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_4a16fe62-ff79-43c8-813f-ce52a68b3382 +uniqueTransactionID: 2acfed19-0141-4444-b99d-ca7fcbda45fd +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:42:42 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 58d0b161-1bb8-4231-9aa2-13685c477346 +OkHttp-Sent-Millis: 1551076963186 +OkHttp-Received-Millis: 1551076963389 + +2019-02-25 12:12:43.392 [main] INFO - ********* END *********: +2019-02-25 12:12:43.415 [main] INFO - ********* START ********* +2019-02-25 12:12:43.415 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:43.416 [main] INFO - Request Type: GET +2019-02-25 12:12:43.416 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-25 12:12:43.416 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:43.417 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:43.417 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:43.417 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="htusFd8P3puaKM674EutCYy4JJHvr5tIWOx7sHqiZbg=" +2019-02-25 12:12:43.417 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:43.720 [main] INFO - Request Body: null +2019-02-25 12:12:43.722 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=0&limit=20"},"first":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=0&limit=20"},"next":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=20&limit=20"},"last":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=120&limit=20"}},"object":"collection","offset":0,"limit":20,"count":20,"total":131,"_embedded":{"paymentInstruments":[{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/798C4DC7AEE4D943E05340588D0A8A9E"}},"id":"798C4DC7AEE4D943E05340588D0A8A9E","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7986A6266E5D8728E05340588D0A082F"}},"id":"7986A6266E5D8728E05340588D0A082F","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79863A720BFB3614E05340588D0AC61D"}},"id":"79863A720BFB3614E05340588D0AC61D","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7986100CF0631311E05340588D0AC258"}},"id":"7986100CF0631311E05340588D0AC258","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79849FC7687CFF78E05340588D0A8D10"}},"id":"79849FC7687CFF78E05340588D0A8D10","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79276DA1D0233CA6E05340588D0ADD47"}},"id":"79276DA1D0233CA6E05340588D0ADD47","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79276DA1D01C3CA6E05340588D0ADD47"}},"id":"79276DA1D01C3CA6E05340588D0ADD47","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/790D20FA65E14107E05340588D0A56FC"}},"id":"790D20FA65E14107E05340588D0A56FC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/790B7C9B64C7062AE05340588D0A6BFC"}},"id":"790B7C9B64C7062AE05340588D0A6BFC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78FC4875384A727AE05340588D0A9FEB"}},"id":"78FC4875384A727AE05340588D0A9FEB","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78FC48753847727AE05340588D0A9FEB"}},"id":"78FC48753847727AE05340588D0A9FEB","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F9029E6777F865E05340588D0AD0EA"}},"id":"78F9029E6777F865E05340588D0AD0EA","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F906F76015F1BDE05340588D0AC573"}},"id":"78F906F76015F1BDE05340588D0AC573","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F72C08537094CAE05340588D0ACDD3"}},"id":"78F72C08537094CAE05340588D0ACDD3","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78E7CFD5C149EA3BE05340588D0AB20B"}},"id":"78E7CFD5C149EA3BE05340588D0AB20B","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78E7CFD5C144EA3BE05340588D0AB20B"}},"id":"78E7CFD5C144EA3BE05340588D0AB20B","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78DFC955E6E1B4A4E05340588D0ADD6A"}},"id":"78DFC955E6E1B4A4E05340588D0ADD6A","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78DFC955E6DCB4A4E05340588D0ADD6A"}},"id":"78DFC955E6DCB4A4E05340588D0ADD6A","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/787C21D78039BB12E05341588E0ABAF2"}},"id":"787C21D78039BB12E05341588E0ABAF2","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/787C0A20BEA79250E05341588E0ADA22"}},"id":"787C0A20BEA79250E05341588E0ADA22","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}}]}} +2019-02-25 12:12:43.723 [main] INFO - Response Code: 200 +2019-02-25 12:12:43.723 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_e29b06ff-3779-4ae0-9992-877ea8ed8a52 +uniqueTransactionID: ea616144-4799-4566-a0b1-d722c238c84e +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 131 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Mon, 25 Feb 2019 06:42:43 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: ba3f429a-d894-48d7-bd53-70941b99e77e +OkHttp-Sent-Millis: 1551076963422 +OkHttp-Received-Millis: 1551076963702 + +2019-02-25 12:12:43.723 [main] INFO - ********* END *********: +2019-02-25 12:12:43.763 [main] INFO - ********* START ********* +2019-02-25 12:12:43.763 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:43.764 [main] INFO - Request Type: GET +2019-02-25 12:12:43.764 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-25 12:12:43.765 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:43.765 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:43.765 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:43.766 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="XpiHvwARmrr9W1L8Gw+1KREfcEr9M/HSfHn1o3ytFlk=" +2019-02-25 12:12:43.766 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:43.954 [main] INFO - Request Body: null +2019-02-25 12:12:43.955 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:12:43.955 [main] INFO - Response Code: 404 +2019-02-25 12:12:43.955 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_236a8fc7-cbc0-4325-9ebb-11da4debcf9e +uniqueTransactionID: cec8a000-42a3-49b7-80d5-7138fc1a42bc +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:42:43 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 6904bb9c-d0a1-499f-82cc-4d4818ef3ee5 +OkHttp-Sent-Millis: 1551076963766 +OkHttp-Received-Millis: 1551076963953 + +2019-02-25 12:12:43.956 [main] INFO - ********* END *********: +2019-02-25 12:12:43.980 [main] INFO - ********* START ********* +2019-02-25 12:12:43.981 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:43.981 [main] INFO - Request Type: GET +2019-02-25 12:12:43.981 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches/Owcyk6pl, requestType=GET} +2019-02-25 12:12:43.981 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:43.982 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:43.982 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:43.982 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="o4jhQY9we/s2IbI5/M4SQH73CaKtVF4HuXuj3PR2LP4=" +2019-02-25 12:12:43.983 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:44.226 [main] INFO - Request Body: null +2019-02-25 12:12:44.226 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/pts/v1/transaction-batches/Owcyk6pl"}},"acceptedTransactionCount":0,"completionDate":"2018-10-29","id":"Owcyk6pl","links":{"transactions":[{"href":"https://apitest.cybersource.com:-1/v1/payments/5408556076096093004012","method":"Get"},{"href":"https://apitest.cybersource.com:-1/v1/payments/5408556076166022104010","method":"Get"}]},"rejectedTransactionCount":2,"status":"Completed","transactionCount":2,"uploadDate":"2018-10-29"} +2019-02-25 12:12:44.226 [main] INFO - Response Code: 200 +2019-02-25 12:12:44.227 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_bc324d85-04dd-42fd-9356-78c791aab1a0 +Cache-Control: no-cache, no-transform +ETag: "-1139639258" +Expires: Mon, 25 Feb 2019 06:42:44 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:44 GMT +X-Cnection: close +v-c-correlation-id: 72cbcadb-c388-41b7-8167-5269d729f8ad +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076963983 +OkHttp-Received-Millis: 1551076964217 + +2019-02-25 12:12:44.227 [main] INFO - ********* END *********: +2019-02-25 12:12:44.244 [main] INFO - ********* START ********* +2019-02-25 12:12:44.244 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:44.244 [main] INFO - Request Type: GET +2019-02-25 12:12:44.245 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches/CYBS123, requestType=GET} +2019-02-25 12:12:44.245 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:44.245 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:44.245 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:44.246 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="DOLIYYLuFaogib+wWq66uYBMFq7q4g4Kpse0e/zXYX8=" +2019-02-25 12:12:44.246 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:44.460 [main] INFO - Request Body: null +2019-02-25 12:12:44.460 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/pts/v1/transaction-batches/CYBS123"}},"invalidFields":null,"message":"The requested resource does not exist","messageKey":null,"missingFields":null} +2019-02-25 12:12:44.460 [main] INFO - Response Code: 404 +2019-02-25 12:12:44.461 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_0e54d45c-a8ab-43ad-b2e7-3eacdbe5c7a7 +X-OPNET-Transaction-Trace: a2_cb2c0383-308b-4e47-b89f-98091df76111 +Cache-Control: no-cache, no-transform +ETag: "-975452876" +Expires: Mon, 25 Feb 2019 06:42:44 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:44 GMT +X-Cnection: close +v-c-correlation-id: 854bba94-9743-4b41-83d0-d7b510f9dc93 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076964246 +OkHttp-Received-Millis: 1551076964457 + +2019-02-25 12:12:44.461 [main] INFO - ********* END *********: +2019-02-25 12:12:44.600 [main] INFO - ********* START ********* +2019-02-25 12:12:44.601 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:44.601 [main] INFO - Request Type: GET +2019-02-25 12:12:44.601 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-25 12:12:44.601 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:44.602 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:44.602 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:44.602 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="WL5Hoz1reBhYIk2mUdCywJ26XsrxraUPcezIog6rBe4=" +2019-02-25 12:12:44.602 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:44.908 [main] INFO - Request Body: null +2019-02-25 12:12:44.908 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/pts/v1/transaction-batches"}},"submitTimeUtc":"2019-02-25T06:42:44.787Z","transactionBatches":[{"id":"Owcyk6pl","uploadDate":"2018-10-29","completionDate":"2018-10-29","transactionCount":2,"acceptedTransactionCount":0,"rejectedTransactionCount":2,"status":"Completed"},{"id":"91Li4SD7","uploadDate":"2018-10-29","completionDate":"2018-10-29","transactionCount":0,"acceptedTransactionCount":0,"rejectedTransactionCount":0,"status":"OnHold"}]} +2019-02-25 12:12:44.908 [main] INFO - Response Code: 200 +2019-02-25 12:12:44.909 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_ac2b1dc4-deff-4071-b9ca-012ecf30e8fb +X-OPNET-Transaction-Trace: a2_a3496439-f624-41ee-b429-168f3cc80c3b +Cache-Control: no-cache, no-transform +ETag: "-2023708846" +Expires: Mon, 25 Feb 2019 06:42:44 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:44 GMT +X-Cnection: close +v-c-correlation-id: 1e5ebd35-1b34-4d26-b9a5-8f01e91881ac +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076964606 +OkHttp-Received-Millis: 1551076964906 + +2019-02-25 12:12:44.909 [main] INFO - ********* END *********: +2019-02-25 12:12:44.936 [main] INFO - ********* START ********* +2019-02-25 12:12:44.936 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:44.937 [main] INFO - Request Type: GET +2019-02-25 12:12:44.937 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2019-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-25 12:12:44.937 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:44.938 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:44.938 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:44.938 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="0zIfB+PZqGqRnWpRYqfIL7Jis+/hten+HjSJImyKTAY=" +2019-02-25 12:12:44.938 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:45.185 [main] INFO - Request Body: null +2019-02-25 12:12:45.186 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/payment/pts/v1/transaction-batches?startTime=2019-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z"}},"invalidFields":{"name":"endTime","reasonMessage":"The start time should precede the end time"},"message":"Field validation errors","messageKey":null,"missingFields":null} +2019-02-25 12:12:45.186 [main] INFO - Response Code: 400 +2019-02-25 12:12:45.186 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_5d02b986-7209-4e39-837f-e9ebcc9586f3 +Cache-Control: no-cache, no-transform +ETag: "-1732043611" +Expires: Mon, 25 Feb 2019 06:42:45 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:45 GMT +X-Cnection: close +v-c-correlation-id: d13bb79c-6215-43f5-86f3-e182717d936f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076964939 +OkHttp-Received-Millis: 1551076965183 + +2019-02-25 12:12:45.187 [main] INFO - ********* END *********: +2019-02-25 12:12:45.208 [main] INFO - ********* START ********* +2019-02-25 12:12:45.209 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:45.209 [main] INFO - Request Type: GET +2019-02-25 12:12:45.209 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/transactions/5408386919326811103004, requestType=GET} +2019-02-25 12:12:45.209 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:45.210 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:45.210 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:45.210 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="hSK8FrHYa1k/XHurc+UskFMZxSdtnfI2V2ngZeJwkXY=" +2019-02-25 12:12:45.210 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:45.465 [main] INFO - Request Body: null +2019-02-25 12:12:45.466 [main] INFO - Response Message: {"id":"5408386919326811103004","rootId":"5408386919326811103004","reconciliationId":"781606613NGFNJJE","submitTimeUTC":"2018-10-29T18:44:52Z","merchantId":"testrest","applicationInformation":{"reasonCode":100,"applications":[{"name":"ics_auth","reasonCode":"100","rCode":"1","rFlag":"SOK","reconciliationId":"781606613NGFNJJE","rMessage":"Request was processed successfully.","returnCode":1010000}]},"buyerInformation":{},"clientReferenceInformation":{"code":"TC50171_3","applicationName":"REST API","applicationVersion":"1.0"},"consumerAuthenticationInformation":{"eciRaw":"7"},"deviceInformation":{},"installmentInformation":{},"fraudMarkingInformation":{},"merchantDefinedInformation":{},"merchantInformation":{"merchantDescriptor":{"name":"testrest"}},"orderInformation":{"billTo":{"firstName":"JOHN","lastName":"DOE","address1":"1 Market St","address2":"Address 2","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","company":"Visa","email":"XXXXXXXXX","country":"US","phoneNumber":"4158880000"},"shipTo":{},"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX","taxAmount":"0","authorizedAmount":"102.21"},"shippingDetails":{},"lineItems":[{"productCode":"default","taxAmount":0,"quantity":1,"unitPrice":102.21}]},"paymentInformation":{"paymentMethod":{"name":"smartpay","type":"credit card","subType":"VI"},"customer":{},"card":{"suffix":"1111","prefix":"411111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"Credit card"},"invoice":{},"accountFeatures":{}},"processingInformation":{"paymentSolution":"Visa","commerceIndicator":"7","authorizationOptions":{"authType":"O"},"bankTransferOptions":{}},"processorInformation":{"processor":{"name":"smartpay"},"approvalCode":"888888","responseCode":"100","avs":{"code":"X ","codeRaw":"I1"},"cardVerification":{},"achVerification":{"resultCodeRaw":"100"},"electronicVerificationResults":{}},"pointOfSaleInformation":{},"riskInformation":{"score":{}},"senderInformation":{},"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5408386919326811103004","method":"GET"}}} +2019-02-25 12:12:45.466 [main] INFO - Response Code: 200 +2019-02-25 12:12:45.466 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_af69117e-a652-47ad-96fc-f560f2416b63 +Cache-Control: no-cache, no-transform +ETag: "-1543210418" +Expires: Mon, 25 Feb 2019 06:42:45 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:45 GMT +X-Cnection: close +v-c-correlation-id: a2f40f29-e42c-4caf-9df9-f047380f4286 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076965215 +OkHttp-Received-Millis: 1551076965464 + +2019-02-25 12:12:45.467 [main] INFO - ********* END *********: +2019-02-25 12:12:45.591 [main] INFO - ********* START ********* +2019-02-25 12:12:45.592 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:45.592 [main] INFO - Request Type: GET +2019-02-25 12:12:45.592 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/transactions/1234567898745651235454, requestType=GET} +2019-02-25 12:12:45.593 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:45.593 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:45.593 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:45.593 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="FaavbRJd814hBpJJZ1rIN5ECH1VO5SPRJwSrzyWbJiY=" +2019-02-25 12:12:45.594 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:45.803 [main] INFO - Request Body: null +2019-02-25 12:12:45.804 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/payment/tss/v2/transactions/1234567898745651235454"}},"invalidFields":null,"message":"The requested resource does not exist","messageKey":null,"missingFields":null} +2019-02-25 12:12:45.804 [main] INFO - Response Code: 404 +2019-02-25 12:12:45.804 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_623d8b50-a96a-4f61-9dd7-01edba082d40 +Cache-Control: no-cache, no-transform +ETag: "1151868788" +Expires: Mon, 25 Feb 2019 06:42:45 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:45 GMT +X-Cnection: close +v-c-correlation-id: 8c2472e5-7b9d-4bf7-a132-2dc1b737cd3f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076965595 +OkHttp-Received-Millis: 1551076965802 + +2019-02-25 12:12:45.804 [main] INFO - ********* END *********: +2019-02-25 12:12:45.829 [main] INFO - ********* START ********* +2019-02-25 12:12:45.829 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:45.829 [main] INFO - Request Type: POST +2019-02-25 12:12:45.830 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-25 12:12:45.830 [main] INFO - Digest: SHA-256=yv1HHIWB0ukuo0JfNKnkDCUcVm1OrwOQ7U4IgWX3zTs= +2019-02-25 12:12:45.830 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:45.830 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:45.831 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:45.831 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="kXEHQtiDWVj7RIxw7MKOZTdOdwG6m742GOSa3cVXpDw=" +2019-02-25 12:12:45.831 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:46.370 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientReferenceInformation.code:12345","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-25 12:12:46.371 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/3fec6fc6-72e3-4786-aba1-a3b6b9736977","method":"GET"}},"searchId":"3fec6fc6-72e3-4786-aba1-a3b6b9736977","save":false,"name":"TSS search","query":"clientReferenceInformation.code:12345","count":64,"totalCount":64,"limit":80,"offset":0,"sort":"id:asc, submitTimeUtc:asc","timezone":"America/Chicago","submitTimeUtc":"2019-02-25T06:42:46Z","_embedded":{"transactionSummaries":[{"id":"5468475396886870703005","submitTimeUtc":"2019-01-07T07:52:19Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468475396886870703005","method":"GET"}}},{"id":"5468478041966220703004","submitTimeUtc":"2019-01-07T07:56:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468478041966220703004","method":"GET"}}},{"id":"5468480179436393003006","submitTimeUtc":"2019-01-07T08:00:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480179436393003006","method":"GET"}}},{"id":"5468480690446811803002","submitTimeUtc":"2019-01-07T08:01:09Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480690446811803002","method":"GET"}}},{"id":"5468485285666814803002","submitTimeUtc":"2019-01-07T08:08:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485285666814803002","method":"GET"}}},{"id":"5468485710916881003005","submitTimeUtc":"2019-01-07T08:09:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485710916881003005","method":"GET"}}},{"id":"5469521708616037903005","submitTimeUtc":"2019-01-08T12:56:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469521708616037903005","method":"GET"}}},{"id":"5469522883506039403005","submitTimeUtc":"2019-01-08T12:58:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469522883506039403005","method":"GET"}}},{"id":"5469524080436600903006","submitTimeUtc":"2019-01-08T13:00:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524080436600903006","method":"GET"}}},{"id":"5469524351696601103006","submitTimeUtc":"2019-01-08T13:00:35Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524351696601103006","method":"GET"}}},{"id":"5469525663736980803002","submitTimeUtc":"2019-01-08T13:02:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469525663736980803002","method":"GET"}}},{"id":"5469529727066047603005","submitTimeUtc":"2019-01-08T13:09:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469529727066047603005","method":"GET"}}},{"id":"5469535101246615503006","submitTimeUtc":"2019-01-08T13:18:30Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469535101246615503006","method":"GET"}}},{"id":"5469588461766085503005","submitTimeUtc":"2019-01-08T14:47:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469588461766085503005","method":"GET"}}},{"id":"5469589378676352103001","submitTimeUtc":"2019-01-08T14:48:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589378676352103001","method":"GET"}}},{"id":"5469589534636352203001","submitTimeUtc":"2019-01-08T14:49:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589534636352203001","method":"GET"}}},{"id":"5470167162946434803001","submitTimeUtc":"2019-01-09T06:51:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5470167162946434803001","method":"GET"}}},{"id":"5471404274096790203002","submitTimeUtc":"2019-01-10T17:13:47Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5471404274096790203002","method":"GET"}}},{"id":"5475240476326666304005","submitTimeUtc":"2019-01-15T03:47:27Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240476326666304005","method":"GET"}}},{"id":"5475240647986666504005","submitTimeUtc":"2019-01-15T03:47:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240647986666504005","method":"GET"}}},{"id":"5475240694246602504002","submitTimeUtc":"2019-01-15T03:47:49Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240694246602504002","method":"GET"}}},{"id":"5480449281766424303002","submitTimeUtc":"2019-01-21T04:28:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5480449281766424303002","method":"GET"}}},{"id":"5484294159526049603003","submitTimeUtc":"2019-01-25T15:16:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5484294159526049603003","method":"GET"}}},{"id":"5486140097596056803002","submitTimeUtc":"2019-01-27T18:33:29Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486140097596056803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486140097596056803002","method":"GET"}}},{"id":"5486143740386376403005","submitTimeUtc":"2019-01-27T18:39:34Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486143740386376403005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486143740386376403005","method":"GET"}}},{"id":"5486146109726057203002","submitTimeUtc":"2019-01-27T18:43:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486146109726057203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486146109726057203002","method":"GET"}}},{"id":"5486149568856057803002","submitTimeUtc":"2019-01-27T18:49:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486149568856057803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486149568856057803002","method":"GET"}}},{"id":"5486150058926377303005","submitTimeUtc":"2019-01-27T18:50:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150058926377303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150058926377303005","method":"GET"}}},{"id":"5486150718046057903002","submitTimeUtc":"2019-01-27T18:51:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150718046057903002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150718046057903002","method":"GET"}}},{"id":"5486151464616710103006","submitTimeUtc":"2019-01-27T18:52:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486151464616710103006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486151464616710103006","method":"GET"}}},{"id":"5486152183786377503005","submitTimeUtc":"2019-01-27T18:53:38Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486152183786377503005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486152183786377503005","method":"GET"}}},{"id":"5486154059186996103003","submitTimeUtc":"2019-01-27T18:56:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486154059186996103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486154059186996103003","method":"GET"}}},{"id":"5486156635686378003005","submitTimeUtc":"2019-01-27T19:01:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486156635686378003005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486156635686378003005","method":"GET"}}},{"id":"5486157519836378103005","submitTimeUtc":"2019-01-27T19:02:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486157519836378103005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486157519836378103005","method":"GET"}}},{"id":"5486159910726712503006","submitTimeUtc":"2019-01-27T19:06:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486159910726712503006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486159910726712503006","method":"GET"}}},{"id":"5486160598666060203002","submitTimeUtc":"2019-01-27T19:07:40Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486160598666060203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486160598666060203002","method":"GET"}}},{"id":"5488539943826733503004","submitTimeUtc":"2019-01-30T13:13:14Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5488539943826733503004","method":"GET"}}},{"id":"5492626323766108104003","submitTimeUtc":"2019-02-04T06:43:52Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5492626323766108104003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5492626323766108104003","method":"GET"}}},{"id":"5493718508496900303005","submitTimeUtc":"2019-02-05T13:04:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718508496900303005","method":"GET"}}},{"id":"5493718987966748103006","submitTimeUtc":"2019-02-05T13:04:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718987966748103006","method":"GET"}}},{"id":"5495325909106773503001","submitTimeUtc":"2019-02-07T09:43:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495325909106773503001"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495325909106773503001","method":"GET"}}},{"id":"5495326432436411603006","submitTimeUtc":"2019-02-07T09:44:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495326432436411603006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495326432436411603006","method":"GET"}}},{"id":"5495345378096803303002","submitTimeUtc":"2019-02-07T10:15:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495345378096803303002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495345378096803303002","method":"GET"}}},{"id":"5495351977316834703003","submitTimeUtc":"2019-02-07T10:26:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495351977316834703003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495351977316834703003","method":"GET"}}},{"id":"5495352459166850703004","submitTimeUtc":"2019-02-07T10:27:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495352459166850703004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495352459166850703004","method":"GET"}}},{"id":"5495353943786840303005","submitTimeUtc":"2019-02-07T10:29:54Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495353943786840303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495353943786840303005","method":"GET"}}},{"id":"5495375735936863103004","submitTimeUtc":"2019-02-07T11:06:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495375735936863103004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495375735936863103004","method":"GET"}}},{"id":"5496424976256414603001","submitTimeUtc":"2019-02-08T16:14:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5496424976256414603001","method":"GET"}}},{"id":"5498675776826871703002","submitTimeUtc":"2019-02-11T06:46:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498675776826871703002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498675776826871703002","method":"GET"}}},{"id":"5498689371686278103003","submitTimeUtc":"2019-02-11T07:08:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498689371686278103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498689371686278103003","method":"GET"}}},{"id":"5500338731966034504001","submitTimeUtc":"2019-02-13T04:57:53Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500338731966034504001","method":"GET"}}},{"id":"5500340288796036604001","submitTimeUtc":"2019-02-13T05:00:28Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500340288796036604001","method":"GET"}}},{"id":"5500431596766884904002","submitTimeUtc":"2019-02-13T07:32:39Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500431596766884904002","method":"GET"}}},{"id":"5500437054766214104001","submitTimeUtc":"2019-02-13T07:41:45Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500437054766214104001","method":"GET"}}},{"id":"5501219025486844803004","submitTimeUtc":"2019-02-14T05:25:02Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501219025486844803004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501219025486844803004","method":"GET"}}},{"id":"5501289951276934603004","submitTimeUtc":"2019-02-14T07:23:15Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501289951276934603004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501289951276934603004","method":"GET"}}},{"id":"5501373458936421203003","submitTimeUtc":"2019-02-14T09:42:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501373458936421203003","method":"GET"}}},{"id":"5501376636716307403002","submitTimeUtc":"2019-02-14T09:47:43Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501376636716307403002","method":"GET"}}},{"id":"5510721117946649203006","submitTimeUtc":"2019-02-25T05:21:51Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510721117946649203006","method":"GET"}}},{"id":"5510721851706959203004","submitTimeUtc":"2019-02-25T05:23:05Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510721851706959203004","method":"GET"}}},{"id":"5510723131456972003004","submitTimeUtc":"2019-02-25T05:25:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510723131456972003004","method":"GET"}}},{"id":"5510723667506096803002","submitTimeUtc":"2019-02-25T05:26:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510723667506096803002","method":"GET"}}},{"id":"5510753094246858203006","submitTimeUtc":"2019-02-25T06:15:09Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5510753094246858203006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510753094246858203006","method":"GET"}}},{"id":"5510761961806406103001","submitTimeUtc":"2019-02-25T06:29:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5510761961806406103001"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510761961806406103001","method":"GET"}}}]}} +2019-02-25 12:12:46.378 [main] INFO - Response Code: 201 +2019-02-25 12:12:46.378 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_4329de70-0075-45c6-8ec8-32b85c4efaf6 +X-OPNET-Transaction-Trace: a2_3597f8bb-80b2-4590-9892-f055deab0c16 +Cache-Control: no-cache, no-transform +ETag: "-1118886888" +Expires: Mon, 25 Feb 2019 06:42:46 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 25 Feb 2019 06:42:46 GMT +X-Cnection: close +v-c-correlation-id: 4ab6b719-c2cd-4931-844e-51fc5f013a4c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076965838 +OkHttp-Received-Millis: 1551076966361 + +2019-02-25 12:12:46.378 [main] INFO - ********* END *********: +2019-02-25 12:12:46.469 [main] INFO - ********* START ********* +2019-02-25 12:12:46.469 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:46.469 [main] INFO - Request Type: POST +2019-02-25 12:12:46.470 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-25 12:12:46.470 [main] INFO - Digest: SHA-256=MvPxo/GwSzPCnxUumNRkM4jYV4dEdR0iQ6mljgTLqrs= +2019-02-25 12:12:46.470 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:46.470 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:46.471 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:46.471 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="5qq87WqPETlfi/OmrOzd6wklXQGEmMClo4RogifDnAY=" +2019-02-25 12:12:46.471 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:46.727 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientRefeInfo.code:52465","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-25 12:12:46.727 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches"}},"invalidFields":{"name":"query","reasonMessage":"unsupported field"},"message":"Incorrectly formatted query string","messageKey":"INCORRECT_QUERY_STRING","missingFields":null} +2019-02-25 12:12:46.728 [main] INFO - Response Code: 400 +2019-02-25 12:12:46.728 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_53343bf5-556b-4cb5-b458-62c35c7fa729 +X-OPNET-Transaction-Trace: a2_c6abe56b-9650-4e2f-bf1e-94c1d2619ee6 +Cache-Control: no-cache, no-transform +ETag: "-652493791" +Expires: Mon, 25 Feb 2019 06:42:46 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 25 Feb 2019 06:42:46 GMT +X-Cnection: close +v-c-correlation-id: f7340a69-c9c4-4e24-8f41-9c882c71a9cb +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076966473 +OkHttp-Received-Millis: 1551076966721 + +2019-02-25 12:12:46.728 [main] INFO - ********* END *********: +2019-02-25 12:12:46.749 [main] INFO - ********* START ********* +2019-02-25 12:12:46.750 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:46.750 [main] INFO - Request Type: GET +2019-02-25 12:12:46.751 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/cf031711-465f-42cc-8275-2308f5ca0459, requestType=GET} +2019-02-25 12:12:46.751 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:46.751 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:46.752 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:46.752 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="TLkUfxTAzkPIQtsQBEEFoPEG/GXCzSnTHUtM0DxS33o=" +2019-02-25 12:12:46.752 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:47.233 [main] INFO - Request Body: null +2019-02-25 12:12:47.233 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/cf031711-465f-42cc-8275-2308f5ca0459","method":"GET"}},"searchId":"cf031711-465f-42cc-8275-2308f5ca0459","save":false,"name":"TSS search","query":"clientReferenceInformation.code:12345","count":64,"totalCount":64,"limit":100,"offset":0,"sort":"id:asc, submitTimeUtc:asc","timezone":"America/Chicago","submitTimeUtc":"2019-02-21T05:00:14Z","_embedded":{"transactionSummaries":[{"id":"5468475396886870703005","submitTimeUtc":"2019-01-07T07:52:19Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468475396886870703005","method":"GET"}}},{"id":"5468478041966220703004","submitTimeUtc":"2019-01-07T07:56:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468478041966220703004","method":"GET"}}},{"id":"5468480179436393003006","submitTimeUtc":"2019-01-07T08:00:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480179436393003006","method":"GET"}}},{"id":"5468480690446811803002","submitTimeUtc":"2019-01-07T08:01:09Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480690446811803002","method":"GET"}}},{"id":"5468485285666814803002","submitTimeUtc":"2019-01-07T08:08:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485285666814803002","method":"GET"}}},{"id":"5468485710916881003005","submitTimeUtc":"2019-01-07T08:09:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485710916881003005","method":"GET"}}},{"id":"5469521708616037903005","submitTimeUtc":"2019-01-08T12:56:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469521708616037903005","method":"GET"}}},{"id":"5469522883506039403005","submitTimeUtc":"2019-01-08T12:58:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469522883506039403005","method":"GET"}}},{"id":"5469524080436600903006","submitTimeUtc":"2019-01-08T13:00:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524080436600903006","method":"GET"}}},{"id":"5469524351696601103006","submitTimeUtc":"2019-01-08T13:00:35Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524351696601103006","method":"GET"}}},{"id":"5469525663736980803002","submitTimeUtc":"2019-01-08T13:02:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469525663736980803002","method":"GET"}}},{"id":"5469529727066047603005","submitTimeUtc":"2019-01-08T13:09:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469529727066047603005","method":"GET"}}},{"id":"5469535101246615503006","submitTimeUtc":"2019-01-08T13:18:30Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469535101246615503006","method":"GET"}}},{"id":"5469588461766085503005","submitTimeUtc":"2019-01-08T14:47:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469588461766085503005","method":"GET"}}},{"id":"5469589378676352103001","submitTimeUtc":"2019-01-08T14:48:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589378676352103001","method":"GET"}}},{"id":"5469589534636352203001","submitTimeUtc":"2019-01-08T14:49:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589534636352203001","method":"GET"}}},{"id":"5470167162946434803001","submitTimeUtc":"2019-01-09T06:51:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5470167162946434803001","method":"GET"}}},{"id":"5471404274096790203002","submitTimeUtc":"2019-01-10T17:13:47Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5471404274096790203002","method":"GET"}}},{"id":"5475240476326666304005","submitTimeUtc":"2019-01-15T03:47:27Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240476326666304005","method":"GET"}}},{"id":"5475240647986666504005","submitTimeUtc":"2019-01-15T03:47:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240647986666504005","method":"GET"}}},{"id":"5475240694246602504002","submitTimeUtc":"2019-01-15T03:47:49Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240694246602504002","method":"GET"}}},{"id":"5480449281766424303002","submitTimeUtc":"2019-01-21T04:28:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5480449281766424303002","method":"GET"}}},{"id":"5484294159526049603003","submitTimeUtc":"2019-01-25T15:16:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5484294159526049603003","method":"GET"}}},{"id":"5486140097596056803002","submitTimeUtc":"2019-01-27T18:33:29Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486140097596056803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486140097596056803002","method":"GET"}}},{"id":"5486143740386376403005","submitTimeUtc":"2019-01-27T18:39:34Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486143740386376403005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486143740386376403005","method":"GET"}}},{"id":"5486146109726057203002","submitTimeUtc":"2019-01-27T18:43:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486146109726057203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486146109726057203002","method":"GET"}}},{"id":"5486149568856057803002","submitTimeUtc":"2019-01-27T18:49:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486149568856057803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486149568856057803002","method":"GET"}}},{"id":"5486150058926377303005","submitTimeUtc":"2019-01-27T18:50:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150058926377303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150058926377303005","method":"GET"}}},{"id":"5486150718046057903002","submitTimeUtc":"2019-01-27T18:51:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150718046057903002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150718046057903002","method":"GET"}}},{"id":"5486151464616710103006","submitTimeUtc":"2019-01-27T18:52:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486151464616710103006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486151464616710103006","method":"GET"}}},{"id":"5486152183786377503005","submitTimeUtc":"2019-01-27T18:53:38Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486152183786377503005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486152183786377503005","method":"GET"}}},{"id":"5486154059186996103003","submitTimeUtc":"2019-01-27T18:56:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486154059186996103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486154059186996103003","method":"GET"}}},{"id":"5486156635686378003005","submitTimeUtc":"2019-01-27T19:01:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486156635686378003005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486156635686378003005","method":"GET"}}},{"id":"5486157519836378103005","submitTimeUtc":"2019-01-27T19:02:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486157519836378103005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486157519836378103005","method":"GET"}}},{"id":"5486159910726712503006","submitTimeUtc":"2019-01-27T19:06:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486159910726712503006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486159910726712503006","method":"GET"}}},{"id":"5486160598666060203002","submitTimeUtc":"2019-01-27T19:07:40Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486160598666060203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486160598666060203002","method":"GET"}}},{"id":"5488539943826733503004","submitTimeUtc":"2019-01-30T13:13:14Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5488539943826733503004","method":"GET"}}},{"id":"5492626323766108104003","submitTimeUtc":"2019-02-04T06:43:52Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5492626323766108104003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5492626323766108104003","method":"GET"}}},{"id":"5493718508496900303005","submitTimeUtc":"2019-02-05T13:04:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718508496900303005","method":"GET"}}},{"id":"5493718987966748103006","submitTimeUtc":"2019-02-05T13:04:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718987966748103006","method":"GET"}}},{"id":"5495325909106773503001","submitTimeUtc":"2019-02-07T09:43:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495325909106773503001"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495325909106773503001","method":"GET"}}},{"id":"5495326432436411603006","submitTimeUtc":"2019-02-07T09:44:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495326432436411603006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495326432436411603006","method":"GET"}}},{"id":"5495345378096803303002","submitTimeUtc":"2019-02-07T10:15:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495345378096803303002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495345378096803303002","method":"GET"}}},{"id":"5495351977316834703003","submitTimeUtc":"2019-02-07T10:26:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495351977316834703003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495351977316834703003","method":"GET"}}},{"id":"5495352459166850703004","submitTimeUtc":"2019-02-07T10:27:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495352459166850703004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495352459166850703004","method":"GET"}}},{"id":"5495353943786840303005","submitTimeUtc":"2019-02-07T10:29:54Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495353943786840303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495353943786840303005","method":"GET"}}},{"id":"5495375735936863103004","submitTimeUtc":"2019-02-07T11:06:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495375735936863103004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495375735936863103004","method":"GET"}}},{"id":"5496424976256414603001","submitTimeUtc":"2019-02-08T16:14:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5496424976256414603001","method":"GET"}}},{"id":"5498675776826871703002","submitTimeUtc":"2019-02-11T06:46:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498675776826871703002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498675776826871703002","method":"GET"}}},{"id":"5498689371686278103003","submitTimeUtc":"2019-02-11T07:08:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498689371686278103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498689371686278103003","method":"GET"}}},{"id":"5500338731966034504001","submitTimeUtc":"2019-02-13T04:57:53Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500338731966034504001","method":"GET"}}},{"id":"5500340288796036604001","submitTimeUtc":"2019-02-13T05:00:28Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500340288796036604001","method":"GET"}}},{"id":"5500431596766884904002","submitTimeUtc":"2019-02-13T07:32:39Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500431596766884904002","method":"GET"}}},{"id":"5500437054766214104001","submitTimeUtc":"2019-02-13T07:41:45Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500437054766214104001","method":"GET"}}},{"id":"5501219025486844803004","submitTimeUtc":"2019-02-14T05:25:02Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501219025486844803004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501219025486844803004","method":"GET"}}},{"id":"5501289951276934603004","submitTimeUtc":"2019-02-14T07:23:15Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501289951276934603004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501289951276934603004","method":"GET"}}},{"id":"5501373458936421203003","submitTimeUtc":"2019-02-14T09:42:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501373458936421203003","method":"GET"}}},{"id":"5501376636716307403002","submitTimeUtc":"2019-02-14T09:47:43Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501376636716307403002","method":"GET"}}},{"id":"5510721117946649203006","submitTimeUtc":"2019-02-25T05:21:51Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510721117946649203006","method":"GET"}}},{"id":"5510721851706959203004","submitTimeUtc":"2019-02-25T05:23:05Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510721851706959203004","method":"GET"}}},{"id":"5510723131456972003004","submitTimeUtc":"2019-02-25T05:25:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510723131456972003004","method":"GET"}}},{"id":"5510723667506096803002","submitTimeUtc":"2019-02-25T05:26:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510723667506096803002","method":"GET"}}},{"id":"5510753094246858203006","submitTimeUtc":"2019-02-25T06:15:09Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5510753094246858203006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510753094246858203006","method":"GET"}}},{"id":"5510761961806406103001","submitTimeUtc":"2019-02-25T06:29:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5510761961806406103001"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510761961806406103001","method":"GET"}}}]}} +2019-02-25 12:12:47.237 [main] INFO - Response Code: 200 +2019-02-25 12:12:47.237 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e3d930c2-38cf-48b4-b7de-78e675e8f6de +Cache-Control: no-cache, no-transform +ETag: "-756485979" +Expires: Mon, 25 Feb 2019 06:42:47 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 25 Feb 2019 06:42:47 GMT +X-Cnection: close +v-c-correlation-id: 44a84e99-f9e9-49e6-92de-3f9b06d35d6b +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076966754 +OkHttp-Received-Millis: 1551076967222 + +2019-02-25 12:12:47.237 [main] INFO - ********* END *********: +2019-02-25 12:12:47.261 [main] INFO - ********* START ********* +2019-02-25 12:12:47.261 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:47.261 [main] INFO - Request Type: GET +2019-02-25 12:12:47.262 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc, requestType=GET} +2019-02-25 12:12:47.262 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:47.262 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:47.263 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:47.263 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ruHNLF4pYIwHM3VDSpaZJ2uXkwHBTVBjNnIUfuoV7Tc=" +2019-02-25 12:12:47.263 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:47.474 [main] INFO - Request Body: null +2019-02-25 12:12:47.475 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc"}},"invalidFields":null,"message":"search Id not fount.","messageKey":null,"missingFields":null} +2019-02-25 12:12:47.475 [main] INFO - Response Code: 400 +2019-02-25 12:12:47.476 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b2ef1ad0-4761-4f68-b9ef-858b293b4b6c +Cache-Control: no-cache, no-transform +ETag: "-1662750822" +Expires: Mon, 25 Feb 2019 06:42:47 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 25 Feb 2019 06:42:47 GMT +X-Cnection: close +v-c-correlation-id: 1810041a-2c28-454a-806f-26e11b90d117 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076967264 +OkHttp-Received-Millis: 1551076967472 + +2019-02-25 12:12:47.476 [main] INFO - ********* END *********: +2019-02-25 12:12:47.498 [main] INFO - ********* START ********* +2019-02-25 12:12:47.499 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:47.499 [main] INFO - Request Type: GET +2019-02-25 12:12:47.500 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-25 12:12:47.500 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:47.500 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:47.501 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:47.501 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="28aCZnRPKO/bQ7bNigpOejKuzv5c74XaBTmKj++wAuM=" +2019-02-25 12:12:47.501 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:47.771 [main] INFO - Request Body: null +2019-02-25 12:12:47.771 [main] INFO - Response Message: {"users":[{"accountInformation":{"userName":"testrest","roleId":"admin","permissions":["CustomerProfileViewPermission","CustomerProfileDeletePermission","CustomerProfileManagementPermission","CustomerProfileTransactionPermission","SubscriptionViewPermission","SubscriptionDeletePermission","SubscriptionManagementPermission","SubscriptionTransactionPermission","VirtualTerminalSettingsViewPermission","VirtualTerminalSettingsManagementPermission","VirtualTerminalTransactionPermission","PaymentVerificationPermission","PaymentDebitPermission","PaymentCreditPermission","PaymentStandAloneCreditPermission","PaymentServiceFeeRefundPermission","PaymentCancellationPermission","ReportSettingsViewPermission","ReportSettingsManagementPermission","ReportViewPermission","ReportDownloadPermission","ELCViewPermission","ELCReturnPermission","ELCResetPermission","DMConfigurationManagementPermission","DMProfileManagementPermission","DMProfileViewPermission","DMListManagementPermission","DMListViewPermission","DMVelocityManagementPermission","DMVelocityViewPermission","DMQueueSettingsManagementPermission","DMQueueSettingsViewPermission","DMReplayRequestManagementPermission","DMReplayRequestViewPermission","CMQueueSearchPermission","CMConvertOrderPermission","CMQueueAssignmentPermission","CMReleaseOwnershipPermission","CMReviewAnyOrderPermission","CMCaseAssignmentPermission","CMPriorityChangePermission","CMMoveOrdersToOtherQueuePermission","CMThirdPartyConfigurationPermission","CMPerformanceStatisticsReviewPermission","CMTimeLimitResetPermission","CMUnrestrictedOrderManagementPermission","CMConvertRejectedOrdersPermission","CMStealOwnershipPermission","CMCaseSLAExemptionPermission","CMThirdPartyRequestsPermission","UserViewPermission","UserUpdatePermission","UserManagementPermission","BankingInformationManagementPermission","MerchantInformationManagementPermission","APIKeyManagementPermission","MessageCenterViewPermission","HOPScriptManagementPermission","HOPSettingsViewPermission","HOPSettingsManagementPermission","HPASecurityManagementPermission","HPASettingsViewPermission","HPASettingsManagementPermission","HPATransactionSearchPermission","TransactionViewPermission","MarkAsTrustedPermission","MarkAsTemporarilyTrustedPermission","MarkAsSuspectPermission","MarkForReviewPermission","RemoveFromHistoryPermission","AccountNumberViewPermission","BatchUploadPermission","ReauthorizePermission","ReauthorizeSettlePermission","NewOrderFromAuthPermission","FullAuthorizationReversalPermission","AUStatusPermission","AUPgpUploadPermission","CbkMgmtAssignChargebackPermission","CbkMgmtViewChargebackPermission","CbkMgmtAcceptAndRebuttalChargebackPermission","CbkMgmtTakeOwnershipPermission","AuditSearchPermission","TransactionSearchExportPermission","CbkMgmtReturnChargebackToQueuePermission","BeneficiaryDetailsViewPermission","BeneficiaryDetailsUpdatePermission","IpConfigurationPermission","SecureFileDownloadPermission","SecureFileUploadPermission","ServiceFeeSettingsViewPermission","ServiceFeeSettingsManagementPermission","MposDeviceManagementPermission","MposDeviceAccessPermission","MposDeviceTIDManagementPermission","PayoutsVirtualTerminalPermission","PayoutsVirtualTerminalSettingsViewPermission","PayoutsVirtualTerminalSettingsManagementPermission","TerminalManagementPermission","ProcessorSettingsPermission","PortfolioRiskControlsViewPermission","PortfolioRiskControlsManagementPermission","MerchantRiskControlsViewPermission","MerchantRiskControlsManagementPermission","KeysManagementPermission","KeysViewPermission","DigitalPaymentsViewPermission","DigitalPaymentsManagementPermission","PayerAuthConfigurationViewPermission","PayerAuthConfigurationManagementPermission","SmartAuthSettingsViewPermission","SmartAuthSettingsManagementPermission","GroupsViewPermission","GroupsManagementPermission","IpSettingsViewPermission","IpSettingsManagementPermission","MerchantBoardingViewPermission","MerchantBoardingManagementPermission","TokenDashboardViewPermission","TokenDashboardManagementPermission","TerminalListViewPermission","MposDeviceViewPermission","ReaderStatusPanelViewPermission","ReaderStatusPanelManagementPermission"],"status":"active","createdTime":"2017-11-17T22:38:06.000Z","lastAccessTime":"2019-02-25T06:00:11.000Z","languagePreference":"","timezone":""},"organizationInformation":{"organizationId":"testrest"},"contactInformation":{"email":"glondhe@visa.com","phoneNumber":"","firstName":"gaurav","lastName":"londhe"},"customFields":{}}]} +2019-02-25 12:12:47.772 [main] INFO - Response Code: 200 +2019-02-25 12:12:47.772 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_6b5f773e-5059-406a-a333-5d74edc898a9 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:47 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d07bd44c-995e-4a49-89d5-019cd7107b5d +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076967506 +OkHttp-Received-Millis: 1551076967768 + +2019-02-25 12:12:47.773 [main] INFO - ********* END *********: +2019-02-25 12:12:47.804 [main] INFO - ********* START ********* +2019-02-25 12:12:47.804 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:47.804 [main] INFO - Request Type: GET +2019-02-25 12:12:47.804 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testre&roleId=admin, requestType=GET} +2019-02-25 12:12:47.805 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:47.805 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:47.805 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:47.806 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="UHULPG+8vA0zry54z9yGKhA32jsFqlMxp2L79s7LbJY=" +2019-02-25 12:12:47.806 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:48.027 [main] INFO - Request Body: null +2019-02-25 12:12:48.028 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-25 12:12:48.028 [main] INFO - Response Code: 401 +2019-02-25 12:12:48.028 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b3a2291d-5f7d-4b58-abe1-f1acabbe5cfa +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:47 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 70906191-c06f-48a0-bd1c-051012aeea9c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076967806 +OkHttp-Received-Millis: 1551076968027 + +2019-02-25 12:12:48.028 [main] INFO - ********* END *********: +2019-02-25 12:12:48.053 [main] INFO - ********* START ********* +2019-02-25 12:12:48.053 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:48.053 [main] INFO - Request Type: GET +2019-02-25 12:12:48.053 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest, requestType=GET} +2019-02-25 12:12:48.054 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:48.054 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:48.054 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:48.054 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="JsBaFdUEiSUHzdtSA0QZeYTnMZxK3XzqYJmPpdjmpNw=" +2019-02-25 12:12:48.054 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:48.668 [main] INFO - Request Body: null +2019-02-25 12:12:48.669 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest","method":"GET"},"files":[{"fileId":"RGVtb19SZXBvcnQtNzg1NWQxM2YtOTM5Ny01MTEzLWUwNTMtYTI1ODhlMGE3MTkyLnhtbC0yMDE4LTEwLTIw","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzg1NWQxM2YtOTM5Ny01MTEzLWUwNTMtYTI1ODhlMGE3MTkyLnhtbC0yMDE4LTEwLTIw","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMA==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMA==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4NTZhMzQ5LTZmMjQtNTEwZi1lMDUzLWEyNTg4ZTBhZWQxYi5jc3YtMjAxOC0xMC0yMQ==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4NTZhMzQ5LTZmMjQtNTEwZi1lMDUzLWEyNTg4ZTBhZWQxYi5jc3YtMjAxOC0xMC0yMQ==","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzg1NmEzNDktNmYyMy01MTBmLWUwNTMtYTI1ODhlMGFlZDFiLnhtbC0yMDE4LTEwLTIx","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzg1NmEzNDktNmYyMy01MTBmLWUwNTMtYTI1ODhlMGFlZDFiLnhtbC0yMDE4LTEwLTIx","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMQ==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMQ==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4Y2MwNWI2LWRjYTAtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yMg==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4Y2MwNWI2LWRjYTAtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yMg==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzhjYzA1YjYtZGM5Zi01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTIy","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzhjYzA1YjYtZGM5Zi01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTIy","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMg==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMg==","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4N2FiNjRlLTA0ODEtNTEzNS1lMDUzLWEyNTg4ZTBhMDExMC5jc3YtMjAxOC0xMC0yMw==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4N2FiNjRlLTA0ODEtNTEzNS1lMDUzLWEyNTg4ZTBhMDExMC5jc3YtMjAxOC0xMC0yMw==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzg3YWI2NGUtMDQ4MC01MTM1LWUwNTMtYTI1ODhlMGEwMTEwLnhtbC0yMDE4LTEwLTIz","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzg3YWI2NGUtMDQ4MC01MTM1LWUwNTMtYTI1ODhlMGEwMTEwLnhtbC0yMDE4LTEwLTIz","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMw==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMw==","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzhjYzA1YjYtZGVmZS01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTI0","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzhjYzA1YjYtZGVmZS01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTI0","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4Y2MwNWI2LWRlZmYtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yNA==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4Y2MwNWI2LWRlZmYtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yNA==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNA==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNA==","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkwOGJiYjQtMmQ2MS01OGQxLWUwNTMtYTI1ODhlMGFlOTJiLnhtbC0yMDE4LTEwLTI1","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkwOGJiYjQtMmQ2MS01OGQxLWUwNTMtYTI1ODhlMGFlOTJiLnhtbC0yMDE4LTEwLTI1","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc5MDhiYmI0LTJkNjItNThkMS1lMDUzLWEyNTg4ZTBhZTkyYi5jc3YtMjAxOC0xMC0yNQ==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc5MDhiYmI0LTJkNjItNThkMS1lMDUzLWEyNTg4ZTBhZTkyYi5jc3YtMjAxOC0xMC0yNQ==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNQ==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNQ==","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc5MWRjMGJlLWRkMmEtNzIwYS1lMDUzLWEyNTg4ZTBhZGQ3Yi5jc3YtMjAxOC0xMC0yNg==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc5MWRjMGJlLWRkMmEtNzIwYS1lMDUzLWEyNTg4ZTBhZGQ3Yi5jc3YtMjAxOC0xMC0yNg==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkxZGMwYmUtZGQyOS03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI2","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkxZGMwYmUtZGQyOS03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI2","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNg==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNg==","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc5MzFkODJkLWNmNGEtNzFmYS1lMDUzLWEyNTg4ZTBhYjI3YS5jc3YtMjAxOC0xMC0yNw==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc5MzFkODJkLWNmNGEtNzFmYS1lMDUzLWEyNTg4ZTBhYjI3YS5jc3YtMjAxOC0xMC0yNw==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkzMWQ4MmQtY2Y0OS03MWZhLWUwNTMtYTI1ODhlMGFiMjdhLnhtbC0yMDE4LTEwLTI3","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkzMWQ4MmQtY2Y0OS03MWZhLWUwNTMtYTI1ODhlMGFiMjdhLnhtbC0yMDE4LTEwLTI3","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNw==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNw==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkzMzdjYmItY2YyMi03MjAyLWUwNTMtYTI1ODhlMGFhYzA5LnhtbC0yMDE4LTEwLTI4","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkzMzdjYmItY2YyMi03MjAyLWUwNTMtYTI1ODhlMGFhYzA5LnhtbC0yMDE4LTEwLTI4","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc5MzM3Y2JiLWNmMjMtNzIwMi1lMDUzLWEyNTg4ZTBhYWMwOS5jc3YtMjAxOC0xMC0yOA==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc5MzM3Y2JiLWNmMjMtNzIwMi1lMDUzLWEyNTg4ZTBhYWMwOS5jc3YtMjAxOC0xMC0yOA==","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOA==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOA==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","method":"GET"},{"fileId":"dGVzdHJlc3QuT3djeWs2cGwucmVwbHkuYWxsLmNzdi0yMDE4LTEwLTI5","href":"https://apitest.cybersource.com/sfs/v1/files/dGVzdHJlc3QuT3djeWs2cGwucmVwbHkuYWxsLmNzdi0yMDE4LTEwLTI5","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkxZGMwYmYtYTUxMy03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI5","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkxZGMwYmYtYTUxMy03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI5","method":"GET"},{"fileId":"dGVzdHJlc3QuT3djeWs2cGwucmVwbHkucmVqZWN0ZWQuY3N2LTIwMTgtMTAtMjk=","href":"https://apitest.cybersource.com/sfs/v1/files/dGVzdHJlc3QuT3djeWs2cGwucmVwbHkucmVqZWN0ZWQuY3N2LTIwMTgtMTAtMjk=","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOQ==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOQ==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0zMA==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0zMA==","method":"GET"}]},"fileDetails":[{"fileId":"RGVtb19SZXBvcnQtNzg1NWQxM2YtOTM5Ny01MTEzLWUwNTMtYTI1ODhlMGE3MTkyLnhtbC0yMDE4LTEwLTIw","name":"Demo_Report-7855d13f-9397-5113-e053-a2588e0a7192.xml","createdTime":"2018-10-20T17:31:36Z","lastModifiedTime":"2018-10-20T17:31:36Z","date":"2018-10-20","mimeType":"application/xml","size":3248},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-21T08:54:56Z","lastModifiedTime":"2018-10-21T08:54:56Z","date":"2018-10-20","mimeType":"text/csv","size":636},{"fileId":"VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA==","name":"TRRReport-7855d13f-9398-5113-e053-a2588e0a7192.csv","createdTime":"2018-10-20T17:31:36Z","lastModifiedTime":"2018-10-20T17:31:36Z","date":"2018-10-20","mimeType":"text/csv","size":1696},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","name":"TransactionDetailReport.csv","createdTime":"2018-10-21T09:06:01Z","lastModifiedTime":"2018-10-21T09:06:01Z","date":"2018-10-20","mimeType":"text/csv","size":2149},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-21T10:39:46Z","lastModifiedTime":"2018-10-21T10:39:46Z","date":"2018-10-20","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMA==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-21T10:56:31Z","lastModifiedTime":"2018-10-21T10:56:31Z","date":"2018-10-20","mimeType":"text/csv","size":184},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","name":"TransactionDetailReport.csv","createdTime":"2018-10-22T09:08:33Z","lastModifiedTime":"2018-10-22T09:08:33Z","date":"2018-10-21","mimeType":"text/csv","size":2149},{"fileId":"VFJSUmVwb3J0LTc4NTZhMzQ5LTZmMjQtNTEwZi1lMDUzLWEyNTg4ZTBhZWQxYi5jc3YtMjAxOC0xMC0yMQ==","name":"TRRReport-7856a349-6f24-510f-e053-a2588e0aed1b.csv","createdTime":"2018-10-21T17:30:41Z","lastModifiedTime":"2018-10-21T17:30:41Z","date":"2018-10-21","mimeType":"text/csv","size":153},{"fileId":"RGVtb19SZXBvcnQtNzg1NmEzNDktNmYyMy01MTBmLWUwNTMtYTI1ODhlMGFlZDFiLnhtbC0yMDE4LTEwLTIx","name":"Demo_Report-7856a349-6f23-510f-e053-a2588e0aed1b.xml","createdTime":"2018-10-21T17:30:41Z","lastModifiedTime":"2018-10-21T17:30:41Z","date":"2018-10-21","mimeType":"application/xml","size":461},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-22T08:53:03Z","lastModifiedTime":"2018-10-22T08:53:03Z","date":"2018-10-21","mimeType":"text/csv","size":213},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMQ==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-22T10:55:08Z","lastModifiedTime":"2018-10-22T10:55:08Z","date":"2018-10-21","mimeType":"text/csv","size":184},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-22T10:38:53Z","lastModifiedTime":"2018-10-22T10:38:53Z","date":"2018-10-21","mimeType":"text/csv","size":781},{"fileId":"VFJSUmVwb3J0LTc4Y2MwNWI2LWRjYTAtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yMg==","name":"TRRReport-78cc05b6-dca0-5102-e053-a2588e0a3aa9.csv","createdTime":"2018-10-22T17:33:46Z","lastModifiedTime":"2018-10-22T17:33:46Z","date":"2018-10-22","mimeType":"text/csv","size":20255},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-23T09:06:11Z","lastModifiedTime":"2018-10-23T09:06:11Z","date":"2018-10-22","mimeType":"text/csv","size":4208},{"fileId":"RGVtb19SZXBvcnQtNzhjYzA1YjYtZGM5Zi01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTIy","name":"Demo_Report-78cc05b6-dc9f-5102-e053-a2588e0a3aa9.xml","createdTime":"2018-10-22T17:33:46Z","lastModifiedTime":"2018-10-22T17:33:46Z","date":"2018-10-22","mimeType":"application/xml","size":35844},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","name":"TransactionDetailReport.csv","createdTime":"2018-10-23T09:32:46Z","lastModifiedTime":"2018-10-23T09:32:46Z","date":"2018-10-22","mimeType":"text/csv","size":221387},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-23T10:56:26Z","lastModifiedTime":"2018-10-23T10:56:26Z","date":"2018-10-22","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMg==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-23T11:13:16Z","lastModifiedTime":"2018-10-23T11:13:16Z","date":"2018-10-22","mimeType":"text/csv","size":184},{"fileId":"VFJSUmVwb3J0LTc4N2FiNjRlLTA0ODEtNTEzNS1lMDUzLWEyNTg4ZTBhMDExMC5jc3YtMjAxOC0xMC0yMw==","name":"TRRReport-787ab64e-0481-5135-e053-a2588e0a0110.csv","createdTime":"2018-10-23T17:32:01Z","lastModifiedTime":"2018-10-23T17:32:01Z","date":"2018-10-23","mimeType":"text/csv","size":72824},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-24T09:03:32Z","lastModifiedTime":"2018-10-24T09:03:32Z","date":"2018-10-23","mimeType":"text/csv","size":18379},{"fileId":"RGVtb19SZXBvcnQtNzg3YWI2NGUtMDQ4MC01MTM1LWUwNTMtYTI1ODhlMGEwMTEwLnhtbC0yMDE4LTEwLTIz","name":"Demo_Report-787ab64e-0480-5135-e053-a2588e0a0110.xml","createdTime":"2018-10-23T17:32:01Z","lastModifiedTime":"2018-10-23T17:32:01Z","date":"2018-10-23","mimeType":"application/xml","size":129108},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","name":"TransactionDetailReport.csv","createdTime":"2018-10-24T09:23:42Z","lastModifiedTime":"2018-10-24T09:23:42Z","date":"2018-10-23","mimeType":"text/csv","size":262829},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-24T10:47:33Z","lastModifiedTime":"2018-10-24T10:47:33Z","date":"2018-10-23","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMw==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-24T11:03:18Z","lastModifiedTime":"2018-10-24T11:03:18Z","date":"2018-10-23","mimeType":"text/csv","size":184},{"fileId":"RGVtb19SZXBvcnQtNzhjYzA1YjYtZGVmZS01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTI0","name":"Demo_Report-78cc05b6-defe-5102-e053-a2588e0a3aa9.xml","createdTime":"2018-10-24T17:34:39Z","lastModifiedTime":"2018-10-24T17:34:39Z","date":"2018-10-24","mimeType":"application/xml","size":86420},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-25T08:56:09Z","lastModifiedTime":"2018-10-25T08:56:09Z","date":"2018-10-24","mimeType":"text/csv","size":9411},{"fileId":"VFJSUmVwb3J0LTc4Y2MwNWI2LWRlZmYtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yNA==","name":"TRRReport-78cc05b6-deff-5102-e053-a2588e0a3aa9.csv","createdTime":"2018-10-24T17:34:44Z","lastModifiedTime":"2018-10-24T17:34:44Z","date":"2018-10-24","mimeType":"text/csv","size":48913},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","name":"TransactionDetailReport.csv","createdTime":"2018-10-25T09:18:24Z","lastModifiedTime":"2018-10-25T09:18:24Z","date":"2018-10-24","mimeType":"text/csv","size":244813},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-25T10:38:34Z","lastModifiedTime":"2018-10-25T10:38:34Z","date":"2018-10-24","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNA==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-25T10:53:49Z","lastModifiedTime":"2018-10-25T10:53:49Z","date":"2018-10-24","mimeType":"text/csv","size":184},{"fileId":"RGVtb19SZXBvcnQtNzkwOGJiYjQtMmQ2MS01OGQxLWUwNTMtYTI1ODhlMGFlOTJiLnhtbC0yMDE4LTEwLTI1","name":"Demo_Report-7908bbb4-2d61-58d1-e053-a2588e0ae92b.xml","createdTime":"2018-10-25T17:35:14Z","lastModifiedTime":"2018-10-25T17:35:14Z","date":"2018-10-25","mimeType":"application/xml","size":63336},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-26T09:01:48Z","lastModifiedTime":"2018-10-26T09:01:48Z","date":"2018-10-25","mimeType":"text/csv","size":21068},{"fileId":"VFJSUmVwb3J0LTc5MDhiYmI0LTJkNjItNThkMS1lMDUzLWEyNTg4ZTBhZTkyYi5jc3YtMjAxOC0xMC0yNQ==","name":"TRRReport-7908bbb4-2d62-58d1-e053-a2588e0ae92b.csv","createdTime":"2018-10-25T17:35:14Z","lastModifiedTime":"2018-10-25T17:35:14Z","date":"2018-10-25","mimeType":"text/csv","size":37260},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","name":"TransactionDetailReport.csv","createdTime":"2018-10-26T09:17:38Z","lastModifiedTime":"2018-10-26T09:17:38Z","date":"2018-10-25","mimeType":"text/csv","size":196149},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-26T10:45:53Z","lastModifiedTime":"2018-10-26T10:45:53Z","date":"2018-10-25","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNQ==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-26T11:01:28Z","lastModifiedTime":"2018-10-26T11:01:28Z","date":"2018-10-25","mimeType":"text/csv","size":184},{"fileId":"VFJSUmVwb3J0LTc5MWRjMGJlLWRkMmEtNzIwYS1lMDUzLWEyNTg4ZTBhZGQ3Yi5jc3YtMjAxOC0xMC0yNg==","name":"TRRReport-791dc0be-dd2a-720a-e053-a2588e0add7b.csv","createdTime":"2018-10-26T17:31:54Z","lastModifiedTime":"2018-10-26T17:31:54Z","date":"2018-10-26","mimeType":"text/csv","size":21634},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-27T09:09:59Z","lastModifiedTime":"2018-10-27T09:09:59Z","date":"2018-10-26","mimeType":"text/csv","size":25586},{"fileId":"RGVtb19SZXBvcnQtNzkxZGMwYmUtZGQyOS03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI2","name":"Demo_Report-791dc0be-dd29-720a-e053-a2588e0add7b.xml","createdTime":"2018-10-26T17:31:54Z","lastModifiedTime":"2018-10-26T17:31:54Z","date":"2018-10-26","mimeType":"application/xml","size":37584},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","name":"TransactionDetailReport.csv","createdTime":"2018-10-27T09:19:10Z","lastModifiedTime":"2018-10-27T09:19:10Z","date":"2018-10-26","mimeType":"text/csv","size":144149},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-27T11:08:00Z","lastModifiedTime":"2018-10-27T11:08:00Z","date":"2018-10-26","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNg==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-27T11:26:55Z","lastModifiedTime":"2018-10-27T11:26:55Z","date":"2018-10-26","mimeType":"text/csv","size":184},{"fileId":"VFJSUmVwb3J0LTc5MzFkODJkLWNmNGEtNzFmYS1lMDUzLWEyNTg4ZTBhYjI3YS5jc3YtMjAxOC0xMC0yNw==","name":"TRRReport-7931d82d-cf4a-71fa-e053-a2588e0ab27a.csv","createdTime":"2018-10-27T17:35:11Z","lastModifiedTime":"2018-10-27T17:35:11Z","date":"2018-10-27","mimeType":"text/csv","size":14120},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","name":"TransactionDetailReport.csv","createdTime":"2018-10-28T09:13:03Z","lastModifiedTime":"2018-10-28T09:13:03Z","date":"2018-10-27","mimeType":"text/csv","size":24269},{"fileId":"RGVtb19SZXBvcnQtNzkzMWQ4MmQtY2Y0OS03MWZhLWUwNTMtYTI1ODhlMGFiMjdhLnhtbC0yMDE4LTEwLTI3","name":"Demo_Report-7931d82d-cf49-71fa-e053-a2588e0ab27a.xml","createdTime":"2018-10-27T17:35:11Z","lastModifiedTime":"2018-10-27T17:35:11Z","date":"2018-10-27","mimeType":"application/xml","size":24360},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-28T09:17:18Z","lastModifiedTime":"2018-10-28T09:17:18Z","date":"2018-10-27","mimeType":"text/csv","size":18700},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-28T11:09:43Z","lastModifiedTime":"2018-10-28T11:09:43Z","date":"2018-10-27","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNw==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-28T11:29:43Z","lastModifiedTime":"2018-10-28T11:29:43Z","date":"2018-10-27","mimeType":"text/csv","size":184},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","name":"TransactionDetailReport.csv","createdTime":"2018-10-29T09:11:31Z","lastModifiedTime":"2018-10-29T09:11:31Z","date":"2018-10-28","mimeType":"text/csv","size":5296},{"fileId":"RGVtb19SZXBvcnQtNzkzMzdjYmItY2YyMi03MjAyLWUwNTMtYTI1ODhlMGFhYzA5LnhtbC0yMDE4LTEwLTI4","name":"Demo_Report-79337cbb-cf22-7202-e053-a2588e0aac09.xml","createdTime":"2018-10-28T17:35:19Z","lastModifiedTime":"2018-10-28T17:35:19Z","date":"2018-10-28","mimeType":"application/xml","size":696},{"fileId":"VFJSUmVwb3J0LTc5MzM3Y2JiLWNmMjMtNzIwMi1lMDUzLWEyNTg4ZTBhYWMwOS5jc3YtMjAxOC0xMC0yOA==","name":"TRRReport-79337cbb-cf23-7202-e053-a2588e0aac09.csv","createdTime":"2018-10-28T17:35:24Z","lastModifiedTime":"2018-10-28T17:35:24Z","date":"2018-10-28","mimeType":"text/csv","size":279},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOA==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-29T11:27:31Z","lastModifiedTime":"2018-10-29T11:27:31Z","date":"2018-10-28","mimeType":"text/csv","size":184},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-29T09:11:56Z","lastModifiedTime":"2018-10-29T09:11:56Z","date":"2018-10-28","mimeType":"text/csv","size":1254},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-29T11:07:51Z","lastModifiedTime":"2018-10-29T11:07:51Z","date":"2018-10-28","mimeType":"text/csv","size":781},{"fileId":"dGVzdHJlc3QuT3djeWs2cGwucmVwbHkuYWxsLmNzdi0yMDE4LTEwLTI5","name":"testrest.Owcyk6pl.reply.all.csv","createdTime":"2018-10-29T23:26:48Z","lastModifiedTime":"2018-10-29T23:26:48Z","date":"2018-10-29","mimeType":"text/csv","size":512},{"fileId":"RGVtb19SZXBvcnQtNzkxZGMwYmYtYTUxMy03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI5","name":"Demo_Report-791dc0bf-a513-720a-e053-a2588e0add7b.xml","createdTime":"2018-10-29T17:31:08Z","lastModifiedTime":"2018-10-29T17:31:08Z","date":"2018-10-29","mimeType":"application/xml","size":29116},{"fileId":"dGVzdHJlc3QuT3djeWs2cGwucmVwbHkucmVqZWN0ZWQuY3N2LTIwMTgtMTAtMjk=","name":"testrest.Owcyk6pl.reply.rejected.csv","createdTime":"2018-10-29T23:26:48Z","lastModifiedTime":"2018-10-29T23:26:48Z","date":"2018-10-29","mimeType":"text/csv","size":512},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-30T09:14:14Z","lastModifiedTime":"2018-10-30T09:14:14Z","date":"2018-10-29","mimeType":"text/csv","size":4947},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","name":"TransactionDetailReport.csv","createdTime":"2018-10-30T09:19:49Z","lastModifiedTime":"2018-10-30T09:19:49Z","date":"2018-10-29","mimeType":"text/csv","size":90632},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-30T11:13:24Z","lastModifiedTime":"2018-10-30T11:13:24Z","date":"2018-10-29","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOQ==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-30T11:33:09Z","lastModifiedTime":"2018-10-30T11:33:09Z","date":"2018-10-29","mimeType":"text/csv","size":184},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-31T09:14:12Z","lastModifiedTime":"2018-10-31T09:14:12Z","date":"2018-10-30","mimeType":"text/csv","size":11967},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","name":"TransactionDetailReport.csv","createdTime":"2018-10-31T09:20:02Z","lastModifiedTime":"2018-10-31T09:20:02Z","date":"2018-10-30","mimeType":"text/csv","size":93034},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-31T11:16:13Z","lastModifiedTime":"2018-10-31T11:16:13Z","date":"2018-10-30","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0zMA==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-31T11:45:03Z","lastModifiedTime":"2018-10-31T11:45:03Z","date":"2018-10-30","mimeType":"text/csv","size":184}]} +2019-02-25 12:12:48.670 [main] INFO - Response Code: 200 +2019-02-25 12:12:48.670 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e5925794-6d4f-46b6-ab3d-8f824ef23ea9 +Cache-Control: no-cache, no-transform +ETag: "661818226-gzip" +Expires: Mon, 25 Feb 2019 06:42:48 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:48 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d20f7432-37e8-4aca-a20e-6c4bbc95174c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076968059 +OkHttp-Received-Millis: 1551076968663 + +2019-02-25 12:12:48.670 [main] INFO - ********* END *********: +2019-02-25 12:12:48.718 [main] INFO - ********* START ********* +2019-02-25 12:12:48.719 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:48.719 [main] INFO - Request Type: GET +2019-02-25 12:12:48.719 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testtest, requestType=GET} +2019-02-25 12:12:48.719 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:48.720 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:48.720 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:48.720 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="EPv5TIAIOcImXOkpNnLmz4m29ZS4yiYypIhqXzb4ahc=" +2019-02-25 12:12:48.720 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:49.177 [main] INFO - Request Body: null +2019-02-25 12:12:49.177 [main] INFO - Response Message: Merchant - Unauthorised access to Reseller/Account +2019-02-25 12:12:49.177 [main] INFO - Response Code: 403 +2019-02-25 12:12:49.177 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_314285dc-8350-4a5e-af65-9250721a8b5d +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:49 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 5b98b9c4-547f-479a-a489-f6b378c40570 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076968721 +OkHttp-Received-Millis: 1551076969175 + +2019-02-25 12:12:49.177 [main] INFO - ********* END *********: +2019-02-25 12:12:49.203 [main] INFO - ********* START ********* +2019-02-25 12:12:49.203 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:49.203 [main] INFO - Request Type: GET +2019-02-25 12:12:49.204 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA%3D%3D?organizationId=testrest, requestType=GET} +2019-02-25 12:12:49.204 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:49.204 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:49.205 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:49.205 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="4HHX39oIaJ7HNUidwVaw29omlp3RtfWlX6/KAHe3GXo=" +2019-02-25 12:12:49.205 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:49.695 [main] INFO - Request Body: null +2019-02-25 12:12:49.695 [main] INFO - Response Message: testrest,TRRReport,TransactionRequestReport,1.10,2018-10-19T16:00:00Z to 2018-10-20T16:00:00Z +RequestID,RequestDate,MerchantReferenceNumber,MerchantID +5399662771246550003001,2018-10-19T16:24:37Z,TC50171_3,testrest +5399664781416551403001,2018-10-19T16:27:58Z,TC50171_3,testrest +5399666196306552903001,2018-10-19T16:30:19Z,TC50171_3,testrest +5399666357576981903005,2018-10-19T16:30:35Z,TC50171_3,testrest +5399680347956058103004,2018-10-19T16:53:54Z,TC50171_3,testrest +5399680431216058303004,2018-10-19T16:54:03Z,TC50171_3,testrest +5399684302416000903005,2018-10-19T17:00:30Z,TC50171_3,testrest +5399684505506723403002,2018-10-19T17:00:50Z,TC50171_3,testrest +5399684781686729303003,2018-10-19T17:01:18Z,TC50171_3,testrest +5399742716346290903004,2018-10-19T18:37:51Z,TC50171_3,testrest +5399742808726291703004,2018-10-19T18:38:00Z,TC50171_3,testrest +5399743679866242703005,2018-10-19T18:39:28Z,TC50171_3,testrest +5399751921786020803003,2018-10-19T18:53:12Z,TC50171_3,testrest +5399761919726317303005,2018-10-19T19:09:52Z,TC50171_3,testrest +5399787878246907603001,2018-10-19T19:53:07Z,TC50171_3,testrest +5399793339576405603004,2018-10-19T20:02:14Z,405195660::1,testrest +5399807626196378603005,2018-10-19T20:26:02Z,405195660::1,testrest +5399810449296963303001,2018-10-19T20:30:45Z,33557799,testrest +5399829987226032203001,2018-10-19T21:03:18Z,1234567890,testrest +5399844740286070303001,2018-10-19T21:27:54Z,TC50171_3,testrest +5399845077266611803006,2018-10-19T21:28:27Z,TC50171_3,testrest +5399845139246229503002,2018-10-19T21:28:34Z,TC50171_3,testrest +5399889652786155003001,2018-10-19T22:42:45Z,TC50171_3,testrest +5399900584196720203006,2018-10-19T23:00:58Z,1234567890,testrest + +2019-02-25 12:12:49.695 [main] INFO - Response Code: 200 +2019-02-25 12:12:49.695 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_0dfa4c09-0e0b-4529-98fc-fd0ec3ad2d26 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 25 Feb 2019 06:42:49 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Mon, 25 Feb 2019 06:42:49 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: db11d398-19f4-4451-86b3-fc0c6def40ce +OkHttp-Sent-Millis: 1551076969206 +OkHttp-Received-Millis: 1551076969694 + +2019-02-25 12:12:49.696 [main] INFO - ********* END *********: +2019-02-25 12:12:49.730 [main] INFO - ********* START ********* +2019-02-25 12:12:49.730 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:49.730 [main] INFO - Request Type: GET +2019-02-25 12:12:49.731 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0?organizationId=testrest, requestType=GET} +2019-02-25 12:12:49.731 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:49.731 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:49.731 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:49.732 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="rlnDk8STqqlaQa8l/EiE79TwN4FjDAAaD1Nen8g3FwY=" +2019-02-25 12:12:49.732 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:50.204 [main] INFO - Request Body: null +2019-02-25 12:12:50.206 [main] INFO - Response Message: + + Field validation errors + cybsapi.validation.errors + VALIDATION_ERROR + + cybsapi.file.id.invalid + fileId + Invalid File ID + + + +2019-02-25 12:12:50.206 [main] INFO - Response Code: 400 +2019-02-25 12:12:50.206 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_bcf3f166-153a-4d51-9975-c4511b9036a5 +Cache-Control: no-cache, no-transform +ETag: "-807714005-gzip" +Expires: Mon, 25 Feb 2019 06:42:50 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Mon, 25 Feb 2019 06:42:50 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 98535544-8b08-4b15-8a8b-7e9ee6771af9 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076969733 +OkHttp-Received-Millis: 1551076970202 + +2019-02-25 12:12:50.206 [main] INFO - ********* END *********: +2019-02-25 12:12:50.231 [main] INFO - ********* START ********* +2019-02-25 12:12:50.231 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:50.231 [main] INFO - Request Type: GET +2019-02-25 12:12:50.232 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/Texture, requestType=GET} +2019-02-25 12:12:50.232 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:50.232 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:50.232 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:50.233 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="uA6DR+ie2EtxBG0SXqe6emGZ6pOnx7Cbk9k1pGH3hLk=" +2019-02-25 12:12:50.233 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:50.662 [main] INFO - Request Body: null +2019-02-25 12:12:50.662 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0230","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"} +2019-02-25 12:12:50.664 [main] INFO - Response Code: 200 +2019-02-25 12:12:50.664 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_932969e7-9680-42d8-89b5-d2de831be39b +X-OPNET-Transaction-Trace: a2_7b261be7-17c6-4cd4-8117-8213ceff5972 +Cache-Control: no-cache, no-transform +ETag: "-1844867216-gzip" +Expires: Mon, 25 Feb 2019 06:42:50 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:50 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: bd4414b2-0ccd-4a81-b716-f2922be32827 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076970233 +OkHttp-Received-Millis: 1551076970660 + +2019-02-25 12:12:50.664 [main] INFO - ********* END *********: +2019-02-25 12:12:50.696 [main] INFO - ********* START ********* +2019-02-25 12:12:50.696 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:50.696 [main] INFO - Request Type: GET +2019-02-25 12:12:50.696 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/bplkmdgsd, requestType=GET} +2019-02-25 12:12:50.697 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:50.697 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:50.697 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:50.697 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="oc7q9CMFzVO2Fcaam5pSH8WFlJZR73oNw8SCf2aLIb0=" +2019-02-25 12:12:50.698 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:51.114 [main] INFO - Request Body: null +2019-02-25 12:12:51.114 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/bplkmdgsd"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"Requested subscription does not exist."} +2019-02-25 12:12:51.115 [main] INFO - Response Code: 404 +2019-02-25 12:12:51.115 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_fe81d434-8b7d-456b-8af5-e52d781f48c2 +X-OPNET-Transaction-Trace: a2_b1d2c003-4971-4aa4-9069-def2a4a6c9f2 +Cache-Control: no-cache, no-transform +ETag: "1764052161-gzip" +Expires: Mon, 25 Feb 2019 06:42:51 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:50 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 5c8d814d-d839-433e-af87-ef7227037fdc +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076970698 +OkHttp-Received-Millis: 1551076971112 + +2019-02-25 12:12:51.115 [main] INFO - ********* END *********: +2019-02-25 12:12:51.138 [main] INFO - ********* START ********* +2019-02-25 12:12:51.139 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:51.139 [main] INFO - Request Type: GET +2019-02-25 12:12:51.139 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=testrest, requestType=GET} +2019-02-25 12:12:51.139 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:51.140 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:51.140 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:51.140 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="q1/A9wEAruaGRq4qxN/jOBWmcbYEbjBa2OlprtkyVxQ=" +2019-02-25 12:12:51.140 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:51.608 [main] INFO - Request Body: null +2019-02-25 12:12:51.608 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest"}},"reportDefinitions":[{"type":"Detail","reportDefinitionId":202,"reportDefintionName":"PortfolioExceptionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Portfolio Exception Detail Report"},{"type":"Summary","reportDefinitionId":308,"reportDefintionName":"PaymentTypeByCurrencyClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":231,"reportDefintionName":"AcquirerExceptionDetailClass","supportedFormats":["text/csv"],"description":"Acquirer Exception Detail Report"},{"type":"Summary","reportDefinitionId":306,"reportDefintionName":"TransactionsByProductClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":230,"reportDefintionName":"AcquirerDetailClass","supportedFormats":["text/csv"],"description":"Acquirer Detail Report"},{"type":"Summary","reportDefinitionId":304,"reportDefintionName":"SalesRefundsClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":218,"reportDefintionName":"DepositDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Merchant Bank Deposit Details"},{"type":"Detail","reportDefinitionId":210,"reportDefintionName":"TransactionRequestClass","supportedFormats":["application/xml","text/csv"],"description":"Recon Transaction Request Report"},{"type":"Detail","reportDefinitionId":200,"reportDefintionName":"PortfolioTransactionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Portfolio Transaction Request Report"},{"type":"Summary","reportDefinitionId":342,"reportDefintionName":"FundingByProductClass","supportedFormats":["application/xml","application/json","text/csv"],"description":"Recon Funding By Product - JSON"},{"type":"Detail","reportDefinitionId":216,"reportDefintionName":"AgingDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All Settled transactions that have not been funded"},{"type":"Detail","reportDefinitionId":400,"reportDefintionName":"DecisionManagerEventDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Decision Manager Event Detail Report"},{"type":"Detail","reportDefinitionId":620,"reportDefintionName":"SubscriptionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Subscription Detail Report"},{"type":"Summary","reportDefinitionId":302,"reportDefintionName":"TransactionAggregateClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Summary","reportDefinitionId":410,"reportDefintionName":"FeeSummaryClass","supportedFormats":["text/csv"],"description":"Fee Summary CSV Report"},{"type":"Detail","reportDefinitionId":212,"reportDefintionName":"ExceptionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Recon Exception Detail Report"},{"type":"Detail","reportDefinitionId":233,"reportDefintionName":"AcquirerReconciliationSummaryClass","supportedFormats":["text/csv"],"description":"Acquirer Reconciliation Summary Report"},{"type":"Summary","reportDefinitionId":300,"reportDefintionName":"TransactionsByCurrencyClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":232,"reportDefintionName":"AcquirerChargebackDetailClass","supportedFormats":["text/csv"],"description":"Acquirer Chargeback Detail Report"},{"type":"Detail","reportDefinitionId":215,"reportDefintionName":"FundingDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All transactions that were funded in the given interval"},{"type":"Summary","reportDefinitionId":305,"reportDefintionName":"PaymentTypeSummaryClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":310,"reportDefintionName":"GatewayTransactionRequestClass","supportedFormats":["application/xml","text/csv"],"description":"All Gateway transactions by the processor"},{"type":"Summary","reportDefinitionId":341,"reportDefintionName":"FundingByCurrencyClass","supportedFormats":["application/xml","application/json","text/csv"],"description":"Recon Funding Volume - JSON"},{"type":"Detail","reportDefinitionId":220,"reportDefintionName":"InvoiceSummaryClass","supportedFormats":["application/xml","text/csv"],"description":"Merchant Invoice Details"},{"type":"Detail","reportDefinitionId":213,"reportDefintionName":"ProcessorSettlementDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Processor Settlement and Refund Detail Report"},{"type":"Summary","reportDefinitionId":343,"reportDefintionName":"FundingByPaymentTypeClass","supportedFormats":["application/xml","application/json","text/csv"],"description":"Recon Funding By Payment Type - JSON"},{"type":"Detail","reportDefinitionId":222,"reportDefintionName":"ConversionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Conversion Detail CSV Report"},{"type":"Summary","reportDefinitionId":307,"reportDefintionName":"ProductByCurrencyClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":520,"reportDefintionName":"POSTerminalExceptionClass","supportedFormats":["application/xml","text/csv"],"description":"POS Terminal Exception Report"},{"type":"Detail","reportDefinitionId":211,"reportDefintionName":"PaymentBatchDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Recon Batch Detail Report"},{"type":"Detail","reportDefinitionId":203,"reportDefintionName":"GatewayTransactionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All Gateway transactions by the processor"},{"type":"Detail","reportDefinitionId":270,"reportDefintionName":"JPTransactionDetailClass","supportedFormats":["text/csv"],"description":"Transaction detail report for CSKK merchants"},{"type":"Summary","reportDefinitionId":303,"reportDefintionName":"AuthorizationAnalysisClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Summary","reportDefinitionId":301,"reportDefintionName":"TransactionVolumeClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":217,"reportDefintionName":"ChargebackAndRetrievalDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All Chargebacks, Representments and Retrievals"},{"type":"Detail","reportDefinitionId":219,"reportDefintionName":"FeeDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All fee details"},{"type":"Detail","reportDefinitionId":201,"reportDefintionName":"PortfolioBatchDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Portfolio Batch Detail Report"},{"type":"Detail","reportDefinitionId":401,"reportDefintionName":"DecisionManagerDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Decision Manager Details CSV Report"},{"type":"Detail","reportDefinitionId":221,"reportDefintionName":"PayerAuthDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Payer Auth Details XML Report"},{"type":"Detail","reportDefinitionId":271,"reportDefintionName":"ServiceFeeDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Service Fee report"},{"type":"Summary","reportDefinitionId":340,"reportDefintionName":"FundingVolumeClass","supportedFormats":["application/xml","application/json","text/csv"],"description":"Recon Funding Volume - CSV"},{"type":"Detail","reportDefinitionId":214,"reportDefintionName":"ProcessorEventsDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All processor events regarding the transaction life cycle"}]} +2019-02-25 12:12:51.608 [main] INFO - Response Code: 200 +2019-02-25 12:12:51.609 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d5b06b0e-5582-4311-a0dd-5bf4729be963 +X-OPNET-Transaction-Trace: a2_04383dbf-8541-42da-8c1f-e1816453af0b +Cache-Control: no-cache, no-transform +ETag: "1846674451-gzip" +Expires: Mon, 25 Feb 2019 06:42:51 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:50 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 37e92349-8fe1-442b-baae-50d51b1091dc +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076971144 +OkHttp-Received-Millis: 1551076971605 + +2019-02-25 12:12:51.609 [main] INFO - ********* END *********: +2019-02-25 12:12:51.634 [main] INFO - ********* START ********* +2019-02-25 12:12:51.634 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:51.634 [main] INFO - Request Type: GET +2019-02-25 12:12:51.635 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=bplkmdghd, requestType=GET} +2019-02-25 12:12:51.635 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:51.635 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:51.635 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:51.636 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="zR3/la8inkiaxMb2XbY7yKxTHzGXgShqpF7Bd/EN+Ik=" +2019-02-25 12:12:51.636 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:52.048 [main] INFO - Request Body: null +2019-02-25 12:12:52.048 [main] INFO - Response Message: Invalid Merchant +2019-02-25 12:12:52.049 [main] INFO - Response Code: 400 +2019-02-25 12:12:52.049 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e716d17a-388a-4582-b390-038bf65f4743 +X-OPNET-Transaction-Trace: a2_40baca8f-afc0-49b5-bb74-964991caab7c +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:51 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: b61535be-9428-4681-aebb-3540b2bfe47f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076971636 +OkHttp-Received-Millis: 1551076972046 + +2019-02-25 12:12:52.049 [main] INFO - ********* END *********: +2019-02-25 12:12:52.070 [main] INFO - ********* START ********* +2019-02-25 12:12:52.070 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:52.070 [main] INFO - Request Type: GET +2019-02-25 12:12:52.070 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/AcquirerExceptionDetailClass, requestType=GET} +2019-02-25 12:12:52.071 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:52.071 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:52.071 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:52.071 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Vn/MTbLXVWIJQglQVXii1EeBHxLEG+pp+Ysptst50iU=" +2019-02-25 12:12:52.071 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:52.499 [main] INFO - Request Body: null +2019-02-25 12:12:52.500 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass"}},"attributes":[{"id":"3200","name":"AdditionalInformation.CardAcceptorID","description":"Card Acceptor ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3201","name":"AdditionalInformation.CardAcceptorName","description":"Card Acceptor Name","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3202","name":"AdditionalInformation.CardAcceptorTerminalID","description":"Card Acceptor Terminal ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3203","name":"AdditionalInformation.ForwardingInstitutionID","description":"Forwarding Institution ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3204","name":"AdditionalInformation.IssuerAffiliateBIN","description":"Issuer Affiliate BIN","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3205","name":"AdditionalInformation.MerchantType","description":"Merchant Type","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3206","name":"AdditionalInformation.RecurringPaymentIndicatorFlag","description":"Recurring Payment Indicator flag","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3223","name":"TransactionDetails.SourceMerchantID","description":"Source Merchant ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3225","name":"Fee.ReimbursementFee","description":"Reimbursement Fee","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3226","name":"Fee.ReimbursementFeeDebitCreditIndicator","description":"Reimbursement Fee Debit Credit Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3227","name":"Fee.SettlementServiceIndicator","description":"Settlement Service Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3228","name":"Fee.TransactionIntegrityFee","description":"Transaction Integrity Fee","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3229","name":"Fee.TransactionIntegrityFeeDebitCreditIndicator","description":"Transaction Integrity Fee Debit Credit Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3230","name":"Settlement.CardholderBillingAmount","description":"Cardholder Billing Amount","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3231","name":"Settlement.CardholderBillingCurrencyCode","description":"Cardholder Billing Currency Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3232","name":"Settlement.RateTableDate","description":"Rate Table Date","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3234","name":"Settlement.OctSettlementAmount","description":"Settlement Amount","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3235","name":"Settlement.OctSettlementCurrencyCode","description":"Settlement Currency Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3237","name":"TransactionDetails.AcquirerBusinessID","description":"Acquirer Business ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3238","name":"TransactionDetails.AcquiringInstitutionID","description":"Acquiring Institution ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3239","name":"TransactionDetails.AffiliateBIN","description":"Affiliate BIN","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3240","name":"TransactionDetails.AuthorizationIDRespCode","description":"Authorization ID Resp. Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3241","name":"TransactionDetails.BatchNumber","description":"Batch Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3242","name":"TransactionDetails.BusinessApplicationIdentifier","description":"Business Application Identifier","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3243","name":"TransactionDetails.CardNumber","description":"Card Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3244","name":"TransactionDetails.CurrencyCodeForTransactionAmount","description":"Currency Code For Transaction Amount","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3245","name":"TransactionDetails.DataRecipient","description":"Data Recipient","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3246","name":"TransactionDetails.DCCIndicator","description":"DCC Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3247","name":"TransactionDetails.DestinationStationID","description":"Destination Station ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3248","name":"TransactionDetails.DowngradeReasonCode","description":"Downgrade Reason Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3249","name":"TransactionDetails.FundsTransferSRE","description":"Funds Transfer SRE","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3250","name":"TransactionDetails.IssuerAcquirerIndicator","description":"Issuer Acquirer Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3251","name":"TransactionDetails.MessageReasonCode","description":"Message Reason Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3252","name":"TransactionDetails.MVVCode","description":"MVV Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3253","name":"TransactionDetails.NetworkID","description":"Network ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3254","name":"TransactionDetails.OnlineSettlementDate","description":"Online Settlement Date","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3255","name":"TransactionDetails.ProcessingCode","description":"Processing Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3256","name":"TransactionDetails.ProcessorID","description":"Processor ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3257","name":"TransactionDetails.ProductID","description":"Product ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3258","name":"TransactionDetails.ProductSubtype","description":"Product Subtype","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3259","name":"TransactionDetails.RequestMessageType","description":"Request Message Type","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3260","name":"TransactionDetails.ResponseCode","description":"Response Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3261","name":"TransactionDetails.RetrievalReferenceNumber","description":"Retrieval Reference Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3262","name":"TransactionDetails.SettlementDate","description":"Settlement Date","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3263","name":"TransactionDetails.SourceOfFunds","description":"Source of Funds","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3264","name":"TransactionDetails.SourceStationID","description":"Source Station ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3265","name":"TransactionDetails.SRE","description":"SRE","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3266","name":"TransactionDetails.STIPReasonCode","description":"STIP Reason Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3267","name":"TransactionDetails.TraceNumber","description":"Trace Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3268","name":"TransactionDetails.TransactionAmount","description":"Transaction Amount","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3269","name":"TransactionDetails.TransactionIdentifier","description":"Transaction Identifier","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3270","name":"TransactionDetails.VssProcessingDate","description":"VSS PROCESSING DATE","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3278","name":"TransactionDetails.RequestId","description":"Request ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3279","name":"TransactionDetails.MerchantId","description":"Merchant ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3280","name":"TransactionDetails.PaymentMethodType","description":"Payment Method Type","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3281","name":"TransactionDetails.PaymentMethodDesc","description":"Payment Method Description","filterType":null,"supportedType":null,"required":true,"default":true}],"description":"Acquirer Exception Detail Report","reportDefinitionId":231,"reportDefintionName":"AcquirerExceptionDetailClass","supportedFormats":["text/csv"],"type":"Detail"} +2019-02-25 12:12:52.500 [main] INFO - Response Code: 200 +2019-02-25 12:12:52.500 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_af90913b-1740-449f-bad5-0d3e1b1e818a +X-OPNET-Transaction-Trace: a2_52c8a401-6cc5-4518-88ec-59da362ef5ea +Cache-Control: no-cache, no-transform +ETag: "991045918-gzip" +Expires: Mon, 25 Feb 2019 06:42:52 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:52 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c900b75f-6680-48af-a841-c2964b0fc0f5 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076972076 +OkHttp-Received-Millis: 1551076972496 + +2019-02-25 12:12:52.500 [main] INFO - ********* END *********: +2019-02-25 12:12:52.528 [main] INFO - ********* START ********* +2019-02-25 12:12:52.528 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:52.528 [main] INFO - Request Type: GET +2019-02-25 12:12:52.528 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/SubscDetail, requestType=GET} +2019-02-25 12:12:52.529 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:52.529 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:52.529 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:52.529 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="LU9yvjefkyN2l89fC15y0rlVAKghREG/glHWaGdNChY=" +2019-02-25 12:12:52.529 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:52.937 [main] INFO - Request Body: null +2019-02-25 12:12:52.937 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/SubscDetail"}}} +2019-02-25 12:12:52.937 [main] INFO - Response Code: 404 +2019-02-25 12:12:52.937 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_eb9c8f66-06ed-4854-b1bc-284782ccbc47 +X-OPNET-Transaction-Trace: a2_146d3b70-6765-42cf-87b0-4c2fc69cc9e3 +Cache-Control: no-cache, no-transform +ETag: "204857944-gzip" +Expires: Mon, 25 Feb 2019 06:42:52 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:52 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: dea87e90-9729-4efa-9c30-12cf9607d7e7 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076972530 +OkHttp-Received-Millis: 1551076972935 + +2019-02-25 12:12:52.937 [main] INFO - ********* END *********: +2019-02-25 12:12:52.963 [main] INFO - ********* START ********* +2019-02-25 12:12:52.963 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:52.963 [main] INFO - Request Type: GET +2019-02-25 12:12:52.963 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest, requestType=GET} +2019-02-25 12:12:52.964 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:52.964 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:52.964 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:52.964 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="14/Ek4URK6dJDuU1+yxS9SLDENYJI2Nj5W3yG2x4c8Y=" +2019-02-25 12:12:52.965 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:53.418 [main] INFO - Request Body: null +2019-02-25 12:12:53.418 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest"}},"groupId":null,"notificationType":null,"organizationId":"testrest","reportAccessType":null,"reportDefinitionId":"210","reportEndTime":"2018-09-02T07:00:00.000Z","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{"173":[]},"reportFrequency":"ADHOC","reportId":"79642c43-2368-0cd5-e053-a2588e0a7b3c","reportMimeType":"application/xml","reportName":"testrest_v2","reportPreferences":{"signedAmounts":true,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":"SOAPI"},"reportStartTime":"2018-09-01T07:00:00.000Z","reportStatus":"COMPLETED","requestedBy":null,"selectedOrganizationId":null,"subscriptionType":"CUSTOM","timezone":"GMT"} +2019-02-25 12:12:53.418 [main] INFO - Response Code: 200 +2019-02-25 12:12:53.419 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_886f5b96-7208-4e2a-a670-ece33928a7e5 +X-OPNET-Transaction-Trace: a2_c14cc020-094f-4290-9527-f527ba957e5f +Cache-Control: no-cache, no-transform +ETag: "609183382-gzip" +Expires: Mon, 25 Feb 2019 06:42:53 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:52 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ab828f39-cd10-43a7-91f4-d5ed7364296c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076972969 +OkHttp-Received-Millis: 1551076973417 + +2019-02-25 12:12:53.419 [main] INFO - ********* END *********: +2019-02-25 12:12:53.445 [main] INFO - ********* START ********* +2019-02-25 12:12:53.446 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:53.446 [main] INFO - Request Type: GET +2019-02-25 12:12:53.446 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest, requestType=GET} +2019-02-25 12:12:53.446 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:53.446 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:53.447 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:53.447 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="0YjP6qitsno0MfAp0YRuaCCXbXw8F9g9B7GQVn1yXEc=" +2019-02-25 12:12:53.447 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:53.881 [main] INFO - Request Body: null +2019-02-25 12:12:53.882 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"No reports found for given reportId. ReportId :: '79642c43-2368-0cd5-e053-a2588e0a'"} +2019-02-25 12:12:53.882 [main] INFO - Response Code: 404 +2019-02-25 12:12:53.882 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_413423ef-180a-4fe5-b4f6-af504d89fd9d +X-OPNET-Transaction-Trace: a2_0f711efa-2be7-40ff-8dc5-dc3106108e8a +Cache-Control: no-cache, no-transform +ETag: "-830509477-gzip" +Expires: Mon, 25 Feb 2019 06:42:53 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:53 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7efd59e0-7c3b-4920-9a20-80d42eb6fd24 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076973448 +OkHttp-Received-Millis: 1551076973880 + +2019-02-25 12:12:53.882 [main] INFO - ********* END *********: +2019-02-25 12:12:53.899 [main] INFO - ********* START ********* +2019-02-25 12:12:53.900 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:53.900 [main] INFO - Request Type: GET +2019-02-25 12:12:53.900 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=bkalama, requestType=GET} +2019-02-25 12:12:53.900 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:53.901 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:53.901 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:53.901 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="vpGOyDeyJGjFKryOeG/GqaBbd+TNWT6t1hAV9X/stWg=" +2019-02-25 12:12:53.901 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:54.308 [main] INFO - Request Body: null +2019-02-25 12:12:54.308 [main] INFO - Response Message: Invalid Merchant +2019-02-25 12:12:54.309 [main] INFO - Response Code: 400 +2019-02-25 12:12:54.309 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_8361080b-3eed-4dde-a278-1ab9e6adee70 +X-OPNET-Transaction-Trace: a2_51535c3d-7c06-4a6e-b102-0b36118de3c3 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:53 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a3d6d0f5-8ed2-44bb-9b5a-f2d336d09875 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076973902 +OkHttp-Received-Millis: 1551076974307 + +2019-02-25 12:12:54.309 [main] INFO - ********* END *********: +2019-02-25 12:12:54.331 [main] INFO - ********* START ********* +2019-02-25 12:12:54.331 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:54.331 [main] INFO - Request Type: GET +2019-02-25 12:12:54.332 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=GET} +2019-02-25 12:12:54.332 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:54.332 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:54.332 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:54.333 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="BChp25rXNcXCKqko+2Rly1KGySHsuAgg3/EmcMSyg+4=" +2019-02-25 12:12:54.333 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:54.976 [main] INFO - Request Body: null +2019-02-25 12:12:54.977 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"_embedded":{"Subscriptions":[{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/1111muy"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"1111muy","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0600","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/78999sd6"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"78999sd6","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"1300","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Alex"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Alex","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0950","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Antena"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"text/csv","reportName":"Antena","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0950","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/CYBS_REP_test_2556"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"CYBS_REP_test_2556","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":4,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Ceaser"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"Ceaser","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Cybersource-rest-py1"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"Cybersource-rest-py1","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Jackson"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"Monthly","reportMimeType":"text/csv","reportName":"Jackson","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/ProcessorEventsDetailReport"}},"groupId":null,"organizationId":null,"reportDefinitionId":"214","reportDefinitionName":"ProcessorEventsDetailClass","reportFields":["PaymentMethod.BoletoNumber","Request.RequestID","PaymentData.TransactionRefNumber","Request.TransactionDate","Request.MerchantReferenceNumber","Request.MerchantID","Event.ProcessorMessage","Event.EventDate","Event.Event","Event.Amount","Event.CurrencyCode","PaymentData.ProcessorTID","Request.LocalizedRequestDate"],"reportFilters":{},"reportFrequency":"daily","reportMimeType":"text/csv","reportName":"ProcessorEventsDetailReport","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0000","subscriptionStatus":"ACTIVE","subscriptionType":"STANDARD","timezone":"America/Los_Angeles"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/QA_test_reporting_org"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"QA_test_reporting_org","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0406","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/R"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"R","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0940","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Subsc2_cybs_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"Subsc2_cybs_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0200","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Subscrip_cybs_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"Subscrip_cybs_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0100","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Subsp87_cybs_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"Subsp87_cybs_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0300","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/TRR_138"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"TRR_138","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/TRR_1383"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"TRR_1383","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/TRR_677"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"TRR_677","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0230","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_a"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture_a","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0910","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_e"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_e","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":6,"startTime":"0930","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_f"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture_f","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":7,"startTime":"0940","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_j"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture_j","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":11,"startTime":"0957","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_k"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_k","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":12,"startTime":"0958","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_s"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_s","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0920","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_t"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_t","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":4,"startTime":"0915","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0930","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Textuvij"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Textuvij","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0920","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Tider"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"text/csv","reportName":"Tider","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/TransactionRequestReport"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["PaymentData.AuthorizationCode","PaymentData.CurrencyCode","BillTo.FirstName","BillTo.LastName","BillTo.MiddleName","BillTo.Address1","BillTo.Address2","BillTo.City","BillTo.State","BillTo.Zip","BillTo.Email","BillTo.Phone","PaymentMethod.CardType","PaymentMethod.ExpirationMonth","PaymentMethod.ExpirationYear","PaymentMethod.AccountSuffix","Application.Rcode","Application.Rflag","Application.Rmsg","PaymentData.Amount","Request.RequestID","PaymentData.TransactionRefNumber","Request.TransactionDate","Request.MerchantReferenceNumber","Application.Name","Request.MerchantID","Request.LocalizedRequestDate"],"reportFilters":{},"reportFrequency":"daily","reportMimeType":"text/csv","reportName":"TransactionRequestReport","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0000","subscriptionStatus":"INACTIVE","subscriptionType":"STANDARD","timezone":"America/Los_Angeles"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Vendor"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Vendor","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Zodaic"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"Zodaic","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":5,"startTime":"0330","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/bxgsfdt66"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"bxgsfdt66","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1700","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/chena"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"chena","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/createsubscription_report"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"createsubscription_report","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0406","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/dfdf"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"dfdf","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1200","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/dgusgdfyfydugfnnfhgg"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"dgusgdfyfydugfnnfhgg","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/dhsjhsdfuihduifyifuy"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"dhsjhsdfuihduifyifuy","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1100","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/gggg"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"gggg","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1500","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/subs_cybs_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"subs_cybs_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0700","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testReport_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"testReport_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0959","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_myname"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"test_myname","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"2000","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v3"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"test_v3","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v456777"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"test_v456777","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0800","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v4567778"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"test_v4567778","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0800","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v5001"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"test_v5001","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v571"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"test_v571","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0920","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v5801"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"test_v5801","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0920","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v600"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"test_v600","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":4,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_V7683"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"testrest_V7683","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0951","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_V76833"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"testrest_V76833","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0957","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcript"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"testrest_subcript","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1100","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_karthikeyan"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_karthikeyan","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v12"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_v12","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v13"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_v13","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1700","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v155"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_v155","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":6,"startTime":"0930","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v17854"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_v17854","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0600","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v2989"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"testrest_subcription_v2989","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"1900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v4"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"testrest_subcription_v4","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v7"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"testrest_subcription_v7","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0115","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v278"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_v278","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":5,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrestsa_subcription_v1"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrestsa_subcription_v1","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0902","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testv2_subscriprion"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testv2_subscriprion","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/ttttt"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"ttttt","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"1000","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/uit"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"uit","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"1500","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"}]}} +2019-02-25 12:12:54.979 [main] INFO - Response Code: 200 +2019-02-25 12:12:54.979 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_6bb594ce-7e5b-4b09-81a5-e0ab4438fb69 +X-OPNET-Transaction-Trace: a2_6e0189b8-ba3d-4023-af2a-4f97581e3419 +Cache-Control: no-cache, no-transform +ETag: "-1595738260-gzip" +Expires: Mon, 25 Feb 2019 06:42:54 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 16844fb6-9421-45cb-9b10-3f2972111696 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076974335 +OkHttp-Received-Millis: 1551076974971 + +2019-02-25 12:12:54.979 [main] INFO - ********* END *********: +2019-02-25 12:12:55.005 [main] INFO - ********* START ********* +2019-02-25 12:12:55.006 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:55.006 [main] INFO - Request Type: POST +2019-02-25 12:12:55.006 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-25 12:12:55.006 [main] INFO - Digest: SHA-256=loFSrgLcFUKQZ5yG+wiEAwrYOdwvmVHAUHYgknwquSs= +2019-02-25 12:12:55.007 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:55.007 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:55.007 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:55.008 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="yVZgAkPPSLlFeU9DVZrUXBhwMu4UuUJQVBTHnzFOcyo=" +2019-02-25 12:12:55.008 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:55.692 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_feb8","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-25 12:12:55.693 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"815d1fc7-5ca6-9241-e053-a2588e0a46c1","message":"Task already exists with same report name ","localizationKey":"cybsapi.task.name.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:12:55.693 [main] INFO - Response Code: 400 +2019-02-25 12:12:55.693 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_5871be5f-eacd-4015-85a1-49aafb0823ea +X-OPNET-Transaction-Trace: a2_beccf9b6-2bbf-421c-a7bb-228cab82c925 +Cache-Control: no-cache, no-transform +ETag: "1012578100-gzip" +Expires: Mon, 25 Feb 2019 06:42:55 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:55 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: cb82cb0c-2a0f-4c60-bd6a-cf93a2a8ff92 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076975010 +OkHttp-Received-Millis: 1551076975692 + +2019-02-25 12:12:55.693 [main] INFO - ********* END *********: +2019-02-25 12:12:55.711 [main] INFO - ********* START ********* +2019-02-25 12:12:55.711 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:55.711 [main] INFO - Request Type: POST +2019-02-25 12:12:55.712 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-25 12:12:55.712 [main] INFO - Digest: SHA-256=WRIH+BI7wCOOoyM2il5xk/FPn4NdlvPoyhCGODb0BzU= +2019-02-25 12:12:55.712 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:55.712 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:55.712 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:55.713 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Z/Gs6Rr5rscPkVLrR/P+F6XwQYQkpVR6d6xmR6hSqFk=" +2019-02-25 12:12:55.713 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:56.156 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequ","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v2","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-25 12:12:56.156 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"reportDefinitionName","message":"Invalid report definition specified","localizationKey":"cybsapi.report.reportDefinition.invalid"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:12:56.156 [main] INFO - Response Code: 400 +2019-02-25 12:12:56.157 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_87ab6828-8137-4d9f-b6b1-0c3e44bdcfa6 +X-OPNET-Transaction-Trace: a2_c3f8ef43-e5e4-4de6-8e33-72f8e2caa2c5 +Cache-Control: no-cache, no-transform +ETag: "-393622008-gzip" +Expires: Mon, 25 Feb 2019 06:42:56 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:56 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ecfe601a-4712-48a5-9438-d3108a303034 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076975714 +OkHttp-Received-Millis: 1551076976154 + +2019-02-25 12:12:56.157 [main] INFO - ********* END *********: +2019-02-25 12:12:56.184 [main] INFO - ********* START ********* +2019-02-25 12:12:56.184 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:56.184 [main] INFO - Request Type: PUT +2019-02-25 12:12:56.185 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-25 12:12:56.185 [main] INFO - Digest: SHA-256=3GVWPPOG00/7W5sr122EHVr03BhuMZC6jcQgIczD8FQ= +2019-02-25 12:12:56.185 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:56.185 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:56.186 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:56.186 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="fbA7NYBWBfBUmcHjiif6DKcKbtoTuyq+0p9Cj3syQXI=" +2019-02-25 12:12:56.186 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:56.859 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testReport_test","timezone":"America/Chicago","startTime":"0959","startDay":1} +2019-02-25 12:12:56.859 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"testReport_test","message":"Report already exists with same fields ","localizationKey":"cybsapi.report.fields.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:12:56.859 [main] INFO - Response Code: 400 +2019-02-25 12:12:56.860 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e20beff0-92b5-4666-8ff5-588df21464cd +X-OPNET-Transaction-Trace: a2_412e792a-32e3-4709-b112-a262ece8669b +Cache-Control: no-cache, no-transform +ETag: "-787171079-gzip" +Expires: Mon, 25 Feb 2019 06:42:56 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:56 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: cb35c5f6-b3ed-41e6-8c9a-3e8c63d30cad +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076976197 +OkHttp-Received-Millis: 1551076976858 + +2019-02-25 12:12:56.860 [main] INFO - ********* END *********: +2019-02-25 12:12:56.877 [main] INFO - ********* START ********* +2019-02-25 12:12:56.877 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:56.877 [main] INFO - Request Type: PUT +2019-02-25 12:12:56.877 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-25 12:12:56.877 [main] INFO - Digest: SHA-256=hCJRiwHTt4C8/2AZ98pRY06mb+al8+7W4Y38zplArt0= +2019-02-25 12:12:56.878 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:56.878 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:56.878 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:56.879 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="WTQDSihig66gNjSzVZHQ2sbDieODt7tN/75OKUhKE1Q=" +2019-02-25 12:12:56.879 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:57.305 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0959","startDay":1} +2019-02-25 12:12:57.306 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"reportDefinitionName","message":"Invalid report definition specified","localizationKey":"cybsapi.report.reportDefinition.invalid"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:12:57.306 [main] INFO - Response Code: 400 +2019-02-25 12:12:57.306 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_7e4fa196-d4c7-462f-a81a-aac7e9f77aac +X-OPNET-Transaction-Trace: a2_4dfb054c-df2c-47e0-beaa-a74c1e288e73 +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Mon, 25 Feb 2019 06:42:57 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:56 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: bfd7c161-edc8-446a-8087-1b219615f1bb +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076976882 +OkHttp-Received-Millis: 1551076977304 + +2019-02-25 12:12:57.306 [main] INFO - ********* END *********: +2019-02-25 12:12:57.326 [main] INFO - ********* START ********* +2019-02-25 12:12:57.326 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:57.327 [main] INFO - Request Type: DELETE +2019-02-25 12:12:57.327 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/testrest_v604, requestType=DELETE} +2019-02-25 12:12:57.327 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:57.327 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:57.327 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:57.328 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="B+7CYdTv3A84lBP3NySqBsPSdPG6T98zeQY7ccrZDdI=" +2019-02-25 12:12:57.328 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:57.735 [main] INFO - Request Body: null +2019-02-25 12:12:57.735 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"Requested subscription does not exist."} +2019-02-25 12:12:57.735 [main] INFO - Response Code: 404 +2019-02-25 12:12:57.736 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a62d73e4-1f3e-4a81-8974-fb2b41be0c44 +X-OPNET-Transaction-Trace: a2_79c328d3-4b62-495c-ab77-089fd12f11b0 +Cache-Control: no-cache, no-transform +ETag: "1483526712-gzip" +Expires: Mon, 25 Feb 2019 06:42:57 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:57 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 9f1f1818-8d23-4e90-b6be-76dce6b28602 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076977329 +OkHttp-Received-Millis: 1551076977734 + +2019-02-25 12:12:57.736 [main] INFO - ********* END *********: +2019-02-25 12:12:57.754 [main] INFO - ********* START ********* +2019-02-25 12:12:57.754 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:57.755 [main] INFO - Request Type: DELETE +2019-02-25 12:12:57.755 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/ghsrrawasbhfhcb, requestType=DELETE} +2019-02-25 12:12:57.755 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:57.755 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:57.755 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:57.756 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="MsKms6hN7XNfLGn18yEQfSkbSB8aE8QtW+iWm+tIvIs=" +2019-02-25 12:12:57.756 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:58.164 [main] INFO - Request Body: null +2019-02-25 12:12:58.165 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/ghsrrawasbhfhcb"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"Requested subscription does not exist."} +2019-02-25 12:12:58.165 [main] INFO - Response Code: 404 +2019-02-25 12:12:58.165 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_9cee6d8b-0ae1-49b7-88ec-1e8d6c97fa6f +X-OPNET-Transaction-Trace: a2_4db6e7f8-2ebd-45e9-906c-dd689776a2b3 +Cache-Control: no-cache, no-transform +ETag: "860016692-gzip" +Expires: Mon, 25 Feb 2019 06:42:58 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: de3f2285-78a8-433d-a9c2-fdfb4b42ebfb +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076977758 +OkHttp-Received-Millis: 1551076978163 + +2019-02-25 12:12:58.165 [main] INFO - ********* END *********: +2019-02-25 12:12:58.188 [main] INFO - ********* START ********* +2019-02-25 12:12:58.188 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:58.189 [main] INFO - Request Type: GET +2019-02-25 12:12:58.189 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-25 12:12:58.189 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:58.190 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:58.190 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:58.190 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="igQ5x5E1TVnD6QOjbRtnozRgeFiCDXeIBXOrS16D4lU=" +2019-02-25 12:12:58.190 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:58.860 [main] INFO - Request Body: null +2019-02-25 12:12:58.861 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime"}},"reportSearchResults":[{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-01T16:00:00.000Z","reportEndTime":"2018-08-02T16:00:00.000Z","timezone":"America/Chicago","reportId":"726ba2c2-5b4d-7cff-e053-a2588e0ad3fd","organizationId":"testrest","queuedTime":"2018-08-02T17:34:53.000Z","reportGenerationTime":"2018-08-02T17:34:56.000Z","reportCompletedTime":"2018-08-02T17:34:58.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-02T16:00:00.000Z","reportEndTime":"2018-08-03T16:00:00.000Z","timezone":"America/Chicago","reportId":"728b155d-dbe2-2db9-e053-a2588e0a1848","organizationId":"testrest","queuedTime":"2018-08-03T17:33:01.000Z","reportGenerationTime":"2018-08-03T17:33:04.000Z","reportCompletedTime":"2018-08-03T17:33:05.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-03T16:00:00.000Z","reportEndTime":"2018-08-04T16:00:00.000Z","timezone":"America/Chicago","reportId":"7293dd60-2ff4-2dc3-e053-a2588e0a5d2e","organizationId":"testrest","queuedTime":"2018-08-04T17:32:23.000Z","reportGenerationTime":"2018-08-04T17:32:27.000Z","reportCompletedTime":"2018-08-04T17:32:28.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-04T16:00:00.000Z","reportEndTime":"2018-08-05T16:00:00.000Z","timezone":"America/Chicago","reportId":"7293dd60-7cce-2dc3-e053-a2588e0a5d2e","organizationId":"testrest","queuedTime":"2018-08-05T17:30:34.000Z","reportGenerationTime":"2018-08-05T17:30:38.000Z","reportCompletedTime":"2018-08-05T17:30:40.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-05T16:00:00.000Z","reportEndTime":"2018-08-06T16:00:00.000Z","timezone":"America/Chicago","reportId":"7294af2d-dec6-2dad-e053-a2588e0a6e57","organizationId":"testrest","queuedTime":"2018-08-06T17:34:10.000Z","reportGenerationTime":"2018-08-06T17:34:13.000Z","reportCompletedTime":"2018-08-06T17:34:15.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-06T16:00:00.000Z","reportEndTime":"2018-08-07T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d4c960-e05d-2dbd-e053-a2588e0a4952","organizationId":"testrest","queuedTime":"2018-08-07T17:33:37.000Z","reportGenerationTime":"2018-08-07T17:33:40.000Z","reportCompletedTime":"2018-08-07T17:33:41.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-07T16:00:00.000Z","reportEndTime":"2018-08-08T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d4c960-e530-2dbd-e053-a2588e0a4952","organizationId":"testrest","queuedTime":"2018-08-08T17:32:44.000Z","reportGenerationTime":"2018-08-08T17:32:46.000Z","reportCompletedTime":"2018-08-08T17:32:48.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"TRRReport","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-07T16:00:00.000Z","reportEndTime":"2018-08-08T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d4c960-e531-2dbd-e053-a2588e0a4952","organizationId":"testrest","queuedTime":"2018-08-08T17:32:44.000Z","reportGenerationTime":"2018-08-08T17:32:46.000Z","reportCompletedTime":"2018-08-08T17:32:48.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-08T16:00:00.000Z","reportEndTime":"2018-08-09T16:00:00.000Z","timezone":"America/Chicago","reportId":"728b155d-df16-2db9-e053-a2588e0a1848","organizationId":"testrest","queuedTime":"2018-08-09T17:31:11.000Z","reportGenerationTime":"2018-08-09T17:31:13.000Z","reportCompletedTime":"2018-08-09T17:31:15.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"TRRReport","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-08T16:00:00.000Z","reportEndTime":"2018-08-09T16:00:00.000Z","timezone":"America/Chicago","reportId":"728b155d-df17-2db9-e053-a2588e0a1848","organizationId":"testrest","queuedTime":"2018-08-09T17:31:11.000Z","reportGenerationTime":"2018-08-09T17:31:13.000Z","reportCompletedTime":"2018-08-09T17:31:15.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-09T16:00:00.000Z","reportEndTime":"2018-08-10T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d09c70-2a69-2da5-e053-a2588e0a2ca5","organizationId":"testrest","queuedTime":"2018-08-10T17:34:01.000Z","reportGenerationTime":"2018-08-10T17:34:04.000Z","reportCompletedTime":"2018-08-10T17:34:05.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"TRRReport","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-09T16:00:00.000Z","reportEndTime":"2018-08-10T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d09c70-2a6a-2da5-e053-a2588e0a2ca5","organizationId":"testrest","queuedTime":"2018-08-10T17:34:01.000Z","reportGenerationTime":"2018-08-10T17:34:04.000Z","reportCompletedTime":"2018-08-10T17:34:06.000Z","selectedOrganizationId":null,"groupId":null}]} +2019-02-25 12:12:58.861 [main] INFO - Response Code: 200 +2019-02-25 12:12:58.862 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_bf315d7b-8e64-4653-9b68-f409d2b9d64a +X-OPNET-Transaction-Trace: a2_bed21788-95ee-4d1b-9b77-89e726dedaa7 +Cache-Control: no-cache, no-transform +ETag: "98577355-gzip" +Expires: Mon, 25 Feb 2019 06:42:58 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 739b2712-eefa-4f8f-b0f1-01b90f15c894 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076978194 +OkHttp-Received-Millis: 1551076978859 + +2019-02-25 12:12:58.862 [main] INFO - ********* END *********: +2019-02-25 12:12:58.888 [main] INFO - ********* START ********* +2019-02-25 12:12:58.888 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:58.888 [main] INFO - Request Type: GET +2019-02-25 12:12:58.888 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime, requestType=GET} +2019-02-25 12:12:58.889 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:58.889 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:58.889 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:58.889 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="QUwA3fapUGPI3HMl7TqrZsYgXOfFq3s3S65sRtL48+Y=" +2019-02-25 12:12:58.890 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:59.323 [main] INFO - Request Body: null +2019-02-25 12:12:59.323 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"timeQueryType","message":"Time Query Type is invalid","localizationKey":null}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:12:59.323 [main] INFO - Response Code: 400 +2019-02-25 12:12:59.324 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_1c6f7acb-195e-4526-9db1-2fd8bf1dd110 +X-OPNET-Transaction-Trace: a2_f700a65d-e182-4a23-9696-19add649e017 +Cache-Control: no-cache, no-transform +ETag: "480352859-gzip" +Expires: Mon, 25 Feb 2019 06:42:59 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:58 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 3e368a01-c58c-4d09-8302-7ad1c12aebfe +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076978890 +OkHttp-Received-Millis: 1551076979321 + +2019-02-25 12:12:59.324 [main] INFO - ********* END *********: +2019-02-25 12:12:59.343 [main] INFO - ********* START ********* +2019-02-25 12:12:59.343 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:59.343 [main] INFO - Request Type: GET +2019-02-25 12:12:59.344 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2019-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-25 12:12:59.344 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:59.344 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:59.344 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:59.345 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="za0CABnFBxJZWvctqAF79ikE+SVdXpIpt8BJCGv72I0=" +2019-02-25 12:12:59.345 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:12:59.777 [main] INFO - Request Body: null +2019-02-25 12:12:59.777 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2019-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"No Reports found."} +2019-02-25 12:12:59.778 [main] INFO - Response Code: 404 +2019-02-25 12:12:59.778 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d3f0c6a9-c108-4d23-80ff-a884705e22d5 +X-OPNET-Transaction-Trace: a2_b1632e72-640c-4355-87cb-9fe8745a0845 +Cache-Control: no-cache, no-transform +ETag: "1803701484-gzip" +Expires: Mon, 25 Feb 2019 06:42:59 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:42:59 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 1e319d32-5670-4027-b663-cab8c399d393 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076979345 +OkHttp-Received-Millis: 1551076979775 + +2019-02-25 12:12:59.778 [main] INFO - ********* END *********: +2019-02-25 12:12:59.806 [main] INFO - ********* START ********* +2019-02-25 12:12:59.806 [main] INFO - Authentication Type : http_signature +2019-02-25 12:12:59.806 [main] INFO - Request Type: GET +2019-02-25 12:12:59.806 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00, requestType=GET} +2019-02-25 12:12:59.807 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:12:59.807 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:12:59.807 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:12:59.808 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="u5XWP7SOps5mfDUBt2P6tJSzrKBVs0WsigpRQyKULFs=" +2019-02-25 12:12:59.808 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:00.229 [main] INFO - Request Body: null +2019-02-25 12:13:00.229 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"No results found for the given dates"} +2019-02-25 12:13:00.229 [main] INFO - Response Code: 404 +2019-02-25 12:13:00.230 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_31455b3a-4446-41b5-9b4a-9e6b9567537a +X-OPNET-Transaction-Trace: a2_a8b59ba1-93b9-4c06-9b92-d2e0bb7ae7d1 +Cache-Control: no-cache, no-transform +ETag: "1442562825-gzip" +Expires: Mon, 25 Feb 2019 06:43:00 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:43:00 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4f1583d9-563d-476b-8e76-9107e6f3a720 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076979813 +OkHttp-Received-Millis: 1551076980228 + +2019-02-25 12:13:00.230 [main] INFO - ********* END *********: +2019-02-25 12:13:00.246 [main] INFO - ********* START ********* +2019-02-25 12:13:00.246 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:00.247 [main] INFO - Request Type: GET +2019-02-25 12:13:00.247 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/notification-of-changes?startTime=2019-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-05-30T12%3A00%3A00.000-05%3A00, requestType=GET} +2019-02-25 12:13:00.247 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:00.247 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:13:00.248 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:00.248 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="03r/gEl+yFtJJVx/AlDq7EAqHwv65pjU2SkX6tXhM6U=" +2019-02-25 12:13:00.248 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:00.652 [main] INFO - Request Body: null +2019-02-25 12:13:00.653 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/notification-of-changes?startTime=2019-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-05-30T12%3A00%3A00.000-05%3A00"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:13:00.653 [main] INFO - Response Code: 400 +2019-02-25 12:13:00.654 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_f785ade4-c6ea-45f8-9019-dacb8018c557 +X-OPNET-Transaction-Trace: a2_3a30a909-c90e-4094-b653-fd45af7f7aea +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:43:00 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 79b94636-1086-46ed-be26-424629e1a929 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076980249 +OkHttp-Received-Millis: 1551076980651 + +2019-02-25 12:13:00.654 [main] INFO - ********* END *********: +2019-02-25 12:13:00.677 [main] INFO - ********* START ********* +2019-02-25 12:13:00.677 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:00.677 [main] INFO - Request Type: GET +2019-02-25 12:13:00.678 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-25 12:13:00.678 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:00.678 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:13:00.678 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:00.678 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="6zG4elkbzHsPeyNZBU/5A21YysgYqK0bW3PTkgESG6Q=" +2019-02-25 12:13:00.679 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:01.099 [main] INFO - Request Body: null +2019-02-25 12:13:01.099 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/purchase-refund-details"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:13:01.100 [main] INFO - Response Code: 400 +2019-02-25 12:13:01.100 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_5a373369-39f8-4397-a161-ea95584c54a8 +X-OPNET-Transaction-Trace: a2_bc2e6d76-a12c-46e1-8c77-7779566a3681 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:43:01 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a2756ef4-a3de-461b-9d4a-372387d5b6b1 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076980679 +OkHttp-Received-Millis: 1551076981098 + +2019-02-25 12:13:01.100 [main] INFO - ********* END *********: +2019-02-25 12:13:01.117 [main] INFO - ********* START ********* +2019-02-25 12:13:01.117 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:01.118 [main] INFO - Request Type: GET +2019-02-25 12:13:01.118 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2019-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-25 12:13:01.118 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:01.118 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:13:01.119 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:01.119 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="qe7WJtFdxOlX3Hhyqs+/JIMXXABhF2dvO3sFyqwELiE=" +2019-02-25 12:13:01.119 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:01.535 [main] INFO - Request Body: null +2019-02-25 12:13:01.536 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/purchase-refund-details"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:13:01.536 [main] INFO - Response Code: 400 +2019-02-25 12:13:01.536 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_cd962dcc-16e5-4e92-b6db-255fe5b6b41c +X-OPNET-Transaction-Trace: a2_95f29d1f-63c8-42e1-a039-c7eff66472ca +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:43:01 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 9e40f898-cdc2-4bad-b099-37868fafca9e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076981120 +OkHttp-Received-Millis: 1551076981534 + +2019-02-25 12:13:01.537 [main] INFO - ********* END *********: +2019-02-25 12:13:01.556 [main] INFO - ********* START ********* +2019-02-25 12:13:01.556 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:01.557 [main] INFO - Request Type: GET +2019-02-25 12:13:01.557 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=udapaa&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-25 12:13:01.557 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:01.557 [main] INFO - Date: Mon, 25 Feb 2019 06:42:10 GMT +2019-02-25 12:13:01.558 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:01.558 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="hd7nSxYpfuWsEI+kN0ZTes6SThIWUUPfiytvIF3wZgI=" +2019-02-25 12:13:01.558 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:01.962 [main] INFO - Request Body: null +2019-02-25 12:13:01.962 [main] INFO - Response Message: Invalid Merchant +2019-02-25 12:13:01.962 [main] INFO - Response Code: 400 +2019-02-25 12:13:01.963 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_201701bd-a09e-4d64-9ce0-eb758ee1a9fa +X-OPNET-Transaction-Trace: a2_8003ab8c-03f8-40a4-906f-56a4ae8a973c +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:43:01 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 72ebef42-8a13-402f-98fa-0f0a79d020c8 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551076981558 +OkHttp-Received-Millis: 1551076981961 + +2019-02-25 12:13:01.963 [main] INFO - ********* END *********: +2019-02-25 12:13:27.514 [main] INFO - ********* START ********* +2019-02-25 12:13:27.527 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:27.527 [main] INFO - Request Type: POST +2019-02-25 12:13:27.528 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-25 12:13:27.529 [main] INFO - Digest: SHA-256=zcJ2cYW72zirVVY4Q9hbo9if4vO4wqVE5p8s01MrhZM= +2019-02-25 12:13:27.569 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:27.570 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:27.570 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:27.570 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="KPLsHPBnHf6cCgii564rYkw1krGgzyieFwMX77Di/JI=" +2019-02-25 12:13:27.571 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:29.002 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-25 12:13:29.003 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_payment"},"id":"5510770086046944103006","orderInformation":{"amountDetails":{"authorizedAmount":"100.00","currency":"XXXXXXXXX"}},"processorInformation":{"approvalCode":"888888","responseCode":"100","avs":{"code":"X","codeRaw":"I1"}},"reconciliationId":"79005893JSEY0E1J","status":"AUTHORIZED","submitTimeUtc":"2019-02-25T06:43:28Z","_links":{"self":{"href":"/pts/v2/payments/5510770086046944103006","method":"GET"},"authReversal":{"href":"/pts/v2/payments/5510770086046944103006/reversals","method":"POST"},"capture":{"href":"/pts/v2/payments/5510770086046944103006/captures","method":"POST"},"refund":{"href":"/pts/v2/payments/5510770086046944103006/refunds","method":"POST"},"void":{"href":"/pts/v2/payments/5510770086046944103006/voids","method":"POST"}}} +2019-02-25 12:13:29.003 [main] INFO - Response Code: 201 +2019-02-25 12:13:29.004 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 346ms +v-c-correlation-id: ca4326e2-f1da-4e00-a795-5d11901ae32b +OkHttp-Sent-Millis: 1551077008449 +OkHttp-Received-Millis: 1551077008983 + +2019-02-25 12:13:29.004 [main] INFO - ********* END *********: +2019-02-25 12:13:29.103 [main] INFO - ********* START ********* +2019-02-25 12:13:29.104 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:29.104 [main] INFO - Request Type: POST +2019-02-25 12:13:29.105 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-25 12:13:29.105 [main] INFO - Digest: SHA-256=9fSj1EKw/bh20+8qy+dNjNB0D3AUtGEqGysAsjaV8mc= +2019-02-25 12:13:29.105 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:29.106 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:29.106 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:29.107 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="/OqVhl2cc0Tac+DrTmKUM3AS83tj/xs49OFfU4aSkGA=" +2019-02-25 12:13:29.107 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:29.662 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-25 12:13:29.663 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_payment"},"id":"5510770092596323803004","orderInformation":{"amountDetails":{"authorizedAmount":"200.00","currency":"XXXXXXXXX"}},"processorInformation":{"approvalCode":"888888","responseCode":"100","avs":{"code":"X","codeRaw":"I1"}},"reconciliationId":"790051638SEY0EDS","status":"AUTHORIZED","submitTimeUtc":"2019-02-25T06:43:29Z","_links":{"self":{"href":"/pts/v2/payments/5510770092596323803004","method":"GET"},"authReversal":{"href":"/pts/v2/payments/5510770092596323803004/reversals","method":"POST"},"capture":{"href":"/pts/v2/payments/5510770092596323803004/captures","method":"POST"},"refund":{"href":"/pts/v2/payments/5510770092596323803004/refunds","method":"POST"},"void":{"href":"/pts/v2/payments/5510770092596323803004/voids","method":"POST"}}} +2019-02-25 12:13:29.663 [main] INFO - Response Code: 201 +2019-02-25 12:13:29.664 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 797 +X-Cnection: close +x-response-time: 378ms +v-c-correlation-id: 722913aa-b302-482e-9a4b-47392fc51cff +OkHttp-Sent-Millis: 1551077009111 +OkHttp-Received-Millis: 1551077009661 + +2019-02-25 12:13:29.664 [main] INFO - ********* END *********: +2019-02-25 12:13:29.685 [main] INFO - ********* START ********* +2019-02-25 12:13:29.685 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:29.686 [main] INFO - Request Type: POST +2019-02-25 12:13:29.686 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/, requestType=POST} +2019-02-25 12:13:29.686 [main] INFO - Digest: SHA-256=2tcU+uu5dDGVk5SjAqgSKeuYv+N083oZZOBohesPeVM= +2019-02-25 12:13:29.687 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:29.687 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:29.687 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:29.688 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="DyUKWLdXlMv0uYmC+6EIrAHpeKjjSFtzmyHofdWcBGs=" +2019-02-25 12:13:29.688 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:30.176 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment"},"paymentInformation":{"card":{"number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","securityCode":"123"}},"orderInformation":{"amountDetails":{"totalAmount":"KLGT4","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{"cardPresent":false,"catLevel":6,"terminalCapability":4}} +2019-02-25 12:13:30.176 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:43:30Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"orderInformation.amountDetails.amount","reason":"INVALID_DATA"}]} +2019-02-25 12:13:30.176 [main] INFO - Response Code: 400 +2019-02-25 12:13:30.177 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 311ms +v-c-correlation-id: c32a19f8-5b2c-47d3-922c-3264ee023a4c +OkHttp-Sent-Millis: 1551077009698 +OkHttp-Received-Millis: 1551077010174 + +2019-02-25 12:13:30.177 [main] INFO - ********* END *********: +2019-02-25 12:13:30.252 [main] INFO - ********* START ********* +2019-02-25 12:13:30.252 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:30.252 [main] INFO - Request Type: POST +2019-02-25 12:13:30.252 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/captures, requestType=POST} +2019-02-25 12:13:30.252 [main] INFO - Digest: SHA-256=WoMXIGt0AOCCOTkzFvcqbUPjWj/ecM9vHKWFEulay5A= +2019-02-25 12:13:30.252 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:30.252 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:30.252 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:30.252 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="pV5mEuD/dDh1wF2WR5TaQPAF/FJu2iS1ufVSG71hmVY=" +2019-02-25 12:13:30.252 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:30.757 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-25 12:13:30.757 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_capture"},"id":"5510770103956491903001","orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"reconciliationId":"78558590HSF0G4OY","status":"PENDING","submitTimeUtc":"2019-02-25T06:43:30Z","_links":{"self":{"href":"/pts/v2/captures/5510770103956491903001","method":"GET"},"refund":{"href":"/pts/v2/captures/5510770103956491903001/refunds","method":"POST"},"void":{"href":"/pts/v2/captures/5510770103956491903001/voids","method":"POST"}}} +2019-02-25 12:13:30.757 [main] INFO - Response Code: 201 +2019-02-25 12:13:30.758 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 507 +X-Cnection: close +x-response-time: 325ms +v-c-correlation-id: b91d6296-d33d-4b98-a00d-9d95efad0dd7 +OkHttp-Sent-Millis: 1551077010263 +OkHttp-Received-Millis: 1551077010756 + +2019-02-25 12:13:30.758 [main] INFO - ********* END *********: +2019-02-25 12:13:30.790 [main] INFO - ********* START ********* +2019-02-25 12:13:30.790 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:30.791 [main] INFO - Request Type: POST +2019-02-25 12:13:30.791 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/captures, requestType=POST} +2019-02-25 12:13:30.792 [main] INFO - Digest: SHA-256=T6CtrtpnWVwxML8tYTZtKjcK1yBFQuzPEl2oS4FoGUQ= +2019-02-25 12:13:30.792 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:30.793 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:30.793 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:30.793 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="hgTJ7PIpivUKOnbWdiHVpqYQ+qWfHVXXR38j6XC6Q10=" +2019-02-25 12:13:30.793 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:31.277 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-25 12:13:31.278 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:43:31Z","status":"INVALID_REQUEST","reason":"EXCEEDS_AUTH_AMOUNT","message":"Decline - The requested amount exceeds the originally authorized amount. Occurs, for example, if you try to capture an amount larger than the original authorization amount."} +2019-02-25 12:13:31.278 [main] INFO - Response Code: 400 +2019-02-25 12:13:31.278 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 283 +X-Cnection: close +x-response-time: 313ms +v-c-correlation-id: c3b2745d-3f05-4660-8da9-96fb8c687719 +OkHttp-Sent-Millis: 1551077010796 +OkHttp-Received-Millis: 1551077011277 + +2019-02-25 12:13:31.279 [main] INFO - ********* END *********: +2019-02-25 12:13:31.290 [main] INFO - ********* START ********* +2019-02-25 12:13:31.290 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:31.290 [main] INFO - Request Type: POST +2019-02-25 12:13:31.290 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/56546567456/captures, requestType=POST} +2019-02-25 12:13:31.290 [main] INFO - Digest: SHA-256=sSZD40WR74lie9gPsXsa+fCGNDYSfeo42LSmf4Jga4o= +2019-02-25 12:13:31.290 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:31.290 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:31.290 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:31.300 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="3cBYfqtfH0ZAK5xC3RSYIpuqfSZ0XFYvBWFpROfEDrc=" +2019-02-25 12:13:31.300 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:31.807 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"},"billTo":{"firstName":"John","lastName":"Deo","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX"}},"pointOfSaleInformation":{}} +2019-02-25 12:13:31.807 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:43:31Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 12:13:31.808 [main] INFO - Response Code: 400 +2019-02-25 12:13:31.808 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 340ms +v-c-correlation-id: 3e0ef696-e2f5-47f8-ab69-28ced00ab729 +OkHttp-Sent-Millis: 1551077011301 +OkHttp-Received-Millis: 1551077011806 + +2019-02-25 12:13:31.808 [main] INFO - ********* END *********: +2019-02-25 12:13:31.847 [main] INFO - ********* START ********* +2019-02-25 12:13:31.847 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:31.848 [main] INFO - Request Type: POST +2019-02-25 12:13:31.848 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/reversals, requestType=POST} +2019-02-25 12:13:31.848 [main] INFO - Digest: SHA-256=+nVNWFcK5wejoED726n/0CNM4MAETj2u1DH6s02VUIk= +2019-02-25 12:13:31.849 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:31.849 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:31.849 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:31.850 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="o0MWpzi+oF2soeitB1j8XRSN1XpvCuCCR2Y4uThKd2o=" +2019-02-25 12:13:31.850 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:32.401 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"100.00"},"reason":"testing"}} +2019-02-25 12:13:32.402 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:43:32Z","status":"INVALID_REQUEST","reason":"TRANSACTION_ALREADY_REVERSED_OR_SETTLED","message":"Decline - The transaction has already been settled or reversed."} +2019-02-25 12:13:32.402 [main] INFO - Response Code: 400 +2019-02-25 12:13:32.403 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 194 +X-Cnection: close +x-response-time: 357ms +v-c-correlation-id: 0bbbe208-a0c9-448c-b617-deeaa1b5901b +OkHttp-Sent-Millis: 1551077011857 +OkHttp-Received-Millis: 1551077012401 + +2019-02-25 12:13:32.403 [main] INFO - ********* END *********: +2019-02-25 12:13:32.421 [main] INFO - ********* START ********* +2019-02-25 12:13:32.421 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:32.421 [main] INFO - Request Type: POST +2019-02-25 12:13:32.422 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/reversals, requestType=POST} +2019-02-25 12:13:32.422 [main] INFO - Digest: SHA-256=pAGeIXg2n5jV3A6rwpZbKaLbAzo/U73Yk5w2Zu0QX4M= +2019-02-25 12:13:32.422 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:32.423 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:32.423 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:32.423 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="ditcnJJVZ0acz437SwL3TADC9McLRYQvwTd2PgwBYKw=" +2019-02-25 12:13:32.424 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:32.891 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"200"},"reason":"testing"}} +2019-02-25 12:13:32.892 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:43:32Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"reversalInformation.amountDetails.totalAmount","reason":"INVALID_DATA"}]} +2019-02-25 12:13:32.892 [main] INFO - Response Code: 400 +2019-02-25 12:13:32.892 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 264 +X-Cnection: close +x-response-time: 293ms +v-c-correlation-id: 54bc014e-d48b-48eb-a255-62a7a8a458b4 +OkHttp-Sent-Millis: 1551077012425 +OkHttp-Received-Millis: 1551077012891 + +2019-02-25 12:13:32.893 [main] INFO - ********* END *********: +2019-02-25 12:13:32.910 [main] INFO - ********* START ********* +2019-02-25 12:13:32.911 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:32.911 [main] INFO - Request Type: POST +2019-02-25 12:13:32.911 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/767675757666/reversals, requestType=POST} +2019-02-25 12:13:32.912 [main] INFO - Digest: SHA-256=RnqH1+fiMX9fBKoMyq/WM8zd/qr2MMABzEgQHthyeSc= +2019-02-25 12:13:32.912 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:32.912 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:32.913 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:32.913 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="OTo0Qc+HHgkDy2GC/Kz7xbUPGawR/ssd53SvInt3+SY=" +2019-02-25 12:13:32.914 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:33.377 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_reversal"},"reversalInformation":{"amountDetails":{"totalAmount":"100"},"reason":"testing"}} +2019-02-25 12:13:33.378 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:43:33Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 12:13:33.378 [main] INFO - Response Code: 400 +2019-02-25 12:13:33.378 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 297ms +v-c-correlation-id: 3c2d358c-e6eb-4398-b2fc-e1295ddb2527 +OkHttp-Sent-Millis: 1551077012915 +OkHttp-Received-Millis: 1551077013376 + +2019-02-25 12:13:33.378 [main] INFO - ********* END *********: +2019-02-25 12:13:33.424 [main] INFO - ********* START ********* +2019-02-25 12:13:33.425 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:33.425 [main] INFO - Request Type: POST +2019-02-25 12:13:33.425 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-25 12:13:33.426 [main] INFO - Digest: SHA-256=zxGx3jITWtX9QIzslmEjtRBRSY1fB9P+o4iF5tlE4Oo= +2019-02-25 12:13:33.426 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:33.426 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:33.427 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:33.427 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="7a6aqy0cKQavgOnyLkGYqcfNthe7/6lW3IFZLCVShNU=" +2019-02-25 12:13:33.427 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:33.955 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 12:13:33.956 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_credits"},"creditAmountDetails":{"currency":"XXXXXXXXX","creditAmount":"100.00"},"id":"5510770136046417903002","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"79004818PSF0DT5U","status":"PENDING","submitTimeUtc":"2019-02-25T06:43:33Z","_links":{"self":{"href":"/pts/v2/credits/5510770136046417903002","method":"GET"},"void":{"href":"/pts/v2/credits/5510770136046417903002/voids","method":"POST"}}} +2019-02-25 12:13:33.956 [main] INFO - Response Code: 201 +2019-02-25 12:13:33.956 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 463 +X-Cnection: close +x-response-time: 315ms +v-c-correlation-id: 154e4bc5-b170-46c6-b990-cb3c66c558e7 +OkHttp-Sent-Millis: 1551077013433 +OkHttp-Received-Millis: 1551077013954 + +2019-02-25 12:13:33.956 [main] INFO - ********* END *********: +2019-02-25 12:13:33.984 [main] INFO - ********* START ********* +2019-02-25 12:13:33.984 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:33.985 [main] INFO - Request Type: POST +2019-02-25 12:13:33.985 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-25 12:13:33.985 [main] INFO - Digest: SHA-256=uT4XJKlq0xIzVkS9dGPs0tcDwyAp7ONh+358ol986cw= +2019-02-25 12:13:33.986 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:33.986 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:33.986 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:33.987 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="jWOdQWUJIwDQ1aljknzOBmrWdF2erlVsNScajqChOcI=" +2019-02-25 12:13:33.987 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:34.473 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 12:13:34.473 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_credits"},"creditAmountDetails":{"currency":"XXXXXXXXX","creditAmount":"200.00"},"id":"5510770141296944603006","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"789733868SF0DP7U","status":"PENDING","submitTimeUtc":"2019-02-25T06:43:34Z","_links":{"self":{"href":"/pts/v2/credits/5510770141296944603006","method":"GET"},"void":{"href":"/pts/v2/credits/5510770141296944603006/voids","method":"POST"}}} +2019-02-25 12:13:34.473 [main] INFO - Response Code: 201 +2019-02-25 12:13:34.474 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 463 +X-Cnection: close +x-response-time: 319ms +v-c-correlation-id: 6a0c0ca1-32f8-427b-91c7-bdc9b86c23a1 +OkHttp-Sent-Millis: 1551077013990 +OkHttp-Received-Millis: 1551077014472 + +2019-02-25 12:13:34.474 [main] INFO - ********* END *********: +2019-02-25 12:13:34.491 [main] INFO - ********* START ********* +2019-02-25 12:13:34.491 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:34.492 [main] INFO - Request Type: POST +2019-02-25 12:13:34.492 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/, requestType=POST} +2019-02-25 12:13:34.492 [main] INFO - Digest: SHA-256=4d6LdcAephqc3ZxTiCs5DRzvla4hZ9OijS7F7lbH+MA= +2019-02-25 12:13:34.493 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:34.493 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:34.493 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:34.493 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="zzih7jQIEGYz5dickZr4gXHCzHsxXqLdicayc9ad65w=" +2019-02-25 12:13:34.494 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:34.971 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credits"},"paymentInformation":{"card":{"number":"5555555555554444","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"002"}},"orderInformation":{"amountDetails":{"totalAmount":"GHTR25","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","locality":"san francisco","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"941055","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 12:13:34.971 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:43:34Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"orderInformation.amountDetails.amount","reason":"INVALID_DATA"}]} +2019-02-25 12:13:34.971 [main] INFO - Response Code: 400 +2019-02-25 12:13:34.972 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 310ms +v-c-correlation-id: 7ccfd566-81bb-4598-932c-b1bbd89a3864 +OkHttp-Sent-Millis: 1551077014495 +OkHttp-Received-Millis: 1551077014970 + +2019-02-25 12:13:34.972 [main] INFO - ********* END *********: +2019-02-25 12:13:35.001 [main] INFO - ********* START ********* +2019-02-25 12:13:35.001 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:35.001 [main] INFO - Request Type: POST +2019-02-25 12:13:35.002 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/refunds, requestType=POST} +2019-02-25 12:13:35.002 [main] INFO - Digest: SHA-256=I+1qD0zhOoAiatjE27A6YBxkUKBTRSBoS6VKc2mS8Bc= +2019-02-25 12:13:35.002 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:35.003 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:35.003 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:35.003 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="+2GzfloFQO7u7r2KZofALT6P4fv6/Gu2Vrx0jER7GlE=" +2019-02-25 12:13:35.003 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:35.486 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}}} +2019-02-25 12:13:35.487 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_refund_payment"},"creditAmountDetails":{"currency":"XXXXXXXXX"},"id":"5510770151446686603005","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"789733878SF0DP7V","refundAmountDetails":{"currency":"XXXXXXXXX","refundAmount":"100.00"},"status":"PENDING","submitTimeUtc":"2019-02-25T06:43:35Z","_links":{"self":{"href":"/pts/v2/refunds/5510770151446686603005","method":"GET"},"void":{"href":"/pts/v2/refunds/5510770151446686603005/voids","method":"POST"}}} +2019-02-25 12:13:35.487 [main] INFO - Response Code: 201 +2019-02-25 12:13:35.488 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 511 +X-Cnection: close +x-response-time: 310ms +v-c-correlation-id: af686cd5-f010-46ea-80ca-61e0e0c96849 +OkHttp-Sent-Millis: 1551077015009 +OkHttp-Received-Millis: 1551077015486 + +2019-02-25 12:13:35.488 [main] INFO - ********* END *********: +2019-02-25 12:13:35.509 [main] INFO - ********* START ********* +2019-02-25 12:13:35.509 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:35.509 [main] INFO - Request Type: POST +2019-02-25 12:13:35.509 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/refunds, requestType=POST} +2019-02-25 12:13:35.509 [main] INFO - Digest: SHA-256=k43sFGLkconY+lZ+qk3SH20ZjY4hdnzlhh7bkAtP+34= +2019-02-25 12:13:35.509 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:35.509 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:35.509 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:35.509 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Lx/rCtL+rl2YU08zokDxW+VxprYaRcYsayRucJBF4eM=" +2019-02-25 12:13:35.509 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:35.972 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}}} +2019-02-25 12:13:35.972 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_refund_payment"},"creditAmountDetails":{"currency":"XXXXXXXXX"},"id":"5510770156586686703005","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"78973751VSBVN8FO","refundAmountDetails":{"currency":"XXXXXXXXX","refundAmount":"200.00"},"status":"PENDING","submitTimeUtc":"2019-02-25T06:43:35Z","_links":{"self":{"href":"/pts/v2/refunds/5510770156586686703005","method":"GET"},"void":{"href":"/pts/v2/refunds/5510770156586686703005/voids","method":"POST"}}} +2019-02-25 12:13:35.973 [main] INFO - Response Code: 201 +2019-02-25 12:13:35.973 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 511 +X-Cnection: close +x-response-time: 286ms +v-c-correlation-id: 016b6c76-dbda-48c4-8866-20cc24a99dce +OkHttp-Sent-Millis: 1551077015517 +OkHttp-Received-Millis: 1551077015971 + +2019-02-25 12:13:35.973 [main] INFO - ********* END *********: +2019-02-25 12:13:35.991 [main] INFO - ********* START ********* +2019-02-25 12:13:35.991 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:35.991 [main] INFO - Request Type: POST +2019-02-25 12:13:35.992 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/676557657545457/refunds, requestType=POST} +2019-02-25 12:13:35.992 [main] INFO - Digest: SHA-256=3OkTv9EQccMckYHiNHUzAweMWa91L1CQXTmCvjjQHoU= +2019-02-25 12:13:35.992 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:35.993 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:35.993 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:35.993 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="QGG6JL/EKTlqHQbT42JS7Xb08RgN09qLc5E2WGTEvZQ=" +2019-02-25 12:13:35.993 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:36.485 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_payment"},"orderInformation":{"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX"}}} +2019-02-25 12:13:36.485 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:43:36Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 12:13:36.486 [main] INFO - Response Code: 400 +2019-02-25 12:13:36.486 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 317ms +v-c-correlation-id: ed1b9e26-1be4-4278-ab41-c160525caea1 +OkHttp-Sent-Millis: 1551077015995 +OkHttp-Received-Millis: 1551077016484 + +2019-02-25 12:13:36.486 [main] INFO - ********* END *********: +2019-02-25 12:13:36.510 [main] INFO - ********* START ********* +2019-02-25 12:13:36.510 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:36.510 [main] INFO - Request Type: POST +2019-02-25 12:13:36.511 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5510757573906363803002/refunds, requestType=POST} +2019-02-25 12:13:36.511 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-25 12:13:36.511 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:36.511 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:36.512 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:36.512 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="7aa5tAXa7yiAVNYgL94qSU9Su29oJALhfIWsnahdLHI=" +2019-02-25 12:13:36.512 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:37.042 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 12:13:37.043 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_refund_capture"},"creditAmountDetails":{"currency":"XXXXXXXXX"},"id":"5510770166796944803006","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"78973752VSBVN8FP","refundAmountDetails":{"currency":"XXXXXXXXX","refundAmount":"100.00"},"status":"PENDING","submitTimeUtc":"2019-02-25T06:43:36Z","_links":{"self":{"href":"/pts/v2/refunds/5510770166796944803006","method":"GET"},"void":{"href":"/pts/v2/refunds/5510770166796944803006/voids","method":"POST"}}} +2019-02-25 12:13:37.043 [main] INFO - Response Code: 201 +2019-02-25 12:13:37.044 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 511 +X-Cnection: close +x-response-time: 333ms +v-c-correlation-id: a07894a4-2987-46d4-ab35-8dcffecddb19 +OkHttp-Sent-Millis: 1551077016516 +OkHttp-Received-Millis: 1551077017042 + +2019-02-25 12:13:37.044 [main] INFO - ********* END *********: +2019-02-25 12:13:37.062 [main] INFO - ********* START ********* +2019-02-25 12:13:37.063 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:37.063 [main] INFO - Request Type: POST +2019-02-25 12:13:37.063 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5510757573906363803002/refunds, requestType=POST} +2019-02-25 12:13:37.064 [main] INFO - Digest: SHA-256=wpSGzbtW0BUOhzWs7lfUWgOPwslWGPDCGWzRLNsbsWk= +2019-02-25 12:13:37.064 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:37.064 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:37.064 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:37.065 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="Jl/9X+ZEPRzVgYaU+AphfLHe+towaQ1dHU+z9W3JQZQ=" +2019-02-25 12:13:37.065 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:37.548 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 12:13:37.548 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"test_refund_capture"},"creditAmountDetails":{"currency":"XXXXXXXXX"},"id":"5510770172156324403004","orderInformation":{"amountDetails":{"currency":"XXXXXXXXX"}},"reconciliationId":"789733888SF0DP7W","refundAmountDetails":{"currency":"XXXXXXXXX","refundAmount":"200.00"},"status":"PENDING","submitTimeUtc":"2019-02-25T06:43:37Z","_links":{"self":{"href":"/pts/v2/refunds/5510770172156324403004","method":"GET"},"void":{"href":"/pts/v2/refunds/5510770172156324403004/voids","method":"POST"}}} +2019-02-25 12:13:37.548 [main] INFO - Response Code: 201 +2019-02-25 12:13:37.549 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 511 +X-Cnection: close +x-response-time: 312ms +v-c-correlation-id: 937c55bd-c5b7-4ead-b90f-f0d6d5486036 +OkHttp-Sent-Millis: 1551077017067 +OkHttp-Received-Millis: 1551077017547 + +2019-02-25 12:13:37.549 [main] INFO - ********* END *********: +2019-02-25 12:13:37.567 [main] INFO - ********* START ********* +2019-02-25 12:13:37.567 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:37.567 [main] INFO - Request Type: POST +2019-02-25 12:13:37.568 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/7567677656567/refunds, requestType=POST} +2019-02-25 12:13:37.568 [main] INFO - Digest: SHA-256=ixWXDVnTGR0ma1EHTgjp780Wz5JX7xCOdJ85+BpL5WQ= +2019-02-25 12:13:37.568 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:37.568 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:37.569 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:37.569 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="54nUApHRidEiWYnYb3mPd/Vb+DJTWWo8sbUmPyEYcUA=" +2019-02-25 12:13:37.569 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:38.040 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_capture"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX","exchangeRate":"0.5","exchangeRateTimeStamp":"2.01304E+13"},"billTo":{"firstName":"John","lastName":"Deo","company":"Visa","address1":"1 Market St","address2":"Foster City","locality":"Ann Arbor","administrativeArea":"MI","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"9999999"},"invoiceDetails":{"purchaseOrderNumber":"CREDIT US","purchaseOrderDate":"20111231"},"shippingDetails":{"shipFromPostalCode":"47404"}},"buyerInformation":{"merchantCustomerId":"123456abcd"},"merchantInformation":{"categoryCode":1234},"aggregatorInformation":{"aggregatorId":"123456789","name":"V-Internatio","subMerchant":{"name":"Visa Inc","address1":"1 Market St","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"4158880000"}}} +2019-02-25 12:13:38.040 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:43:37Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 12:13:38.040 [main] INFO - Response Code: 400 +2019-02-25 12:13:38.041 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 294ms +v-c-correlation-id: ff5fb234-0d76-4b32-9de2-ec3a3255c55f +OkHttp-Sent-Millis: 1551077017571 +OkHttp-Received-Millis: 1551077018039 + +2019-02-25 12:13:38.041 [main] INFO - ********* END *********: +2019-02-25 12:13:38.065 [main] INFO - ********* START ********* +2019-02-25 12:13:38.065 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:38.066 [main] INFO - Request Type: POST +2019-02-25 12:13:38.066 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5510757573906363803002/voids, requestType=POST} +2019-02-25 12:13:38.066 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-25 12:13:38.067 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:38.067 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:38.067 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:38.067 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="2b5o5JKtrX+rIFFNG3++pLucnZ/tQHjAUWzi0c1RVSw=" +2019-02-25 12:13:38.068 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:38.574 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-02-25 12:13:38.574 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:43:38Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-25 12:13:38.575 [main] INFO - Response Code: 400 +2019-02-25 12:13:38.575 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 331ms +v-c-correlation-id: 41206dc8-c328-4a75-b673-22a9883df940 +OkHttp-Sent-Millis: 1551077018073 +OkHttp-Received-Millis: 1551077018574 + +2019-02-25 12:13:38.575 [main] INFO - ********* END *********: +2019-02-25 12:13:38.593 [main] INFO - ********* START ********* +2019-02-25 12:13:38.593 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:38.593 [main] INFO - Request Type: POST +2019-02-25 12:13:38.594 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payments/5475754754/voids, requestType=POST} +2019-02-25 12:13:38.594 [main] INFO - Digest: SHA-256=L4BISIt7dBxysZg5ooB8AqLBl1pNtnFnDa6sFJG8VT4= +2019-02-25 12:13:38.594 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:38.595 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:38.595 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:38.595 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="zoJ1NlzmPSktxIMYQqBIfq0SuG3LZsob/Tc28buRtC8=" +2019-02-25 12:13:38.595 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:39.045 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_payment_void"}} +2019-02-25 12:13:39.045 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:43:38Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 12:13:39.045 [main] INFO - Response Code: 400 +2019-02-25 12:13:39.046 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 278ms +v-c-correlation-id: 65c25bb6-2641-44f8-978d-909b1f78c556 +OkHttp-Sent-Millis: 1551077018598 +OkHttp-Received-Millis: 1551077019044 + +2019-02-25 12:13:39.046 [main] INFO - ********* END *********: +2019-02-25 12:13:39.068 [main] INFO - ********* START ********* +2019-02-25 12:13:39.068 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:39.068 [main] INFO - Request Type: POST +2019-02-25 12:13:39.069 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/5510757573906363803002/voids, requestType=POST} +2019-02-25 12:13:39.069 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-25 12:13:39.069 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:39.069 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:39.070 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:39.070 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="eOxKFc9Wha34YEn0xKI4lFL/128l8SPHHmf7s0IwtGo=" +2019-02-25 12:13:39.070 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:39.551 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_capture_void"}} +2019-02-25 12:13:39.552 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:43:39Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-25 12:13:39.552 [main] INFO - Response Code: 400 +2019-02-25 12:13:39.552 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 308ms +v-c-correlation-id: 799fe13b-6556-45bb-8e4a-ba4f57b85c5f +OkHttp-Sent-Millis: 1551077019074 +OkHttp-Received-Millis: 1551077019551 + +2019-02-25 12:13:39.552 [main] INFO - ********* END *********: +2019-02-25 12:13:39.569 [main] INFO - ********* START ********* +2019-02-25 12:13:39.569 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:39.570 [main] INFO - Request Type: POST +2019-02-25 12:13:39.570 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/captures/551075757390555803002/voids, requestType=POST} +2019-02-25 12:13:39.570 [main] INFO - Digest: SHA-256=U0jwd2a3UDVjYUD7ajGVMSvMtwzSSsRLmTqtaS984gQ= +2019-02-25 12:13:39.571 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:39.571 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:39.571 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:39.571 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="4wQxcgyOiJN8wi/88qkv/SFWG2P3+pGRGGl8nfPCXek=" +2019-02-25 12:13:39.572 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:49.594 [main] INFO - ********* START ********* +2019-02-25 12:13:49.596 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:49.596 [main] INFO - Request Type: POST +2019-02-25 12:13:49.596 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/5510757573906363803002/voids, requestType=POST} +2019-02-25 12:13:49.596 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-25 12:13:49.596 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:49.597 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:49.597 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:49.597 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="8NQTffE1c3XQCzAIUM+q5IJ9azel1db5NIg3dE2Lgrk=" +2019-02-25 12:13:49.597 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:50.476 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credit_void"}} +2019-02-25 12:13:50.476 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:43:50Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-25 12:13:50.477 [main] INFO - Response Code: 400 +2019-02-25 12:13:50.477 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 323ms +v-c-correlation-id: 54a38443-78c7-4e60-a17c-feba5b45fbbe +OkHttp-Sent-Millis: 1551077029840 +OkHttp-Received-Millis: 1551077030476 + +2019-02-25 12:13:50.477 [main] INFO - ********* END *********: +2019-02-25 12:13:50.494 [main] INFO - ********* START ********* +2019-02-25 12:13:50.494 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:50.495 [main] INFO - Request Type: POST +2019-02-25 12:13:50.495 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/credits/547676/voids, requestType=POST} +2019-02-25 12:13:50.495 [main] INFO - Digest: SHA-256=ZdsNYSLuORFjibt/mPry0J+Mdz3HSkV2uCDxlXlyzio= +2019-02-25 12:13:50.496 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:50.496 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:50.496 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:50.496 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="IkXWMYhQ4TIzKW+8z02Cc/qg8N/yh9efAUWx34aSHGM=" +2019-02-25 12:13:50.497 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:50.970 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_credit_void"}} +2019-02-25 12:13:50.971 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:43:50Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 12:13:50.971 [main] INFO - Response Code: 400 +2019-02-25 12:13:50.971 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 288ms +v-c-correlation-id: 094b0d97-08ee-474f-8566-f35c2ff98028 +OkHttp-Sent-Millis: 1551077030498 +OkHttp-Received-Millis: 1551077030970 + +2019-02-25 12:13:50.971 [main] INFO - ********* END *********: +2019-02-25 12:13:50.993 [main] INFO - ********* START ********* +2019-02-25 12:13:50.994 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:50.994 [main] INFO - Request Type: POST +2019-02-25 12:13:50.994 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/5510757573906363803002/voids, requestType=POST} +2019-02-25 12:13:50.995 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-25 12:13:50.995 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:50.995 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:50.995 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:50.996 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="2uYAwoc5kM+W7oPt+XbcmKWGPc+OGq61/U6y7hfv5kA=" +2019-02-25 12:13:50.996 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:51.535 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_void"}} +2019-02-25 12:13:51.535 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:43:51Z","status":"INVALID_REQUEST","reason":"NOT_VOIDABLE","message":"Decline - The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided."} +2019-02-25 12:13:51.536 [main] INFO - Response Code: 400 +2019-02-25 12:13:51.536 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 313 +X-Cnection: close +x-response-time: 354ms +v-c-correlation-id: 92ced8bb-f2c4-414a-b5ed-014c8098d855 +OkHttp-Sent-Millis: 1551077030999 +OkHttp-Received-Millis: 1551077031535 + +2019-02-25 12:13:51.536 [main] INFO - ********* END *********: +2019-02-25 12:13:51.553 [main] INFO - ********* START ********* +2019-02-25 12:13:51.553 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:51.554 [main] INFO - Request Type: POST +2019-02-25 12:13:51.554 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/refunds/45654754745/voids, requestType=POST} +2019-02-25 12:13:51.554 [main] INFO - Digest: SHA-256=5yy755U7hrW36pTXNY2OR/52yAC89MV45WJZ9PPI2Zg= +2019-02-25 12:13:51.555 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:51.555 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:51.555 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:51.555 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="TBpiRtYFxolegZZAD+H9qV8bgh5JfozVj8u/w7r/yTI=" +2019-02-25 12:13:51.556 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:52.047 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"test_refund_void"}} +2019-02-25 12:13:52.047 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:43:51Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"id","reason":"INVALID_DATA"}]} +2019-02-25 12:13:52.047 [main] INFO - Response Code: 400 +2019-02-25 12:13:52.048 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 221 +X-Cnection: close +x-response-time: 296ms +v-c-correlation-id: a63103f6-439a-4730-946d-f1895c21a778 +OkHttp-Sent-Millis: 1551077031557 +OkHttp-Received-Millis: 1551077032046 + +2019-02-25 12:13:52.048 [main] INFO - ********* END *********: +2019-02-25 12:13:52.102 [main] INFO - ********* START ********* +2019-02-25 12:13:52.102 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:52.103 [main] INFO - Request Type: POST +2019-02-25 12:13:52.103 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-25 12:13:52.103 [main] INFO - Digest: SHA-256=rp59HYGOOXP6bWKiVpWMNgj4QjYai6gMk27yt69dPh8= +2019-02-25 12:13:52.104 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:52.104 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:52.104 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:52.104 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="hoeeZh+pzHo131njWKxPAi1Z8c/HOfb4KWgCSU71QLg=" +2019-02-25 12:13:52.105 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:52.785 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"33557799"},"orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"FD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-25 12:13:52.785 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"33557799"},"id":"5510770322656324603004","orderInformation":{"amountDetails":{"totalAmount":"100.00","currency":"XXXXXXXXX"}},"paymentInformation":{"accountFeatures":{"feeProgramIndicator":"FE1"}},"processorInformation":{"systemTraceAuditNumber":"155277","approvalCode":"831000","responseCodeSource":"5","transactionId":"016153570198200","responseCode":"00"},"reconciliationId":"5510770322656324603004","status":"ACCEPTED","submitTimeUtc":"2019-02-25T064352Z"} +2019-02-25 12:13:52.785 [main] INFO - Response Code: 201 +2019-02-25 12:13:52.786 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 493 +X-Cnection: close +x-response-time: 495ms +v-c-correlation-id: c5f5ad57-825b-41ad-a496-0c0511b4ee14 +OkHttp-Sent-Millis: 1551077032108 +OkHttp-Received-Millis: 1551077032784 + +2019-02-25 12:13:52.786 [main] INFO - ********* END *********: +2019-02-25 12:13:52.804 [main] INFO - ********* START ********* +2019-02-25 12:13:52.804 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:52.805 [main] INFO - Request Type: POST +2019-02-25 12:13:52.805 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-25 12:13:52.805 [main] INFO - Digest: SHA-256=WV4kmV6NZQKID4sN4WMbFxFXqbg/hn8kxL7FOS4jQXk= +2019-02-25 12:13:52.806 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:52.806 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:52.806 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:52.806 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="PsS8xhHMiJSUCN6j7ycBj5HShembQLlNSHoO9x9D83Y=" +2019-02-25 12:13:52.807 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:53.521 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"12345"},"orderInformation":{"amountDetails":{"totalAmount":"200","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"GD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-25 12:13:53.521 [main] INFO - Response Message: {"clientReferenceInformation":{"code":"12345"},"id":"5510770329636688203005","orderInformation":{"amountDetails":{"totalAmount":"200.00","currency":"XXXXXXXXX"}},"paymentInformation":{"accountFeatures":{"feeProgramIndicator":"FE1"}},"processorInformation":{"systemTraceAuditNumber":"106827","approvalCode":"831000","responseCodeSource":"5","transactionId":"016153570198200","responseCode":"00"},"reconciliationId":"5510770329636688203005","status":"ACCEPTED","submitTimeUtc":"2019-02-25T064353Z"} +2019-02-25 12:13:53.521 [main] INFO - Response Code: 201 +2019-02-25 12:13:53.522 [main] INFO - Response Headers: Content-Type: application/hal+json +Content-Length: 490 +X-Cnection: close +x-response-time: 522ms +v-c-correlation-id: 13c77556-53a6-47ab-b36c-4586f5f20739 +OkHttp-Sent-Millis: 1551077032809 +OkHttp-Received-Millis: 1551077033520 + +2019-02-25 12:13:53.522 [main] INFO - ********* END *********: +2019-02-25 12:13:53.539 [main] INFO - ********* START ********* +2019-02-25 12:13:53.539 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:53.539 [main] INFO - Request Type: POST +2019-02-25 12:13:53.539 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v2/payouts/, requestType=POST} +2019-02-25 12:13:53.540 [main] INFO - Digest: SHA-256=w9ZjmtCKOCPKH6OZhKI9VKNlfIK5wZLl6ZxwHbxFJsQ= +2019-02-25 12:13:53.540 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:53.540 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:53.540 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:53.541 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="PElQ1ZARH5RHDHkpiV5A/h+kIK+DmY7HooiKi6CNTYE=" +2019-02-25 12:13:53.541 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:54.027 [main] INFO - Request Body: {"clientReferenceInformation":{"code":"6789"},"orderInformation":{"amountDetails":{"totalAmount":"DSWAZ1","currency":"XXXXXXXXX"}},"merchantInformation":{"categoryCode":123,"merchantDescriptor":{"name":"Thomas","locality":"FC","country":"US","administrativeArea":"CA","postalCode":"94440"}},"recipientInformation":{"firstName":"John","lastName":"Deo","address1":"Paseo Padre Boulevard","locality":"Foster City","administrativeArea":"CA","country":"US","postalCode":"94400","phoneNumber":"6504320556"},"senderInformation":{"referenceNumber":"1234567890","name":"Thomas Jefferson","address1":"900 Metro Center Blvd.900","locality":"Foster City","administrativeArea":"CA","countryCode":"US"},"processingInformation":{"businessApplicationId":"MD","networkRoutingOrder":"ECG","commerceIndicator":"internet"},"paymentInformation":{"card":{"type":"001","number":"4111111111111111","expirationMonth":"XXXXXXXXX","expirationYear":"2025","sourceAccountType":"CH"}}} +2019-02-25 12:13:54.027 [main] INFO - Response Message: {"submitTimeUtc":"2019-02-25T06:43:53Z","status":"INVALID_REQUEST","reason":"INVALID_DATA","message":"Declined - One or more fields in the request contains invalid data","details":[{"field":"orderInformation.amountDetails.amount","reason":"INVALID_DATA"}]} +2019-02-25 12:13:54.028 [main] INFO - Response Code: 400 +2019-02-25 12:13:54.028 [main] INFO - Response Headers: Content-Type: application/json +Content-Length: 256 +X-Cnection: close +x-response-time: 302ms +v-c-correlation-id: 95b3911b-1851-429c-b701-e16ec8bc0f34 +OkHttp-Sent-Millis: 1551077033544 +OkHttp-Received-Millis: 1551077034027 + +2019-02-25 12:13:54.028 [main] INFO - ********* END *********: +2019-02-25 12:13:54.053 [main] INFO - ********* START ********* +2019-02-25 12:13:54.054 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:54.054 [main] INFO - Request Type: POST +2019-02-25 12:13:54.054 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-25 12:13:54.054 [main] INFO - Digest: SHA-256=YljtibTei+du4xVIDxMr3HBsyLAEDuiYaag9TcU9jHA= +2019-02-25 12:13:54.055 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:54.055 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:54.055 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:54.055 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="kI1dcjDrFgzsThgVMnmdn4qytm6LtMqx6GShh6IUOJw=" +2019-02-25 12:13:54.056 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:54.244 [main] INFO - Request Body: {"encryptionType":"RsaOaep256"} +2019-02-25 12:13:54.245 [main] INFO - Response Message: {"keyId":"07kBi7KOp6sqWC0sKrhdRe7dcjaEjzfs","der":{"format":"X.509","algorithm":"RSA","publicKey":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmks3zRNA2wtN3SEVEjPucLJsw0DVkPieDJgGD8MMQ1PEO3N8FBVk5OusX+F4TVkNrNNx1LN4xwRSC/scVj7FwwBSzSDgow221MNhtTtN7zD3smFeJD5+QsxyiF/dhsEn+8UaWwWi21G6t0ibg7cgfBFyuxmREYzURxAxcC04zHHZNRL0zbK3pupQxQGug0mcWDQCTFn/d1Xy32IQJ4VtiIGlduzLnxIx28TZP8yPMig5sWBPY7Wag3JfsVCSO3Z81mj1UpyOSqSJZ7/tzxFKZNB6W33t5U4CISPmgrakSrDpUsbuNaQtao1FblIzNUoGYJT+/gtA/IV5wfVxZssfhwIDAQAB"},"jwk":{"kty":"RSA","use":"enc","kid":"07kBi7KOp6sqWC0sKrhdRe7dcjaEjzfs","n":"mks3zRNA2wtN3SEVEjPucLJsw0DVkPieDJgGD8MMQ1PEO3N8FBVk5OusX-F4TVkNrNNx1LN4xwRSC_scVj7FwwBSzSDgow221MNhtTtN7zD3smFeJD5-QsxyiF_dhsEn-8UaWwWi21G6t0ibg7cgfBFyuxmREYzURxAxcC04zHHZNRL0zbK3pupQxQGug0mcWDQCTFn_d1Xy32IQJ4VtiIGlduzLnxIx28TZP8yPMig5sWBPY7Wag3JfsVCSO3Z81mj1UpyOSqSJZ7_tzxFKZNB6W33t5U4CISPmgrakSrDpUsbuNaQtao1FblIzNUoGYJT-_gtA_IV5wfVxZssfhw","e":"AQAB"}} +2019-02-25 12:13:54.245 [main] INFO - Response Code: 200 +2019-02-25 12:13:54.245 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=aZk1If8ZyANTLy+AMPkk/0+nruMzKk/DzV9InkN9dQs= +Content-Type: application/json;charset=UTF-8 +Content-Length: 927 +Date: Mon, 25 Feb 2019 06:43:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 52cf4f22-139f-49f4-a6cb-db427cb16f5a +OkHttp-Sent-Millis: 1551077034062 +OkHttp-Received-Millis: 1551077034244 + +2019-02-25 12:13:54.245 [main] INFO - ********* END *********: +2019-02-25 12:13:54.267 [main] INFO - ********* START ********* +2019-02-25 12:13:54.268 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:54.268 [main] INFO - Request Type: POST +2019-02-25 12:13:54.268 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-25 12:13:54.269 [main] INFO - Digest: SHA-256=gEZo4PozZVgCrpNd3JKwGruwMOoyFI70wP0aDjupsBk= +2019-02-25 12:13:54.269 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:54.269 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:54.269 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:54.270 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="NRkBrwnu8/9/hL6/c2xyD4sx+WTm0muYB5Rl7QjFYoQ=" +2019-02-25 12:13:54.270 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:54.454 [main] INFO - Request Body: {"encryptionType":"PqaPabc255"} +2019-02-25 12:13:54.454 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"One or more validation errors occurred","correlationId":null,"details":[{"location":"encryptionType","message":"encryptionType is invalid"}],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-25 12:13:54.455 [main] INFO - Response Code: 400 +2019-02-25 12:13:54.455 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Mon, 25 Feb 2019 06:43:53 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 83c171f7-558e-4bc0-a556-9c269913c97a +OkHttp-Sent-Millis: 1551077034271 +OkHttp-Received-Millis: 1551077034453 + +2019-02-25 12:13:54.455 [main] INFO - ********* END *********: +2019-02-25 12:13:54.475 [main] INFO - ********* START ********* +2019-02-25 12:13:54.475 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:54.475 [main] INFO - Request Type: POST +2019-02-25 12:13:54.476 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-25 12:13:54.476 [main] INFO - Digest: SHA-256=bena9bhB3Jy4uPvfu1tAC0uN8AuzzM+xjqmDwR5//EA= +2019-02-25 12:13:54.476 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:54.476 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:54.477 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:54.477 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="rMIwjelgvKc6i+YZNMpWjxQhZS5l07y13oQeHc6MiC8=" +2019-02-25 12:13:54.477 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:54.657 [main] INFO - Request Body: {"encryptionType":"None"} +2019-02-25 12:13:54.657 [main] INFO - Response Message: {"keyId":"07vNTES2tv02fDR78A2zUk1KvtvClPLj","der":{"format":"X.509","algorithm":"RSA","publicKey":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvb/AtheVBf18tHRQZdbE9D69dE5tvcBsqttUleaiM843WjBSC1VndgRrh/0r2FIxhoHEcgM6B29SlZu9/a0HSE0EWMTm42c2EQzU1/bZapq6nte+9sxcD38aSumQF3H/baKuAphp+kKpc2T4fmaecHxMgXnYCCGwtTAicfgFvc6pTm58buLEoFLBGsWICeWhwGY/W6xo8nBn4ijpfMuiUXtCDvLYLQC4G1nEKqz9E/BlQA+vjjbsNkBZKkACl64eDUe76qaPOQAmGif/1Wc6ZD9tVRlks+uwSoresbqgqKKSS0p2y2BIwEgmKC2sOSq6gfHHaR1qm/xZthFdKcZgDQIDAQAB"},"jwk":null} +2019-02-25 12:13:54.657 [main] INFO - Response Code: 200 +2019-02-25 12:13:54.657 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=XuDZg9m4c+EK/lR8+yxFIdpZ9kbXX/8zKgbvvVbG7WQ= +Content-Type: application/json;charset=UTF-8 +Content-Length: 505 +Date: Mon, 25 Feb 2019 06:43:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: b2372280-b40e-4045-a942-a81d00ba8f77 +OkHttp-Sent-Millis: 1551077034479 +OkHttp-Received-Millis: 1551077034656 + +2019-02-25 12:13:54.657 [main] INFO - ********* END *********: +2019-02-25 12:13:54.675 [main] INFO - ********* START ********* +2019-02-25 12:13:54.675 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:54.675 [main] INFO - Request Type: POST +2019-02-25 12:13:54.675 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/keys/, requestType=POST} +2019-02-25 12:13:54.676 [main] INFO - Digest: SHA-256=RGxc6GDM4hd0Lz1J24GEBLuX6JSK+r0fZi1/r0x/0Xo= +2019-02-25 12:13:54.676 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:54.676 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:54.676 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:54.677 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="V5j/JJX7o2daJmE4g4mPj2zLGrw+pbin6QNNqLY2bOI=" +2019-02-25 12:13:54.677 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:54.856 [main] INFO - Request Body: {"encryptionType":"SDMP"} +2019-02-25 12:13:54.856 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"One or more validation errors occurred","correlationId":null,"details":[{"location":"encryptionType","message":"encryptionType is invalid"}],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-25 12:13:54.856 [main] INFO - Response Code: 400 +2019-02-25 12:13:54.857 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=vXYMLIbNhONr1Fa/GoDZCpUYfgEK5Ho1iDpFAELqgXk= +Content-Type: application/json;charset=UTF-8 +Content-Length: 280 +Date: Mon, 25 Feb 2019 06:43:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 13c606d4-c3ec-4a78-9984-9e40461181d2 +OkHttp-Sent-Millis: 1551077034679 +OkHttp-Received-Millis: 1551077034855 + +2019-02-25 12:13:54.857 [main] INFO - ********* END *********: +2019-02-25 12:13:54.883 [main] INFO - ********* START ********* +2019-02-25 12:13:54.883 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:54.883 [main] INFO - Request Type: POST +2019-02-25 12:13:54.884 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-25 12:13:54.884 [main] INFO - Digest: SHA-256=jNQYA9OvDKi2aiMe5v1oD0pmWKO9fh7qs1uh97o7grM= +2019-02-25 12:13:54.884 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:54.885 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:54.885 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:54.885 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="X9etdsfN7iKVV7dENrWv5m1tjKvaGqhGQ/+0Sm9bfhM=" +2019-02-25 12:13:54.885 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:55.043 [main] INFO - Request Body: {"keyId":"07UkZGZbFt1M6JUZqCqh4sNZCa5AzOdP","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-25 12:13:55.043 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [07UkZGZbFt1M6JUZqCqh4sNZCa5AzOdP]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-25 12:13:55.044 [main] INFO - Response Code: 400 +2019-02-25 12:13:55.044 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=yNhy6XvPZH9AhqmOChigyYTJE6xEkAU74Tim2mLyaOw= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Mon, 25 Feb 2019 06:43:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: cfe1f018-5161-4402-866c-a92d8b7b253c +OkHttp-Sent-Millis: 1551077034890 +OkHttp-Received-Millis: 1551077035043 + +2019-02-25 12:13:55.045 [main] INFO - ********* END *********: +2019-02-25 12:13:55.062 [main] INFO - ********* START ********* +2019-02-25 12:13:55.062 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:55.062 [main] INFO - Request Type: POST +2019-02-25 12:13:55.063 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/flex/v1/tokens/, requestType=POST} +2019-02-25 12:13:55.063 [main] INFO - Digest: SHA-256=Wz7l0f7/Z/NXG9TcXcCeXuNDfpdOiQ9MDBxkik1D+SU= +2019-02-25 12:13:55.063 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:55.064 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:55.065 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:55.065 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="vePJs5TGTP/hOIRuvzQpEuUzmKX0ucys+gtgCavV9Zk=" +2019-02-25 12:13:55.066 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:55.226 [main] INFO - Request Body: {"keyId":"0023154mudgshfyrtdgfj456fhdggdg1","cardInfo":{"cardNumber":"XXXXXXXXX","cardExpirationMonth":"03","cardExpirationYear":"2031","cardType":"XXXXXXXXX"}} +2019-02-25 12:13:55.226 [main] INFO - Response Message: {"responseStatus":{"status":400,"reason":"VALIDATION_ERROR","message":"Cannot find private RSA key with keyId [0023154mudgshfyrtdgfj456fhdggdg1]","correlationId":null,"details":[],"_embedded":{}},"_links":{"self":null,"documentation":[],"next":[]}} +2019-02-25 12:13:55.227 [main] INFO - Response Code: 400 +2019-02-25 12:13:55.227 [main] INFO - Response Headers: X-Application-Context: application:8443 +Strict-Transport-Security: max-age=63072000 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Download-Options: noopen +Digest: SHA-256=hDA2L3/QDKa4RtT2AY3OutZ1Dd60OCL0GFJHRsGzXyg= +Content-Type: application/json;charset=UTF-8 +Content-Length: 248 +Date: Mon, 25 Feb 2019 06:43:54 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d57a2cd0-7446-4c48-a057-df7b19974fc3 +OkHttp-Sent-Millis: 1551077035068 +OkHttp-Received-Millis: 1551077035225 + +2019-02-25 12:13:55.227 [main] INFO - ********* END *********: +2019-02-25 12:13:55.273 [main] INFO - ********* START ********* +2019-02-25 12:13:55.274 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:55.274 [main] INFO - Request Type: POST +2019-02-25 12:13:55.275 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-25 12:13:55.275 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-25 12:13:55.275 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:55.275 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:55.276 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:55.276 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="yHBUETViNgN/qlCzsW3hfPYwhwksjJREYi+RphCyEdk=" +2019-02-25 12:13:55.277 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:55.480 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-25 12:13:55.480 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}} +2019-02-25 12:13:55.481 [main] INFO - Response Code: 200 +2019-02-25 12:13:55.481 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_c6a079a8-8f0a-4f14-9e6b-b4220bb6b4ae +uniqueTransactionID: e86ece40-c0ae-4998-933f-8b5455ee000a +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111 +ETag: "gaZK/nV+l22isZ3TbN3ZzT9IaEaq3CvEWNIjknrm2LY=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 25 Feb 2019 06:43:55 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 77d01e59-2d5e-4c58-8579-b055c47c0cbe +OkHttp-Sent-Millis: 1551077035282 +OkHttp-Received-Millis: 1551077035480 + +2019-02-25 12:13:55.481 [main] INFO - ********* END *********: +2019-02-25 12:13:55.503 [main] INFO - ********* START ********* +2019-02-25 12:13:55.503 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:55.504 [main] INFO - Request Type: POST +2019-02-25 12:13:55.504 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers, requestType=POST} +2019-02-25 12:13:55.504 [main] INFO - Digest: SHA-256=+YtBO9TRFeQSC8KptzzG8fKBf6yP3dW6Wu0qGHwiRrk= +2019-02-25 12:13:55.504 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:55.505 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:55.505 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:55.505 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="yHBUETViNgN/qlCzsW3hfPYwhwksjJREYi+RphCyEdk=" +2019-02-25 12:13:55.505 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:55.697 [main] INFO - Request Body: {"card":{"number":"4111111111111111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-25 12:13:55.697 [main] INFO - Response Message: {"errors":[{"type":"invalidHeaders","message":"Invalid header values","details":[{"name":"profile-id"}]}]} +2019-02-25 12:13:55.697 [main] INFO - Response Code: 400 +2019-02-25 12:13:55.698 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_2f243bf2-231d-4d5b-9f62-efe511c51ada +uniqueTransactionID: 0ba315ac-de17-425a-9072-624d1adc62a0 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Mon, 25 Feb 2019 06:43:55 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 109e97eb-4953-4270-9594-2a6c59df3596 +OkHttp-Sent-Millis: 1551077035508 +OkHttp-Received-Millis: 1551077035696 + +2019-02-25 12:13:55.698 [main] INFO - ********* END *********: +2019-02-25 12:13:55.762 [main] INFO - ********* START ********* +2019-02-25 12:13:55.762 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:55.763 [main] INFO - Request Type: POST +2019-02-25 12:13:55.763 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-25 12:13:55.763 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-25 12:13:55.763 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:55.764 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:55.764 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:55.764 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="wWJbOcRrWffljwXAeE6/YU713rMHRbocYD/qespFjdg=" +2019-02-25 12:13:55.764 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:56.009 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-25 12:13:56.010 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/82B32BD165CC5D4FE05340588D0A3467"}},"id":"82B32BD165CC5D4FE05340588D0A3467","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"metadata":{"creator":"testrest"}}}} +2019-02-25 12:13:56.010 [main] INFO - Response Code: 201 +2019-02-25 12:13:56.010 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_25cb2c85-2c3b-42a5-ad20-48de37a0d0ab +uniqueTransactionID: 247325bb-6879-4c25-83d4-e376e838bf86 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/paymentinstruments/82B32BD165CC5D4FE05340588D0A3467 +ETag: "n2yqr8jX382KICSeKjJyTANimKPikkhO+M+Hkr0aHPs=" +instrumentidentifier-created: false +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1001 +Date: Mon, 25 Feb 2019 06:43:55 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 8e06a326-c393-4556-8666-85549538fc3a +OkHttp-Sent-Millis: 1551077035771 +OkHttp-Received-Millis: 1551077036009 + +2019-02-25 12:13:56.011 [main] INFO - ********* END *********: +2019-02-25 12:13:56.033 [main] INFO - ********* START ********* +2019-02-25 12:13:56.033 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:56.033 [main] INFO - Request Type: POST +2019-02-25 12:13:56.033 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments, requestType=POST} +2019-02-25 12:13:56.034 [main] INFO - Digest: SHA-256=xdLlqy6UEQkNUDcqNR5QyKw2r4Erph2MGvc5udpY7m8= +2019-02-25 12:13:56.034 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:56.034 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:56.034 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:56.035 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="wWJbOcRrWffljwXAeE6/YU713rMHRbocYD/qespFjdg=" +2019-02-25 12:13:56.035 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:56.225 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-25 12:13:56.225 [main] INFO - Response Message: {"errors":[{"type":"invalidHeaders","message":"Invalid header values","details":[{"name":"profile-id"}]}]} +2019-02-25 12:13:56.225 [main] INFO - Response Code: 400 +2019-02-25 12:13:56.225 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_40f9c992-2442-4716-9c44-25c2de86c4c0 +uniqueTransactionID: 360e5960-2b2d-4c42-a45f-cfd18385b947 +Cache-Control: no-cache, no-store, must-revalidate +Pragma: no-cache +Expires: -1 +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 106 +Date: Mon, 25 Feb 2019 06:43:55 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 5f4ce601-cbc6-4139-bd2a-21b3c75f5673 +OkHttp-Sent-Millis: 1551077036037 +OkHttp-Received-Millis: 1551077036225 + +2019-02-25 12:13:56.226 [main] INFO - ********* END *********: +2019-02-25 12:13:56.251 [main] INFO - ********* START ********* +2019-02-25 12:13:56.251 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:56.252 [main] INFO - Request Type: GET +2019-02-25 12:13:56.252 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7010000000016241111, requestType=GET} +2019-02-25 12:13:56.252 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:56.252 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:56.253 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:56.253 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="LNabm45VBKjEzWKhAyY9fNUu3k8FWfHUJ/jqTR7//ic=" +2019-02-25 12:13:56.253 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:56.450 [main] INFO - Request Body: null +2019-02-25 12:13:56.450 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}} +2019-02-25 12:13:56.451 [main] INFO - Response Code: 200 +2019-02-25 12:13:56.451 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_efd43426-1212-4723-9a4a-7e7e94dd238e +uniqueTransactionID: 1168afcd-0ba2-44c4-993c-b875cd0fd40b +Pragma: no-cache +X-Application-Context: application +ETag: "gaZK/nV+l22isZ3TbN3ZzT9IaEaq3CvEWNIjknrm2LY=" +Token-Class: instrumentIdentifier +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 25 Feb 2019 06:43:55 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 4a170ae8-de9c-4fa1-96a9-760fce4c1b07 +OkHttp-Sent-Millis: 1551077036255 +OkHttp-Received-Millis: 1551077036449 + +2019-02-25 12:13:56.451 [main] INFO - ********* END *********: +2019-02-25 12:13:56.468 [main] INFO - ********* START ********* +2019-02-25 12:13:56.469 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:56.469 [main] INFO - Request Type: GET +2019-02-25 12:13:56.469 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546, requestType=GET} +2019-02-25 12:13:56.469 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:56.469 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:56.470 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:56.470 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="MHLTMwGKvmZDCn/ElorcHaWGLk9bX5JkTZFXKUlNIVk=" +2019-02-25 12:13:56.470 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:56.668 [main] INFO - Request Body: null +2019-02-25 12:13:56.668 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:13:56.669 [main] INFO - Response Code: 404 +2019-02-25 12:13:56.669 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_9e5974e7-7570-4571-b9a7-593aa91819d4 +uniqueTransactionID: 60a1b73e-38fc-4768-bd3f-cd535adb067c +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:43:56 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: fa6dba2c-9c66-4158-beb6-03aca106aba6 +OkHttp-Sent-Millis: 1551077036471 +OkHttp-Received-Millis: 1551077036668 + +2019-02-25 12:13:56.669 [main] INFO - ********* END *********: +2019-02-25 12:13:56.691 [main] INFO - ********* START ********* +2019-02-25 12:13:56.691 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:56.691 [main] INFO - Request Type: PATCH +2019-02-25 12:13:56.691 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654, requestType=PATCH} +2019-02-25 12:13:56.692 [main] INFO - Digest: SHA-256=8WWAL+hDoWtF/EyxX3M/HpCKmkkPnnqbqKxbc3iH/JY= +2019-02-25 12:13:56.692 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:56.692 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:56.692 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:56.693 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="F+B4BTVQk+igRXm9kS3qHK7hzBPSpS19n5r3mRwnX5g=" +2019-02-25 12:13:56.693 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:56.904 [main] INFO - Request Body: {"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-25 12:13:56.905 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}} +2019-02-25 12:13:56.905 [main] INFO - Response Code: 200 +2019-02-25 12:13:56.905 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_ba1f496b-e5d8-4172-8637-baa418eb1dfd +uniqueTransactionID: 37f1a67d-e4c2-4999-86a5-dabca38382da +Pragma: no-cache +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654 +ETag: "edhaR4fLQQNTXJAh+zOs0IpQPCEOeMYAzhKQUsDlZbI=" +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 530 +Date: Mon, 25 Feb 2019 06:43:55 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 94e8737b-7e77-42a9-9e07-4eb0afc6a6db +OkHttp-Sent-Millis: 1551077036696 +OkHttp-Received-Millis: 1551077036904 + +2019-02-25 12:13:56.906 [main] INFO - ********* END *********: +2019-02-25 12:13:56.923 [main] INFO - ********* START ********* +2019-02-25 12:13:56.923 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:56.923 [main] INFO - Request Type: PATCH +2019-02-25 12:13:56.923 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000123455, requestType=PATCH} +2019-02-25 12:13:56.923 [main] INFO - Digest: SHA-256=8WWAL+hDoWtF/EyxX3M/HpCKmkkPnnqbqKxbc3iH/JY= +2019-02-25 12:13:56.923 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:56.923 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:56.923 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:56.923 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="J4VoD9T7GUo51KqMFkmepVxZyY8CIevXVl3naQdQK+o=" +2019-02-25 12:13:56.923 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:57.133 [main] INFO - Request Body: {"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}}} +2019-02-25 12:13:57.133 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:13:57.134 [main] INFO - Response Code: 404 +2019-02-25 12:13:57.134 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_3deabc5c-1163-446f-9c94-6a89b41371fb +uniqueTransactionID: 81c35a88-f0b0-40ae-9743-6945f295af18 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:43:56 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: b15d93ea-4c2c-42a0-b30f-f1c463968c73 +OkHttp-Sent-Millis: 1551077036931 +OkHttp-Received-Millis: 1551077037133 + +2019-02-25 12:13:57.134 [main] INFO - ********* END *********: +2019-02-25 12:13:57.154 [main] INFO - ********* START ********* +2019-02-25 12:13:57.155 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:57.155 [main] INFO - Request Type: DELETE +2019-02-25 12:13:57.155 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7010000000006721114, requestType=DELETE} +2019-02-25 12:13:57.156 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:57.156 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:57.156 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:57.157 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="GtRe4BMcu1mYzjXRZmUV39LJ3H26839+uttxAvtpm/M=" +2019-02-25 12:13:57.157 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:57.358 [main] INFO - Request Body: null +2019-02-25 12:13:57.358 [main] INFO - Response Message: {"errors":[{"type":"notAvailable","message":"Token not available"}]} +2019-02-25 12:13:57.359 [main] INFO - Response Code: 410 +2019-02-25 12:13:57.359 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_5b5e8de3-da7b-4b86-8083-e60f2eaf1da7 +uniqueTransactionID: dfe63a98-abf9-4a64-b20d-159488b08229 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 68 +Date: Mon, 25 Feb 2019 06:43:57 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: fddd6903-845f-4918-ace2-82eeeb5c2b9b +OkHttp-Sent-Millis: 1551077037159 +OkHttp-Received-Millis: 1551077037357 + +2019-02-25 12:13:57.360 [main] INFO - ********* END *********: +2019-02-25 12:13:57.380 [main] INFO - ********* START ********* +2019-02-25 12:13:57.381 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:57.381 [main] INFO - Request Type: DELETE +2019-02-25 12:13:57.381 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546, requestType=DELETE} +2019-02-25 12:13:57.382 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:57.382 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:57.382 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:57.382 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="2QHktFCp2xGlKMaRLaBxACeum4ACOpqdPhx0vaCKP48=" +2019-02-25 12:13:57.382 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:57.582 [main] INFO - Request Body: null +2019-02-25 12:13:57.583 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:13:57.583 [main] INFO - Response Code: 404 +2019-02-25 12:13:57.583 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_566b7e88-4261-4dc3-becf-2bda50a909ad +uniqueTransactionID: 2ff62c29-5680-44a5-8141-ef08b39613d8 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:43:57 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 0f3db377-9ece-4964-b36a-45567397b140 +OkHttp-Sent-Millis: 1551077037384 +OkHttp-Received-Millis: 1551077037582 + +2019-02-25 12:13:57.583 [main] INFO - ********* END *********: +2019-02-25 12:13:57.606 [main] INFO - ********* START ********* +2019-02-25 12:13:57.606 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:57.606 [main] INFO - Request Type: GET +2019-02-25 12:13:57.607 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603, requestType=GET} +2019-02-25 12:13:57.607 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:57.607 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:57.607 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:57.608 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="0G7n/V0ZOhH+U2evTnMZQsdHoXa18PIESF1Kf2HM1ms=" +2019-02-25 12:13:57.608 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:57.813 [main] INFO - Request Body: null +2019-02-25 12:13:57.814 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603"}},"id":"7EFF4BA832B12424E05340588D0AC603","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}} +2019-02-25 12:13:57.814 [main] INFO - Response Code: 200 +2019-02-25 12:13:57.814 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_b2f08e25-6259-4d45-9fe3-df24245cc25a +uniqueTransactionID: 6cd81f92-c4ca-41c6-bd36-5fb65d667a01 +Pragma: no-cache +X-Application-Context: application +ETag: "Qa+AUAUyJ+oecC13Fl18vzzHPCeH1Cn8fLAACo5rGus=" +Token-Class: paymentInstrument +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1142 +Date: Mon, 25 Feb 2019 06:43:57 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: edbec857-a2d1-4bf5-816b-175275d24d19 +OkHttp-Sent-Millis: 1551077037611 +OkHttp-Received-Millis: 1551077037813 + +2019-02-25 12:13:57.814 [main] INFO - ********* END *********: +2019-02-25 12:13:57.838 [main] INFO - ********* START ********* +2019-02-25 12:13:57.838 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:57.838 [main] INFO - Request Type: GET +2019-02-25 12:13:57.838 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7654264589567855546, requestType=GET} +2019-02-25 12:13:57.838 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:57.839 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:57.839 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:57.839 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="3e82D6Ms+7GImTcwygFKE6ThMrDdjuTABFkMjIwEVhQ=" +2019-02-25 12:13:57.839 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:58.033 [main] INFO - Request Body: null +2019-02-25 12:13:58.034 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:13:58.034 [main] INFO - Response Code: 404 +2019-02-25 12:13:58.034 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_4c1f0dab-0245-49ca-a6b2-4734415fa094 +uniqueTransactionID: 17dad0a7-b9ce-4b5f-bd82-91a013a37c3e +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:43:57 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 2727f0a0-47c8-4cb9-98ee-38274c9c567a +OkHttp-Sent-Millis: 1551077037840 +OkHttp-Received-Millis: 1551077038033 + +2019-02-25 12:13:58.035 [main] INFO - ********* END *********: +2019-02-25 12:13:58.062 [main] INFO - ********* START ********* +2019-02-25 12:13:58.063 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:58.063 [main] INFO - Request Type: PATCH +2019-02-25 12:13:58.063 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603, requestType=PATCH} +2019-02-25 12:13:58.063 [main] INFO - Digest: SHA-256=JVhG6cWRtiU/QoMjxKqN0Sqpzxt5BxE40ELswsMV4eU= +2019-02-25 12:13:58.064 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:58.064 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:58.064 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:58.064 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="QUzX5PQM7XLblGEItHZEIQdx5TMjVRp/KL/id4tr+ZY=" +2019-02-25 12:13:58.064 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:58.289 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-25 12:13:58.290 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603"}},"id":"7EFF4BA832B12424E05340588D0AC603","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7010000000016241111/paymentinstruments"}},"id":"7010000000016241111","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"411111XXXXXX1111"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}} +2019-02-25 12:13:58.290 [main] INFO - Response Code: 200 +2019-02-25 12:13:58.290 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_886c18e2-e1a7-4d8d-aac6-5aff6ee6f582 +uniqueTransactionID: 363583c0-d9ad-48f0-851c-726c2115a5fc +Pragma: no-cache +X-Application-Context: application +Location: https://apitest.cybersource.com/tms/v1/paymentinstruments/7EFF4BA832B12424E05340588D0AC603 +ETag: "qrCaAo/RcMGN186N34ouaE5XH5UfkBZpa/NYt9kpLec=" +instrumentidentifier-created: false +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 1142 +Date: Mon, 25 Feb 2019 06:43:58 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: b4eeff7f-ffb6-45f7-90e8-3d914e7b939b +OkHttp-Sent-Millis: 1551077038069 +OkHttp-Received-Millis: 1551077038289 + +2019-02-25 12:13:58.290 [main] INFO - ********* END *********: +2019-02-25 12:13:58.308 [main] INFO - ********* START ********* +2019-02-25 12:13:58.309 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:58.309 [main] INFO - Request Type: PATCH +2019-02-25 12:13:58.309 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/7EFF4BA832B124123456789545854565, requestType=PATCH} +2019-02-25 12:13:58.309 [main] INFO - Digest: SHA-256=JVhG6cWRtiU/QoMjxKqN0Sqpzxt5BxE40ELswsMV4eU= +2019-02-25 12:13:58.310 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:58.310 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:58.310 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:58.310 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="I62M0UDP2yS8VzJp/ZHONa8g4Sc0+nd0AG635/WuFQ8=" +2019-02-25 12:13:58.310 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:58.510 [main] INFO - Request Body: {"card":{"expirationMonth":"XXXXXXXXX","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"1 Market St","address2":"20 Main Street","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","country":"US","email":"XXXXXXXXX","phoneNumber":"555123456"},"instrumentIdentifier":{"card":{"number":"4111111111111111"}}} +2019-02-25 12:13:58.511 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:13:58.511 [main] INFO - Response Code: 404 +2019-02-25 12:13:58.511 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_b59c2a6c-12d9-4b48-933d-681acee102a5 +uniqueTransactionID: edd8f099-afa3-4a7d-acf7-0d7f5bddb50a +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:43:57 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 083a8ae6-af8e-42a4-8051-5a48e88cd9f6 +OkHttp-Sent-Millis: 1551077038312 +OkHttp-Received-Millis: 1551077038510 + +2019-02-25 12:13:58.512 [main] INFO - ********* END *********: +2019-02-25 12:13:58.541 [main] INFO - ********* START ********* +2019-02-25 12:13:58.541 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:58.541 [main] INFO - Request Type: DELETE +2019-02-25 12:13:58.541 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/80756F4698591109E05341588E0A4B95, requestType=DELETE} +2019-02-25 12:13:58.542 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:58.542 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:58.542 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:58.542 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="tEKVsmoqw+NO+eBlLESkyD0liGGF+7Z1rKmTKJP7ums=" +2019-02-25 12:13:58.543 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:58.746 [main] INFO - Request Body: null +2019-02-25 12:13:58.746 [main] INFO - Response Message: {"errors":[{"type":"notAvailable","message":"Token not available"}]} +2019-02-25 12:13:58.747 [main] INFO - Response Code: 410 +2019-02-25 12:13:58.747 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_49b1959b-9ca5-4b22-9c75-caf3ee09707e +uniqueTransactionID: caf842f2-c67b-445c-94fe-8027600fd1fc +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 68 +Date: Mon, 25 Feb 2019 06:43:57 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: c692fcc9-3473-4d1e-93de-4713935327f5 +OkHttp-Sent-Millis: 1551077038545 +OkHttp-Received-Millis: 1551077038745 + +2019-02-25 12:13:58.747 [main] INFO - ********* END *********: +2019-02-25 12:13:58.765 [main] INFO - ********* START ********* +2019-02-25 12:13:58.766 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:58.766 [main] INFO - Request Type: DELETE +2019-02-25 12:13:58.766 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/paymentinstruments/76542645895678555464562155478555, requestType=DELETE} +2019-02-25 12:13:58.766 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:58.767 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:58.767 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:58.767 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="LtCMmnYXISoC5vg7pyxjqqIOxRyV2cPDRraPCLH21vE=" +2019-02-25 12:13:58.767 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:58.958 [main] INFO - Request Body: null +2019-02-25 12:13:58.958 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:13:58.959 [main] INFO - Response Code: 404 +2019-02-25 12:13:58.959 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_1faeeeca-1f32-49bc-b172-a4711f3c72a3 +uniqueTransactionID: 9cab77d9-78e2-420e-bf66-4a8768f4a2b2 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:43:58 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: ce587736-5f39-4d2d-a72b-4df730af449d +OkHttp-Sent-Millis: 1551077038769 +OkHttp-Received-Millis: 1551077038958 + +2019-02-25 12:13:58.959 [main] INFO - ********* END *********: +2019-02-25 12:13:58.979 [main] INFO - ********* START ********* +2019-02-25 12:13:58.979 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:58.979 [main] INFO - Request Type: GET +2019-02-25 12:13:58.980 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments, requestType=GET} +2019-02-25 12:13:58.980 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:58.980 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:58.980 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:58.981 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="W/wqFtNc6JA8ILHT0NGf3RoOfvw9IHOIhDcBLk8dKPI=" +2019-02-25 12:13:58.981 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:59.292 [main] INFO - Request Body: null +2019-02-25 12:13:59.293 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=0&limit=20"},"first":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=0&limit=20"},"next":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=20&limit=20"},"last":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments?offset=120&limit=20"}},"object":"collection","offset":0,"limit":20,"count":20,"total":131,"_embedded":{"paymentInstruments":[{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/798C4DC7AEE4D943E05340588D0A8A9E"}},"id":"798C4DC7AEE4D943E05340588D0A8A9E","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7986A6266E5D8728E05340588D0A082F"}},"id":"7986A6266E5D8728E05340588D0A082F","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79863A720BFB3614E05340588D0AC61D"}},"id":"79863A720BFB3614E05340588D0AC61D","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/7986100CF0631311E05340588D0AC258"}},"id":"7986100CF0631311E05340588D0AC258","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79849FC7687CFF78E05340588D0A8D10"}},"id":"79849FC7687CFF78E05340588D0A8D10","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79276DA1D0233CA6E05340588D0ADD47"}},"id":"79276DA1D0233CA6E05340588D0ADD47","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/79276DA1D01C3CA6E05340588D0ADD47"}},"id":"79276DA1D01C3CA6E05340588D0ADD47","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/790D20FA65E14107E05340588D0A56FC"}},"id":"790D20FA65E14107E05340588D0A56FC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/790B7C9B64C7062AE05340588D0A6BFC"}},"id":"790B7C9B64C7062AE05340588D0A6BFC","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78FC4875384A727AE05340588D0A9FEB"}},"id":"78FC4875384A727AE05340588D0A9FEB","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78FC48753847727AE05340588D0A9FEB"}},"id":"78FC48753847727AE05340588D0A9FEB","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F9029E6777F865E05340588D0AD0EA"}},"id":"78F9029E6777F865E05340588D0AD0EA","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F906F76015F1BDE05340588D0AC573"}},"id":"78F906F76015F1BDE05340588D0AC573","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78F72C08537094CAE05340588D0ACDD3"}},"id":"78F72C08537094CAE05340588D0ACDD3","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78E7CFD5C149EA3BE05340588D0AB20B"}},"id":"78E7CFD5C149EA3BE05340588D0AB20B","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78E7CFD5C144EA3BE05340588D0AB20B"}},"id":"78E7CFD5C144EA3BE05340588D0AB20B","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78DFC955E6E1B4A4E05340588D0ADD6A"}},"id":"78DFC955E6E1B4A4E05340588D0ADD6A","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/78DFC955E6DCB4A4E05340588D0ADD6A"}},"id":"78DFC955E6DCB4A4E05340588D0ADD6A","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/787C21D78039BB12E05341588E0ABAF2"}},"id":"787C21D78039BB12E05341588E0ABAF2","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}},{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/paymentinstruments/787C0A20BEA79250E05341588E0ADA22"}},"id":"787C0A20BEA79250E05341588E0ADA22","object":"paymentInstrument","state":"ACTIVE","card":{"expirationMonth":"09","expirationYear":"2022","type":"visa"},"billTo":{"firstName":"John","lastName":"Deo","company":"CyberSource","address1":"12 Main Street","address2":"20 My Street","locality":"Foster City","administrativeArea":"CA","postalCode":"90200","country":"US","email":"john.smith@example.com","phoneNumber":"555123456"},"metadata":{"creator":"testrest"},"_embedded":{"instrumentIdentifier":{"_links":{"self":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654"},"paymentInstruments":{"href":"https://apitest.cybersource.com/tms/v1/instrumentidentifiers/7020000000000137654/paymentinstruments"}},"id":"7020000000000137654","object":"instrumentIdentifier","state":"ACTIVE","card":{"number":"123456XXXXXX7654"},"processingInformation":{"authorizationOptions":{"initiator":{"merchantInitiatedTransaction":{"previousTransactionId":"123456789012345"}}}},"metadata":{"creator":"testrest"}}}}]}} +2019-02-25 12:13:59.294 [main] INFO - Response Code: 200 +2019-02-25 12:13:59.294 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_a6305002-4f2e-4620-8e36-6bddbdb0f308 +uniqueTransactionID: 6f2e0c70-51d2-40b1-8fe4-b40bc5cba09d +Pragma: no-cache +X-Application-Context: application +X-Total-Count: 131 +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json;charset=utf-8 +Content-Length: 23684 +Date: Mon, 25 Feb 2019 06:43:58 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 1a3741a7-47a0-4351-87c2-ccd0531c38b5 +OkHttp-Sent-Millis: 1551077038985 +OkHttp-Received-Millis: 1551077039287 + +2019-02-25 12:13:59.295 [main] INFO - ********* END *********: +2019-02-25 12:13:59.333 [main] INFO - ********* START ********* +2019-02-25 12:13:59.333 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:59.333 [main] INFO - Request Type: GET +2019-02-25 12:13:59.333 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tms/v1/instrumentidentifiers/7654264589567855546/paymentinstruments, requestType=GET} +2019-02-25 12:13:59.333 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:59.336 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:59.336 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:59.336 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="utXInOiiTtQZzD1dMUu4W+igd2BZtRmXevkP/Yi85d4=" +2019-02-25 12:13:59.337 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:59.535 [main] INFO - Request Body: null +2019-02-25 12:13:59.535 [main] INFO - Response Message: {"errors":[{"type":"notFound","message":"Token not found"}]} +2019-02-25 12:13:59.535 [main] INFO - Response Code: 404 +2019-02-25 12:13:59.536 [main] INFO - Response Headers: Cache-Control: no-cache, no-store, must-revalidate +Expires: -1 +X-OPNET-Transaction-Trace: a2_80e4b7d1-1a87-4c98-8a94-53e7daf851d6 +uniqueTransactionID: c61bac3f-5468-4df2-9473-f8ac0c1232b7 +Pragma: no-cache +X-Application-Context: application +X-Content-Type-Options: nosniff +X-XSS-Protection: 1; mode=block +Strict-Transport-Security: max-age=31536000 ; includeSubDomains +X-Frame-Options: DENY +Content-Type: application/json +Content-Length: 60 +Date: Mon, 25 Feb 2019 06:43:59 GMT +Server: secretServer +X-Cnection: close +v-c-correlation-id: 8a06c30a-f17e-4241-8eea-77a0bf7d4dc0 +OkHttp-Sent-Millis: 1551077039337 +OkHttp-Received-Millis: 1551077039534 + +2019-02-25 12:13:59.536 [main] INFO - ********* END *********: +2019-02-25 12:13:59.561 [main] INFO - ********* START ********* +2019-02-25 12:13:59.562 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:59.562 [main] INFO - Request Type: GET +2019-02-25 12:13:59.563 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches/Owcyk6pl, requestType=GET} +2019-02-25 12:13:59.563 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:59.563 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:59.563 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:59.564 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="PW69CwhtVk3URJt1zF9gt/LLYkd97EM2ZD4xGr7C+ks=" +2019-02-25 12:13:59.564 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:13:59.819 [main] INFO - Request Body: null +2019-02-25 12:13:59.820 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/pts/v1/transaction-batches/Owcyk6pl"}},"acceptedTransactionCount":0,"completionDate":"2018-10-29","id":"Owcyk6pl","links":{"transactions":[{"href":"https://apitest.cybersource.com:-1/v1/payments/5408556076096093004012","method":"Get"},{"href":"https://apitest.cybersource.com:-1/v1/payments/5408556076166022104010","method":"Get"}]},"rejectedTransactionCount":2,"status":"Completed","transactionCount":2,"uploadDate":"2018-10-29"} +2019-02-25 12:13:59.820 [main] INFO - Response Code: 200 +2019-02-25 12:13:59.820 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_f88a185d-ef12-449e-8309-0e347e66e85f +X-OPNET-Transaction-Trace: a2_3c4c41ef-a880-4b61-bd38-8e7fc78fee61 +Cache-Control: no-cache, no-transform +ETag: "-1139639258" +Expires: Mon, 25 Feb 2019 06:43:59 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:43:59 GMT +X-Cnection: close +v-c-correlation-id: bd5cdd5e-a73f-4168-80cc-186759578793 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077039565 +OkHttp-Received-Millis: 1551077039812 + +2019-02-25 12:13:59.821 [main] INFO - ********* END *********: +2019-02-25 12:13:59.840 [main] INFO - ********* START ********* +2019-02-25 12:13:59.840 [main] INFO - Authentication Type : http_signature +2019-02-25 12:13:59.840 [main] INFO - Request Type: GET +2019-02-25 12:13:59.841 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches/CYBS123, requestType=GET} +2019-02-25 12:13:59.841 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:13:59.841 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:13:59.842 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:13:59.842 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="nvsb4HXHCkE15PbSy68Mw8fLyaupct98k8t9wbS2LQc=" +2019-02-25 12:13:59.842 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:00.180 [main] INFO - Request Body: null +2019-02-25 12:14:00.181 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/pts/v1/transaction-batches/CYBS123"}},"invalidFields":null,"message":"The requested resource does not exist","messageKey":null,"missingFields":null} +2019-02-25 12:14:00.181 [main] INFO - Response Code: 404 +2019-02-25 12:14:00.181 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d88a97a7-1b72-4e26-a8f9-97f6f783cf11 +Cache-Control: no-cache, no-transform +ETag: "-975452876" +Expires: Mon, 25 Feb 2019 06:44:00 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:00 GMT +X-Cnection: close +v-c-correlation-id: 8ba2d3c8-8b18-40f2-9bf1-b1480824a59d +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077039843 +OkHttp-Received-Millis: 1551077040178 + +2019-02-25 12:14:00.181 [main] INFO - ********* END *********: +2019-02-25 12:14:00.335 [main] INFO - ********* START ********* +2019-02-25 12:14:00.336 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:00.336 [main] INFO - Request Type: GET +2019-02-25 12:14:00.336 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2018-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-25 12:14:00.337 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:00.337 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:00.337 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:00.338 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ksxlEUUbrMh29HUo9zNyQqIaQuwrhzrjv5PoabMDTho=" +2019-02-25 12:14:00.338 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:00.575 [main] INFO - Request Body: null +2019-02-25 12:14:00.576 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/pts/v1/transaction-batches"}},"submitTimeUtc":"2019-02-25T06:44:00.493Z","transactionBatches":[{"id":"Owcyk6pl","uploadDate":"2018-10-29","completionDate":"2018-10-29","transactionCount":2,"acceptedTransactionCount":0,"rejectedTransactionCount":2,"status":"Completed"},{"id":"91Li4SD7","uploadDate":"2018-10-29","completionDate":"2018-10-29","transactionCount":0,"acceptedTransactionCount":0,"rejectedTransactionCount":0,"status":"OnHold"}]} +2019-02-25 12:14:00.576 [main] INFO - Response Code: 200 +2019-02-25 12:14:00.576 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_678d2cd1-12ef-403a-bea0-455df5154fe2 +X-OPNET-Transaction-Trace: a2_a3836f60-64d6-4622-9a23-70df84cb4fe0 +Cache-Control: no-cache, no-transform +ETag: "1070140796" +Expires: Mon, 25 Feb 2019 06:44:00 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:00 GMT +X-Cnection: close +v-c-correlation-id: 1ce9b56c-b733-4b3a-ba98-e64175a91c7e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077040342 +OkHttp-Received-Millis: 1551077040574 + +2019-02-25 12:14:00.576 [main] INFO - ********* END *********: +2019-02-25 12:14:00.601 [main] INFO - ********* START ********* +2019-02-25 12:14:00.602 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:00.602 [main] INFO - Request Type: GET +2019-02-25 12:14:00.602 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/pts/v1/transaction-batches?startTime=2019-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z, requestType=GET} +2019-02-25 12:14:00.602 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:00.603 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:00.603 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:00.603 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="wkw6wycdkit4wm6NRj4LbFMnEgC3u8g3BL85Ydt7o5c=" +2019-02-25 12:14:00.603 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:00.812 [main] INFO - Request Body: null +2019-02-25 12:14:00.812 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/payment/pts/v1/transaction-batches?startTime=2019-10-01T00%3A00%3A00.000Z&endTime=2018-10-31T23%3A59%3A59.590Z"}},"invalidFields":{"name":"endTime","reasonMessage":"The start time should precede the end time"},"message":"Field validation errors","messageKey":null,"missingFields":null} +2019-02-25 12:14:00.812 [main] INFO - Response Code: 400 +2019-02-25 12:14:00.813 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_b4a6cd54-cb68-4ad1-8ee8-6e9c865e5298 +Cache-Control: no-cache, no-transform +ETag: "-1732043611" +Expires: Mon, 25 Feb 2019 06:44:00 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:00 GMT +X-Cnection: close +v-c-correlation-id: 86e4a8ff-ae09-47ae-b48a-7346db7c1309 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077040604 +OkHttp-Received-Millis: 1551077040811 + +2019-02-25 12:14:00.813 [main] INFO - ********* END *********: +2019-02-25 12:14:00.835 [main] INFO - ********* START ********* +2019-02-25 12:14:00.835 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:00.836 [main] INFO - Request Type: GET +2019-02-25 12:14:00.836 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/transactions/5408386919326811103004, requestType=GET} +2019-02-25 12:14:00.836 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:00.836 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:00.837 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:00.837 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ddK0tRGIkJq1hJSdsPyoYa+hRQqgzxLlKjZ+7olu2q4=" +2019-02-25 12:14:00.837 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:01.098 [main] INFO - Request Body: null +2019-02-25 12:14:01.098 [main] INFO - Response Message: {"id":"5408386919326811103004","rootId":"5408386919326811103004","reconciliationId":"781606613NGFNJJE","submitTimeUTC":"2018-10-29T18:44:52Z","merchantId":"testrest","applicationInformation":{"reasonCode":100,"applications":[{"name":"ics_auth","reasonCode":"100","rCode":"1","rFlag":"SOK","reconciliationId":"781606613NGFNJJE","rMessage":"Request was processed successfully.","returnCode":1010000}]},"buyerInformation":{},"clientReferenceInformation":{"code":"TC50171_3","applicationName":"REST API","applicationVersion":"1.0"},"consumerAuthenticationInformation":{"eciRaw":"7"},"deviceInformation":{},"installmentInformation":{},"fraudMarkingInformation":{},"merchantDefinedInformation":{},"merchantInformation":{"merchantDescriptor":{"name":"testrest"}},"orderInformation":{"billTo":{"firstName":"JOHN","lastName":"DOE","address1":"1 Market St","address2":"Address 2","locality":"san francisco","administrativeArea":"CA","postalCode":"94105","company":"Visa","email":"XXXXXXXXX","country":"US","phoneNumber":"4158880000"},"shipTo":{},"amountDetails":{"totalAmount":"102.21","currency":"XXXXXXXXX","taxAmount":"0","authorizedAmount":"102.21"},"shippingDetails":{},"lineItems":[{"productCode":"default","taxAmount":0,"quantity":1,"unitPrice":102.21}]},"paymentInformation":{"paymentMethod":{"name":"smartpay","type":"credit card","subType":"VI"},"customer":{},"card":{"suffix":"1111","prefix":"411111","expirationMonth":"XXXXXXXXX","expirationYear":"2031","type":"Credit card"},"invoice":{},"accountFeatures":{}},"processingInformation":{"paymentSolution":"Visa","commerceIndicator":"7","authorizationOptions":{"authType":"O"},"bankTransferOptions":{}},"processorInformation":{"processor":{"name":"smartpay"},"approvalCode":"888888","responseCode":"100","avs":{"code":"X ","codeRaw":"I1"},"cardVerification":{},"achVerification":{"resultCodeRaw":"100"},"electronicVerificationResults":{}},"pointOfSaleInformation":{},"riskInformation":{"score":{}},"senderInformation":{},"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5408386919326811103004","method":"GET"}}} +2019-02-25 12:14:01.099 [main] INFO - Response Code: 200 +2019-02-25 12:14:01.099 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_22385be7-f05c-4f5d-8c6b-310d07d5176c +Cache-Control: no-cache, no-transform +ETag: "-1543210418" +Expires: Mon, 25 Feb 2019 06:44:01 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:00 GMT +X-Cnection: close +v-c-correlation-id: 33c9cd47-e7ed-4be8-b8d2-253974fb802a +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077040842 +OkHttp-Received-Millis: 1551077041095 + +2019-02-25 12:14:01.099 [main] INFO - ********* END *********: +2019-02-25 12:14:01.226 [main] INFO - ********* START ********* +2019-02-25 12:14:01.226 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:01.227 [main] INFO - Request Type: GET +2019-02-25 12:14:01.227 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/transactions/1234567898745651235454, requestType=GET} +2019-02-25 12:14:01.227 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:01.227 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:01.228 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:01.228 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="jOzbqaeaa9xDEwtwH5t4xV8mYUraA5H1q/bOV+J3bXQ=" +2019-02-25 12:14:01.228 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:01.447 [main] INFO - Request Body: null +2019-02-25 12:14:01.447 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/payment/tss/v2/transactions/1234567898745651235454"}},"invalidFields":null,"message":"The requested resource does not exist","messageKey":null,"missingFields":null} +2019-02-25 12:14:01.448 [main] INFO - Response Code: 404 +2019-02-25 12:14:01.448 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_f9b84fd4-57bf-4286-a830-eedbc1ba8d5c +X-OPNET-Transaction-Trace: a2_0d284565-5688-4810-9f6d-1812ceda3358 +Cache-Control: no-cache, no-transform +ETag: "1151868788" +Expires: Mon, 25 Feb 2019 06:44:01 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:01 GMT +X-Cnection: close +v-c-correlation-id: 4213a0ad-a32a-48ec-a61a-42d79ded29a7 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077041229 +OkHttp-Received-Millis: 1551077041446 + +2019-02-25 12:14:01.448 [main] INFO - ********* END *********: +2019-02-25 12:14:01.473 [main] INFO - ********* START ********* +2019-02-25 12:14:01.474 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:01.474 [main] INFO - Request Type: POST +2019-02-25 12:14:01.474 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-25 12:14:01.474 [main] INFO - Digest: SHA-256=yv1HHIWB0ukuo0JfNKnkDCUcVm1OrwOQ7U4IgWX3zTs= +2019-02-25 12:14:01.475 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:01.475 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:01.475 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:01.476 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="pLbN5ir3cQb36i+pMdC/by6dHjIsVNQ3aynlaBL1Il4=" +2019-02-25 12:14:01.476 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:01.935 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientReferenceInformation.code:12345","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-25 12:14:01.936 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/17ec282c-3a9b-4c20-9d59-1df3adb690c7","method":"GET"}},"searchId":"17ec282c-3a9b-4c20-9d59-1df3adb690c7","save":false,"name":"TSS search","query":"clientReferenceInformation.code:12345","count":66,"totalCount":66,"limit":80,"offset":0,"sort":"id:asc, submitTimeUtc:asc","timezone":"America/Chicago","submitTimeUtc":"2019-02-25T06:44:01Z","_embedded":{"transactionSummaries":[{"id":"5468475396886870703005","submitTimeUtc":"2019-01-07T07:52:19Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468475396886870703005","method":"GET"}}},{"id":"5468478041966220703004","submitTimeUtc":"2019-01-07T07:56:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468478041966220703004","method":"GET"}}},{"id":"5468480179436393003006","submitTimeUtc":"2019-01-07T08:00:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480179436393003006","method":"GET"}}},{"id":"5468480690446811803002","submitTimeUtc":"2019-01-07T08:01:09Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480690446811803002","method":"GET"}}},{"id":"5468485285666814803002","submitTimeUtc":"2019-01-07T08:08:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485285666814803002","method":"GET"}}},{"id":"5468485710916881003005","submitTimeUtc":"2019-01-07T08:09:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485710916881003005","method":"GET"}}},{"id":"5469521708616037903005","submitTimeUtc":"2019-01-08T12:56:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469521708616037903005","method":"GET"}}},{"id":"5469522883506039403005","submitTimeUtc":"2019-01-08T12:58:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469522883506039403005","method":"GET"}}},{"id":"5469524080436600903006","submitTimeUtc":"2019-01-08T13:00:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524080436600903006","method":"GET"}}},{"id":"5469524351696601103006","submitTimeUtc":"2019-01-08T13:00:35Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524351696601103006","method":"GET"}}},{"id":"5469525663736980803002","submitTimeUtc":"2019-01-08T13:02:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469525663736980803002","method":"GET"}}},{"id":"5469529727066047603005","submitTimeUtc":"2019-01-08T13:09:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469529727066047603005","method":"GET"}}},{"id":"5469535101246615503006","submitTimeUtc":"2019-01-08T13:18:30Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469535101246615503006","method":"GET"}}},{"id":"5469588461766085503005","submitTimeUtc":"2019-01-08T14:47:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469588461766085503005","method":"GET"}}},{"id":"5469589378676352103001","submitTimeUtc":"2019-01-08T14:48:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589378676352103001","method":"GET"}}},{"id":"5469589534636352203001","submitTimeUtc":"2019-01-08T14:49:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589534636352203001","method":"GET"}}},{"id":"5470167162946434803001","submitTimeUtc":"2019-01-09T06:51:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5470167162946434803001","method":"GET"}}},{"id":"5471404274096790203002","submitTimeUtc":"2019-01-10T17:13:47Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5471404274096790203002","method":"GET"}}},{"id":"5475240476326666304005","submitTimeUtc":"2019-01-15T03:47:27Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240476326666304005","method":"GET"}}},{"id":"5475240647986666504005","submitTimeUtc":"2019-01-15T03:47:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240647986666504005","method":"GET"}}},{"id":"5475240694246602504002","submitTimeUtc":"2019-01-15T03:47:49Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240694246602504002","method":"GET"}}},{"id":"5480449281766424303002","submitTimeUtc":"2019-01-21T04:28:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5480449281766424303002","method":"GET"}}},{"id":"5484294159526049603003","submitTimeUtc":"2019-01-25T15:16:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5484294159526049603003","method":"GET"}}},{"id":"5486140097596056803002","submitTimeUtc":"2019-01-27T18:33:29Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486140097596056803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486140097596056803002","method":"GET"}}},{"id":"5486143740386376403005","submitTimeUtc":"2019-01-27T18:39:34Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486143740386376403005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486143740386376403005","method":"GET"}}},{"id":"5486146109726057203002","submitTimeUtc":"2019-01-27T18:43:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486146109726057203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486146109726057203002","method":"GET"}}},{"id":"5486149568856057803002","submitTimeUtc":"2019-01-27T18:49:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486149568856057803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486149568856057803002","method":"GET"}}},{"id":"5486150058926377303005","submitTimeUtc":"2019-01-27T18:50:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150058926377303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150058926377303005","method":"GET"}}},{"id":"5486150718046057903002","submitTimeUtc":"2019-01-27T18:51:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150718046057903002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150718046057903002","method":"GET"}}},{"id":"5486151464616710103006","submitTimeUtc":"2019-01-27T18:52:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486151464616710103006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486151464616710103006","method":"GET"}}},{"id":"5486152183786377503005","submitTimeUtc":"2019-01-27T18:53:38Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486152183786377503005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486152183786377503005","method":"GET"}}},{"id":"5486154059186996103003","submitTimeUtc":"2019-01-27T18:56:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486154059186996103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486154059186996103003","method":"GET"}}},{"id":"5486156635686378003005","submitTimeUtc":"2019-01-27T19:01:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486156635686378003005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486156635686378003005","method":"GET"}}},{"id":"5486157519836378103005","submitTimeUtc":"2019-01-27T19:02:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486157519836378103005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486157519836378103005","method":"GET"}}},{"id":"5486159910726712503006","submitTimeUtc":"2019-01-27T19:06:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486159910726712503006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486159910726712503006","method":"GET"}}},{"id":"5486160598666060203002","submitTimeUtc":"2019-01-27T19:07:40Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486160598666060203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486160598666060203002","method":"GET"}}},{"id":"5488539943826733503004","submitTimeUtc":"2019-01-30T13:13:14Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5488539943826733503004","method":"GET"}}},{"id":"5492626323766108104003","submitTimeUtc":"2019-02-04T06:43:52Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5492626323766108104003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5492626323766108104003","method":"GET"}}},{"id":"5493718508496900303005","submitTimeUtc":"2019-02-05T13:04:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718508496900303005","method":"GET"}}},{"id":"5493718987966748103006","submitTimeUtc":"2019-02-05T13:04:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718987966748103006","method":"GET"}}},{"id":"5495325909106773503001","submitTimeUtc":"2019-02-07T09:43:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495325909106773503001"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495325909106773503001","method":"GET"}}},{"id":"5495326432436411603006","submitTimeUtc":"2019-02-07T09:44:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495326432436411603006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495326432436411603006","method":"GET"}}},{"id":"5495345378096803303002","submitTimeUtc":"2019-02-07T10:15:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495345378096803303002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495345378096803303002","method":"GET"}}},{"id":"5495351977316834703003","submitTimeUtc":"2019-02-07T10:26:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495351977316834703003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495351977316834703003","method":"GET"}}},{"id":"5495352459166850703004","submitTimeUtc":"2019-02-07T10:27:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495352459166850703004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495352459166850703004","method":"GET"}}},{"id":"5495353943786840303005","submitTimeUtc":"2019-02-07T10:29:54Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495353943786840303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495353943786840303005","method":"GET"}}},{"id":"5495375735936863103004","submitTimeUtc":"2019-02-07T11:06:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495375735936863103004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495375735936863103004","method":"GET"}}},{"id":"5496424976256414603001","submitTimeUtc":"2019-02-08T16:14:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5496424976256414603001","method":"GET"}}},{"id":"5498675776826871703002","submitTimeUtc":"2019-02-11T06:46:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498675776826871703002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498675776826871703002","method":"GET"}}},{"id":"5498689371686278103003","submitTimeUtc":"2019-02-11T07:08:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498689371686278103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498689371686278103003","method":"GET"}}},{"id":"5500338731966034504001","submitTimeUtc":"2019-02-13T04:57:53Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500338731966034504001","method":"GET"}}},{"id":"5500340288796036604001","submitTimeUtc":"2019-02-13T05:00:28Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500340288796036604001","method":"GET"}}},{"id":"5500431596766884904002","submitTimeUtc":"2019-02-13T07:32:39Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500431596766884904002","method":"GET"}}},{"id":"5500437054766214104001","submitTimeUtc":"2019-02-13T07:41:45Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500437054766214104001","method":"GET"}}},{"id":"5501219025486844803004","submitTimeUtc":"2019-02-14T05:25:02Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501219025486844803004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501219025486844803004","method":"GET"}}},{"id":"5501289951276934603004","submitTimeUtc":"2019-02-14T07:23:15Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501289951276934603004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501289951276934603004","method":"GET"}}},{"id":"5501373458936421203003","submitTimeUtc":"2019-02-14T09:42:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501373458936421203003","method":"GET"}}},{"id":"5501376636716307403002","submitTimeUtc":"2019-02-14T09:47:43Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501376636716307403002","method":"GET"}}},{"id":"5510721117946649203006","submitTimeUtc":"2019-02-25T05:21:51Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510721117946649203006","method":"GET"}}},{"id":"5510721851706959203004","submitTimeUtc":"2019-02-25T05:23:05Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510721851706959203004","method":"GET"}}},{"id":"5510723131456972003004","submitTimeUtc":"2019-02-25T05:25:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510723131456972003004","method":"GET"}}},{"id":"5510723667506096803002","submitTimeUtc":"2019-02-25T05:26:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510723667506096803002","method":"GET"}}},{"id":"5510753094246858203006","submitTimeUtc":"2019-02-25T06:15:09Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5510753094246858203006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510753094246858203006","method":"GET"}}},{"id":"5510761961806406103001","submitTimeUtc":"2019-02-25T06:29:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5510761961806406103001"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510761961806406103001","method":"GET"}}},{"id":"5510769572776406003003","submitTimeUtc":"2019-02-25T06:42:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5510769572776406003003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510769572776406003003","method":"GET"}}},{"id":"5510770329636688203005","submitTimeUtc":"2019-02-25T06:43:53Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5510770329636688203005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510770329636688203005","method":"GET"}}}]}} +2019-02-25 12:14:01.944 [main] INFO - Response Code: 201 +2019-02-25 12:14:01.944 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_85857a8f-feb8-4bce-a13c-16f08725d96e +X-OPNET-Transaction-Trace: a2_9335192d-064f-4ca3-92a9-82df28c5805c +Cache-Control: no-cache, no-transform +ETag: "-1789228533" +Expires: Mon, 25 Feb 2019 06:44:01 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 25 Feb 2019 06:44:01 GMT +X-Cnection: close +v-c-correlation-id: 9752cb99-9a3a-4517-a97b-fd36a2509797 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077041483 +OkHttp-Received-Millis: 1551077041929 + +2019-02-25 12:14:01.944 [main] INFO - ********* END *********: +2019-02-25 12:14:02.022 [main] INFO - ********* START ********* +2019-02-25 12:14:02.022 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:02.023 [main] INFO - Request Type: POST +2019-02-25 12:14:02.023 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches, requestType=POST} +2019-02-25 12:14:02.023 [main] INFO - Digest: SHA-256=MvPxo/GwSzPCnxUumNRkM4jYV4dEdR0iQ6mljgTLqrs= +2019-02-25 12:14:02.024 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:02.024 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:02.025 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:02.025 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="BBDlUqhO85VUcs1dkSkaNebcwTrP4duz43AgGQIc+aw=" +2019-02-25 12:14:02.025 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:02.238 [main] INFO - Request Body: {"save":false,"name":"TSS search","timezone":"America/Chicago","query":"clientRefeInfo.code:52465","offset":0,"limit":80,"sort":"id:asc, submitTimeUtc:asc"} +2019-02-25 12:14:02.238 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches"}},"invalidFields":{"name":"query","reasonMessage":"unsupported field"},"message":"Incorrectly formatted query string","messageKey":"INCORRECT_QUERY_STRING","missingFields":null} +2019-02-25 12:14:02.238 [main] INFO - Response Code: 400 +2019-02-25 12:14:02.238 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +X-OPNET-Transaction-Trace: a2_23534ff4-6295-4dac-9464-83d9c801c72e +Cache-Control: no-cache, no-transform +ETag: "-652493791" +Expires: Mon, 25 Feb 2019 06:44:02 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 25 Feb 2019 06:44:02 GMT +X-Cnection: close +v-c-correlation-id: 717c575f-7a51-4b41-bcef-2a438dfa1000 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077042028 +OkHttp-Received-Millis: 1551077042236 + +2019-02-25 12:14:02.238 [main] INFO - ********* END *********: +2019-02-25 12:14:02.265 [main] INFO - ********* START ********* +2019-02-25 12:14:02.266 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:02.266 [main] INFO - Request Type: GET +2019-02-25 12:14:02.266 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/cf031711-465f-42cc-8275-2308f5ca0459, requestType=GET} +2019-02-25 12:14:02.267 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:02.267 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:02.267 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:02.267 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Hq96O7Oq3rTJwiWAcMUEY0SWRpkkConwd0oCqjQ256s=" +2019-02-25 12:14:02.267 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:05.173 [main] INFO - Request Body: null +2019-02-25 12:14:05.173 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/cf031711-465f-42cc-8275-2308f5ca0459","method":"GET"}},"searchId":"cf031711-465f-42cc-8275-2308f5ca0459","save":false,"name":"TSS search","query":"clientReferenceInformation.code:12345","count":66,"totalCount":66,"limit":100,"offset":0,"sort":"id:asc, submitTimeUtc:asc","timezone":"America/Chicago","submitTimeUtc":"2019-02-21T05:00:14Z","_embedded":{"transactionSummaries":[{"id":"5468475396886870703005","submitTimeUtc":"2019-01-07T07:52:19Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468475396886870703005","method":"GET"}}},{"id":"5468478041966220703004","submitTimeUtc":"2019-01-07T07:56:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468478041966220703004","method":"GET"}}},{"id":"5468480179436393003006","submitTimeUtc":"2019-01-07T08:00:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480179436393003006","method":"GET"}}},{"id":"5468480690446811803002","submitTimeUtc":"2019-01-07T08:01:09Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468480690446811803002","method":"GET"}}},{"id":"5468485285666814803002","submitTimeUtc":"2019-01-07T08:08:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485285666814803002","method":"GET"}}},{"id":"5468485710916881003005","submitTimeUtc":"2019-01-07T08:09:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5468485710916881003005","method":"GET"}}},{"id":"5469521708616037903005","submitTimeUtc":"2019-01-08T12:56:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469521708616037903005","method":"GET"}}},{"id":"5469522883506039403005","submitTimeUtc":"2019-01-08T12:58:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469522883506039403005","method":"GET"}}},{"id":"5469524080436600903006","submitTimeUtc":"2019-01-08T13:00:08Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524080436600903006","method":"GET"}}},{"id":"5469524351696601103006","submitTimeUtc":"2019-01-08T13:00:35Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469524351696601103006","method":"GET"}}},{"id":"5469525663736980803002","submitTimeUtc":"2019-01-08T13:02:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469525663736980803002","method":"GET"}}},{"id":"5469529727066047603005","submitTimeUtc":"2019-01-08T13:09:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469529727066047603005","method":"GET"}}},{"id":"5469535101246615503006","submitTimeUtc":"2019-01-08T13:18:30Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469535101246615503006","method":"GET"}}},{"id":"5469588461766085503005","submitTimeUtc":"2019-01-08T14:47:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469588461766085503005","method":"GET"}}},{"id":"5469589378676352103001","submitTimeUtc":"2019-01-08T14:48:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589378676352103001","method":"GET"}}},{"id":"5469589534636352203001","submitTimeUtc":"2019-01-08T14:49:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5469589534636352203001","method":"GET"}}},{"id":"5470167162946434803001","submitTimeUtc":"2019-01-09T06:51:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5470167162946434803001","method":"GET"}}},{"id":"5471404274096790203002","submitTimeUtc":"2019-01-10T17:13:47Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5471404274096790203002","method":"GET"}}},{"id":"5475240476326666304005","submitTimeUtc":"2019-01-15T03:47:27Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240476326666304005","method":"GET"}}},{"id":"5475240647986666504005","submitTimeUtc":"2019-01-15T03:47:44Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240647986666504005","method":"GET"}}},{"id":"5475240694246602504002","submitTimeUtc":"2019-01-15T03:47:49Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_auth","reasonCode":"101","rCode":"0","rFlag":"DMISSINGFIELD","rMessage":"The request data did not pass the required fields check for this application: [bill_address1, bill_city, bill_country, customer_email, customer_lastname]","returnCode":"1002002"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{"customerId":"7010000000016241111"},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{},"processorInformation":{"processor":{}},"pointOfSaleInformation":{"partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5475240694246602504002","method":"GET"}}},{"id":"5480449281766424303002","submitTimeUtc":"2019-01-21T04:28:48Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5480449281766424303002","method":"GET"}}},{"id":"5484294159526049603003","submitTimeUtc":"2019-01-25T15:16:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5484294159526049603003","method":"GET"}}},{"id":"5486140097596056803002","submitTimeUtc":"2019-01-27T18:33:29Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486140097596056803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486140097596056803002","method":"GET"}}},{"id":"5486143740386376403005","submitTimeUtc":"2019-01-27T18:39:34Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486143740386376403005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486143740386376403005","method":"GET"}}},{"id":"5486146109726057203002","submitTimeUtc":"2019-01-27T18:43:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486146109726057203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486146109726057203002","method":"GET"}}},{"id":"5486149568856057803002","submitTimeUtc":"2019-01-27T18:49:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486149568856057803002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486149568856057803002","method":"GET"}}},{"id":"5486150058926377303005","submitTimeUtc":"2019-01-27T18:50:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150058926377303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150058926377303005","method":"GET"}}},{"id":"5486150718046057903002","submitTimeUtc":"2019-01-27T18:51:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486150718046057903002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486150718046057903002","method":"GET"}}},{"id":"5486151464616710103006","submitTimeUtc":"2019-01-27T18:52:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486151464616710103006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486151464616710103006","method":"GET"}}},{"id":"5486152183786377503005","submitTimeUtc":"2019-01-27T18:53:38Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486152183786377503005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486152183786377503005","method":"GET"}}},{"id":"5486154059186996103003","submitTimeUtc":"2019-01-27T18:56:46Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486154059186996103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486154059186996103003","method":"GET"}}},{"id":"5486156635686378003005","submitTimeUtc":"2019-01-27T19:01:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486156635686378003005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486156635686378003005","method":"GET"}}},{"id":"5486157519836378103005","submitTimeUtc":"2019-01-27T19:02:32Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486157519836378103005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486157519836378103005","method":"GET"}}},{"id":"5486159910726712503006","submitTimeUtc":"2019-01-27T19:06:31Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486159910726712503006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486159910726712503006","method":"GET"}}},{"id":"5486160598666060203002","submitTimeUtc":"2019-01-27T19:07:40Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5486160598666060203002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5486160598666060203002","method":"GET"}}},{"id":"5488539943826733503004","submitTimeUtc":"2019-01-30T13:13:14Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5488539943826733503004","method":"GET"}}},{"id":"5492626323766108104003","submitTimeUtc":"2019-02-04T06:43:52Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5492626323766108104003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5492626323766108104003","method":"GET"}}},{"id":"5493718508496900303005","submitTimeUtc":"2019-02-05T13:04:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718508496900303005","method":"GET"}}},{"id":"5493718987966748103006","submitTimeUtc":"2019-02-05T13:04:58Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5493718987966748103006","method":"GET"}}},{"id":"5495325909106773503001","submitTimeUtc":"2019-02-07T09:43:11Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495325909106773503001"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495325909106773503001","method":"GET"}}},{"id":"5495326432436411603006","submitTimeUtc":"2019-02-07T09:44:03Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495326432436411603006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495326432436411603006","method":"GET"}}},{"id":"5495345378096803303002","submitTimeUtc":"2019-02-07T10:15:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495345378096803303002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495345378096803303002","method":"GET"}}},{"id":"5495351977316834703003","submitTimeUtc":"2019-02-07T10:26:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495351977316834703003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495351977316834703003","method":"GET"}}},{"id":"5495352459166850703004","submitTimeUtc":"2019-02-07T10:27:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495352459166850703004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495352459166850703004","method":"GET"}}},{"id":"5495353943786840303005","submitTimeUtc":"2019-02-07T10:29:54Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495353943786840303005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495353943786840303005","method":"GET"}}},{"id":"5495375735936863103004","submitTimeUtc":"2019-02-07T11:06:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5495375735936863103004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5495375735936863103004","method":"GET"}}},{"id":"5496424976256414603001","submitTimeUtc":"2019-02-08T16:14:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5496424976256414603001","method":"GET"}}},{"id":"5498675776826871703002","submitTimeUtc":"2019-02-11T06:46:17Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498675776826871703002"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498675776826871703002","method":"GET"}}},{"id":"5498689371686278103003","submitTimeUtc":"2019-02-11T07:08:57Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5498689371686278103003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5498689371686278103003","method":"GET"}}},{"id":"5500338731966034504001","submitTimeUtc":"2019-02-13T04:57:53Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500338731966034504001","method":"GET"}}},{"id":"5500340288796036604001","submitTimeUtc":"2019-02-13T05:00:28Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500340288796036604001","method":"GET"}}},{"id":"5500431596766884904002","submitTimeUtc":"2019-02-13T07:32:39Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500431596766884904002","method":"GET"}}},{"id":"5500437054766214104001","submitTimeUtc":"2019-02-13T07:41:45Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5500437054766214104001","method":"GET"}}},{"id":"5501219025486844803004","submitTimeUtc":"2019-02-14T05:25:02Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501219025486844803004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501219025486844803004","method":"GET"}}},{"id":"5501289951276934603004","submitTimeUtc":"2019-02-14T07:23:15Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5501289951276934603004"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501289951276934603004","method":"GET"}}},{"id":"5501373458936421203003","submitTimeUtc":"2019-02-14T09:42:26Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501373458936421203003","method":"GET"}}},{"id":"5501376636716307403002","submitTimeUtc":"2019-02-14T09:47:43Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5501376636716307403002","method":"GET"}}},{"id":"5510721117946649203006","submitTimeUtc":"2019-02-25T05:21:51Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510721117946649203006","method":"GET"}}},{"id":"5510721851706959203004","submitTimeUtc":"2019-02-25T05:23:05Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510721851706959203004","method":"GET"}}},{"id":"5510723131456972003004","submitTimeUtc":"2019-02-25T05:25:13Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510723131456972003004","method":"GET"}}},{"id":"5510723667506096803002","submitTimeUtc":"2019-02-25T05:26:06Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["1087488702VIAQNSPQ"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510723667506096803002","method":"GET"}}},{"id":"5510753094246858203006","submitTimeUtc":"2019-02-25T06:15:09Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5510753094246858203006"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510753094246858203006","method":"GET"}}},{"id":"5510761961806406103001","submitTimeUtc":"2019-02-25T06:29:56Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5510761961806406103001"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510761961806406103001","method":"GET"}}},{"id":"5510769572776406003003","submitTimeUtc":"2019-02-25T06:42:37Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5510769572776406003003"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510769572776406003003","method":"GET"}}},{"id":"5510770329636688203005","submitTimeUtc":"2019-02-25T06:43:53Z","merchantId":"testrest","applicationInformation":{"applications":[{"name":"ics_arc","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Service was successful","returnCode":"1350000"},{"name":"ics_arc_post","reasonCode":"100","rCode":"1","returnCode":"9999999"},{"name":"ics_oct","reasonCode":"100","rCode":"1","rFlag":"SOK","rMessage":"Request was processed successfully.","returnCode":"1500000"}]},"buyerInformation":{},"clientReferenceInformation":{"code":"12345","applicationName":"REST API"},"consumerAuthenticationInformation":{},"deviceInformation":{},"fraudMarkingInformation":{},"merchantInformation":{},"orderInformation":{"billTo":{},"shipTo":{},"amountDetails":{"totalAmount":"200.00","currency":"USD"}},"paymentInformation":{"paymentMethod":{"type":"credit card"},"customer":{},"card":{"suffix":"1111","prefix":"411111","type":"VI"}},"processingInformation":{"businessApplicationId":"GD","reconciliationId":["5510770329636688203005"]},"processorInformation":{"processor":{"name":"vdcmetropolitan"}},"pointOfSaleInformation":{"terminalId":"12345678","partner":{}},"riskInformation":{"providers":{"fingerPrint":{}}},"_links":{"transactionDetail":{"href":"https://apitest.cybersource.com:-1/tss/v2/transactions/5510770329636688203005","method":"GET"}}}]}} +2019-02-25 12:14:05.177 [main] INFO - Response Code: 200 +2019-02-25 12:14:05.177 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_26638c79-50ca-4ccc-aae5-b87246a6e4d6 +X-OPNET-Transaction-Trace: a2_d9bc3227-b45c-424d-9b43-138200cd693a +Cache-Control: no-cache, no-transform +ETag: "722345997" +Expires: Mon, 25 Feb 2019 06:44:05 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 25 Feb 2019 06:44:05 GMT +X-Cnection: close +v-c-correlation-id: a08a7988-149e-419d-abae-b8d48abec0de +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077042270 +OkHttp-Received-Millis: 1551077045161 + +2019-02-25 12:14:05.177 [main] INFO - ********* END *********: +2019-02-25 12:14:05.202 [main] INFO - ********* START ********* +2019-02-25 12:14:05.202 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:05.203 [main] INFO - Request Type: GET +2019-02-25 12:14:05.203 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc, requestType=GET} +2019-02-25 12:14:05.204 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:05.204 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:05.204 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:05.204 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="V0KaEYPvIMF1h8xEXnIEVhhsUF8ktmKX9mfagUxLiQQ=" +2019-02-25 12:14:05.205 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:05.439 [main] INFO - Request Body: null +2019-02-25 12:14:05.439 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com:-1/tss/v2/searches/400b6975-4500-4426-89ee-5089272ca1fc"}},"invalidFields":null,"message":"search Id not fount.","messageKey":null,"missingFields":null} +2019-02-25 12:14:05.440 [main] INFO - Response Code: 400 +2019-02-25 12:14:05.440 [main] INFO - Response Headers: Server: Apache-Coyote/1.1 +Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_c92fee1d-0ff6-4ce4-b965-012bf3c9cf22 +X-OPNET-Transaction-Trace: a2_6f052b97-727f-490b-9484-a1a219ced96a +Cache-Control: no-cache, no-transform +ETag: "-1662750822" +Expires: Mon, 25 Feb 2019 06:44:05 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +X-XSS-Protection: 1 +X-Content-Type-Options: nosniff +Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; +Vary: Accept +Content-Type: application/json +Date: Mon, 25 Feb 2019 06:44:05 GMT +X-Cnection: close +v-c-correlation-id: 21a2b780-bc75-4b28-82c0-12e841b0a39f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077045205 +OkHttp-Received-Millis: 1551077045437 + +2019-02-25 12:14:05.440 [main] INFO - ********* END *********: +2019-02-25 12:14:05.463 [main] INFO - ********* START ********* +2019-02-25 12:14:05.463 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:05.463 [main] INFO - Request Type: GET +2019-02-25 12:14:05.464 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testrest&roleId=admin, requestType=GET} +2019-02-25 12:14:05.464 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:05.464 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:05.465 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:05.465 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="mws37ox/TePsnW/ZahLdD1rX8EixeNk7rD0ncHnv5OE=" +2019-02-25 12:14:05.465 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:05.725 [main] INFO - Request Body: null +2019-02-25 12:14:05.725 [main] INFO - Response Message: {"users":[{"accountInformation":{"userName":"testrest","roleId":"admin","permissions":["CustomerProfileViewPermission","CustomerProfileDeletePermission","CustomerProfileManagementPermission","CustomerProfileTransactionPermission","SubscriptionViewPermission","SubscriptionDeletePermission","SubscriptionManagementPermission","SubscriptionTransactionPermission","VirtualTerminalSettingsViewPermission","VirtualTerminalSettingsManagementPermission","VirtualTerminalTransactionPermission","PaymentVerificationPermission","PaymentDebitPermission","PaymentCreditPermission","PaymentStandAloneCreditPermission","PaymentServiceFeeRefundPermission","PaymentCancellationPermission","ReportSettingsViewPermission","ReportSettingsManagementPermission","ReportViewPermission","ReportDownloadPermission","ELCViewPermission","ELCReturnPermission","ELCResetPermission","DMConfigurationManagementPermission","DMProfileManagementPermission","DMProfileViewPermission","DMListManagementPermission","DMListViewPermission","DMVelocityManagementPermission","DMVelocityViewPermission","DMQueueSettingsManagementPermission","DMQueueSettingsViewPermission","DMReplayRequestManagementPermission","DMReplayRequestViewPermission","CMQueueSearchPermission","CMConvertOrderPermission","CMQueueAssignmentPermission","CMReleaseOwnershipPermission","CMReviewAnyOrderPermission","CMCaseAssignmentPermission","CMPriorityChangePermission","CMMoveOrdersToOtherQueuePermission","CMThirdPartyConfigurationPermission","CMPerformanceStatisticsReviewPermission","CMTimeLimitResetPermission","CMUnrestrictedOrderManagementPermission","CMConvertRejectedOrdersPermission","CMStealOwnershipPermission","CMCaseSLAExemptionPermission","CMThirdPartyRequestsPermission","UserViewPermission","UserUpdatePermission","UserManagementPermission","BankingInformationManagementPermission","MerchantInformationManagementPermission","APIKeyManagementPermission","MessageCenterViewPermission","HOPScriptManagementPermission","HOPSettingsViewPermission","HOPSettingsManagementPermission","HPASecurityManagementPermission","HPASettingsViewPermission","HPASettingsManagementPermission","HPATransactionSearchPermission","TransactionViewPermission","MarkAsTrustedPermission","MarkAsTemporarilyTrustedPermission","MarkAsSuspectPermission","MarkForReviewPermission","RemoveFromHistoryPermission","AccountNumberViewPermission","BatchUploadPermission","ReauthorizePermission","ReauthorizeSettlePermission","NewOrderFromAuthPermission","FullAuthorizationReversalPermission","AUStatusPermission","AUPgpUploadPermission","CbkMgmtAssignChargebackPermission","CbkMgmtViewChargebackPermission","CbkMgmtAcceptAndRebuttalChargebackPermission","CbkMgmtTakeOwnershipPermission","AuditSearchPermission","TransactionSearchExportPermission","CbkMgmtReturnChargebackToQueuePermission","BeneficiaryDetailsViewPermission","BeneficiaryDetailsUpdatePermission","IpConfigurationPermission","SecureFileDownloadPermission","SecureFileUploadPermission","ServiceFeeSettingsViewPermission","ServiceFeeSettingsManagementPermission","MposDeviceManagementPermission","MposDeviceAccessPermission","MposDeviceTIDManagementPermission","PayoutsVirtualTerminalPermission","PayoutsVirtualTerminalSettingsViewPermission","PayoutsVirtualTerminalSettingsManagementPermission","TerminalManagementPermission","ProcessorSettingsPermission","PortfolioRiskControlsViewPermission","PortfolioRiskControlsManagementPermission","MerchantRiskControlsViewPermission","MerchantRiskControlsManagementPermission","KeysManagementPermission","KeysViewPermission","DigitalPaymentsViewPermission","DigitalPaymentsManagementPermission","PayerAuthConfigurationViewPermission","PayerAuthConfigurationManagementPermission","SmartAuthSettingsViewPermission","SmartAuthSettingsManagementPermission","GroupsViewPermission","GroupsManagementPermission","IpSettingsViewPermission","IpSettingsManagementPermission","MerchantBoardingViewPermission","MerchantBoardingManagementPermission","TokenDashboardViewPermission","TokenDashboardManagementPermission","TerminalListViewPermission","MposDeviceViewPermission","ReaderStatusPanelViewPermission","ReaderStatusPanelManagementPermission"],"status":"active","createdTime":"2017-11-17T22:38:06.000Z","lastAccessTime":"2019-02-25T06:00:11.000Z","languagePreference":"","timezone":""},"organizationInformation":{"organizationId":"testrest"},"contactInformation":{"email":"glondhe@visa.com","phoneNumber":"","firstName":"gaurav","lastName":"londhe"},"customFields":{}}]} +2019-02-25 12:14:05.725 [main] INFO - Response Code: 200 +2019-02-25 12:14:05.726 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_82fb54bc-08d8-49d3-99a1-48a65e9b4af3 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:05 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: f677e169-2f93-484d-b0c4-06670a9b668c +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077045470 +OkHttp-Received-Millis: 1551077045720 + +2019-02-25 12:14:05.726 [main] INFO - ********* END *********: +2019-02-25 12:14:05.763 [main] INFO - ********* START ********* +2019-02-25 12:14:05.763 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:05.763 [main] INFO - Request Type: GET +2019-02-25 12:14:05.763 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/ums/v1/users?organizationId=testre&roleId=admin, requestType=GET} +2019-02-25 12:14:05.763 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:05.763 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:05.763 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:05.763 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="YhackggLk4IyJnEeCI0t8DlS3cOtL99n0cIqUzw43cs=" +2019-02-25 12:14:05.765 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:05.993 [main] INFO - Request Body: null +2019-02-25 12:14:05.994 [main] INFO - Response Message: Response{protocol=http/1.1, code=200, message=DONE, url=https://apitest.cybersource.com/ums/v1/users?organizationId=testrest&roleId=admin} +2019-02-25 12:14:05.995 [main] INFO - Response Code: 401 +2019-02-25 12:14:05.995 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a7fea56e-163a-436e-929b-d2d5a78b6451 +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:05 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 9a0d8bd8-19b2-4800-94a7-32f964b0a5d9 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077045766 +OkHttp-Received-Millis: 1551077045991 + +2019-02-25 12:14:05.996 [main] INFO - ********* END *********: +2019-02-25 12:14:06.063 [main] INFO - ********* START ********* +2019-02-25 12:14:06.064 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:06.064 [main] INFO - Request Type: GET +2019-02-25 12:14:06.064 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest, requestType=GET} +2019-02-25 12:14:06.064 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:06.065 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:06.065 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:06.065 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="faECqx1kAnjebiwzXPZeyhWIpH8nek8uT9uf2rw6xtI=" +2019-02-25 12:14:06.065 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:06.634 [main] INFO - Request Body: null +2019-02-25 12:14:06.634 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testrest","method":"GET"},"files":[{"fileId":"RGVtb19SZXBvcnQtNzg1NWQxM2YtOTM5Ny01MTEzLWUwNTMtYTI1ODhlMGE3MTkyLnhtbC0yMDE4LTEwLTIw","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzg1NWQxM2YtOTM5Ny01MTEzLWUwNTMtYTI1ODhlMGE3MTkyLnhtbC0yMDE4LTEwLTIw","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMA==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMA==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4NTZhMzQ5LTZmMjQtNTEwZi1lMDUzLWEyNTg4ZTBhZWQxYi5jc3YtMjAxOC0xMC0yMQ==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4NTZhMzQ5LTZmMjQtNTEwZi1lMDUzLWEyNTg4ZTBhZWQxYi5jc3YtMjAxOC0xMC0yMQ==","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzg1NmEzNDktNmYyMy01MTBmLWUwNTMtYTI1ODhlMGFlZDFiLnhtbC0yMDE4LTEwLTIx","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzg1NmEzNDktNmYyMy01MTBmLWUwNTMtYTI1ODhlMGFlZDFiLnhtbC0yMDE4LTEwLTIx","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMQ==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMQ==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4Y2MwNWI2LWRjYTAtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yMg==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4Y2MwNWI2LWRjYTAtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yMg==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzhjYzA1YjYtZGM5Zi01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTIy","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzhjYzA1YjYtZGM5Zi01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTIy","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMg==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMg==","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4N2FiNjRlLTA0ODEtNTEzNS1lMDUzLWEyNTg4ZTBhMDExMC5jc3YtMjAxOC0xMC0yMw==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4N2FiNjRlLTA0ODEtNTEzNS1lMDUzLWEyNTg4ZTBhMDExMC5jc3YtMjAxOC0xMC0yMw==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzg3YWI2NGUtMDQ4MC01MTM1LWUwNTMtYTI1ODhlMGEwMTEwLnhtbC0yMDE4LTEwLTIz","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzg3YWI2NGUtMDQ4MC01MTM1LWUwNTMtYTI1ODhlMGEwMTEwLnhtbC0yMDE4LTEwLTIz","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMw==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMw==","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzhjYzA1YjYtZGVmZS01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTI0","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzhjYzA1YjYtZGVmZS01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTI0","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc4Y2MwNWI2LWRlZmYtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yNA==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc4Y2MwNWI2LWRlZmYtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yNA==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNA==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNA==","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkwOGJiYjQtMmQ2MS01OGQxLWUwNTMtYTI1ODhlMGFlOTJiLnhtbC0yMDE4LTEwLTI1","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkwOGJiYjQtMmQ2MS01OGQxLWUwNTMtYTI1ODhlMGFlOTJiLnhtbC0yMDE4LTEwLTI1","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc5MDhiYmI0LTJkNjItNThkMS1lMDUzLWEyNTg4ZTBhZTkyYi5jc3YtMjAxOC0xMC0yNQ==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc5MDhiYmI0LTJkNjItNThkMS1lMDUzLWEyNTg4ZTBhZTkyYi5jc3YtMjAxOC0xMC0yNQ==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNQ==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNQ==","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc5MWRjMGJlLWRkMmEtNzIwYS1lMDUzLWEyNTg4ZTBhZGQ3Yi5jc3YtMjAxOC0xMC0yNg==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc5MWRjMGJlLWRkMmEtNzIwYS1lMDUzLWEyNTg4ZTBhZGQ3Yi5jc3YtMjAxOC0xMC0yNg==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkxZGMwYmUtZGQyOS03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI2","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkxZGMwYmUtZGQyOS03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI2","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNg==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNg==","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc5MzFkODJkLWNmNGEtNzFmYS1lMDUzLWEyNTg4ZTBhYjI3YS5jc3YtMjAxOC0xMC0yNw==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc5MzFkODJkLWNmNGEtNzFmYS1lMDUzLWEyNTg4ZTBhYjI3YS5jc3YtMjAxOC0xMC0yNw==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkzMWQ4MmQtY2Y0OS03MWZhLWUwNTMtYTI1ODhlMGFiMjdhLnhtbC0yMDE4LTEwLTI3","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkzMWQ4MmQtY2Y0OS03MWZhLWUwNTMtYTI1ODhlMGFiMjdhLnhtbC0yMDE4LTEwLTI3","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNw==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNw==","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkzMzdjYmItY2YyMi03MjAyLWUwNTMtYTI1ODhlMGFhYzA5LnhtbC0yMDE4LTEwLTI4","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkzMzdjYmItY2YyMi03MjAyLWUwNTMtYTI1ODhlMGFhYzA5LnhtbC0yMDE4LTEwLTI4","method":"GET"},{"fileId":"VFJSUmVwb3J0LTc5MzM3Y2JiLWNmMjMtNzIwMi1lMDUzLWEyNTg4ZTBhYWMwOS5jc3YtMjAxOC0xMC0yOA==","href":"https://apitest.cybersource.com/sfs/v1/files/VFJSUmVwb3J0LTc5MzM3Y2JiLWNmMjMtNzIwMi1lMDUzLWEyNTg4ZTBhYWMwOS5jc3YtMjAxOC0xMC0yOA==","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOA==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOA==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","method":"GET"},{"fileId":"dGVzdHJlc3QuT3djeWs2cGwucmVwbHkuYWxsLmNzdi0yMDE4LTEwLTI5","href":"https://apitest.cybersource.com/sfs/v1/files/dGVzdHJlc3QuT3djeWs2cGwucmVwbHkuYWxsLmNzdi0yMDE4LTEwLTI5","method":"GET"},{"fileId":"RGVtb19SZXBvcnQtNzkxZGMwYmYtYTUxMy03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI5","href":"https://apitest.cybersource.com/sfs/v1/files/RGVtb19SZXBvcnQtNzkxZGMwYmYtYTUxMy03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI5","method":"GET"},{"fileId":"dGVzdHJlc3QuT3djeWs2cGwucmVwbHkucmVqZWN0ZWQuY3N2LTIwMTgtMTAtMjk=","href":"https://apitest.cybersource.com/sfs/v1/files/dGVzdHJlc3QuT3djeWs2cGwucmVwbHkucmVqZWN0ZWQuY3N2LTIwMTgtMTAtMjk=","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOQ==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOQ==","method":"GET"},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","href":"https://apitest.cybersource.com/sfs/v1/files/UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","method":"GET"},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","href":"https://apitest.cybersource.com/sfs/v1/files/VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","method":"GET"},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0zMA==","href":"https://apitest.cybersource.com/sfs/v1/files/QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0zMA==","method":"GET"}]},"fileDetails":[{"fileId":"RGVtb19SZXBvcnQtNzg1NWQxM2YtOTM5Ny01MTEzLWUwNTMtYTI1ODhlMGE3MTkyLnhtbC0yMDE4LTEwLTIw","name":"Demo_Report-7855d13f-9397-5113-e053-a2588e0a7192.xml","createdTime":"2018-10-20T17:31:36Z","lastModifiedTime":"2018-10-20T17:31:36Z","date":"2018-10-20","mimeType":"application/xml","size":3248},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-21T08:54:56Z","lastModifiedTime":"2018-10-21T08:54:56Z","date":"2018-10-20","mimeType":"text/csv","size":636},{"fileId":"VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA==","name":"TRRReport-7855d13f-9398-5113-e053-a2588e0a7192.csv","createdTime":"2018-10-20T17:31:36Z","lastModifiedTime":"2018-10-20T17:31:36Z","date":"2018-10-20","mimeType":"text/csv","size":1696},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","name":"TransactionDetailReport.csv","createdTime":"2018-10-21T09:06:01Z","lastModifiedTime":"2018-10-21T09:06:01Z","date":"2018-10-20","mimeType":"text/csv","size":2149},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjA=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-21T10:39:46Z","lastModifiedTime":"2018-10-21T10:39:46Z","date":"2018-10-20","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMA==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-21T10:56:31Z","lastModifiedTime":"2018-10-21T10:56:31Z","date":"2018-10-20","mimeType":"text/csv","size":184},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","name":"TransactionDetailReport.csv","createdTime":"2018-10-22T09:08:33Z","lastModifiedTime":"2018-10-22T09:08:33Z","date":"2018-10-21","mimeType":"text/csv","size":2149},{"fileId":"VFJSUmVwb3J0LTc4NTZhMzQ5LTZmMjQtNTEwZi1lMDUzLWEyNTg4ZTBhZWQxYi5jc3YtMjAxOC0xMC0yMQ==","name":"TRRReport-7856a349-6f24-510f-e053-a2588e0aed1b.csv","createdTime":"2018-10-21T17:30:41Z","lastModifiedTime":"2018-10-21T17:30:41Z","date":"2018-10-21","mimeType":"text/csv","size":153},{"fileId":"RGVtb19SZXBvcnQtNzg1NmEzNDktNmYyMy01MTBmLWUwNTMtYTI1ODhlMGFlZDFiLnhtbC0yMDE4LTEwLTIx","name":"Demo_Report-7856a349-6f23-510f-e053-a2588e0aed1b.xml","createdTime":"2018-10-21T17:30:41Z","lastModifiedTime":"2018-10-21T17:30:41Z","date":"2018-10-21","mimeType":"application/xml","size":461},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-22T08:53:03Z","lastModifiedTime":"2018-10-22T08:53:03Z","date":"2018-10-21","mimeType":"text/csv","size":213},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMQ==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-22T10:55:08Z","lastModifiedTime":"2018-10-22T10:55:08Z","date":"2018-10-21","mimeType":"text/csv","size":184},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjE=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-22T10:38:53Z","lastModifiedTime":"2018-10-22T10:38:53Z","date":"2018-10-21","mimeType":"text/csv","size":781},{"fileId":"VFJSUmVwb3J0LTc4Y2MwNWI2LWRjYTAtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yMg==","name":"TRRReport-78cc05b6-dca0-5102-e053-a2588e0a3aa9.csv","createdTime":"2018-10-22T17:33:46Z","lastModifiedTime":"2018-10-22T17:33:46Z","date":"2018-10-22","mimeType":"text/csv","size":20255},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-23T09:06:11Z","lastModifiedTime":"2018-10-23T09:06:11Z","date":"2018-10-22","mimeType":"text/csv","size":4208},{"fileId":"RGVtb19SZXBvcnQtNzhjYzA1YjYtZGM5Zi01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTIy","name":"Demo_Report-78cc05b6-dc9f-5102-e053-a2588e0a3aa9.xml","createdTime":"2018-10-22T17:33:46Z","lastModifiedTime":"2018-10-22T17:33:46Z","date":"2018-10-22","mimeType":"application/xml","size":35844},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","name":"TransactionDetailReport.csv","createdTime":"2018-10-23T09:32:46Z","lastModifiedTime":"2018-10-23T09:32:46Z","date":"2018-10-22","mimeType":"text/csv","size":221387},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjI=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-23T10:56:26Z","lastModifiedTime":"2018-10-23T10:56:26Z","date":"2018-10-22","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMg==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-23T11:13:16Z","lastModifiedTime":"2018-10-23T11:13:16Z","date":"2018-10-22","mimeType":"text/csv","size":184},{"fileId":"VFJSUmVwb3J0LTc4N2FiNjRlLTA0ODEtNTEzNS1lMDUzLWEyNTg4ZTBhMDExMC5jc3YtMjAxOC0xMC0yMw==","name":"TRRReport-787ab64e-0481-5135-e053-a2588e0a0110.csv","createdTime":"2018-10-23T17:32:01Z","lastModifiedTime":"2018-10-23T17:32:01Z","date":"2018-10-23","mimeType":"text/csv","size":72824},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-24T09:03:32Z","lastModifiedTime":"2018-10-24T09:03:32Z","date":"2018-10-23","mimeType":"text/csv","size":18379},{"fileId":"RGVtb19SZXBvcnQtNzg3YWI2NGUtMDQ4MC01MTM1LWUwNTMtYTI1ODhlMGEwMTEwLnhtbC0yMDE4LTEwLTIz","name":"Demo_Report-787ab64e-0480-5135-e053-a2588e0a0110.xml","createdTime":"2018-10-23T17:32:01Z","lastModifiedTime":"2018-10-23T17:32:01Z","date":"2018-10-23","mimeType":"application/xml","size":129108},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","name":"TransactionDetailReport.csv","createdTime":"2018-10-24T09:23:42Z","lastModifiedTime":"2018-10-24T09:23:42Z","date":"2018-10-23","mimeType":"text/csv","size":262829},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjM=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-24T10:47:33Z","lastModifiedTime":"2018-10-24T10:47:33Z","date":"2018-10-23","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yMw==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-24T11:03:18Z","lastModifiedTime":"2018-10-24T11:03:18Z","date":"2018-10-23","mimeType":"text/csv","size":184},{"fileId":"RGVtb19SZXBvcnQtNzhjYzA1YjYtZGVmZS01MTAyLWUwNTMtYTI1ODhlMGEzYWE5LnhtbC0yMDE4LTEwLTI0","name":"Demo_Report-78cc05b6-defe-5102-e053-a2588e0a3aa9.xml","createdTime":"2018-10-24T17:34:39Z","lastModifiedTime":"2018-10-24T17:34:39Z","date":"2018-10-24","mimeType":"application/xml","size":86420},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-25T08:56:09Z","lastModifiedTime":"2018-10-25T08:56:09Z","date":"2018-10-24","mimeType":"text/csv","size":9411},{"fileId":"VFJSUmVwb3J0LTc4Y2MwNWI2LWRlZmYtNTEwMi1lMDUzLWEyNTg4ZTBhM2FhOS5jc3YtMjAxOC0xMC0yNA==","name":"TRRReport-78cc05b6-deff-5102-e053-a2588e0a3aa9.csv","createdTime":"2018-10-24T17:34:44Z","lastModifiedTime":"2018-10-24T17:34:44Z","date":"2018-10-24","mimeType":"text/csv","size":48913},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","name":"TransactionDetailReport.csv","createdTime":"2018-10-25T09:18:24Z","lastModifiedTime":"2018-10-25T09:18:24Z","date":"2018-10-24","mimeType":"text/csv","size":244813},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjQ=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-25T10:38:34Z","lastModifiedTime":"2018-10-25T10:38:34Z","date":"2018-10-24","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNA==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-25T10:53:49Z","lastModifiedTime":"2018-10-25T10:53:49Z","date":"2018-10-24","mimeType":"text/csv","size":184},{"fileId":"RGVtb19SZXBvcnQtNzkwOGJiYjQtMmQ2MS01OGQxLWUwNTMtYTI1ODhlMGFlOTJiLnhtbC0yMDE4LTEwLTI1","name":"Demo_Report-7908bbb4-2d61-58d1-e053-a2588e0ae92b.xml","createdTime":"2018-10-25T17:35:14Z","lastModifiedTime":"2018-10-25T17:35:14Z","date":"2018-10-25","mimeType":"application/xml","size":63336},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-26T09:01:48Z","lastModifiedTime":"2018-10-26T09:01:48Z","date":"2018-10-25","mimeType":"text/csv","size":21068},{"fileId":"VFJSUmVwb3J0LTc5MDhiYmI0LTJkNjItNThkMS1lMDUzLWEyNTg4ZTBhZTkyYi5jc3YtMjAxOC0xMC0yNQ==","name":"TRRReport-7908bbb4-2d62-58d1-e053-a2588e0ae92b.csv","createdTime":"2018-10-25T17:35:14Z","lastModifiedTime":"2018-10-25T17:35:14Z","date":"2018-10-25","mimeType":"text/csv","size":37260},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","name":"TransactionDetailReport.csv","createdTime":"2018-10-26T09:17:38Z","lastModifiedTime":"2018-10-26T09:17:38Z","date":"2018-10-25","mimeType":"text/csv","size":196149},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjU=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-26T10:45:53Z","lastModifiedTime":"2018-10-26T10:45:53Z","date":"2018-10-25","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNQ==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-26T11:01:28Z","lastModifiedTime":"2018-10-26T11:01:28Z","date":"2018-10-25","mimeType":"text/csv","size":184},{"fileId":"VFJSUmVwb3J0LTc5MWRjMGJlLWRkMmEtNzIwYS1lMDUzLWEyNTg4ZTBhZGQ3Yi5jc3YtMjAxOC0xMC0yNg==","name":"TRRReport-791dc0be-dd2a-720a-e053-a2588e0add7b.csv","createdTime":"2018-10-26T17:31:54Z","lastModifiedTime":"2018-10-26T17:31:54Z","date":"2018-10-26","mimeType":"text/csv","size":21634},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-27T09:09:59Z","lastModifiedTime":"2018-10-27T09:09:59Z","date":"2018-10-26","mimeType":"text/csv","size":25586},{"fileId":"RGVtb19SZXBvcnQtNzkxZGMwYmUtZGQyOS03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI2","name":"Demo_Report-791dc0be-dd29-720a-e053-a2588e0add7b.xml","createdTime":"2018-10-26T17:31:54Z","lastModifiedTime":"2018-10-26T17:31:54Z","date":"2018-10-26","mimeType":"application/xml","size":37584},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","name":"TransactionDetailReport.csv","createdTime":"2018-10-27T09:19:10Z","lastModifiedTime":"2018-10-27T09:19:10Z","date":"2018-10-26","mimeType":"text/csv","size":144149},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjY=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-27T11:08:00Z","lastModifiedTime":"2018-10-27T11:08:00Z","date":"2018-10-26","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNg==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-27T11:26:55Z","lastModifiedTime":"2018-10-27T11:26:55Z","date":"2018-10-26","mimeType":"text/csv","size":184},{"fileId":"VFJSUmVwb3J0LTc5MzFkODJkLWNmNGEtNzFmYS1lMDUzLWEyNTg4ZTBhYjI3YS5jc3YtMjAxOC0xMC0yNw==","name":"TRRReport-7931d82d-cf4a-71fa-e053-a2588e0ab27a.csv","createdTime":"2018-10-27T17:35:11Z","lastModifiedTime":"2018-10-27T17:35:11Z","date":"2018-10-27","mimeType":"text/csv","size":14120},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","name":"TransactionDetailReport.csv","createdTime":"2018-10-28T09:13:03Z","lastModifiedTime":"2018-10-28T09:13:03Z","date":"2018-10-27","mimeType":"text/csv","size":24269},{"fileId":"RGVtb19SZXBvcnQtNzkzMWQ4MmQtY2Y0OS03MWZhLWUwNTMtYTI1ODhlMGFiMjdhLnhtbC0yMDE4LTEwLTI3","name":"Demo_Report-7931d82d-cf49-71fa-e053-a2588e0ab27a.xml","createdTime":"2018-10-27T17:35:11Z","lastModifiedTime":"2018-10-27T17:35:11Z","date":"2018-10-27","mimeType":"application/xml","size":24360},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-28T09:17:18Z","lastModifiedTime":"2018-10-28T09:17:18Z","date":"2018-10-27","mimeType":"text/csv","size":18700},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjc=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-28T11:09:43Z","lastModifiedTime":"2018-10-28T11:09:43Z","date":"2018-10-27","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yNw==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-28T11:29:43Z","lastModifiedTime":"2018-10-28T11:29:43Z","date":"2018-10-27","mimeType":"text/csv","size":184},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","name":"TransactionDetailReport.csv","createdTime":"2018-10-29T09:11:31Z","lastModifiedTime":"2018-10-29T09:11:31Z","date":"2018-10-28","mimeType":"text/csv","size":5296},{"fileId":"RGVtb19SZXBvcnQtNzkzMzdjYmItY2YyMi03MjAyLWUwNTMtYTI1ODhlMGFhYzA5LnhtbC0yMDE4LTEwLTI4","name":"Demo_Report-79337cbb-cf22-7202-e053-a2588e0aac09.xml","createdTime":"2018-10-28T17:35:19Z","lastModifiedTime":"2018-10-28T17:35:19Z","date":"2018-10-28","mimeType":"application/xml","size":696},{"fileId":"VFJSUmVwb3J0LTc5MzM3Y2JiLWNmMjMtNzIwMi1lMDUzLWEyNTg4ZTBhYWMwOS5jc3YtMjAxOC0xMC0yOA==","name":"TRRReport-79337cbb-cf23-7202-e053-a2588e0aac09.csv","createdTime":"2018-10-28T17:35:24Z","lastModifiedTime":"2018-10-28T17:35:24Z","date":"2018-10-28","mimeType":"text/csv","size":279},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOA==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-29T11:27:31Z","lastModifiedTime":"2018-10-29T11:27:31Z","date":"2018-10-28","mimeType":"text/csv","size":184},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-29T09:11:56Z","lastModifiedTime":"2018-10-29T09:11:56Z","date":"2018-10-28","mimeType":"text/csv","size":1254},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjg=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-29T11:07:51Z","lastModifiedTime":"2018-10-29T11:07:51Z","date":"2018-10-28","mimeType":"text/csv","size":781},{"fileId":"dGVzdHJlc3QuT3djeWs2cGwucmVwbHkuYWxsLmNzdi0yMDE4LTEwLTI5","name":"testrest.Owcyk6pl.reply.all.csv","createdTime":"2018-10-29T23:26:48Z","lastModifiedTime":"2018-10-29T23:26:48Z","date":"2018-10-29","mimeType":"text/csv","size":512},{"fileId":"RGVtb19SZXBvcnQtNzkxZGMwYmYtYTUxMy03MjBhLWUwNTMtYTI1ODhlMGFkZDdiLnhtbC0yMDE4LTEwLTI5","name":"Demo_Report-791dc0bf-a513-720a-e053-a2588e0add7b.xml","createdTime":"2018-10-29T17:31:08Z","lastModifiedTime":"2018-10-29T17:31:08Z","date":"2018-10-29","mimeType":"application/xml","size":29116},{"fileId":"dGVzdHJlc3QuT3djeWs2cGwucmVwbHkucmVqZWN0ZWQuY3N2LTIwMTgtMTAtMjk=","name":"testrest.Owcyk6pl.reply.rejected.csv","createdTime":"2018-10-29T23:26:48Z","lastModifiedTime":"2018-10-29T23:26:48Z","date":"2018-10-29","mimeType":"text/csv","size":512},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-30T09:14:14Z","lastModifiedTime":"2018-10-30T09:14:14Z","date":"2018-10-29","mimeType":"text/csv","size":4947},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","name":"TransactionDetailReport.csv","createdTime":"2018-10-30T09:19:49Z","lastModifiedTime":"2018-10-30T09:19:49Z","date":"2018-10-29","mimeType":"text/csv","size":90632},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMjk=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-30T11:13:24Z","lastModifiedTime":"2018-10-30T11:13:24Z","date":"2018-10-29","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0yOQ==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-30T11:33:09Z","lastModifiedTime":"2018-10-30T11:33:09Z","date":"2018-10-29","mimeType":"text/csv","size":184},{"fileId":"UGF5bWVudFN1Ym1pc3Npb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","name":"PaymentSubmissionDetailReport.csv","createdTime":"2018-10-31T09:14:12Z","lastModifiedTime":"2018-10-31T09:14:12Z","date":"2018-10-30","mimeType":"text/csv","size":11967},{"fileId":"VHJhbnNhY3Rpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","name":"TransactionDetailReport.csv","createdTime":"2018-10-31T09:20:02Z","lastModifiedTime":"2018-10-31T09:20:02Z","date":"2018-10-30","mimeType":"text/csv","size":93034},{"fileId":"VHJhbnNhY3Rpb25FeGNlcHRpb25EZXRhaWxSZXBvcnQuY3N2LTIwMTgtMTAtMzA=","name":"TransactionExceptionDetailReport.csv","createdTime":"2018-10-31T11:16:13Z","lastModifiedTime":"2018-10-31T11:16:13Z","date":"2018-10-30","mimeType":"text/csv","size":781},{"fileId":"QmF0Y2hGaWxlc0RldGFpbFJlcG9ydC5jc3YtMjAxOC0xMC0zMA==","name":"BatchFilesDetailReport.csv","createdTime":"2018-10-31T11:45:03Z","lastModifiedTime":"2018-10-31T11:45:03Z","date":"2018-10-30","mimeType":"text/csv","size":184}]} +2019-02-25 12:14:06.644 [main] INFO - Response Code: 200 +2019-02-25 12:14:06.644 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_4de5d397-c48f-4242-b715-241c94b2efea +Cache-Control: no-cache, no-transform +ETag: "-636012114-gzip" +Expires: Mon, 25 Feb 2019 06:44:06 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:06 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: c72110ec-9f69-460e-aba8-f31f9cd86b6e +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077046071 +OkHttp-Received-Millis: 1551077046609 + +2019-02-25 12:14:06.644 [main] INFO - ********* END *********: +2019-02-25 12:14:06.749 [main] INFO - ********* START ********* +2019-02-25 12:14:06.752 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:06.752 [main] INFO - Request Type: GET +2019-02-25 12:14:06.752 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/file-details?startDate=2018-10-20&endDate=2018-10-30&organizationId=testtest, requestType=GET} +2019-02-25 12:14:06.752 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:06.753 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:06.753 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:06.753 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="WkKMHNfxfJbyHtdRyaHCQ0YVuDUXu61nFQRRFh1vRnU=" +2019-02-25 12:14:06.754 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:07.217 [main] INFO - Request Body: null +2019-02-25 12:14:07.218 [main] INFO - Response Message: Merchant - Unauthorised access to Reseller/Account +2019-02-25 12:14:07.218 [main] INFO - Response Code: 403 +2019-02-25 12:14:07.219 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_e90ef160-5d1a-47dd-87e9-869925878ee6 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:07 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: b2cbc6e4-dfc9-4d32-9ce1-beabc3865dd1 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077046755 +OkHttp-Received-Millis: 1551077047216 + +2019-02-25 12:14:07.219 [main] INFO - ********* END *********: +2019-02-25 12:14:07.246 [main] INFO - ********* START ********* +2019-02-25 12:14:07.247 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:07.247 [main] INFO - Request Type: GET +2019-02-25 12:14:07.248 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA%3D%3D?organizationId=testrest, requestType=GET} +2019-02-25 12:14:07.248 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:07.248 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:07.248 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:07.249 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Jw0CTDQxQMaCXdkue9K59rnxbZZSAZ1gfwyzz4+j6WM=" +2019-02-25 12:14:07.249 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:07.720 [main] INFO - Request Body: null +2019-02-25 12:14:07.721 [main] INFO - Response Message: testrest,TRRReport,TransactionRequestReport,1.10,2018-10-19T16:00:00Z to 2018-10-20T16:00:00Z +RequestID,RequestDate,MerchantReferenceNumber,MerchantID +5399662771246550003001,2018-10-19T16:24:37Z,TC50171_3,testrest +5399664781416551403001,2018-10-19T16:27:58Z,TC50171_3,testrest +5399666196306552903001,2018-10-19T16:30:19Z,TC50171_3,testrest +5399666357576981903005,2018-10-19T16:30:35Z,TC50171_3,testrest +5399680347956058103004,2018-10-19T16:53:54Z,TC50171_3,testrest +5399680431216058303004,2018-10-19T16:54:03Z,TC50171_3,testrest +5399684302416000903005,2018-10-19T17:00:30Z,TC50171_3,testrest +5399684505506723403002,2018-10-19T17:00:50Z,TC50171_3,testrest +5399684781686729303003,2018-10-19T17:01:18Z,TC50171_3,testrest +5399742716346290903004,2018-10-19T18:37:51Z,TC50171_3,testrest +5399742808726291703004,2018-10-19T18:38:00Z,TC50171_3,testrest +5399743679866242703005,2018-10-19T18:39:28Z,TC50171_3,testrest +5399751921786020803003,2018-10-19T18:53:12Z,TC50171_3,testrest +5399761919726317303005,2018-10-19T19:09:52Z,TC50171_3,testrest +5399787878246907603001,2018-10-19T19:53:07Z,TC50171_3,testrest +5399793339576405603004,2018-10-19T20:02:14Z,405195660::1,testrest +5399807626196378603005,2018-10-19T20:26:02Z,405195660::1,testrest +5399810449296963303001,2018-10-19T20:30:45Z,33557799,testrest +5399829987226032203001,2018-10-19T21:03:18Z,1234567890,testrest +5399844740286070303001,2018-10-19T21:27:54Z,TC50171_3,testrest +5399845077266611803006,2018-10-19T21:28:27Z,TC50171_3,testrest +5399845139246229503002,2018-10-19T21:28:34Z,TC50171_3,testrest +5399889652786155003001,2018-10-19T22:42:45Z,TC50171_3,testrest +5399900584196720203006,2018-10-19T23:00:58Z,1234567890,testrest + +2019-02-25 12:14:07.721 [main] INFO - Response Code: 200 +2019-02-25 12:14:07.721 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_f0f3a7c6-bc82-4807-b2cb-5975e9374e20 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 25 Feb 2019 06:44:07 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Mon, 25 Feb 2019 06:44:07 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 9a5942ae-f950-45d5-9fea-ffe0e7f4c97a +OkHttp-Sent-Millis: 1551077047250 +OkHttp-Received-Millis: 1551077047719 + +2019-02-25 12:14:07.722 [main] INFO - ********* END *********: +2019-02-25 12:14:07.761 [main] INFO - ********* START ********* +2019-02-25 12:14:07.762 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:07.762 [main] INFO - Request Type: GET +2019-02-25 12:14:07.762 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0?organizationId=testrest, requestType=GET} +2019-02-25 12:14:07.762 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:07.763 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:07.763 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:07.763 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="Mj8s8VBGqYMK/VvudIoO+fXWDiiDorxvtI1FCda1DNA=" +2019-02-25 12:14:07.763 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:08.247 [main] INFO - Request Body: null +2019-02-25 12:14:08.248 [main] INFO - Response Message: + + Field validation errors + cybsapi.validation.errors + VALIDATION_ERROR + + cybsapi.file.id.invalid + fileId + Invalid File ID + + + +2019-02-25 12:14:08.248 [main] INFO - Response Code: 400 +2019-02-25 12:14:08.248 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_93a7602b-35fa-4a25-bd2f-7081b2449d88 +Cache-Control: no-cache, no-transform +ETag: "-807714005-gzip" +Expires: Mon, 25 Feb 2019 06:44:08 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Mon, 25 Feb 2019 06:44:08 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: cbd6001a-1b0a-4f1b-b0f8-1fcb90ee3079 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077047764 +OkHttp-Received-Millis: 1551077048245 + +2019-02-25 12:14:08.248 [main] INFO - ********* END *********: +2019-02-25 12:14:08.271 [main] INFO - ********* START ********* +2019-02-25 12:14:08.272 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:08.272 [main] INFO - Request Type: GET +2019-02-25 12:14:08.272 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/Texture, requestType=GET} +2019-02-25 12:14:08.272 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:08.273 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:08.273 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:08.273 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="nhvyebD8wFcwOX4Nx5xvHy1v5GZXEMo1TsK2czSVWLA=" +2019-02-25 12:14:08.273 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:08.717 [main] INFO - Request Body: null +2019-02-25 12:14:08.717 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0230","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"} +2019-02-25 12:14:08.717 [main] INFO - Response Code: 200 +2019-02-25 12:14:08.718 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_f7ff9050-9abe-48e4-ad7f-cd04ce1f0b09 +X-OPNET-Transaction-Trace: a2_6bc2eec6-0c9d-46e4-b17b-4b3f98f7d998 +Cache-Control: no-cache, no-transform +ETag: "-1844867216-gzip" +Expires: Mon, 25 Feb 2019 06:44:08 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:07 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d910de74-1e4a-4059-a28a-7fc2261c35f0 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077048277 +OkHttp-Received-Millis: 1551077048715 + +2019-02-25 12:14:08.718 [main] INFO - ********* END *********: +2019-02-25 12:14:08.756 [main] INFO - ********* START ********* +2019-02-25 12:14:08.756 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:08.757 [main] INFO - Request Type: GET +2019-02-25 12:14:08.757 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/bplkmdgsd, requestType=GET} +2019-02-25 12:14:08.757 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:08.757 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:08.758 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:08.758 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="a/bXR3J9bPbCoER52ZKt1XGzTbcFxA/XEdsR6MC9F7E=" +2019-02-25 12:14:08.758 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:09.174 [main] INFO - Request Body: null +2019-02-25 12:14:09.175 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/bplkmdgsd"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"Requested subscription does not exist."} +2019-02-25 12:14:09.176 [main] INFO - Response Code: 404 +2019-02-25 12:14:09.176 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_f58e5f3b-0da8-454b-befa-371885eb77b8 +X-OPNET-Transaction-Trace: a2_440270c9-2f22-4dcc-9392-5b3398e96388 +Cache-Control: no-cache, no-transform +ETag: "1764052161-gzip" +Expires: Mon, 25 Feb 2019 06:44:09 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:09 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6714cc9d-7aab-4f16-bb42-7a296000a709 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077048759 +OkHttp-Received-Millis: 1551077049172 + +2019-02-25 12:14:09.176 [main] INFO - ********* END *********: +2019-02-25 12:14:09.202 [main] INFO - ********* START ********* +2019-02-25 12:14:09.203 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:09.203 [main] INFO - Request Type: GET +2019-02-25 12:14:09.204 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=testrest, requestType=GET} +2019-02-25 12:14:09.204 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:09.204 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:09.204 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:09.204 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="xhl+1/wfWnb4wG+ZM0NAiGijMvtlptEbNNjsp8ur7Iw=" +2019-02-25 12:14:09.205 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:09.638 [main] INFO - Request Body: null +2019-02-25 12:14:09.638 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions?organizationId=testrest"}},"reportDefinitions":[{"type":"Detail","reportDefinitionId":202,"reportDefintionName":"PortfolioExceptionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Portfolio Exception Detail Report"},{"type":"Summary","reportDefinitionId":308,"reportDefintionName":"PaymentTypeByCurrencyClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":231,"reportDefintionName":"AcquirerExceptionDetailClass","supportedFormats":["text/csv"],"description":"Acquirer Exception Detail Report"},{"type":"Summary","reportDefinitionId":306,"reportDefintionName":"TransactionsByProductClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":230,"reportDefintionName":"AcquirerDetailClass","supportedFormats":["text/csv"],"description":"Acquirer Detail Report"},{"type":"Summary","reportDefinitionId":304,"reportDefintionName":"SalesRefundsClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":218,"reportDefintionName":"DepositDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Merchant Bank Deposit Details"},{"type":"Detail","reportDefinitionId":210,"reportDefintionName":"TransactionRequestClass","supportedFormats":["application/xml","text/csv"],"description":"Recon Transaction Request Report"},{"type":"Detail","reportDefinitionId":200,"reportDefintionName":"PortfolioTransactionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Portfolio Transaction Request Report"},{"type":"Summary","reportDefinitionId":342,"reportDefintionName":"FundingByProductClass","supportedFormats":["application/xml","application/json","text/csv"],"description":"Recon Funding By Product - JSON"},{"type":"Detail","reportDefinitionId":216,"reportDefintionName":"AgingDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All Settled transactions that have not been funded"},{"type":"Detail","reportDefinitionId":400,"reportDefintionName":"DecisionManagerEventDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Decision Manager Event Detail Report"},{"type":"Detail","reportDefinitionId":620,"reportDefintionName":"SubscriptionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Subscription Detail Report"},{"type":"Summary","reportDefinitionId":302,"reportDefintionName":"TransactionAggregateClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Summary","reportDefinitionId":410,"reportDefintionName":"FeeSummaryClass","supportedFormats":["text/csv"],"description":"Fee Summary CSV Report"},{"type":"Detail","reportDefinitionId":212,"reportDefintionName":"ExceptionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Recon Exception Detail Report"},{"type":"Detail","reportDefinitionId":233,"reportDefintionName":"AcquirerReconciliationSummaryClass","supportedFormats":["text/csv"],"description":"Acquirer Reconciliation Summary Report"},{"type":"Summary","reportDefinitionId":300,"reportDefintionName":"TransactionsByCurrencyClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":232,"reportDefintionName":"AcquirerChargebackDetailClass","supportedFormats":["text/csv"],"description":"Acquirer Chargeback Detail Report"},{"type":"Detail","reportDefinitionId":215,"reportDefintionName":"FundingDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All transactions that were funded in the given interval"},{"type":"Summary","reportDefinitionId":305,"reportDefintionName":"PaymentTypeSummaryClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":310,"reportDefintionName":"GatewayTransactionRequestClass","supportedFormats":["application/xml","text/csv"],"description":"All Gateway transactions by the processor"},{"type":"Summary","reportDefinitionId":341,"reportDefintionName":"FundingByCurrencyClass","supportedFormats":["application/xml","application/json","text/csv"],"description":"Recon Funding Volume - JSON"},{"type":"Detail","reportDefinitionId":220,"reportDefintionName":"InvoiceSummaryClass","supportedFormats":["application/xml","text/csv"],"description":"Merchant Invoice Details"},{"type":"Detail","reportDefinitionId":213,"reportDefintionName":"ProcessorSettlementDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Processor Settlement and Refund Detail Report"},{"type":"Summary","reportDefinitionId":343,"reportDefintionName":"FundingByPaymentTypeClass","supportedFormats":["application/xml","application/json","text/csv"],"description":"Recon Funding By Payment Type - JSON"},{"type":"Detail","reportDefinitionId":222,"reportDefintionName":"ConversionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Conversion Detail CSV Report"},{"type":"Summary","reportDefinitionId":307,"reportDefintionName":"ProductByCurrencyClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":520,"reportDefintionName":"POSTerminalExceptionClass","supportedFormats":["application/xml","text/csv"],"description":"POS Terminal Exception Report"},{"type":"Detail","reportDefinitionId":211,"reportDefintionName":"PaymentBatchDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Recon Batch Detail Report"},{"type":"Detail","reportDefinitionId":203,"reportDefintionName":"GatewayTransactionDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All Gateway transactions by the processor"},{"type":"Detail","reportDefinitionId":270,"reportDefintionName":"JPTransactionDetailClass","supportedFormats":["text/csv"],"description":"Transaction detail report for CSKK merchants"},{"type":"Summary","reportDefinitionId":303,"reportDefintionName":"AuthorizationAnalysisClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Summary","reportDefinitionId":301,"reportDefintionName":"TransactionVolumeClass","supportedFormats":["application/xml","application/json","text/csv"],"description":null},{"type":"Detail","reportDefinitionId":217,"reportDefintionName":"ChargebackAndRetrievalDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All Chargebacks, Representments and Retrievals"},{"type":"Detail","reportDefinitionId":219,"reportDefintionName":"FeeDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All fee details"},{"type":"Detail","reportDefinitionId":201,"reportDefintionName":"PortfolioBatchDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Portfolio Batch Detail Report"},{"type":"Detail","reportDefinitionId":401,"reportDefintionName":"DecisionManagerDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Decision Manager Details CSV Report"},{"type":"Detail","reportDefinitionId":221,"reportDefintionName":"PayerAuthDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Payer Auth Details XML Report"},{"type":"Detail","reportDefinitionId":271,"reportDefintionName":"ServiceFeeDetailClass","supportedFormats":["application/xml","text/csv"],"description":"Service Fee report"},{"type":"Summary","reportDefinitionId":340,"reportDefintionName":"FundingVolumeClass","supportedFormats":["application/xml","application/json","text/csv"],"description":"Recon Funding Volume - CSV"},{"type":"Detail","reportDefinitionId":214,"reportDefintionName":"ProcessorEventsDetailClass","supportedFormats":["application/xml","text/csv"],"description":"All processor events regarding the transaction life cycle"}]} +2019-02-25 12:14:09.638 [main] INFO - Response Code: 200 +2019-02-25 12:14:09.638 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_3b15b77d-ed3f-48ab-b57b-9a3b34a280bf +X-OPNET-Transaction-Trace: a2_f98ac587-0b5d-42ea-b1d4-031295dcf136 +Cache-Control: no-cache, no-transform +ETag: "1846674451-gzip" +Expires: Mon, 25 Feb 2019 06:44:09 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:09 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 2c8ead27-a6a0-462f-ae1a-91f6750602c6 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077049208 +OkHttp-Received-Millis: 1551077049636 + +2019-02-25 12:14:09.639 [main] INFO - ********* END *********: +2019-02-25 12:14:09.664 [main] INFO - ********* START ********* +2019-02-25 12:14:09.664 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:09.665 [main] INFO - Request Type: GET +2019-02-25 12:14:09.665 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions?organizationId=bplkmdghd, requestType=GET} +2019-02-25 12:14:09.665 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:09.665 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:09.666 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:09.666 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="ze44z6IqfApId8QKXc+Ik1iJOa5QFDqO2Ezxsnp12IQ=" +2019-02-25 12:14:09.666 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:10.082 [main] INFO - Request Body: null +2019-02-25 12:14:10.082 [main] INFO - Response Message: Invalid Merchant +2019-02-25 12:14:10.083 [main] INFO - Response Code: 400 +2019-02-25 12:14:10.083 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d46dc71f-a8fb-4fa2-a0a0-acb9a80f8da6 +X-OPNET-Transaction-Trace: a2_b0a58927-2fc8-460f-bc05-d2841f4d9906 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:09 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 5babf7c4-aabc-49c7-8f22-efc77e3e74d3 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077049666 +OkHttp-Received-Millis: 1551077050081 + +2019-02-25 12:14:10.083 [main] INFO - ********* END *********: +2019-02-25 12:14:10.103 [main] INFO - ********* START ********* +2019-02-25 12:14:10.103 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:10.103 [main] INFO - Request Type: GET +2019-02-25 12:14:10.104 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/AcquirerExceptionDetailClass, requestType=GET} +2019-02-25 12:14:10.104 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:10.104 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:10.104 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:10.105 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="U4JM+f5NpFBXxC0AQXj+bBdftKHzLxxrP6nwee9Rri0=" +2019-02-25 12:14:10.105 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:10.514 [main] INFO - Request Body: null +2019-02-25 12:14:10.515 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/AcquirerExceptionDetailClass"}},"attributes":[{"id":"3200","name":"AdditionalInformation.CardAcceptorID","description":"Card Acceptor ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3201","name":"AdditionalInformation.CardAcceptorName","description":"Card Acceptor Name","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3202","name":"AdditionalInformation.CardAcceptorTerminalID","description":"Card Acceptor Terminal ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3203","name":"AdditionalInformation.ForwardingInstitutionID","description":"Forwarding Institution ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3204","name":"AdditionalInformation.IssuerAffiliateBIN","description":"Issuer Affiliate BIN","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3205","name":"AdditionalInformation.MerchantType","description":"Merchant Type","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3206","name":"AdditionalInformation.RecurringPaymentIndicatorFlag","description":"Recurring Payment Indicator flag","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3223","name":"TransactionDetails.SourceMerchantID","description":"Source Merchant ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3225","name":"Fee.ReimbursementFee","description":"Reimbursement Fee","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3226","name":"Fee.ReimbursementFeeDebitCreditIndicator","description":"Reimbursement Fee Debit Credit Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3227","name":"Fee.SettlementServiceIndicator","description":"Settlement Service Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3228","name":"Fee.TransactionIntegrityFee","description":"Transaction Integrity Fee","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3229","name":"Fee.TransactionIntegrityFeeDebitCreditIndicator","description":"Transaction Integrity Fee Debit Credit Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3230","name":"Settlement.CardholderBillingAmount","description":"Cardholder Billing Amount","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3231","name":"Settlement.CardholderBillingCurrencyCode","description":"Cardholder Billing Currency Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3232","name":"Settlement.RateTableDate","description":"Rate Table Date","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3234","name":"Settlement.OctSettlementAmount","description":"Settlement Amount","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3235","name":"Settlement.OctSettlementCurrencyCode","description":"Settlement Currency Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3237","name":"TransactionDetails.AcquirerBusinessID","description":"Acquirer Business ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3238","name":"TransactionDetails.AcquiringInstitutionID","description":"Acquiring Institution ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3239","name":"TransactionDetails.AffiliateBIN","description":"Affiliate BIN","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3240","name":"TransactionDetails.AuthorizationIDRespCode","description":"Authorization ID Resp. Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3241","name":"TransactionDetails.BatchNumber","description":"Batch Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3242","name":"TransactionDetails.BusinessApplicationIdentifier","description":"Business Application Identifier","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3243","name":"TransactionDetails.CardNumber","description":"Card Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3244","name":"TransactionDetails.CurrencyCodeForTransactionAmount","description":"Currency Code For Transaction Amount","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3245","name":"TransactionDetails.DataRecipient","description":"Data Recipient","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3246","name":"TransactionDetails.DCCIndicator","description":"DCC Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3247","name":"TransactionDetails.DestinationStationID","description":"Destination Station ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3248","name":"TransactionDetails.DowngradeReasonCode","description":"Downgrade Reason Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3249","name":"TransactionDetails.FundsTransferSRE","description":"Funds Transfer SRE","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3250","name":"TransactionDetails.IssuerAcquirerIndicator","description":"Issuer Acquirer Indicator","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3251","name":"TransactionDetails.MessageReasonCode","description":"Message Reason Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3252","name":"TransactionDetails.MVVCode","description":"MVV Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3253","name":"TransactionDetails.NetworkID","description":"Network ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3254","name":"TransactionDetails.OnlineSettlementDate","description":"Online Settlement Date","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3255","name":"TransactionDetails.ProcessingCode","description":"Processing Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3256","name":"TransactionDetails.ProcessorID","description":"Processor ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3257","name":"TransactionDetails.ProductID","description":"Product ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3258","name":"TransactionDetails.ProductSubtype","description":"Product Subtype","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3259","name":"TransactionDetails.RequestMessageType","description":"Request Message Type","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3260","name":"TransactionDetails.ResponseCode","description":"Response Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3261","name":"TransactionDetails.RetrievalReferenceNumber","description":"Retrieval Reference Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3262","name":"TransactionDetails.SettlementDate","description":"Settlement Date","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3263","name":"TransactionDetails.SourceOfFunds","description":"Source of Funds","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3264","name":"TransactionDetails.SourceStationID","description":"Source Station ID","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3265","name":"TransactionDetails.SRE","description":"SRE","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3266","name":"TransactionDetails.STIPReasonCode","description":"STIP Reason Code","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3267","name":"TransactionDetails.TraceNumber","description":"Trace Number","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3268","name":"TransactionDetails.TransactionAmount","description":"Transaction Amount","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3269","name":"TransactionDetails.TransactionIdentifier","description":"Transaction Identifier","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3270","name":"TransactionDetails.VssProcessingDate","description":"VSS PROCESSING DATE","filterType":null,"supportedType":null,"required":false,"default":false},{"id":"3278","name":"TransactionDetails.RequestId","description":"Request ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3279","name":"TransactionDetails.MerchantId","description":"Merchant ID","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3280","name":"TransactionDetails.PaymentMethodType","description":"Payment Method Type","filterType":null,"supportedType":null,"required":true,"default":true},{"id":"3281","name":"TransactionDetails.PaymentMethodDesc","description":"Payment Method Description","filterType":null,"supportedType":null,"required":true,"default":true}],"description":"Acquirer Exception Detail Report","reportDefinitionId":231,"reportDefintionName":"AcquirerExceptionDetailClass","supportedFormats":["text/csv"],"type":"Detail"} +2019-02-25 12:14:10.515 [main] INFO - Response Code: 200 +2019-02-25 12:14:10.516 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_d8cb73e9-fd8a-4ee8-8d94-f6cdd202f042 +X-OPNET-Transaction-Trace: a2_f1f5114d-4f52-4581-a708-6edc0fd69b0a +Cache-Control: no-cache, no-transform +ETag: "991045918-gzip" +Expires: Mon, 25 Feb 2019 06:44:10 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:10 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e0f75920-efa8-4fdc-929d-edc1c800a46f +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077050109 +OkHttp-Received-Millis: 1551077050512 + +2019-02-25 12:14:10.516 [main] INFO - ********* END *********: +2019-02-25 12:14:10.538 [main] INFO - ********* START ********* +2019-02-25 12:14:10.538 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:10.539 [main] INFO - Request Type: GET +2019-02-25 12:14:10.539 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-definitions/SubscDetail, requestType=GET} +2019-02-25 12:14:10.539 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:10.539 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:10.540 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:10.540 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="DueAmNhC5oEz68UGdXGBTuSF2N8LZC+Lm6xkKdJmq4I=" +2019-02-25 12:14:10.540 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:10.953 [main] INFO - Request Body: null +2019-02-25 12:14:10.953 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-definitions/SubscDetail"}}} +2019-02-25 12:14:10.954 [main] INFO - Response Code: 404 +2019-02-25 12:14:10.954 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_a9e29f1f-15be-4848-a63d-7b9e5b45ec75 +X-OPNET-Transaction-Trace: a2_60373b86-1b9d-4145-93f5-54381568f283 +Cache-Control: no-cache, no-transform +ETag: "204857944-gzip" +Expires: Mon, 25 Feb 2019 06:44:10 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:10 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: e0d9075e-7582-40ef-8fdb-38a4893a6c35 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077050540 +OkHttp-Received-Millis: 1551077050951 + +2019-02-25 12:14:10.954 [main] INFO - ********* END *********: +2019-02-25 12:14:10.981 [main] INFO - ********* START ********* +2019-02-25 12:14:10.982 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:10.982 [main] INFO - Request Type: GET +2019-02-25 12:14:10.982 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest, requestType=GET} +2019-02-25 12:14:10.983 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:10.983 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:10.983 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:10.983 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="/ddqlYKE14Lm5cS/xiqJTvvLjAwUiF//kolh7m8e/TI=" +2019-02-25 12:14:10.983 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:11.430 [main] INFO - Request Body: null +2019-02-25 12:14:11.431 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=testrest"}},"groupId":null,"notificationType":null,"organizationId":"testrest","reportAccessType":null,"reportDefinitionId":"210","reportEndTime":"2018-09-02T07:00:00.000Z","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{"173":[]},"reportFrequency":"ADHOC","reportId":"79642c43-2368-0cd5-e053-a2588e0a7b3c","reportMimeType":"application/xml","reportName":"testrest_v2","reportPreferences":{"signedAmounts":true,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":"SOAPI"},"reportStartTime":"2018-09-01T07:00:00.000Z","reportStatus":"COMPLETED","requestedBy":null,"selectedOrganizationId":null,"subscriptionType":"CUSTOM","timezone":"GMT"} +2019-02-25 12:14:11.431 [main] INFO - Response Code: 200 +2019-02-25 12:14:11.431 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_516fe1c9-8acb-43ab-afa3-afcf441d61a4 +X-OPNET-Transaction-Trace: a2_92d9083c-1b96-48f1-968c-188843c437f9 +Cache-Control: no-cache, no-transform +ETag: "609183382-gzip" +Expires: Mon, 25 Feb 2019 06:44:11 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:10 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: a23af162-246b-41c0-bf3f-08a4b9c152e4 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077050988 +OkHttp-Received-Millis: 1551077051429 + +2019-02-25 12:14:11.431 [main] INFO - ********* END *********: +2019-02-25 12:14:11.458 [main] INFO - ********* START ********* +2019-02-25 12:14:11.458 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:11.458 [main] INFO - Request Type: GET +2019-02-25 12:14:11.458 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest, requestType=GET} +2019-02-25 12:14:11.458 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:11.458 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:11.459 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:11.459 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="BIewr/GuLipcZ1SUzXWWQZ/43xMZu7nk1sFl6zx4dAg=" +2019-02-25 12:14:11.459 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:11.895 [main] INFO - Request Body: null +2019-02-25 12:14:11.896 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a?organizationId=testrest"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"No reports found for given reportId. ReportId :: '79642c43-2368-0cd5-e053-a2588e0a'"} +2019-02-25 12:14:11.896 [main] INFO - Response Code: 404 +2019-02-25 12:14:11.896 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_abfb3e0a-9ac2-424c-815d-2c489308ac0e +X-OPNET-Transaction-Trace: a2_42ee1e6d-4f94-4362-854f-8d478a810d9c +Cache-Control: no-cache, no-transform +ETag: "-830509477-gzip" +Expires: Mon, 25 Feb 2019 06:44:11 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:11 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 83f9f41c-d722-4670-a333-6f8c83aada50 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077051460 +OkHttp-Received-Millis: 1551077051894 + +2019-02-25 12:14:11.896 [main] INFO - ********* END *********: +2019-02-25 12:14:11.914 [main] INFO - ********* START ********* +2019-02-25 12:14:11.914 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:11.914 [main] INFO - Request Type: GET +2019-02-25 12:14:11.915 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports/79642c43-2368-0cd5-e053-a2588e0a7b3c?organizationId=bkalama, requestType=GET} +2019-02-25 12:14:11.915 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:11.915 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:11.915 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:11.916 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="2ZPadaUbAWq6S4IghDlOuLCccVFjTENwx94ZsS88L8o=" +2019-02-25 12:14:11.916 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:12.331 [main] INFO - Request Body: null +2019-02-25 12:14:12.332 [main] INFO - Response Message: Invalid Merchant +2019-02-25 12:14:12.332 [main] INFO - Response Code: 400 +2019-02-25 12:14:12.332 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_5ec578ca-8f5b-41b4-bf96-6700abaa7e82 +X-OPNET-Transaction-Trace: a2_c02f2dd5-451e-44e2-8b0c-648a08fc721c +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:11 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: bf1a2ff1-bafd-4b55-bc12-160d8937eae6 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077051916 +OkHttp-Received-Millis: 1551077052330 + +2019-02-25 12:14:12.332 [main] INFO - ********* END *********: +2019-02-25 12:14:12.352 [main] INFO - ********* START ********* +2019-02-25 12:14:12.352 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:12.352 [main] INFO - Request Type: GET +2019-02-25 12:14:12.352 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=GET} +2019-02-25 12:14:12.353 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:12.353 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:12.353 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:12.353 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="6VgWpitnd9uawYZozcCECJjVpPd02MIf2ly1i5BscZ4=" +2019-02-25 12:14:12.354 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:13.008 [main] INFO - Request Body: null +2019-02-25 12:14:13.008 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"_embedded":{"Subscriptions":[{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/1111muy"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"1111muy","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0600","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/78999sd6"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"78999sd6","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"1300","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Alex"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Alex","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0950","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Antena"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"text/csv","reportName":"Antena","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0950","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/CYBS_REP_test_2556"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"CYBS_REP_test_2556","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":4,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Ceaser"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"Ceaser","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Cybersource-rest-py1"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"Cybersource-rest-py1","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Jackson"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"Monthly","reportMimeType":"text/csv","reportName":"Jackson","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/ProcessorEventsDetailReport"}},"groupId":null,"organizationId":null,"reportDefinitionId":"214","reportDefinitionName":"ProcessorEventsDetailClass","reportFields":["PaymentMethod.BoletoNumber","Request.RequestID","PaymentData.TransactionRefNumber","Request.TransactionDate","Request.MerchantReferenceNumber","Request.MerchantID","Event.ProcessorMessage","Event.EventDate","Event.Event","Event.Amount","Event.CurrencyCode","PaymentData.ProcessorTID","Request.LocalizedRequestDate"],"reportFilters":{},"reportFrequency":"daily","reportMimeType":"text/csv","reportName":"ProcessorEventsDetailReport","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0000","subscriptionStatus":"ACTIVE","subscriptionType":"STANDARD","timezone":"America/Los_Angeles"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/QA_test_reporting_org"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"QA_test_reporting_org","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0406","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/R"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"R","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0940","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Subsc2_cybs_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"Subsc2_cybs_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0200","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Subscrip_cybs_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"Subscrip_cybs_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0100","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Subsp87_cybs_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"Subsp87_cybs_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0300","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/TRR_138"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"TRR_138","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/TRR_1383"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"TRR_1383","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/TRR_677"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"TRR_677","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0230","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_a"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture_a","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0910","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_e"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_e","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":6,"startTime":"0930","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_f"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture_f","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":7,"startTime":"0940","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_j"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Texture_j","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":11,"startTime":"0957","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_k"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_k","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":12,"startTime":"0958","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_s"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_s","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0920","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_t"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_t","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":4,"startTime":"0915","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Texture_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Texture_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0930","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Textuvij"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"text/csv","reportName":"Textuvij","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0920","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Tider"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"text/csv","reportName":"Tider","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/TransactionRequestReport"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["PaymentData.AuthorizationCode","PaymentData.CurrencyCode","BillTo.FirstName","BillTo.LastName","BillTo.MiddleName","BillTo.Address1","BillTo.Address2","BillTo.City","BillTo.State","BillTo.Zip","BillTo.Email","BillTo.Phone","PaymentMethod.CardType","PaymentMethod.ExpirationMonth","PaymentMethod.ExpirationYear","PaymentMethod.AccountSuffix","Application.Rcode","Application.Rflag","Application.Rmsg","PaymentData.Amount","Request.RequestID","PaymentData.TransactionRefNumber","Request.TransactionDate","Request.MerchantReferenceNumber","Application.Name","Request.MerchantID","Request.LocalizedRequestDate"],"reportFilters":{},"reportFrequency":"daily","reportMimeType":"text/csv","reportName":"TransactionRequestReport","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0000","subscriptionStatus":"INACTIVE","subscriptionType":"STANDARD","timezone":"America/Los_Angeles"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Vendor"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"Vendor","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/Zodaic"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"Zodaic","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":5,"startTime":"0330","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/bxgsfdt66"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"bxgsfdt66","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1700","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/chena"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"chena","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/createsubscription_report"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"createsubscription_report","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0406","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/dfdf"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"dfdf","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1200","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/dgusgdfyfydugfnnfhgg"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"dgusgdfyfydugfnnfhgg","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/dhsjhsdfuihduifyifuy"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"dhsjhsdfuihduifyifuy","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1100","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/gggg"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"gggg","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1500","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/subs_cybs_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"subs_cybs_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0700","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testReport_test"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"testReport_test","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0959","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_myname"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"test_myname","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"2000","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v3"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"test_v3","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v456777"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"test_v456777","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0800","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v4567778"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"test_v4567778","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0800","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v5001"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"test_v5001","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v571"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"test_v571","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0920","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v5801"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"test_v5801","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0920","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/test_v600"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"test_v600","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":4,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_V7683"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"testrest_V7683","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0951","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_V76833"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"testrest_V76833","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0957","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"America/Chicago"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcript"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"MONTHLY","reportMimeType":"application/xml","reportName":"testrest_subcript","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1100","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_karthikeyan"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_karthikeyan","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v12"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_v12","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":2,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v13"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_v13","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"1700","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v155"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_v155","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":6,"startTime":"0930","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v17854"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_subcription_v17854","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":1,"startTime":"0600","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v2989"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"testrest_subcription_v2989","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"1900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v4"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"text/csv","reportName":"testrest_subcription_v4","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_subcription_v7"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"testrest_subcription_v7","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"0115","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v278"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrest_v278","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":5,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrestsa_subcription_v1"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testrestsa_subcription_v1","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0902","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testv2_subscriprion"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"WEEKLY","reportMimeType":"application/xml","reportName":"testv2_subscriprion","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":3,"startTime":"0900","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/ttttt"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"ttttt","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"1000","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"},{"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/uit"}},"groupId":null,"organizationId":null,"reportDefinitionId":"210","reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportFilters":{},"reportFrequency":"DAILY","reportMimeType":"application/xml","reportName":"uit","reportPreferences":{"signedAmounts":false,"supportEmailAddresses":null,"additionalEmailAddresses":null,"fieldNameConvention":null},"startDay":0,"startTime":"1500","subscriptionStatus":"ACTIVE","subscriptionType":"CUSTOM","timezone":"GMT"}]}} +2019-02-25 12:14:13.010 [main] INFO - Response Code: 200 +2019-02-25 12:14:13.011 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_50dd62b1-3b52-449e-b56e-4faef6896f09 +X-OPNET-Transaction-Trace: a2_6a7760ae-bd86-49e3-be00-4f425e77d5cc +Cache-Control: no-cache, no-transform +ETag: "-1595738260-gzip" +Expires: Mon, 25 Feb 2019 06:44:12 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 73137e2f-d900-44ee-bc88-b849aba15ca3 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077052356 +OkHttp-Received-Millis: 1551077053005 + +2019-02-25 12:14:13.011 [main] INFO - ********* END *********: +2019-02-25 12:14:13.038 [main] INFO - ********* START ********* +2019-02-25 12:14:13.039 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:13.039 [main] INFO - Request Type: POST +2019-02-25 12:14:13.039 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-25 12:14:13.039 [main] INFO - Digest: SHA-256=loFSrgLcFUKQZ5yG+wiEAwrYOdwvmVHAUHYgknwquSs= +2019-02-25 12:14:13.040 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:13.040 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:13.040 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:13.040 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="o+JyQI5r+bG4/mAQiQFUzZLdVfshz+jtBLJVHOMaq0E=" +2019-02-25 12:14:13.041 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:13.736 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_feb8","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-25 12:14:13.736 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"815d1fc7-5ca6-9241-e053-a2588e0a46c1","message":"Task already exists with same report name ","localizationKey":"cybsapi.task.name.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:14:13.736 [main] INFO - Response Code: 400 +2019-02-25 12:14:13.736 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_934da3c6-d65a-47f5-baf1-e7131793835a +X-OPNET-Transaction-Trace: a2_083a5553-d738-49e8-a6ff-7d190cdf0139 +Cache-Control: no-cache, no-transform +ETag: "1012578100-gzip" +Expires: Mon, 25 Feb 2019 06:44:13 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:12 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 3a385783-d2ab-412b-894d-422b63fe13fb +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077053042 +OkHttp-Received-Millis: 1551077053734 + +2019-02-25 12:14:13.737 [main] INFO - ********* END *********: +2019-02-25 12:14:13.757 [main] INFO - ********* START ********* +2019-02-25 12:14:13.758 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:13.758 [main] INFO - Request Type: POST +2019-02-25 12:14:13.758 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?orgId=testrest, requestType=POST} +2019-02-25 12:14:13.758 [main] INFO - Digest: SHA-256=WRIH+BI7wCOOoyM2il5xk/FPn4NdlvPoyhCGODb0BzU= +2019-02-25 12:14:13.759 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:13.759 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:13.759 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:13.759 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="XN3qFeK7hXkAgTvpp0Cu4Q1VLEH7hULqaepWKW9+3xQ=" +2019-02-25 12:14:13.760 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:14.183 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequ","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"application/xml","reportName":"testrest_v2","timezone":"GMT","reportStartTime":"2018-09-01T12:00:00.000+05:00","reportEndTime":"2018-09-02T12:00:00.000+05:00","reportPreferences":{"signedAmounts":true,"fieldNameConvention":"SOAPI"}} +2019-02-25 12:14:14.183 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?orgId=testrest"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"reportDefinitionName","message":"Invalid report definition specified","localizationKey":"cybsapi.report.reportDefinition.invalid"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:14:14.183 [main] INFO - Response Code: 400 +2019-02-25 12:14:14.183 [main] INFO - Response Headers: X-OPNET-Transaction-Trace: a2_ef8eedcf-1e72-4b79-ace3-e06062056b66 +X-OPNET-Transaction-Trace: a2_ccaa09d0-46a2-4af6-a735-afa8bc952569 +Cache-Control: no-cache, no-transform +ETag: "-393622008-gzip" +Expires: Mon, 25 Feb 2019 06:44:14 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:14 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4a8040dc-dd02-442e-a519-39e8181921d3 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077053761 +OkHttp-Received-Millis: 1551077054182 + +2019-02-25 12:14:14.184 [main] INFO - ********* END *********: +2019-02-25 12:14:14.209 [main] INFO - ********* START ********* +2019-02-25 12:14:14.209 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:14.209 [main] INFO - Request Type: PUT +2019-02-25 12:14:14.210 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-25 12:14:14.210 [main] INFO - Digest: SHA-256=3GVWPPOG00/7W5sr122EHVr03BhuMZC6jcQgIczD8FQ= +2019-02-25 12:14:14.210 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:14.210 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:14.210 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:14.211 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="830XNiVVJKYtiKA5i59slJm2AUJzMwv2PujRIqqCc0A=" +2019-02-25 12:14:14.211 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:14.912 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRequestClass","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"WEEKLY","reportName":"testReport_test","timezone":"America/Chicago","startTime":"0959","startDay":1} +2019-02-25 12:14:14.913 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"testReport_test","message":"Report already exists with same fields ","localizationKey":"cybsapi.report.fields.duplicate"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:14:14.913 [main] INFO - Response Code: 400 +2019-02-25 12:14:14.913 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_2c6f9c4a-dff4-4bc8-a7ee-02e90a205320 +X-OPNET-Transaction-Trace: a2_043869ba-ec03-4792-9173-ac0b575caa21 +Cache-Control: no-cache, no-transform +ETag: "-787171079-gzip" +Expires: Mon, 25 Feb 2019 06:44:14 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:14 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 699746f9-66c3-432f-babb-caac2c033cc8 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077054212 +OkHttp-Received-Millis: 1551077054910 + +2019-02-25 12:14:14.913 [main] INFO - ********* END *********: +2019-02-25 12:14:14.921 [main] INFO - ********* START ********* +2019-02-25 12:14:14.921 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:14.931 [main] INFO - Request Type: PUT +2019-02-25 12:14:14.932 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions, requestType=PUT} +2019-02-25 12:14:14.932 [main] INFO - Digest: SHA-256=hCJRiwHTt4C8/2AZ98pRY06mb+al8+7W4Y38zplArt0= +2019-02-25 12:14:14.932 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:14.932 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:14.932 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:14.932 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) digest v-c-merchant-id", signature="8ZPvSuYFKEJOWJUNJlPIaWazNmKfn4S88O1Qgd6qisw=" +2019-02-25 12:14:14.933 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:15.367 [main] INFO - Request Body: {"reportDefinitionName":"TransactionRes","reportFields":["Request.RequestID","Request.TransactionDate","Request.MerchantID"],"reportMimeType":"text/csv","reportFrequency":"DAILY","reportName":"subscriptionAutomation2","timezone":"America/Chicago","startTime":"0959","startDay":1} +2019-02-25 12:14:15.367 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"reportDefinitionName","message":"Invalid report definition specified","localizationKey":"cybsapi.report.reportDefinition.invalid"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:14:15.368 [main] INFO - Response Code: 400 +2019-02-25 12:14:15.368 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_eda0a565-ddab-4caa-b0e4-72a2c4b37367 +X-OPNET-Transaction-Trace: a2_7c48dae2-c4e3-4bf8-8b04-852c83c4e795 +Cache-Control: no-cache, no-transform +ETag: "-476933855-gzip" +Expires: Mon, 25 Feb 2019 06:44:15 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:15 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: d1d1ee76-66ad-4371-adca-54210131afd0 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077054935 +OkHttp-Received-Millis: 1551077055365 + +2019-02-25 12:14:15.368 [main] INFO - ********* END *********: +2019-02-25 12:14:15.395 [main] INFO - ********* START ********* +2019-02-25 12:14:15.395 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:15.395 [main] INFO - Request Type: DELETE +2019-02-25 12:14:15.396 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/testrest_v604, requestType=DELETE} +2019-02-25 12:14:15.396 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:15.396 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:15.396 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:15.397 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="GeWj8LA2dNHI2UiLue5Vc2gWeCoQS0gU4JE3gw0u2KU=" +2019-02-25 12:14:15.397 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:15.816 [main] INFO - Request Body: null +2019-02-25 12:14:15.816 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/testrest_v604"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"Requested subscription does not exist."} +2019-02-25 12:14:15.816 [main] INFO - Response Code: 404 +2019-02-25 12:14:15.816 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_9752bb74-cf1a-4ebe-ae1a-a68993a96f8d +X-OPNET-Transaction-Trace: a2_46619405-583d-4c19-8ec8-995f7a6bd475 +Cache-Control: no-cache, no-transform +ETag: "1483526712-gzip" +Expires: Mon, 25 Feb 2019 06:44:15 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:15 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 39df421e-cca6-43f7-ae1a-b358231f0b55 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077055398 +OkHttp-Received-Millis: 1551077055815 + +2019-02-25 12:14:15.816 [main] INFO - ********* END *********: +2019-02-25 12:14:15.835 [main] INFO - ********* START ********* +2019-02-25 12:14:15.835 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:15.835 [main] INFO - Request Type: DELETE +2019-02-25 12:14:15.836 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/report-subscriptions/ghsrrawasbhfhcb, requestType=DELETE} +2019-02-25 12:14:15.836 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:15.836 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:15.836 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:15.836 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="rqDWZzQIkRVsaanP5rsKm1lq85hUK4T//kaAx+AyXsw=" +2019-02-25 12:14:15.837 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:16.244 [main] INFO - Request Body: null +2019-02-25 12:14:16.245 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/report-subscriptions/ghsrrawasbhfhcb"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"Requested subscription does not exist."} +2019-02-25 12:14:16.245 [main] INFO - Response Code: 404 +2019-02-25 12:14:16.245 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_6292e7f8-bcef-4ba6-9096-5fdfda2bbb76 +X-OPNET-Transaction-Trace: a2_998fdb0f-2f65-4bd4-8613-5118717de256 +Cache-Control: no-cache, no-transform +ETag: "860016692-gzip" +Expires: Mon, 25 Feb 2019 06:44:16 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:16 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 4200d732-f5c7-498e-9dd7-6a8fcc8b8118 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077055838 +OkHttp-Received-Millis: 1551077056243 + +2019-02-25 12:14:16.245 [main] INFO - ********* END *********: +2019-02-25 12:14:16.265 [main] INFO - ********* START ********* +2019-02-25 12:14:16.266 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:16.266 [main] INFO - Request Type: GET +2019-02-25 12:14:16.266 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-25 12:14:16.266 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:16.266 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:16.267 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:16.267 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="1w3TKlTkuT+oVYrsFfk0/euxHDR6EsftusV3Zx4O06E=" +2019-02-25 12:14:16.267 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:16.965 [main] INFO - Request Body: null +2019-02-25 12:14:16.966 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime"}},"reportSearchResults":[{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-01T16:00:00.000Z","reportEndTime":"2018-08-02T16:00:00.000Z","timezone":"America/Chicago","reportId":"726ba2c2-5b4d-7cff-e053-a2588e0ad3fd","organizationId":"testrest","queuedTime":"2018-08-02T17:34:53.000Z","reportGenerationTime":"2018-08-02T17:34:56.000Z","reportCompletedTime":"2018-08-02T17:34:58.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-02T16:00:00.000Z","reportEndTime":"2018-08-03T16:00:00.000Z","timezone":"America/Chicago","reportId":"728b155d-dbe2-2db9-e053-a2588e0a1848","organizationId":"testrest","queuedTime":"2018-08-03T17:33:01.000Z","reportGenerationTime":"2018-08-03T17:33:04.000Z","reportCompletedTime":"2018-08-03T17:33:05.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-03T16:00:00.000Z","reportEndTime":"2018-08-04T16:00:00.000Z","timezone":"America/Chicago","reportId":"7293dd60-2ff4-2dc3-e053-a2588e0a5d2e","organizationId":"testrest","queuedTime":"2018-08-04T17:32:23.000Z","reportGenerationTime":"2018-08-04T17:32:27.000Z","reportCompletedTime":"2018-08-04T17:32:28.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-04T16:00:00.000Z","reportEndTime":"2018-08-05T16:00:00.000Z","timezone":"America/Chicago","reportId":"7293dd60-7cce-2dc3-e053-a2588e0a5d2e","organizationId":"testrest","queuedTime":"2018-08-05T17:30:34.000Z","reportGenerationTime":"2018-08-05T17:30:38.000Z","reportCompletedTime":"2018-08-05T17:30:40.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-05T16:00:00.000Z","reportEndTime":"2018-08-06T16:00:00.000Z","timezone":"America/Chicago","reportId":"7294af2d-dec6-2dad-e053-a2588e0a6e57","organizationId":"testrest","queuedTime":"2018-08-06T17:34:10.000Z","reportGenerationTime":"2018-08-06T17:34:13.000Z","reportCompletedTime":"2018-08-06T17:34:15.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-06T16:00:00.000Z","reportEndTime":"2018-08-07T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d4c960-e05d-2dbd-e053-a2588e0a4952","organizationId":"testrest","queuedTime":"2018-08-07T17:33:37.000Z","reportGenerationTime":"2018-08-07T17:33:40.000Z","reportCompletedTime":"2018-08-07T17:33:41.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-07T16:00:00.000Z","reportEndTime":"2018-08-08T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d4c960-e530-2dbd-e053-a2588e0a4952","organizationId":"testrest","queuedTime":"2018-08-08T17:32:44.000Z","reportGenerationTime":"2018-08-08T17:32:46.000Z","reportCompletedTime":"2018-08-08T17:32:48.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"TRRReport","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-07T16:00:00.000Z","reportEndTime":"2018-08-08T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d4c960-e531-2dbd-e053-a2588e0a4952","organizationId":"testrest","queuedTime":"2018-08-08T17:32:44.000Z","reportGenerationTime":"2018-08-08T17:32:46.000Z","reportCompletedTime":"2018-08-08T17:32:48.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-08T16:00:00.000Z","reportEndTime":"2018-08-09T16:00:00.000Z","timezone":"America/Chicago","reportId":"728b155d-df16-2db9-e053-a2588e0a1848","organizationId":"testrest","queuedTime":"2018-08-09T17:31:11.000Z","reportGenerationTime":"2018-08-09T17:31:13.000Z","reportCompletedTime":"2018-08-09T17:31:15.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"TRRReport","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-08T16:00:00.000Z","reportEndTime":"2018-08-09T16:00:00.000Z","timezone":"America/Chicago","reportId":"728b155d-df17-2db9-e053-a2588e0a1848","organizationId":"testrest","queuedTime":"2018-08-09T17:31:11.000Z","reportGenerationTime":"2018-08-09T17:31:13.000Z","reportCompletedTime":"2018-08-09T17:31:15.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"Demo_Report","reportMimeType":"application/xml","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-09T16:00:00.000Z","reportEndTime":"2018-08-10T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d09c70-2a69-2da5-e053-a2588e0a2ca5","organizationId":"testrest","queuedTime":"2018-08-10T17:34:01.000Z","reportGenerationTime":"2018-08-10T17:34:04.000Z","reportCompletedTime":"2018-08-10T17:34:05.000Z","selectedOrganizationId":null,"groupId":null},{"reportDefinitionId":"210","reportName":"TRRReport","reportMimeType":"text/csv","reportFrequency":"DAILY","status":"COMPLETED","reportStartTime":"2018-08-09T16:00:00.000Z","reportEndTime":"2018-08-10T16:00:00.000Z","timezone":"America/Chicago","reportId":"72d09c70-2a6a-2da5-e053-a2588e0a2ca5","organizationId":"testrest","queuedTime":"2018-08-10T17:34:01.000Z","reportGenerationTime":"2018-08-10T17:34:04.000Z","reportCompletedTime":"2018-08-10T17:34:06.000Z","selectedOrganizationId":null,"groupId":null}]} +2019-02-25 12:14:16.966 [main] INFO - Response Code: 200 +2019-02-25 12:14:16.966 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_28b970c9-feca-4f18-9cbe-cd741b5f66ea +X-OPNET-Transaction-Trace: a2_3b4cb7d5-2bc0-4cd0-a913-1674ae7fd3d8 +Cache-Control: no-cache, no-transform +ETag: "98577355-gzip" +Expires: Mon, 25 Feb 2019 06:44:16 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:16 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 67fcf9c2-e5fd-472f-9238-1034bbaaf851 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077056271 +OkHttp-Received-Millis: 1551077056964 + +2019-02-25 12:14:16.967 [main] INFO - ********* END *********: +2019-02-25 12:14:16.993 [main] INFO - ********* START ********* +2019-02-25 12:14:16.993 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:16.993 [main] INFO - Request Type: GET +2019-02-25 12:14:16.993 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime, requestType=GET} +2019-02-25 12:14:16.994 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:16.994 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:16.994 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:16.994 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="QcA/H30SCSpu3ygsBXNL4jv9XznMpCGs853m7iQAfB0=" +2019-02-25 12:14:16.995 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:17.433 [main] INFO - Request Body: null +2019-02-25 12:14:17.433 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2018-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=reportsTime"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"timeQueryType","message":"Time Query Type is invalid","localizationKey":null}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:14:17.434 [main] INFO - Response Code: 400 +2019-02-25 12:14:17.434 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_eebde28a-d806-491a-a620-8588fb182715 +X-OPNET-Transaction-Trace: a2_d43d36dd-ae52-4531-9bd3-fbec53767e34 +Cache-Control: no-cache, no-transform +ETag: "480352859-gzip" +Expires: Mon, 25 Feb 2019 06:44:17 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:17 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: de2f18fa-bfdc-49dc-8949-b56eccc471b5 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077056995 +OkHttp-Received-Millis: 1551077057432 + +2019-02-25 12:14:17.434 [main] INFO - ********* END *********: +2019-02-25 12:14:17.456 [main] INFO - ********* START ********* +2019-02-25 12:14:17.456 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:17.456 [main] INFO - Request Type: GET +2019-02-25 12:14:17.457 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/reports?organizationId=testrest&startTime=2019-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime, requestType=GET} +2019-02-25 12:14:17.457 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:17.457 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:17.458 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:17.458 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="KemZEIQShibejnAl75NkzXxz8+aiTFtf3xqAeFxPpWI=" +2019-02-25 12:14:17.458 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:17.898 [main] INFO - Request Body: null +2019-02-25 12:14:17.898 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/reports?organizationId=testrest&startTime=2019-08-02T00%3A00%3A00.000Z&endTime=2018-08-10T23%3A59%3A59.000Z&timeQueryType=executedTime"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"No Reports found."} +2019-02-25 12:14:17.898 [main] INFO - Response Code: 404 +2019-02-25 12:14:17.898 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_ed63e88c-fdd0-4321-9a0b-4811105930c1 +X-OPNET-Transaction-Trace: a2_6351f223-db41-4f68-a2a7-1db816878038 +Cache-Control: no-cache, no-transform +ETag: "1803701484-gzip" +Expires: Mon, 25 Feb 2019 06:44:17 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:16 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 6c7dd0d7-cbbb-47c1-b13f-cc9a86014565 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077057459 +OkHttp-Received-Millis: 1551077057896 + +2019-02-25 12:14:17.899 [main] INFO - ********* END *********: +2019-02-25 12:14:17.922 [main] INFO - ********* START ********* +2019-02-25 12:14:17.922 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:17.923 [main] INFO - Request Type: GET +2019-02-25 12:14:17.923 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00, requestType=GET} +2019-02-25 12:14:17.923 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:17.923 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:17.924 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:17.924 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="GqAsBfsKHgYhhln3fVBL7snWRLcgZkGzO/iWct/i1CA=" +2019-02-25 12:14:17.924 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:18.341 [main] INFO - Request Body: null +2019-02-25 12:14:18.341 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/notification-of-changes?startTime=2018-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-09-01T12%3A00%3A00.000-05%3A00"}},"code":"RESOURCE_NOTFOUND","correlationId":null,"detail":"The requested resource is not found. Please try again later.","fields":null,"localizationKey":"cybsapi.resource.notfound","message":"No results found for the given dates"} +2019-02-25 12:14:18.341 [main] INFO - Response Code: 404 +2019-02-25 12:14:18.342 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_41a814c0-f25b-43cb-9f59-d338b66097d4 +X-OPNET-Transaction-Trace: a2_f93baef9-cf36-407b-b32e-6533d91e17f1 +Cache-Control: no-cache, no-transform +ETag: "1442562825-gzip" +Expires: Mon, 25 Feb 2019 06:44:18 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:17 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: fc0d479d-275a-4bec-8e43-c4ed6ecb8cf1 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077057928 +OkHttp-Received-Millis: 1551077058339 + +2019-02-25 12:14:18.342 [main] INFO - ********* END *********: +2019-02-25 12:14:18.360 [main] INFO - ********* START ********* +2019-02-25 12:14:18.360 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:18.360 [main] INFO - Request Type: GET +2019-02-25 12:14:18.361 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/notification-of-changes?startTime=2019-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-05-30T12%3A00%3A00.000-05%3A00, requestType=GET} +2019-02-25 12:14:18.361 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:18.361 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:18.361 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:18.362 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="q/7c8z5bF57O3mu7HIlQfMts8lubrO3rLQNdocVPjlQ=" +2019-02-25 12:14:18.362 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:18.778 [main] INFO - Request Body: null +2019-02-25 12:14:18.778 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/notification-of-changes?startTime=2019-09-01T12%3A00%3A00.000-05%3A00&endTime=2018-05-30T12%3A00%3A00.000-05%3A00"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:14:18.778 [main] INFO - Response Code: 400 +2019-02-25 12:14:18.779 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_1dcb14f2-64fb-4dcc-87a1-be1afa6718f4 +X-OPNET-Transaction-Trace: a2_c92d90df-6d10-4399-b2f2-1851e1432976 +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:18 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: b8d26054-035a-4491-a18c-826b8a46e393 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077058362 +OkHttp-Received-Millis: 1551077058776 + +2019-02-25 12:14:18.779 [main] INFO - ********* END *********: +2019-02-25 12:14:18.803 [main] INFO - ********* START ********* +2019-02-25 12:14:18.803 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:18.803 [main] INFO - Request Type: GET +2019-02-25 12:14:18.803 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-25 12:14:18.804 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:18.804 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:18.804 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:18.804 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="A2sbSzPIpB0qbp4TEPnr/gZnAGMvJjBsqtvLaHHqXMc=" +2019-02-25 12:14:18.805 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:19.236 [main] INFO - Request Body: null +2019-02-25 12:14:19.237 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/purchase-refund-details"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:14:19.237 [main] INFO - Response Code: 400 +2019-02-25 12:14:19.237 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_beef0ab2-6875-43b6-bde2-259a620bbc4b +X-OPNET-Transaction-Trace: a2_f6695a60-af8c-4e13-aa10-cf6ef2fcfa0e +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:18 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 7255580b-02ea-4927-a024-22ff7a297732 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077058805 +OkHttp-Received-Millis: 1551077059228 + +2019-02-25 12:14:19.237 [main] INFO - ********* END *********: +2019-02-25 12:14:19.255 [main] INFO - ********* START ********* +2019-02-25 12:14:19.255 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:19.256 [main] INFO - Request Type: GET +2019-02-25 12:14:19.256 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2019-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=testrest&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-25 12:14:19.256 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:19.256 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:19.256 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:19.257 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="EAPXyvrwZmkpZYExdssG7tdeP0auDKLlBnmgl106Tmk=" +2019-02-25 12:14:19.257 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:19.681 [main] INFO - Request Body: null +2019-02-25 12:14:19.681 [main] INFO - Response Message: {"_links":{"self":{"href":"https://apitest.cybersource.com/reporting/v3/purchase-refund-details"}},"code":"VALIDATION_ERROR","correlationId":null,"detail":null,"fields":[{"path":"","message":"The start time should precede the end time","localizationKey":"cybsapi.report.startTime.precede"}],"localizationKey":"cybsapi.validation.errors","message":"Field validation errors"} +2019-02-25 12:14:19.682 [main] INFO - Response Code: 400 +2019-02-25 12:14:19.682 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_f779533e-950f-404d-8933-e66ff2ce8d96 +X-OPNET-Transaction-Trace: a2_d0948c75-5227-40ea-9bd3-f174f7fe87af +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:19 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 2839ff66-2b22-4252-a0fa-22b9d637e1e5 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077059257 +OkHttp-Received-Millis: 1551077059679 + +2019-02-25 12:14:19.682 [main] INFO - ********* END *********: +2019-02-25 12:14:19.700 [main] INFO - ********* START ********* +2019-02-25 12:14:19.700 [main] INFO - Authentication Type : http_signature +2019-02-25 12:14:19.700 [main] INFO - Request Type: GET +2019-02-25 12:14:19.700 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/reporting/v3/purchase-refund-details?startTime=2018-09-01T12%3A00%3A00.000%2B05%3A00&endTime=2018-05-30T22%3A00%3A00.000%2B05%3A00&organizationId=udapaa&paymentSubtype=VI&viewBy=requestDate&groupName=groupName&offset=20&limit=2000, requestType=GET} +2019-02-25 12:14:19.701 [main] INFO - v-c-merchant-id: testrest +2019-02-25 12:14:19.701 [main] INFO - Date: Mon, 25 Feb 2019 06:43:27 GMT +2019-02-25 12:14:19.701 [main] INFO - Host: apitest.cybersource.com +2019-02-25 12:14:19.701 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="/Z+gQ2owHDVLAfRSgMud2Ds993K8UnTDVhErarp0o/k=" +2019-02-25 12:14:19.702 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 12:14:20.116 [main] INFO - Request Body: null +2019-02-25 12:14:20.117 [main] INFO - Response Message: Invalid Merchant +2019-02-25 12:14:20.117 [main] INFO - Response Code: 400 +2019-02-25 12:14:20.117 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_cc7d4c46-4255-4b4c-92f8-4b4a47d97652 +X-OPNET-Transaction-Trace: a2_42cb3178-85db-4c2a-a609-236864308da3 +WWW-Authenticate: Bearer realm="CYBERSOURCE",error="invalid_request" +Vary: Accept-Encoding +X-Content-Type-Options: nosniff +Content-Type: application/hal+json +Date: Mon, 25 Feb 2019 06:44:19 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 18677b57-83d3-46c8-b4ee-0de0785ca8b7 +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551077059703 +OkHttp-Received-Millis: 1551077060115 + +2019-02-25 12:14:20.117 [main] INFO - ********* END *********: +2019-02-25 17:49:28.167 [main] INFO - ********* START ********* +2019-02-25 17:49:28.183 [main] INFO - Authentication Type : http_signature +2019-02-25 17:49:28.183 [main] INFO - Request Type: GET +2019-02-25 17:49:28.183 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA%3D%3D?organizationId=testrest, requestType=GET} +2019-02-25 17:49:28.183 [main] INFO - v-c-merchant-id: testrest +2019-02-25 17:49:28.183 [main] INFO - Date: Mon, 25 Feb 2019 12:19:27 GMT +2019-02-25 17:49:28.183 [main] INFO - Host: apitest.cybersource.com +2019-02-25 17:49:28.183 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="x/vuRHrNsrcr1OORWPruMxFzaauIHRz+qCHJq9Tmm+Q=" +2019-02-25 17:49:28.183 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 17:49:29.745 [main] INFO - Request Body: null +2019-02-25 17:49:29.745 [main] INFO - Response Message: testrest,TRRReport,TransactionRequestReport,1.10,2018-10-19T16:00:00Z to 2018-10-20T16:00:00Z +RequestID,RequestDate,MerchantReferenceNumber,MerchantID +5399662771246550003001,2018-10-19T16:24:37Z,TC50171_3,testrest +5399664781416551403001,2018-10-19T16:27:58Z,TC50171_3,testrest +5399666196306552903001,2018-10-19T16:30:19Z,TC50171_3,testrest +5399666357576981903005,2018-10-19T16:30:35Z,TC50171_3,testrest +5399680347956058103004,2018-10-19T16:53:54Z,TC50171_3,testrest +5399680431216058303004,2018-10-19T16:54:03Z,TC50171_3,testrest +5399684302416000903005,2018-10-19T17:00:30Z,TC50171_3,testrest +5399684505506723403002,2018-10-19T17:00:50Z,TC50171_3,testrest +5399684781686729303003,2018-10-19T17:01:18Z,TC50171_3,testrest +5399742716346290903004,2018-10-19T18:37:51Z,TC50171_3,testrest +5399742808726291703004,2018-10-19T18:38:00Z,TC50171_3,testrest +5399743679866242703005,2018-10-19T18:39:28Z,TC50171_3,testrest +5399751921786020803003,2018-10-19T18:53:12Z,TC50171_3,testrest +5399761919726317303005,2018-10-19T19:09:52Z,TC50171_3,testrest +5399787878246907603001,2018-10-19T19:53:07Z,TC50171_3,testrest +5399793339576405603004,2018-10-19T20:02:14Z,405195660::1,testrest +5399807626196378603005,2018-10-19T20:26:02Z,405195660::1,testrest +5399810449296963303001,2018-10-19T20:30:45Z,33557799,testrest +5399829987226032203001,2018-10-19T21:03:18Z,1234567890,testrest +5399844740286070303001,2018-10-19T21:27:54Z,TC50171_3,testrest +5399845077266611803006,2018-10-19T21:28:27Z,TC50171_3,testrest +5399845139246229503002,2018-10-19T21:28:34Z,TC50171_3,testrest +5399889652786155003001,2018-10-19T22:42:45Z,TC50171_3,testrest +5399900584196720203006,2018-10-19T23:00:58Z,1234567890,testrest + +2019-02-25 17:49:29.745 [main] INFO - Response Code: 200 +2019-02-25 17:49:29.745 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_c7acd6df-d830-4529-bbdc-d373c33d6db2 +Cache-Control: no-cache, no-transform +ETag: "0-gzip" +Expires: Mon, 25 Feb 2019 12:19:29 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Mon, 25 Feb 2019 12:19:29 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: ca25135a-5e76-4ec0-9fc9-8d5bfff79450 +OkHttp-Sent-Millis: 1551097169214 +OkHttp-Received-Millis: 1551097169729 + +2019-02-25 17:49:29.745 [main] INFO - ********* END *********: +2019-02-25 17:49:29.792 [main] INFO - ********* START ********* +2019-02-25 17:49:29.792 [main] INFO - Authentication Type : http_signature +2019-02-25 17:49:29.792 [main] INFO - Request Type: GET +2019-02-25 17:49:29.792 [main] INFO - MERCHCFG: {authenticationType=http_signature, logDirectory=log,logFilename=cybs,keysDirectory=null,keyFileName=null, enableLog=true, runEnvironment=runenviornment, requestHost=apitest.cybersource.com, requestTarget=/sfs/v1/files/VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0?organizationId=testrest, requestType=GET} +2019-02-25 17:49:29.792 [main] INFO - v-c-merchant-id: testrest +2019-02-25 17:49:29.792 [main] INFO - Date: Mon, 25 Feb 2019 12:19:27 GMT +2019-02-25 17:49:29.792 [main] INFO - Host: apitest.cybersource.com +2019-02-25 17:49:29.792 [main] INFO - Signature: keyid="08c94330-f618-42a3-b09d-e1e43be5efda", algorithm="HmacSHA256", headers="host date (request-target) v-c-merchant-id", signature="zjqMzoLeg2yq+/zz0Y2J7vscmci2YxU2oeHXu2cv/5Y=" +2019-02-25 17:49:29.792 [main] INFO - User-Agent: Mozilla/5.0 +2019-02-25 17:49:30.276 [main] INFO - Request Body: null +2019-02-25 17:49:30.276 [main] INFO - Response Message: + + Field validation errors + cybsapi.validation.errors + VALIDATION_ERROR + + cybsapi.file.id.invalid + fileId + Invalid File ID + + + +2019-02-25 17:49:30.276 [main] INFO - Response Code: 400 +2019-02-25 17:49:30.276 [main] INFO - Response Headers: Cache-Control: private +Expires: Wed, 31 Dec 1969 16:00:00 PST +X-OPNET-Transaction-Trace: a2_971b1bb0-feea-43c4-83be-dc0cb7a857f8 +Cache-Control: no-cache, no-transform +ETag: "-807714005-gzip" +Expires: Mon, 25 Feb 2019 12:19:30 GMT +Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT +Vary: Accept-Encoding +Content-Type: application/xml +Date: Mon, 25 Feb 2019 12:19:29 GMT +X-Cnection: close +Server: secretServer +v-c-correlation-id: 3047e8ef-ad5b-45ec-b382-5d9822cf31aa +Transfer-Encoding: chunked +OkHttp-Sent-Millis: 1551097169792 +OkHttp-Received-Millis: 1551097170276 + +2019-02-25 17:49:30.276 [main] INFO - ********* END *********: diff --git a/src/test/cybersource-rest-qascripts-java/pom.xml b/src/test/cybersource-rest-qascripts-java/pom.xml new file mode 100644 index 000000000..20fd617f1 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/pom.xml @@ -0,0 +1,110 @@ + + 4.0.0 + com.cybersource.sample + QaScript + jar + 1.0 + QaScript + http://maven.apache.org + + + + + com.cybersource + cybersource-rest-client-java + 0.0.6 + + + + + au.com.bytecode + opencsv + 2.4 + + + + joda-time + joda-time + 2.3 + + + + + org.apache.commons + commons-io + 1.3.2 + + + + + com.cybersource + + flex-server-sdk + + 0.3.1 + + + + + com.fasterxml.jackson.core + + jackson-databind + + 2.3.1 + + + + + junit + junit + 4.8.1 + test + + + + + + + + maven-compiler-plugin + + 1.8 + 1.8 + + + + org.apache.maven.plugins + maven-shade-plugin + 2.4.1 + + + package + + shade + + + QaScript + + + com.cybersource.qascripts.QaScript + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.9 + + + **/*.java + + + + + + diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Driver/driver.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Driver/driver.csv new file mode 100644 index 000000000..7338edab1 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Driver/driver.csv @@ -0,0 +1,44 @@ +dirName,fileName,Flag +Payments/CoreServices,ProcessPaymentTest,1 +Payments/CoreServices,CapturePaymentTest,1 +Payments/CoreServices,ProcessAuthorizationReversalTest,1 +Payments/CoreServices,ProcessCreditTest,1 +Payments/CoreServices,RefundPaymentTest,1 +Payments/CoreServices,RefundCaptureTest,1 +Payments/CoreServices,VoidPaymentTest,1 +Payments/CoreServices,VoidCaptureTest,1 +Payments/CoreServices,VoidCreditTest,1 +Payments/CoreServices,VoidRefundTest,1 +Payouts,ProcessPayoutTest,1 +Flex/CoreServices,GenerateKeyTest,1 +Flex/noEncryptionKeyGeneration,KeyGenerationNoEncTest,1 +Flex/CoreServices,TokenizeCardTest,1 +TMS/CoreServices,CreateInstrumentIdentifierTest,1 +TMS/CoreServices,CreatePaymentInstrumentTest,1 +TMS/CoreServices,RetrieveInstrumentIdentifierTest,1 +TMS/CoreServices,UpdateInstrumentIdentifierTest,1 +TMS/CoreServices,DeleteInstrumentIdentifierTest,1 +TMS/CoreServices,RetrievePaymentInstrumentTest,1 +TMS/CoreServices,UpdatePaymentInstrumentTest,1 +TMS/CoreServices,DeletePaymentInstrumentTest,1 +TMS/CoreServices,RetrieveAllPaymentInstrumentsTest,1 +TransactionBatches/CoreServices,GetIndividualBatchFileTest,1 +TransactionBatches/CoreServices,GetListOfBatchFilesTest,1 +TransactionDetails/CoreServices,RetrieveTransactionTest,1 +TransactionSearch/CoreServices,CreateSearchTest,1 +TransactionSearch/CoreServices,GetSearchResultsTest,1 +UserManagement/CoreServices,GetUserInformationTest,1 +SecureFileShare/CoreServices,GetListOfFilesTest,1 +SecureFileShare/CoreServices,DownloadFileWithFileIdentifierTest,1 +Reporting/CoreServices,GetSubscriptionForReportNameTest,1 +Reporting/CoreServices,GetReportingResourceInformationTest,1 +Reporting/CoreServices,GetReportDefinitionTest,1 +Reporting/CoreServices,GetReportBasedOnReportidTest,1 +Reporting/CoreServices,GetAllSubscriptionsTest,1 +Reporting/CoreServices,CreateAdhocReportTest,1 +Reporting/CoreServices,CreateReportSubscriptionForReportNameByOrganizationTest,1 +Reporting/CoreServices,DeleteSubscriptionOfReportNameByOrganizationTest,1 +Reporting/CoreServices,DownloadReportTest,0 +Reporting/CoreServices,RetrieveAvailableReportsTest,1 +Reporting/CoreServices,GetNotificationOfChangesTest,1 +Reporting/CoreServices,GetPurchaseAndRefundDetailsTest,1 diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Flex/CoreServices/GenerateKey.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Flex/CoreServices/GenerateKey.csv new file mode 100644 index 000000000..397607cac --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Flex/CoreServices/GenerateKey.csv @@ -0,0 +1,3 @@ +testCaseId,encryptionType,message +GenKey_01,RsaOaep256,Success +GenKey_02,PqaPabc255,Fails due to invalid encryptionType diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Flex/CoreServices/TokenizeCard.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Flex/CoreServices/TokenizeCard.csv new file mode 100644 index 000000000..218ff09a0 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Flex/CoreServices/TokenizeCard.csv @@ -0,0 +1,3 @@ +testCaseId,keyId,message +TokC_01,07UkZGZbFt1M6JUZqCqh4sNZCa5AzOdP,Success +TokC_02,0023154mudgshfyrtdgfj456fhdggdg1,Fails due to invalid keyId \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Flex/noEncryptionKeyGeneration/CreateKeyGenerationNoEnc.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Flex/noEncryptionKeyGeneration/CreateKeyGenerationNoEnc.csv new file mode 100644 index 000000000..1899f9ac7 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Flex/noEncryptionKeyGeneration/CreateKeyGenerationNoEnc.csv @@ -0,0 +1,3 @@ +testCaseId,encryptionType,message +CKeyGenNE_01,None,Success +CKeyGenNE_02,SDMP,Fails due to invalid encryptionType diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Output.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Output.csv new file mode 100644 index 000000000..9348018fa --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Output.csv @@ -0,0 +1 @@ +"API_Name","TestCaseID","Result","Remarks","TimeStamp" diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/CapturePayment.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/CapturePayment.csv new file mode 100644 index 000000000..5a3f5e573 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/CapturePayment.csv @@ -0,0 +1,4 @@ +testCaseId,paymentId,amount,message +CapPay_01,5510757573906363803002,100.00,Success +CapPay_02,5510757573906363803002,200,Fails due to mismatch amount +CapPay_03,56546567456,102.21,Fails due to invalid paymentId \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/ProcessAuthorizationReversal.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/ProcessAuthorizationReversal.csv new file mode 100644 index 000000000..66e8f8fd9 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/ProcessAuthorizationReversal.csv @@ -0,0 +1,4 @@ +testCaseId,paymentId,amount,message +PAuthRev_01,5510757573906363803002,100.00,Success +PAuthRev_02,5510757573906363803002,200,Fails due to mismatch amount +PAuthRev_03,767675757666,100,Fails due to invalid paymentId \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/ProcessCredit.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/ProcessCredit.csv new file mode 100644 index 000000000..273a5519e --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/ProcessCredit.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +PCre_01,100.00,Success +PCre_02,200,Fails due to mismatch amount +PCre_03,GHTR25,Fails due to invalid amount \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/ProcessPayment.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/ProcessPayment.csv new file mode 100644 index 000000000..6d17e3164 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/ProcessPayment.csv @@ -0,0 +1,4 @@ +testCaseId,amount,message +PPay_01,100.00,Success +PPay_02,200,Fails due to mismatch amount +PPay_03,KLGT4,Fails due to invalid amount \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/RefundCapture.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/RefundCapture.csv new file mode 100644 index 000000000..9f3c66ecb --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/RefundCapture.csv @@ -0,0 +1,4 @@ +testCaseId,captureId,amount,message +RCap_01,5510757573906363803002,100.00,Success +RCap_02,5510757573906363803002,200,Fails due to mismatch amount +RCap_03,7567677656567,100.00,Fails due to invalid captureId \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/RefundPayment.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/RefundPayment.csv new file mode 100644 index 000000000..9d9164b6c --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/RefundPayment.csv @@ -0,0 +1,4 @@ +testCaseId,paymentId,amount,message +RPay_01,5510757573906363803002,100.00,Success +RPay_02,5510757573906363803002,200,Fails due to mismatch amount +RPay_03,676557657545457,102.21,Fails due to invalid paymentId \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/VoidCapture.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/VoidCapture.csv new file mode 100644 index 000000000..a28763308 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/VoidCapture.csv @@ -0,0 +1,3 @@ +testCaseId,captureId,statusInput,message +VCap_01,5510757573906363803002,VOIDED,Success +VCap_02,551075757390555803002,VOIDED,Fails due to invalid captureId \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/VoidCredit.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/VoidCredit.csv new file mode 100644 index 000000000..af0f06a08 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/VoidCredit.csv @@ -0,0 +1,3 @@ +testCaseId,creditId,statusInput,message +VCre_01,5510757573906363803002,VOIDED,Success +VCre_02,547676,VOIDED,Fails due to invalid creditId \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/VoidPayment.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/VoidPayment.csv new file mode 100644 index 000000000..060deea2f --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/VoidPayment.csv @@ -0,0 +1,3 @@ +testCaseId,paymentId,status,message +vPay_01,5510757573906363803002,VOIDED,Success +VPay_02,5475754754,VOIDED,Fails due to invalid paymentId \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/VoidRefund.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/VoidRefund.csv new file mode 100644 index 000000000..eee3ba156 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payments/CoreServices/VoidRefund.csv @@ -0,0 +1,3 @@ +testCaseId,refundId,status,message +VAR_01,5510757573906363803002,VOIDED,Success +VAR_02,45654754745,VOIDED,Fails due to invalid refundId \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payouts/CoreServices/CreatePayout.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payouts/CoreServices/CreatePayout.csv new file mode 100644 index 000000000..e2e1ae3ab --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Payouts/CoreServices/CreatePayout.csv @@ -0,0 +1,4 @@ +testCaseId,cleintRefInfoCode,businessAppId,amount,message +CPay_01,33557799,FD,100.00,Success +CPay_02,12345,GD,200,Fails due to mismatch amount +CPay_03,6789,MD,DSWAZ1,Fails due to invalid amount \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/CreateAdhocReport.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/CreateAdhocReport.csv new file mode 100644 index 000000000..728308cb9 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/CreateAdhocReport.csv @@ -0,0 +1,3 @@ +testCaseId,reportDefName,repName,reportSTime,reportETime,message +CAdR_01,TransactionRequestClass,testrest_feb8,2018-09-01T12:00:00+05:00,2018-09-02T12:00:00+05:00,Success +CAdR_02,TransactionRequ,testrest_v2,2018-09-01T12:00:00+05:00,2018-09-02T12:00:00+05:00,fails due to invalid reportDefinitionName \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/CreateReportSubscriptionForReportNameByOrganization.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/CreateReportSubscriptionForReportNameByOrganization.csv new file mode 100644 index 000000000..29bd5e9ec --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/CreateReportSubscriptionForReportNameByOrganization.csv @@ -0,0 +1,3 @@ +testCaseId,reportDefName,repName,repFrequency,message +CRSFRNO_01,TransactionRequestClass,testReport_test,WEEKLY,Success +CRSFRNO_02,TransactionRes,subscriptionAutomation2,DAILY,Fails due to invalid reportDefinitionName diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/DeleteSubscriptionOfReportNameByOrganization.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/DeleteSubscriptionOfReportNameByOrganization.csv new file mode 100644 index 000000000..808f34df0 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/DeleteSubscriptionOfReportNameByOrganization.csv @@ -0,0 +1,3 @@ +testCaseId,repName,message +DSRNO_01,testrest_v604,Success +DSRNO_02,ghsrrawasbhfhcb,Fails due to invalid reportName diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/DownloadReport.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/DownloadReport.csv new file mode 100644 index 000000000..7f2bd7e90 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/DownloadReport.csv @@ -0,0 +1,4 @@ +testCaseId,orgId,repName,repDate,message +DR_01,testrest,testrest dec V70,2018-09-03,Success +DR_02,testrest,testre,2018-09-03,Fails due to invalid reportName +DR_03,testrest,testrest_v2,2018-08-02,Fails due to invalid reportDate diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetAllSubscriptions.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetAllSubscriptions.csv new file mode 100644 index 000000000..1a9ccf41b --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetAllSubscriptions.csv @@ -0,0 +1,2 @@ +testCaseId,,message +GAS_01,Success diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetNotificationOfChanges.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetNotificationOfChanges.csv new file mode 100644 index 000000000..5783ed25f --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetNotificationOfChanges.csv @@ -0,0 +1,3 @@ +testCaseId,sTime,eTime,message +GNOC_01,2018-09-01T12:00:00-05:00,2018-09-01T12:00:00-05:00,Success +GNOC_02,2019-09-01T12:00:00-05:00,2018-05-30T12:00:00-05:00,Fails due to invalid dateTime diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetPurchaseAndRefundDetails.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetPurchaseAndRefundDetails.csv new file mode 100644 index 000000000..b45156e37 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetPurchaseAndRefundDetails.csv @@ -0,0 +1,4 @@ +testCaseId,sTime,eTime,orgId,message +GPARD_01,2018-09-01T12:00:00+05:00,2018-05-30T12:00:00-05:00,testrest,Success +GPARD_02,2019-09-01T12:00:00+05:00,2018-05-30T12:00:00-05:00,testrest,Fails due to invalid dateTime +GPARD_03,2018-09-01T12:00:00+05:00,2018-05-30T12:00:00-05:00,udapaa,Fails due to invalid organizationId diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetReportBasedOnReportid.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetReportBasedOnReportid.csv new file mode 100644 index 000000000..c1407d09d --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetReportBasedOnReportid.csv @@ -0,0 +1,4 @@ +testCaseId,orgId,repId,message +GRBRI_01,testrest,79642c43-2368-0cd5-e053-a2588e0a7b3c,Success +GRBRI_02,testrest,79642c43-2368-0cd5-e053-a2588e0a,Fails due to invalid reportId +GRBRI_03,bkalama,79642c43-2368-0cd5-e053-a2588e0a7b3c,Fails due to invalid organizationId diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetReportDefinition.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetReportDefinition.csv new file mode 100644 index 000000000..572fbc129 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetReportDefinition.csv @@ -0,0 +1,3 @@ +testCaseId,reportDefName,message +GRD_01,AcquirerExceptionDetailClass,Success +GRD_02,SubscDetail,Fails due to invalid reportDefinitionName diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetReportingResourceInformation.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetReportingResourceInformation.csv new file mode 100644 index 000000000..f09027c59 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetReportingResourceInformation.csv @@ -0,0 +1,3 @@ +testCaseId,orgId,message +GRRI_01,testrest,Success +GRRI_02,bplkmdghd,Fails due to invalid organizationId diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetSubscriptionForReportName.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetSubscriptionForReportName.csv new file mode 100644 index 000000000..39fafb603 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/GetSubscriptionForReportName.csv @@ -0,0 +1,3 @@ +testCaseId,repName,message +GSFRN_01,Texture,Success +GSFRN_02,bplkmdgsd,Fails due to invalid reportName \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/RetrieveAvailableReports.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/RetrieveAvailableReports.csv new file mode 100644 index 000000000..7c11e1f0d --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/Reporting/CoreServices/RetrieveAvailableReports.csv @@ -0,0 +1,4 @@ +testCaseId,sTime,eTime,tQueryType,message +RAR_01,2018-08-02T00:00:00.0Z,2018-08-10T23:59:59.0Z,executedTime,Success +RAR_02,2018-08-02T00:00:00.0Z,2018-08-10T23:59:59.0Z,reportsTime,Fails due to invalid timeQueryType +RAR_03,2019-08-02T00:00:00.0Z,2018-08-10T23:59:59.0Z,executedTime,Fails due to invalid dateTime \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/SecureFileShare/CoreServices/DownloadFileWithFileIdentifier.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/SecureFileShare/CoreServices/DownloadFileWithFileIdentifier.csv new file mode 100644 index 000000000..09ea020ec --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/SecureFileShare/CoreServices/DownloadFileWithFileIdentifier.csv @@ -0,0 +1,3 @@ +testCaseId,organizationId,fileId,message +DFWFI_01,testrest,VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0xMC0yMA==,Success +DFWFI_02,testrest,VFJSUmVwb3J0LTc4NTVkMTNmLTkzOTgtNTExMy1lMDUzLWEyNTg4ZTBhNzE5Mi5jc3YtMjAxOC0,Fails due to invalid fieldId diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/SecureFileShare/CoreServices/GetListOfFiles.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/SecureFileShare/CoreServices/GetListOfFiles.csv new file mode 100644 index 000000000..8600e650b --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/SecureFileShare/CoreServices/GetListOfFiles.csv @@ -0,0 +1,3 @@ +testCaseId,organizationId,startDate,endDate,message +GLF_01,testrest,2018-10-20,2018-10-30,Success +GLF_02,testtest,2018-10-20,2018-10-30,Fails due to invalid organizationId. \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/CreateInstrumentIdentifier.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/CreateInstrumentIdentifier.csv new file mode 100644 index 000000000..879766210 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/CreateInstrumentIdentifier.csv @@ -0,0 +1,3 @@ +testCaseId,prevTransactionId,profileId,message +CInstIden_01,123456789012345,93B32398-AD51-4CC2-A682-EA3E93614EB1,Success +CInstIden_02,123456789012345,25C32588-CD49-6SS3-H123-WQ7T83512NMl,Fails due to invalid profileId \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/CreatePaymentsInstruments.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/CreatePaymentsInstruments.csv new file mode 100644 index 000000000..1042f6ea3 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/CreatePaymentsInstruments.csv @@ -0,0 +1,3 @@ +testCaseId,profileId,message +CPIns_01,93B32398-AD51-4CC2-A682-EA3E93614EB1,Success +CPIns_02,25C32588-CD49-6SS3-H123-WQ7T83512NMl,Fails due to invalid profileId diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/DeleteInstrumentIdentifier.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/DeleteInstrumentIdentifier.csv new file mode 100644 index 000000000..0abcde2b3 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/DeleteInstrumentIdentifier.csv @@ -0,0 +1,3 @@ +testCaseId,profileId,tokenId,message +DelInsIden_01,93B32398-AD51-4CC2-A682-EA3E93614EB1,7010000000006721114,Success +DelInsIden_02,93B32398-AD51-4CC2-A682-EA3E93614EB1,7654264589567855546,Fails due to invalid tokenId \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/DeletePaymentsInstrument.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/DeletePaymentsInstrument.csv new file mode 100644 index 000000000..405c85b22 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/DeletePaymentsInstrument.csv @@ -0,0 +1,3 @@ +testCaseId,profileId,tokenId,message +DelPIns_01,93B32398-AD51-4CC2-A682-EA3E93614EB1,80756F4698591109E05341588E0A4B95,Success +DelPIns_02,93B32398-AD51-4CC2-A682-EA3E93614EB1,76542645895678555464562155478555,Fails due to invalid tokenId diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/RetrieveAllPaymentInstruments.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/RetrieveAllPaymentInstruments.csv new file mode 100644 index 000000000..c4654348d --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/RetrieveAllPaymentInstruments.csv @@ -0,0 +1,3 @@ +testCaseId,profileId,tokenId,message +RAPIns_01,93B32398-AD51-4CC2-A682-EA3E93614EB1,7020000000000137654,Success +RAPIns_02,93B32398-AD51-4CC2-A682-EA3E93614EB1,7654264589567855546,Fails due to invalid tokenId diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/RetrieveInstrumentIdentifier.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/RetrieveInstrumentIdentifier.csv new file mode 100644 index 000000000..2d9d29423 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/RetrieveInstrumentIdentifier.csv @@ -0,0 +1,3 @@ +testCaseId,profileId,tokenId,message +RInsIden_01,93B32398-AD51-4CC2-A682-EA3E93614EB1,7010000000016241111,Success +RInsIden_02,93B32398-AD51-4CC2-A682-EA3E93614EB1,7654264589567855546,Fails due to invalid tokenId diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/RetrievePaymentInstrument.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/RetrievePaymentInstrument.csv new file mode 100644 index 000000000..ed3be9b73 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/RetrievePaymentInstrument.csv @@ -0,0 +1,3 @@ +testCaseId,profileId,tokenId,message +RPIden_01,93B32398-AD51-4CC2-A682-EA3E93614EB1,7EFF4BA832B12424E05340588D0AC603,Success +RPIden_02,93B32398-AD51-4CC2-A682-EA3E93614EB1,7654264589567855546,Fails due to invalid tokenId diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/UpdateInstrumentIdentifier.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/UpdateInstrumentIdentifier.csv new file mode 100644 index 000000000..b65eb7b55 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/UpdateInstrumentIdentifier.csv @@ -0,0 +1,3 @@ +testCaseId,profileId,tokenId,message +UpdInsIden_01,93B32398-AD51-4CC2-A682-EA3E93614EB1,7020000000000137654,Success +UpdInsIden_02,93B32398-AD51-4CC2-A682-EA3E93614EB1,7020000000000123455,Fails due to invalid tokenId diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/UpdatePaymentInstrument.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/UpdatePaymentInstrument.csv new file mode 100644 index 000000000..954eebde0 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TMS/CoreServices/UpdatePaymentInstrument.csv @@ -0,0 +1,3 @@ +testCaseId,profileId,tokenId,message +UpdPInst_01,93B32398-AD51-4CC2-A682-EA3E93614EB1,7EFF4BA832B12424E05340588D0AC603,Success +UpdPInst_02,93B32398-AD51-4CC2-A682-EA3E93614EB1,7EFF4BA832B124123456789545854565,Fail due to invalid tokenId \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TestReport/TestResults.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TestReport/TestResults.csv new file mode 100644 index 000000000..ca9501b32 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TestReport/TestResults.csv @@ -0,0 +1 @@ +TestCaseId,APIName,Status,Message,TimeStamp \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TransactionBatches/CoreServices/GetIndividualBatchFile.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TransactionBatches/CoreServices/GetIndividualBatchFile.csv new file mode 100644 index 000000000..53729aa49 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TransactionBatches/CoreServices/GetIndividualBatchFile.csv @@ -0,0 +1,3 @@ +testCaseId,id,message +GIBF_01,Owcyk6pl,Success +GIBF_02,CYBS123,Fails due to invalid Id diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TransactionBatches/CoreServices/GetListOfBatchFiles.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TransactionBatches/CoreServices/GetListOfBatchFiles.csv new file mode 100644 index 000000000..e01ba5462 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TransactionBatches/CoreServices/GetListOfBatchFiles.csv @@ -0,0 +1,3 @@ +testCaseId,startTime,endTime,message +GLOF_01,2018-10-01T00:00:00.00Z,2018-10-31T23:59:59.59Z,Success +GLOF_02,2019-10-01T00:00:00.00Z,2018-10-31T23:59:59.59Z,Fails due to invalid dateTime. diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TransactionDetails/CoreServices/RetrieveTransaction.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TransactionDetails/CoreServices/RetrieveTransaction.csv new file mode 100644 index 000000000..9cd405c59 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TransactionDetails/CoreServices/RetrieveTransaction.csv @@ -0,0 +1,3 @@ +testCaseId,id,message +RT_01,5408386919326811103004,Success +RT_02,1234567898745651235454,Fails due to invalid Id diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TransactionSearch/CoreServices/CreateSearchRequest.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TransactionSearch/CoreServices/CreateSearchRequest.csv new file mode 100644 index 000000000..3381e31c0 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TransactionSearch/CoreServices/CreateSearchRequest.csv @@ -0,0 +1,3 @@ +testCaseId,name,query,message +CSR_01,TSS search,clientReferenceInformation.code:12345,Success +CSR_02,TSS search,clientRefeInfo.code:52465,Fails due to invalid query. diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TransactionSearch/CoreServices/GetSearchResults.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TransactionSearch/CoreServices/GetSearchResults.csv new file mode 100644 index 000000000..f7d33b73f --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/TransactionSearch/CoreServices/GetSearchResults.csv @@ -0,0 +1,3 @@ +testCaseId,id,message +GSR_01,cf031711-465f-42cc-8275-2308f5ca0459,Success +GSR_02,400b6975-4500-4426-89ee-5089272ca1fc,Fails due to invalid Id diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/UserManagement/CoreServices/GetUserInformation.csv b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/UserManagement/CoreServices/GetUserInformation.csv new file mode 100644 index 000000000..84939c489 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/CSV_Files/UserManagement/CoreServices/GetUserInformation.csv @@ -0,0 +1,3 @@ +testCaseId,orgId,roleId,message +GUI_01,testrest,admin,Success +GUI_02,testre,admin,Fail due to invalid organizationId \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/Data/Configuration.java b/src/test/cybersource-rest-qascripts-java/src/main/java/Data/Configuration.java new file mode 100644 index 000000000..35ad00a12 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/Data/Configuration.java @@ -0,0 +1,39 @@ +package Data; + +import java.util.Properties; + +public class Configuration { + public static Properties getMerchantDetails() { + Properties props = new Properties(); + + // HTTP_Signature = http_signature and JWT = jwt + props.setProperty("authenticationType", "http_signature"); + props.setProperty("merchantID", "testrest"); + props.setProperty("runEnvironment", "CyberSource.Environment.SANDBOX"); + props.setProperty("requestJsonPath", "src/main/resources/request.json"); + + // JWT Parameters + props.setProperty("keyAlias", "testrest"); + props.setProperty("keyPass", "testrest"); + props.setProperty("keyFileName", "testrest"); + + // P12 key path. Enter the folder path where the .p12 file is located. + + props.setProperty("keysDirectory", "src/main/resources"); + // HTTP Parameters + props.setProperty("merchantKeyId", "08c94330-f618-42a3-b09d-e1e43be5efda"); + props.setProperty("merchantsecretKey", "yBJxy6LjM2TmcPGu+GaJrHtkke25fPpUX+UY6/L/1tE="); + // Logging to be enabled or not. + props.setProperty("enableLog", "true"); + // Log directory Path + props.setProperty("logDirectory", "log"); + props.setProperty("logFilename", "cybs"); + + // Log file size in KB + props.setProperty("logMaximumSize", "5M"); + + return props; + + } + +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/TestWrapper/MainClass.java b/src/test/cybersource-rest-qascripts-java/src/main/java/TestWrapper/MainClass.java new file mode 100644 index 000000000..d7da8b63c --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/TestWrapper/MainClass.java @@ -0,0 +1,48 @@ +package TestWrapper; + + +import java.io.File; +import java.io.FileReader; +import java.io.FileWriter; + +import au.com.bytecode.opencsv.CSVReader; +import au.com.bytecode.opencsv.CSVWriter; +import sampleCodeJava.SampleCode; + + +public class MainClass { + + public static void main(String[] args) throws Exception + { + System.out.println("********************************QA scripts begins*****************************"); + File opFile=new File(System.getProperty("user.dir")+"\\src\\main\\java\\CSV_Files\\Output.csv"); + CSVWriter writer = new CSVWriter(new FileWriter(opFile,true)); + String [] columnNames = "API_Name#TestCaseID#Result#Remarks#TimeStamp".split("#"); + File outFile=new File(System.getProperty("user.dir")+"\\src\\main\\java\\CSV_Files\\Output.csv"); + CSVReader csvReaderOP = new CSVReader(new FileReader(outFile)); + try{ + if(csvReaderOP.readNext()[0]==""){} + } + catch(NullPointerException ne) + { + writer.writeNext(columnNames); + } + writer.close(); + //the code above is for writing the column names in the output file + + File driverFile=new File(System.getProperty("user.dir")+"\\src\\main\\java\\CSV_Files\\Driver\\driver.csv"); + CSVReader csvReader = new CSVReader(new FileReader(driverFile)); + String[] columns = null; + csvReader.readNext(); + while((columns = csvReader.readNext()) != null) + { + if(columns[2].equals("1")) + { + SampleCode.RunMethod(columns[1].replace("Sample", "")); + } + } + + csvReader.close(); + System.out.println("********************************QA scripts ends*****************************"); + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/Utility/ConstantUtility.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/Utility/ConstantUtility.java new file mode 100644 index 000000000..07139eb45 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/Utility/ConstantUtility.java @@ -0,0 +1,82 @@ +package qascripts.Utility; + +public class ConstantUtility { + + public static final String AUTHORIZED_STATUS = "AUTHORIZED"; + public static final String PAYMENT_ID_NULL = "Payment ID is null"; + public static final String UN_AUTHORIZED = "Status is UNAUTHORIZED"; + public static final String RESPONSE_CODE_ERROR = "Assertion Failed in Response code validation"; + + public static final String PROCESS_PAYMENT = "Process Payment"; + public static final String ASSERTION_FAILED = "Assertion Failed"; + public static final String ASSERTION_PASS = "Assertion Pass"; + public static final String FAIL = "Fail"; + + public static final String CAPTURE_PAYMENT = "Capture Payment"; + public static final String PENDING_STATUS = "PENDING"; + + public static final String NOT_PENDING_STATUS = "Status is Not Pending"; + + + public static final String PROCESS_AUTHORIZATION_REVERESAL = "ProcessAuthorizationReversal"; + public static final String REVERESED_STATUS = "REVERESED"; + public static final String NOT_REVERESED_STATUS = "Status is Not Reveresed"; + + public static final String REFUND_PAYMENT = "Refund Payment"; + public static final String REFUND_CAPTURE = "Refund Capture"; + public static final String PROCESS_CREDIT = "Process Credit"; + public static final String VOID_PAYMENT = "Void Payment"; + public static final String VOID_CAPTURE = "Void Capture"; + public static final String VOID_CREDIT = "Void Credit"; + public static final String VOID_REFUND = "Void Refund"; + public static final String PROCESS_PAYOUT = "Process Payout"; + public static final String GENERATE_KEY = "Generate Key"; + public static final String TOKENIZE_CARD = "Tokenize Card"; + public static final String KEYGENERATION_NOENC = "KeyGeneration NoEnc"; + + public static final String VOIDED_STATUS = "VOIDED"; + public static final String NOT_VOIDED_STATUS = "Status is Not Voided"; + + public static final String ACCEPTED_STATUS = "ACCEPTED"; + public static final String NOT_ACCEPTED_STATUS = "Status is Not Accepted"; + + public static final String KEY_ID_NULL = "Key ID is null"; + public static final String TOKEN_ID_NULL = "Token ID is null"; + + public static final String CREATE_INSTRUMENT_IDENTIFIER = "Create Instrument Identifier"; + public static final String ACTIVE_STATE = "ACTIVE"; + public static final String STATUS_NOT_ACTIVE = "Status is not Active"; + public static final String UPDATE_INSTRUMENT_IDENTIFIER = "Update Instrument Identifier"; + public static final String RETRIEVE_INSTRUMENT_IDENTIFIER = "Retrieve Instrument Identifier"; + public static final String RETRIEVE_ALL_PAYMENT_INSTRUMENTS = "Retrieve All Payment Instrument"; + public static final String CREATE_PAYMENT_INSTRUMENT = "Create Payment Instrument"; + public static final String UPDATE_PAYMENT_INSTRUMENT = "Update Payment Instrument"; + public static final String RETRIEVE_PAYMENT_INSTRUMENT = "Retrieve Payment Instrument"; + public static final String DELETE_PAYMENT_INSTRUMENT = "Delete Payment Instrument"; + public static final String DELETE_INSTRUMENT_IDENTIFIER = "Delete Instrument Identifier"; + public static final String RESPONSE_CODE_NULL = "Response code is null"; + public static final String GET_LIST_OF_BATCH_FILE = "Get List Of Batch File"; + public static final String GET_INDIVIDUAL_BATCH_FILE = "Get Individual Batch File"; + public static final String INVALID_RESPONSE_ID = "Invalid Response Id"; + public static final String GET_NOTIFICATION_OF_CHANGES = "Get Notification of changes"; + public static final String GET_PURCHASE_AND_REFUND_DETAIL = "Get Purchase and Refund Detail List"; + public static final String GET_REPORTING_RESOURCE_INFORMATION = "Get Reporting Resource Information"; + public static final String GET_REPORT_DEFINITION = "Get Report Definition"; + public static final String GET_ALL_SUBSCRIPTION = "Get All Subscription "; + public static final String GET_SUBSCRIPTION_FOR_REPORT_NAME = "Get Subscription For Report Name"; + public static final String CREATE_REPORT_SUBSCRIPTION_FOR_REPORT_NAME_BY_ORG = "Create Report Subscription For Report Name By Organisation"; + public static final String DELETE_SUBSCRIPTION_OF_REPORT_NAME_BY_ORG = "Delete Subscription of Report Name By Organisation"; + public static final String RETRIEVE_AVAILABLE_REPORTS = "Retrieve AVailable Reports"; + public static final String CREATE_ADHOC_REPORTS = "Create Adhoc Reports"; + public static final String GET_REPORT_BASED_ON_ID = "Get Report Based On Id"; + public static final String DOWNLOAD_REPORT = "Download Report"; + public static final String FILE_CONTENT_NULL = "File Content is null"; + public static final String GET_LIST_OF_FILE = "Get List Of File"; + public static final String DOWNLOAD_FILE_WITH_IDENTIFIER = "Download File With Identifier"; + public static final String RETRIEVE_TRANSACTION = "Retrieve Transaction"; + public static final String CREATE_SEARCH_REQUEST = "Create Search Request"; + public static final String INVALIDE_NAME = "Invalid Name"; + public static final String GET_SEARCH_RESULT = "Get Search Result"; + public static final String INVALID_SEARCH_ID = "Invalid Search Id"; + public static final String GET_USER_INFORMATION = "Get User Information"; +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/Utility/CsvUtility.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/Utility/CsvUtility.java new file mode 100644 index 000000000..fc3c1e5f1 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/Utility/CsvUtility.java @@ -0,0 +1,33 @@ +package qascripts.Utility; + +import java.io.File; +import java.io.FileWriter; +import java.io.IOException; +import java.util.Date; + +import au.com.bytecode.opencsv.CSVWriter; + +public class CsvUtility { + + public static void writingToCsv(String testCaseId,String sampleCodeName,String result,String message,String Id,String responseCode,boolean flag) throws IOException{ + File opFile=new File(System.getProperty("user.dir")+"\\src\\main\\java\\CSV_Files\\TestReport\\TestResults.csv"); + CSVWriter writer = new CSVWriter(new FileWriter(opFile,true)); + Date date=new Date(); + if(flag){ + if(Id!=null){ + String[] outputArr = { testCaseId,sampleCodeName,result +" :" +responseCode + "-" + Id,message, date.toString() }; + writer.writeNext(outputArr); + } else{ + String[] outputArr = { testCaseId,sampleCodeName,result +" :" +responseCode,message, date.toString() }; + writer.writeNext(outputArr); + } + + } else{ + String[] outputArr = { testCaseId,sampleCodeName,result,message,date.toString() }; + writer.writeNext(outputArr); + } + + writer.close(); + } + +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/flex/coreServices/GenerateKeyTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/flex/coreServices/GenerateKeyTest.java new file mode 100644 index 000000000..143bcaa57 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/flex/coreServices/GenerateKeyTest.java @@ -0,0 +1,85 @@ +package qascripts.flex.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.KeyGenerationApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.FlexV1KeysPost200Response; +import Model.GeneratePublicKeyRequest; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class GenerateKeyTest { + + public static void main(String args[]) throws Exception { + GenerateKeyTest generateKeyTest = new GenerateKeyTest(); + generateKeyTest.process(); + } + + public FlexV1KeysPost200Response process() throws Exception { + FlexV1KeysPost200Response response = null; + Properties merchantProp; + + File inputFile = new File( + System.getProperty("user.dir") + "\\src\\main\\java\\CSV_Files\\Flex\\CoreServices\\GenerateKey.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + GeneratePublicKeyRequest request = null; + + while ((columns = csvReader.readNext()) != null) { + request = new GeneratePublicKeyRequest(); + request.encryptionType(columns[1]); + + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + KeyGenerationApi keyGenerationApi = new KeyGenerationApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = keyGenerationApi.generatePublicKey(request); + + if (response.getKeyId() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GENERATE_KEY, ConstantUtility.ASSERTION_FAILED, + ConstantUtility.KEY_ID_NULL, response.getKeyId(), apiClient.getResponseCode(), + Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GENERATE_KEY, ConstantUtility.ASSERTION_PASS, + columns[2], response.getKeyId(), apiClient.getResponseCode(), Boolean.TRUE); + } + } + + catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject obj = new JSONObject(apiClient.getRespBody()).getJSONObject("responseStatus"); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.GENERATE_KEY, ConstantUtility.FAIL, reason, null, + apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GENERATE_KEY, ConstantUtility.FAIL, e.getMessage(), + null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/flex/coreServices/TokenizeCardTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/flex/coreServices/TokenizeCardTest.java new file mode 100644 index 000000000..a3f11c7f6 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/flex/coreServices/TokenizeCardTest.java @@ -0,0 +1,124 @@ +package qascripts.flex.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.HashMap; +import java.util.Map; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.model.FlexToken; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; +import com.fasterxml.jackson.databind.ObjectMapper; + +import Api.FlexTokenApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.FlexV1KeysPost200Response; +import Model.FlexV1TokensPost200Response; +import Model.Flexv1tokensCardInfo; +import Model.TokenizeRequest; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class TokenizeCardTest { + + public static FlexV1TokensPost200Response response = null; + public static FlexV1KeysPost200Response keyResponse; + private static Properties merchantProp; + public static String keyId = null; + public static String respKeyId = null; + + @SuppressWarnings("rawtypes") + + static Map tokenMap = new HashMap(); + + static TokenizeRequest request; + + public static void main(String args[]) throws Exception { + TokenizeCardTest tokenizeCardTest = new TokenizeCardTest(); + tokenizeCardTest.process(); + } + + public TokenizeRequest getRequest() throws Exception { + request = new TokenizeRequest(); + request.keyId(keyId); + + Flexv1tokensCardInfo cardInfo = new Flexv1tokensCardInfo(); + cardInfo.cardNumber("5555555555554444"); + cardInfo.cardExpirationMonth("03"); + cardInfo.cardExpirationYear("2031"); + cardInfo.cardType("002"); + request.cardInfo(cardInfo); + + return request; + + } + + public void process() throws Exception { + + File inputFile = new File( + System.getProperty("user.dir") + "\\src\\main\\java\\CSV_Files\\Flex\\CoreServices\\TokenizeCard.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + while ((columns = csvReader.readNext()) != null) { + ApiClient apiClient = null; + try { + keyId=columns[1]; + request = getRequest(); + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + FlexTokenApi tokenizationApi = new FlexTokenApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = tokenizationApi.tokenize(request); + + FlexToken flexTokenResponseBody = new FlexToken(); + flexTokenResponseBody.setKeyId(response.getKeyId()); + flexTokenResponseBody.setToken(response.getToken()); + flexTokenResponseBody.setMaskedPan(response.getMaskedPan()); + flexTokenResponseBody.setCardType(response.getCardType()); + flexTokenResponseBody.setTimestamp(response.getTimestamp()); + flexTokenResponseBody.setSignedFields(response.getSignedFields()); + flexTokenResponseBody.setSignature(response.getSignature()); + flexTokenResponseBody.setDiscoverableServices(response.getDiscoverableServices()); + + ObjectMapper oMapper = new ObjectMapper(); + tokenMap = oMapper.convertValue(flexTokenResponseBody, Map.class); + + if (response.getKeyId() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.TOKENIZE_CARD, ConstantUtility.ASSERTION_FAILED, + ConstantUtility.KEY_ID_NULL, response.getKeyId(), apiClient.getResponseCode(), + Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.TOKENIZE_CARD, ConstantUtility.ASSERTION_PASS, + columns[2], response.getKeyId(), apiClient.getResponseCode(), Boolean.TRUE); + } + } + + catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject obj = new JSONObject(apiClient.getRespBody()).getJSONObject("responseStatus"); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.TOKENIZE_CARD, ConstantUtility.FAIL, reason, null, + apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.TOKENIZE_CARD, ConstantUtility.FAIL, e.getMessage(), + null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + } +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/flex/noEncryptionKeyGeneration/KeyGenerationNoEncTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/flex/noEncryptionKeyGeneration/KeyGenerationNoEncTest.java new file mode 100644 index 000000000..2773b4765 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/flex/noEncryptionKeyGeneration/KeyGenerationNoEncTest.java @@ -0,0 +1,83 @@ +package qascripts.flex.noEncryptionKeyGeneration; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.KeyGenerationApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.FlexV1KeysPost200Response; +import Model.GeneratePublicKeyRequest; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class KeyGenerationNoEncTest { + + public static void main(String args[]) throws Exception { + KeyGenerationNoEncTest keyGenerationNoEncTest = new KeyGenerationNoEncTest(); + keyGenerationNoEncTest.process(); + } + + public FlexV1KeysPost200Response process() throws Exception { + FlexV1KeysPost200Response response = null; + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Flex\\noEncryptionKeyGeneration\\CreateKeyGenerationNoEnc.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + GeneratePublicKeyRequest request; + + while ((columns = csvReader.readNext()) != null) { + request = new GeneratePublicKeyRequest(); + request.encryptionType(columns[1]); + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + KeyGenerationApi keyGenerationApi = new KeyGenerationApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = keyGenerationApi.generatePublicKey(request); + if (response.getKeyId() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.KEYGENERATION_NOENC, ConstantUtility.ASSERTION_FAILED, + ConstantUtility.KEY_ID_NULL, response.getKeyId(), apiClient.getResponseCode(), + Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.KEYGENERATION_NOENC, ConstantUtility.ASSERTION_PASS, + columns[2], response.getKeyId(), apiClient.getResponseCode(), Boolean.TRUE); + } + } + + catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject obj = new JSONObject(apiClient.getRespBody()).getJSONObject("responseStatus"); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.KEYGENERATION_NOENC, ConstantUtility.FAIL, reason, null, + apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.KEYGENERATION_NOENC, ConstantUtility.FAIL, e.getMessage(), + null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/flex/tokenization/VerifyToken.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/flex/tokenization/VerifyToken.java new file mode 100644 index 000000000..ee8687108 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/flex/tokenization/VerifyToken.java @@ -0,0 +1,52 @@ +package qascripts.flex.tokenization; + +import java.io.IOException; +import java.security.GeneralSecurityException; +import java.security.PublicKey; +import java.security.Signature; +import java.util.Map; + +import com.cybersource.flex.sdk.exception.FlexEncodingException; +import com.cybersource.flex.sdk.exception.FlexException; +import com.cybersource.flex.sdk.exception.FlexSDKInternalException; +import com.cybersource.flex.sdk.exception.FlexSecurityException; +import com.cybersource.flex.sdk.repackaged.Base64; + +public class VerifyToken { + + public boolean verify(PublicKey publicKey, Map postParams) throws FlexException { + if (postParams == null) throw new FlexSecurityException("A valid Map must be supplied"); + final String signature = (String) postParams.get("signature"); + if (signature == null) throw new FlexSecurityException("Missing required field: signature"); + final String signedFields = (String) postParams.get("signedFields"); + if (signedFields == null) throw new FlexSecurityException("Missing required field: signedFields"); + StringBuilder sb = new StringBuilder(); + for (String k : signedFields.split(",")) { + sb.append(','); + sb.append(postParams.get("" + k)); + } + final String signedValues = sb.substring(1); + return validateTokenSignature(publicKey, signedValues, signature); + + } + + private static boolean validateTokenSignature(PublicKey publicKey, String signedFields, String signature) throws FlexException { + boolean success=false; + if (publicKey == null) throw new FlexSecurityException("Must supply a valid PublicKey instance"); + if (signature == null) throw new FlexSecurityException("Missing required field: signature"); + if (signedFields == null) throw new FlexSecurityException("Missing required field: signedFields"); + try { + final Signature signInstance = Signature.getInstance("SHA512withRSA"); + signInstance.initVerify(publicKey); + signInstance.update(signedFields.getBytes()); + success = signInstance.verify(Base64.decode(signature)); + System.out.println(success); + } catch (IOException e) { + throw new FlexEncodingException("Unable to decode signature"+ e); + } catch (GeneralSecurityException e) { + throw new FlexSDKInternalException(e); + } + return success; + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/CapturePaymentTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/CapturePaymentTest.java new file mode 100644 index 000000000..d99d808e1 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/CapturePaymentTest.java @@ -0,0 +1,127 @@ +package qascripts.payments.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.CaptureApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.CapturePaymentRequest; +import Model.PtsV2PaymentsCapturesPost201Response; +import Model.Ptsv2paymentsClientReferenceInformation; +import Model.Ptsv2paymentsidcapturesOrderInformation; +import Model.Ptsv2paymentsidcapturesOrderInformationAmountDetails; +import Model.Ptsv2paymentsidcapturesOrderInformationBillTo; +import Model.Ptsv2paymentsidcapturesPointOfSaleInformation; +import au.com.bytecode.opencsv.CSVReader; +import junit.framework.Assert; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class CapturePaymentTest { + + public static void main(String args[]) throws Exception { + CapturePaymentTest capturePaymentTest = new CapturePaymentTest(); + capturePaymentTest.process(); + } + + public PtsV2PaymentsCapturesPost201Response process() throws Exception { + + PtsV2PaymentsCapturesPost201Response response = null; + Properties merchantProp; + String amount = null; + String paymentId = null; + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Payments\\CoreServices\\CapturePayment.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + CapturePaymentRequest request = null; + + while ((columns = csvReader.readNext()) != null) { + + request = new CapturePaymentRequest(); + + paymentId = columns[1]; + + Ptsv2paymentsClientReferenceInformation client = new Ptsv2paymentsClientReferenceInformation(); + client.code("test_capture"); + request.setClientReferenceInformation(client); + + Ptsv2paymentsidcapturesPointOfSaleInformation saleInformation = new Ptsv2paymentsidcapturesPointOfSaleInformation(); + request.pointOfSaleInformation(saleInformation); + + Ptsv2paymentsidcapturesOrderInformationBillTo billTo = new Ptsv2paymentsidcapturesOrderInformationBillTo(); + billTo.country("US"); + billTo.firstName("John"); + billTo.lastName("Deo"); + billTo.address1("1 Market St"); + billTo.postalCode("94105"); + billTo.locality("san francisco"); + billTo.administrativeArea("CA"); + billTo.email("test@cybs.com"); + + Ptsv2paymentsidcapturesOrderInformationAmountDetails amountDetails = new Ptsv2paymentsidcapturesOrderInformationAmountDetails(); + amountDetails.totalAmount(columns[2]); + amountDetails.currency("USD"); + + Ptsv2paymentsidcapturesOrderInformation orderInformation = new Ptsv2paymentsidcapturesOrderInformation(); + orderInformation.billTo(billTo); + orderInformation.amountDetails(amountDetails); + request.setOrderInformation(orderInformation); + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + CaptureApi captureApi = new CaptureApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = captureApi.capturePayment(request, paymentId); + amount = response.getOrderInformation().getAmountDetails().getTotalAmount(); + if (!response.getStatus().getValue().equals(ConstantUtility.PENDING_STATUS)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CAPTURE_PAYMENT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.NOT_PENDING_STATUS, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else if (response.getId() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CAPTURE_PAYMENT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.PAYMENT_ID_NULL, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else { + Assert.assertEquals(columns[2], amount); + CsvUtility.writingToCsv(columns[0], ConstantUtility.CAPTURE_PAYMENT, ConstantUtility.ASSERTION_PASS, + columns[3], response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } + } catch (ApiException e) { + + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject obj = new JSONObject(apiClient.getRespBody()); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.CAPTURE_PAYMENT, ConstantUtility.FAIL, reason, null, + apiClient.getResponseCode(), Boolean.TRUE); + } catch (AssertionError e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CAPTURE_PAYMENT, ConstantUtility.ASSERTION_FAILED, + columns[3], response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CAPTURE_PAYMENT, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/ProcessAuthorizationReversalTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/ProcessAuthorizationReversalTest.java new file mode 100644 index 000000000..30862899a --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/ProcessAuthorizationReversalTest.java @@ -0,0 +1,112 @@ +package qascripts.payments.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.ReversalApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.AuthReversalRequest; +import Model.PtsV2PaymentsReversalsPost201Response; +import Model.Ptsv2paymentsidreversalsClientReferenceInformation; +import Model.Ptsv2paymentsidreversalsReversalInformation; +import Model.Ptsv2paymentsidreversalsReversalInformationAmountDetails; +import au.com.bytecode.opencsv.CSVReader; +import junit.framework.Assert; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class ProcessAuthorizationReversalTest { + + public static void main(String args[]) throws Exception { + ProcessAuthorizationReversalTest processAuthorizationReversalTest = new ProcessAuthorizationReversalTest(); + processAuthorizationReversalTest.process(); + } + + public PtsV2PaymentsReversalsPost201Response process() throws Exception { + + PtsV2PaymentsReversalsPost201Response response = null; + Properties merchantProp; + String amount = null; + String paymentId = null; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Payments\\CoreServices\\ProcessAuthorizationReversal.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + AuthReversalRequest request = null; + + while ((columns = csvReader.readNext()) != null) { + + request = new AuthReversalRequest(); + + paymentId = columns[1]; + Ptsv2paymentsidreversalsClientReferenceInformation client = new Ptsv2paymentsidreversalsClientReferenceInformation(); + client.code("test_reversal"); + request.setClientReferenceInformation(client); + + Ptsv2paymentsidreversalsReversalInformationAmountDetails amountDetails = new Ptsv2paymentsidreversalsReversalInformationAmountDetails(); + amountDetails.totalAmount(columns[2]); + + Ptsv2paymentsidreversalsReversalInformation reversalInformation = new Ptsv2paymentsidreversalsReversalInformation(); + reversalInformation.reason("testing"); + reversalInformation.setAmountDetails(amountDetails); + + request.setReversalInformation(reversalInformation); + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + ReversalApi reversalApi = new ReversalApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = reversalApi.authReversal(paymentId, request); + amount = response.getReversalAmountDetails().getReversedAmount(); + if (!response.getStatus().getValue().equals(ConstantUtility.REVERESED_STATUS)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_AUTHORIZATION_REVERESAL, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.NOT_REVERESED_STATUS, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else if (response.getId() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_AUTHORIZATION_REVERESAL, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.PAYMENT_ID_NULL, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else { + Assert.assertEquals(columns[2], amount); + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_AUTHORIZATION_REVERESAL, ConstantUtility.ASSERTION_PASS, + columns[3], response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject obj = new JSONObject(apiClient.getRespBody()); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_AUTHORIZATION_REVERESAL, ConstantUtility.FAIL, reason, + null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (AssertionError e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_AUTHORIZATION_REVERESAL, ConstantUtility.ASSERTION_FAILED, + columns[3], response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_AUTHORIZATION_REVERESAL, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/ProcessCreditTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/ProcessCreditTest.java new file mode 100644 index 000000000..1370ef2b1 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/ProcessCreditTest.java @@ -0,0 +1,179 @@ +package qascripts.payments.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.CreditApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.CreateCreditRequest; +import Model.PtsV2CreditsPost201Response; +import Model.Ptsv2paymentsClientReferenceInformation; +import Model.Ptsv2paymentsidcapturesAggregatorInformation; +import Model.Ptsv2paymentsidcapturesAggregatorInformationSubMerchant; +import Model.Ptsv2paymentsidcapturesBuyerInformation; +import Model.Ptsv2paymentsidcapturesOrderInformationAmountDetails; +import Model.Ptsv2paymentsidcapturesOrderInformationBillTo; +import Model.Ptsv2paymentsidcapturesOrderInformationInvoiceDetails; +import Model.Ptsv2paymentsidcapturesOrderInformationShippingDetails; +import Model.Ptsv2paymentsidrefundsMerchantInformation; +import Model.Ptsv2paymentsidrefundsOrderInformation; +import Model.Ptsv2paymentsidrefundsPaymentInformation; +import Model.Ptsv2paymentsidrefundsPaymentInformationCard; +import au.com.bytecode.opencsv.CSVReader; +import junit.framework.Assert; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class ProcessCreditTest { + + public static void main(String args[]) throws Exception { + ProcessCreditTest processCreditTest = new ProcessCreditTest(); + processCreditTest.process(); + } + + public PtsV2CreditsPost201Response process() throws Exception { + + PtsV2CreditsPost201Response response = null; + Properties merchantProp; + String amount = null; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Payments\\CoreServices\\ProcessCredit.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + CreateCreditRequest request = null; + + while ((columns = csvReader.readNext()) != null) { + + request = new CreateCreditRequest(); + + Ptsv2paymentsClientReferenceInformation client = new Ptsv2paymentsClientReferenceInformation(); + client.code("test_credits"); + request.setClientReferenceInformation(client); + + Ptsv2paymentsidcapturesBuyerInformation buyerInformation = new Ptsv2paymentsidcapturesBuyerInformation(); + buyerInformation.merchantCustomerId("123456abcd"); + request.buyerInformation(buyerInformation); + + Ptsv2paymentsidcapturesAggregatorInformationSubMerchant subMerchant = new Ptsv2paymentsidcapturesAggregatorInformationSubMerchant(); + + subMerchant.country("US"); + subMerchant.phoneNumber("4158880000"); + subMerchant.address1("1 Market St"); + subMerchant.postalCode("941055"); + subMerchant.locality("san francisco"); + subMerchant.name("Visa Inc"); + subMerchant.administrativeArea("CA"); + subMerchant.email("test@cybs.com"); + + Ptsv2paymentsidcapturesAggregatorInformation aggregatorInformation = new Ptsv2paymentsidcapturesAggregatorInformation(); + aggregatorInformation.subMerchant(subMerchant); + aggregatorInformation.name("V-Internatio"); + aggregatorInformation.aggregatorId("123456789"); + request.setAggregatorInformation(aggregatorInformation); + + Ptsv2paymentsidcapturesOrderInformationShippingDetails shippingDetails = new Ptsv2paymentsidcapturesOrderInformationShippingDetails(); + shippingDetails.shipFromPostalCode("47404"); + + Ptsv2paymentsidcapturesOrderInformationBillTo billTo = new Ptsv2paymentsidcapturesOrderInformationBillTo(); + billTo.country("US"); + billTo.firstName("John"); + billTo.lastName("Deo"); + billTo.phoneNumber("4158880000"); + billTo.address1("1 Market St"); + billTo.postalCode("94105"); + billTo.locality("san francisco"); + billTo.company("Visa"); + billTo.administrativeArea("MI"); + billTo.email("test@cybs.com"); + + Ptsv2paymentsidcapturesOrderInformationInvoiceDetails invoiceDetails = new Ptsv2paymentsidcapturesOrderInformationInvoiceDetails(); + invoiceDetails.purchaseOrderDate("20111231"); + invoiceDetails.purchaseOrderNumber("CREDIT US"); + + Ptsv2paymentsidcapturesOrderInformationAmountDetails amountDetails = new Ptsv2paymentsidcapturesOrderInformationAmountDetails(); + amountDetails.totalAmount(columns[1]); + amountDetails.exchangeRate("0.5"); + amountDetails.exchangeRateTimeStamp("2.01304E+13"); + amountDetails.currency("usd"); + + Ptsv2paymentsidrefundsOrderInformation orderInformation = new Ptsv2paymentsidrefundsOrderInformation(); + orderInformation.shippingDetails(shippingDetails); + orderInformation.billTo(billTo); + orderInformation.invoiceDetails(invoiceDetails); + orderInformation.amountDetails(amountDetails); + request.setOrderInformation(orderInformation); + + Ptsv2paymentsidrefundsMerchantInformation merchantInformation = new Ptsv2paymentsidrefundsMerchantInformation(); + merchantInformation.categoryCode(1234); + request.merchantInformation(merchantInformation); + + Ptsv2paymentsidrefundsPaymentInformationCard card = new Ptsv2paymentsidrefundsPaymentInformationCard(); + card.expirationYear("2031"); + card.number("5555555555554444"); + card.expirationMonth("12"); + card.type("002"); + + Ptsv2paymentsidrefundsPaymentInformation paymentInformation = new Ptsv2paymentsidrefundsPaymentInformation(); + paymentInformation.card(card); + request.setPaymentInformation(paymentInformation); + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + CreditApi creditApi = new CreditApi(merchantConfig); + apiClient=Invokers.Configuration.getDefaultApiClient(); + response = creditApi.createCredit(request); + amount = response.getCreditAmountDetails().getCreditAmount(); + if (!response.getStatus().getValue().equals(ConstantUtility.PENDING_STATUS)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_CREDIT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.NOT_PENDING_STATUS, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else if (response.getId() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_CREDIT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.PAYMENT_ID_NULL, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else { + Assert.assertEquals(columns[1], amount); + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_CREDIT, ConstantUtility.ASSERTION_PASS, + columns[2], response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } + } + + catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject obj = new JSONObject(apiClient.getRespBody()); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_CREDIT, ConstantUtility.FAIL, reason, null, + apiClient.getResponseCode(), Boolean.TRUE); + } catch (AssertionError e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_CREDIT, ConstantUtility.ASSERTION_FAILED, + columns[2], response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_CREDIT, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/ProcessPaymentTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/ProcessPaymentTest.java new file mode 100644 index 000000000..69bc79eb4 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/ProcessPaymentTest.java @@ -0,0 +1,138 @@ +package qascripts.payments.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.PaymentsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.CreatePaymentRequest; +import Model.PtsV2PaymentsPost201Response; +import Model.Ptsv2paymentsClientReferenceInformation; +import Model.Ptsv2paymentsOrderInformation; +import Model.Ptsv2paymentsOrderInformationAmountDetails; +import Model.Ptsv2paymentsOrderInformationBillTo; +import Model.Ptsv2paymentsPaymentInformation; +import Model.Ptsv2paymentsPaymentInformationCard; +import Model.Ptsv2paymentsPointOfSaleInformation; +import au.com.bytecode.opencsv.CSVReader; +import junit.framework.Assert; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class ProcessPaymentTest { + + public static void main(String args[]) throws Exception { + ProcessPaymentTest processPaymentTest = new ProcessPaymentTest(); + processPaymentTest.process(); + } + + public PtsV2PaymentsPost201Response process() throws Exception { + PtsV2PaymentsPost201Response response = null; + Properties merchantProp; + String amount = null; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Payments\\CoreServices\\ProcessPayment.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + CreatePaymentRequest request = null; + while ((columns = csvReader.readNext()) != null) { + + request = new CreatePaymentRequest(); + + Ptsv2paymentsClientReferenceInformation client = new Ptsv2paymentsClientReferenceInformation(); + client.code("test_payment"); + request.clientReferenceInformation(client); + + Ptsv2paymentsPointOfSaleInformation saleInformation = new Ptsv2paymentsPointOfSaleInformation(); + saleInformation.cardPresent(false); + saleInformation.catLevel(6); + saleInformation.terminalCapability(4); + request.pointOfSaleInformation(saleInformation); + + Ptsv2paymentsOrderInformationBillTo billTo = new Ptsv2paymentsOrderInformationBillTo(); + billTo.country("US"); + billTo.firstName("John"); + billTo.lastName("Deo"); + billTo.address1("1 Market St"); + billTo.postalCode("94105"); + billTo.locality("san francisco"); + billTo.administrativeArea("CA"); + billTo.email("test@cybs.com"); + + Ptsv2paymentsOrderInformationAmountDetails amountDetails = new Ptsv2paymentsOrderInformationAmountDetails(); + amountDetails.totalAmount(columns[1]); + amountDetails.currency("USD"); + + Ptsv2paymentsOrderInformation orderInformation = new Ptsv2paymentsOrderInformation(); + orderInformation.billTo(billTo); + orderInformation.amountDetails(amountDetails); + request.setOrderInformation(orderInformation); + + Ptsv2paymentsPaymentInformationCard card = new Ptsv2paymentsPaymentInformationCard(); + card.expirationYear("2031"); + card.number("4111111111111111"); + card.securityCode("123"); + card.expirationMonth("12"); + + Ptsv2paymentsPaymentInformation paymentInformation = new Ptsv2paymentsPaymentInformation(); + paymentInformation.card(card); + request.setPaymentInformation(paymentInformation); + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + PaymentsApi paymentApi = new PaymentsApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = paymentApi.createPayment(request); + amount = response.getOrderInformation().getAmountDetails().getAuthorizedAmount(); + if (!response.getStatus().getValue().equals(ConstantUtility.AUTHORIZED_STATUS)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_PAYMENT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.UN_AUTHORIZED, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else if (response.getId() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_PAYMENT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.PAYMENT_ID_NULL, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else { + Assert.assertEquals(columns[1], amount); + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_PAYMENT, ConstantUtility.ASSERTION_PASS, + columns[2], response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject obj = new JSONObject(apiClient.getRespBody()); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_PAYMENT, ConstantUtility.FAIL, reason, null, + apiClient.getResponseCode(), Boolean.TRUE); + } catch (AssertionError e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_PAYMENT, ConstantUtility.ASSERTION_FAILED, + columns[2], response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_PAYMENT, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + } + +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/RefundCaptureTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/RefundCaptureTest.java new file mode 100644 index 000000000..ee7fea2e7 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/RefundCaptureTest.java @@ -0,0 +1,174 @@ +package qascripts.payments.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.net.SocketTimeoutException; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.RefundApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.PtsV2PaymentsRefundPost201Response; +import Model.Ptsv2paymentsClientReferenceInformation; +import Model.Ptsv2paymentsidcapturesAggregatorInformation; +import Model.Ptsv2paymentsidcapturesAggregatorInformationSubMerchant; +import Model.Ptsv2paymentsidcapturesBuyerInformation; +import Model.Ptsv2paymentsidcapturesOrderInformationAmountDetails; +import Model.Ptsv2paymentsidcapturesOrderInformationBillTo; +import Model.Ptsv2paymentsidcapturesOrderInformationInvoiceDetails; +import Model.Ptsv2paymentsidcapturesOrderInformationShippingDetails; +import Model.Ptsv2paymentsidrefundsMerchantInformation; +import Model.Ptsv2paymentsidrefundsOrderInformation; +import Model.RefundCaptureRequest; +import au.com.bytecode.opencsv.CSVReader; +import junit.framework.Assert; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class RefundCaptureTest { + + public static void main(String args[]) throws Exception { + RefundCaptureTest refundCaptureTest = new RefundCaptureTest(); + refundCaptureTest.process(); + } + + public PtsV2PaymentsRefundPost201Response process() throws Exception { + + PtsV2PaymentsRefundPost201Response response = null; + Properties merchantProp; + String amount = null; + String captureId = null; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Payments\\CoreServices\\RefundCapture.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + RefundCaptureRequest request = null; + + while ((columns = csvReader.readNext()) != null) { + + request = new RefundCaptureRequest(); + + captureId = columns[1]; + + Ptsv2paymentsClientReferenceInformation client = new Ptsv2paymentsClientReferenceInformation(); + client.code("test_refund_capture"); + request.setClientReferenceInformation(client); + + Ptsv2paymentsidcapturesBuyerInformation buyerInformation = new Ptsv2paymentsidcapturesBuyerInformation(); + buyerInformation.merchantCustomerId("123456abcd"); + request.buyerInformation(buyerInformation); + + Ptsv2paymentsidcapturesAggregatorInformationSubMerchant subMerchant = new Ptsv2paymentsidcapturesAggregatorInformationSubMerchant(); + + subMerchant.country("US"); + subMerchant.phoneNumber("4158880000"); + subMerchant.address1("1 Market St"); + subMerchant.postalCode("94105"); + subMerchant.locality("san francisco"); + subMerchant.name("Visa Inc"); + subMerchant.administrativeArea("CA"); + subMerchant.email("test@cybs.com"); + + Ptsv2paymentsidcapturesAggregatorInformation aggregatorInformation = new Ptsv2paymentsidcapturesAggregatorInformation(); + aggregatorInformation.subMerchant(subMerchant); + aggregatorInformation.name("V-Internatio"); + aggregatorInformation.aggregatorId("123456789"); + request.setAggregatorInformation(aggregatorInformation); + + Ptsv2paymentsidcapturesOrderInformationShippingDetails shippingDetails = new Ptsv2paymentsidcapturesOrderInformationShippingDetails(); + shippingDetails.shipFromPostalCode("47404"); + + Ptsv2paymentsidcapturesOrderInformationBillTo billTo = new Ptsv2paymentsidcapturesOrderInformationBillTo(); + billTo.country("US"); + billTo.firstName("John"); + billTo.lastName("Deo"); + billTo.phoneNumber("9999999"); + billTo.address2("Foster City"); + billTo.address1("1 Market St"); + billTo.postalCode("94105"); + billTo.locality("Ann Arbor"); + billTo.company("Visa"); + billTo.administrativeArea("MI"); + billTo.email("test@cybs.com"); + + Ptsv2paymentsidcapturesOrderInformationInvoiceDetails invoiceDetails = new Ptsv2paymentsidcapturesOrderInformationInvoiceDetails(); + invoiceDetails.purchaseOrderDate("20111231"); + invoiceDetails.purchaseOrderNumber("CREDIT US"); + + Ptsv2paymentsidcapturesOrderInformationAmountDetails amountDetails = new Ptsv2paymentsidcapturesOrderInformationAmountDetails(); + amountDetails.totalAmount(columns[2]); + amountDetails.exchangeRate("0.5"); + amountDetails.exchangeRateTimeStamp("2.01304E+13"); + amountDetails.currency("usd"); + + Ptsv2paymentsidrefundsOrderInformation orderInformation = new Ptsv2paymentsidrefundsOrderInformation(); + orderInformation.shippingDetails(shippingDetails); + orderInformation.billTo(billTo); + orderInformation.invoiceDetails(invoiceDetails); + orderInformation.amountDetails(amountDetails); + request.setOrderInformation(orderInformation); + + Ptsv2paymentsidrefundsMerchantInformation merchantInformation = new Ptsv2paymentsidrefundsMerchantInformation(); + merchantInformation.categoryCode(1234); + request.merchantInformation(merchantInformation); + + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + RefundApi refundApi = new RefundApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = refundApi.refundCapture(request, captureId); + amount = response.getRefundAmountDetails().getRefundAmount(); + if (!response.getStatus().getValue().equals(ConstantUtility.PENDING_STATUS)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.REFUND_CAPTURE, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.NOT_PENDING_STATUS, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else if (response.getId() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.REFUND_CAPTURE, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.PAYMENT_ID_NULL, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else { + Assert.assertEquals(columns[2], amount); + CsvUtility.writingToCsv(columns[0], ConstantUtility.REFUND_CAPTURE, ConstantUtility.ASSERTION_PASS, + columns[3], response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } + } + + catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason =columns[3]; + apiClient.setResponseCode("404"); + } else { + JSONObject obj = new JSONObject(apiClient.getRespBody()); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.REFUND_CAPTURE, ConstantUtility.FAIL, reason, null, + apiClient.getResponseCode(), Boolean.TRUE); + } catch (AssertionError e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.REFUND_CAPTURE, ConstantUtility.ASSERTION_FAILED, + columns[3], response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.REFUND_CAPTURE, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/RefundPaymentTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/RefundPaymentTest.java new file mode 100644 index 000000000..6d3f137b3 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/RefundPaymentTest.java @@ -0,0 +1,116 @@ +package qascripts.payments.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.RefundApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.PtsV2PaymentsRefundPost201Response; +import Model.Ptsv2paymentsClientReferenceInformation; +import Model.Ptsv2paymentsidcapturesOrderInformationAmountDetails; +import Model.Ptsv2paymentsidrefundsOrderInformation; +import Model.RefundPaymentRequest; +import au.com.bytecode.opencsv.CSVReader; +import junit.framework.Assert; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class RefundPaymentTest { + + public static void main(String args[]) throws Exception { + RefundPaymentTest refundPaymentTest =new RefundPaymentTest(); + refundPaymentTest.process(); + } + + public PtsV2PaymentsRefundPost201Response process() throws Exception { + + PtsV2PaymentsRefundPost201Response response = null; + Properties merchantProp; + String amount = null; + String paymentId = null; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Payments\\CoreServices\\RefundPayment.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + RefundPaymentRequest request = null; + + while ((columns = csvReader.readNext()) != null) { + + request = new RefundPaymentRequest(); + + paymentId = columns[1]; + + Ptsv2paymentsClientReferenceInformation client = new Ptsv2paymentsClientReferenceInformation(); + client.code("test_refund_payment"); + request.setClientReferenceInformation(client); + + Ptsv2paymentsidcapturesOrderInformationAmountDetails amountDetails = new Ptsv2paymentsidcapturesOrderInformationAmountDetails(); + amountDetails.totalAmount(columns[2]); + amountDetails.currency("USD"); + + Ptsv2paymentsidrefundsOrderInformation orderInformation = new Ptsv2paymentsidrefundsOrderInformation(); + orderInformation.amountDetails(amountDetails); + request.setOrderInformation(orderInformation); + + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + RefundApi refundApi = new RefundApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = refundApi.refundPayment(request, paymentId); + amount = response.getRefundAmountDetails().getRefundAmount(); + if (!response.getStatus().getValue().equals(ConstantUtility.PENDING_STATUS)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.REFUND_PAYMENT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.NOT_PENDING_STATUS, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else if (response.getId() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.REFUND_PAYMENT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.PAYMENT_ID_NULL, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else { + Assert.assertEquals(columns[2], amount); + CsvUtility.writingToCsv(columns[0], ConstantUtility.REFUND_PAYMENT, ConstantUtility.ASSERTION_PASS, + columns[3], response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } + } + + catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason =columns[3]; + apiClient.setResponseCode("404"); + } else { + JSONObject obj = new JSONObject(apiClient.getRespBody()); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.REFUND_PAYMENT, ConstantUtility.FAIL, reason, null, + apiClient.getResponseCode(), Boolean.TRUE); + } catch (AssertionError e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.REFUND_PAYMENT, ConstantUtility.ASSERTION_FAILED, + columns[3], response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.REFUND_PAYMENT, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/VoidCaptureTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/VoidCaptureTest.java new file mode 100644 index 000000000..aba27bf75 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/VoidCaptureTest.java @@ -0,0 +1,94 @@ +package qascripts.payments.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.VoidApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.PtsV2PaymentsVoidsPost201Response; +import Model.Ptsv2paymentsidreversalsClientReferenceInformation; +import Model.VoidCaptureRequest; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class VoidCaptureTest { + + public static void main(String args[]) throws Exception { + VoidCaptureTest voidCaptureTest = new VoidCaptureTest(); + voidCaptureTest.process(); + } + + public PtsV2PaymentsVoidsPost201Response process() throws Exception { + + PtsV2PaymentsVoidsPost201Response response = null; + Properties merchantProp; + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Payments\\CoreServices\\VoidCapture.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + VoidCaptureRequest request = null; + + while ((columns = csvReader.readNext()) != null) { + + request = new VoidCaptureRequest(); + Ptsv2paymentsidreversalsClientReferenceInformation client = new Ptsv2paymentsidreversalsClientReferenceInformation(); + client.code("test_capture_void"); + request.setClientReferenceInformation(client); + + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + VoidApi voidApi = new VoidApi(merchantConfig); + apiClient=Invokers.Configuration.getDefaultApiClient(); + response = voidApi.voidCapture(request, columns[1]); + if (!response.getStatus().getValue().equals(ConstantUtility.VOIDED_STATUS)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_CAPTURE, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.NOT_VOIDED_STATUS, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else if (response.getId() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_CAPTURE, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.PAYMENT_ID_NULL, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_CAPTURE, ConstantUtility.ASSERTION_PASS, + columns[3], response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } + } + + catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason =columns[3]; + apiClient.setResponseCode("404"); + } else { + JSONObject obj = new JSONObject(apiClient.getRespBody()); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_CAPTURE, ConstantUtility.FAIL, reason, null, + apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_CAPTURE, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/VoidCreditTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/VoidCreditTest.java new file mode 100644 index 000000000..db5140527 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/VoidCreditTest.java @@ -0,0 +1,94 @@ +package qascripts.payments.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.VoidApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.PtsV2PaymentsVoidsPost201Response; +import Model.Ptsv2paymentsidreversalsClientReferenceInformation; +import Model.VoidCreditRequest; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class VoidCreditTest { + + public static void main(String args[]) throws Exception { + VoidCreditTest voidCreditTest = new VoidCreditTest(); + voidCreditTest.process(); + } + + public PtsV2PaymentsVoidsPost201Response process() throws Exception { + + PtsV2PaymentsVoidsPost201Response response = null; + Properties merchantProp; + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Payments\\CoreServices\\VoidCredit.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + VoidCreditRequest request = null; + + while ((columns = csvReader.readNext()) != null) { + + request = new VoidCreditRequest(); + Ptsv2paymentsidreversalsClientReferenceInformation client = new Ptsv2paymentsidreversalsClientReferenceInformation(); + client.code("test_credit_void"); + request.setClientReferenceInformation(client); + + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + VoidApi voidApi = new VoidApi(merchantConfig); + apiClient=Invokers.Configuration.getDefaultApiClient(); + response = voidApi.voidCredit(request, columns[1]); + if (!response.getStatus().getValue().equals(ConstantUtility.VOIDED_STATUS)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_CREDIT, ConstantUtility.ASSERTION_FAILED, + ConstantUtility.NOT_VOIDED_STATUS, response.getId(), apiClient.getResponseCode(), + Boolean.TRUE); + } else if (response.getId() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_CREDIT, ConstantUtility.ASSERTION_FAILED, + ConstantUtility.PAYMENT_ID_NULL, response.getId(), apiClient.getResponseCode(), + Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_CREDIT, ConstantUtility.ASSERTION_PASS, + columns[3], response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } + } + + catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason =columns[3]; + apiClient.setResponseCode("404"); + } else { + JSONObject obj = new JSONObject(apiClient.getRespBody()); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_CREDIT, ConstantUtility.FAIL, reason, null, + apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_CREDIT, ConstantUtility.FAIL, e.getMessage(), + null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/VoidPaymentTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/VoidPaymentTest.java new file mode 100644 index 000000000..d5b18df25 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/VoidPaymentTest.java @@ -0,0 +1,96 @@ +package qascripts.payments.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.VoidApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.PtsV2PaymentsVoidsPost201Response; +import Model.Ptsv2paymentsidreversalsClientReferenceInformation; +import Model.VoidPaymentRequest; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class VoidPaymentTest { + + public static void main(String args[]) throws Exception { + VoidPaymentTest voidPaymentTest = new VoidPaymentTest(); + voidPaymentTest.process(); + } + + public PtsV2PaymentsVoidsPost201Response process() throws Exception { + + PtsV2PaymentsVoidsPost201Response response = null; + Properties merchantProp; + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Payments\\CoreServices\\VoidPayment.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + VoidPaymentRequest request = null; + + while ((columns = csvReader.readNext()) != null) { + + request = new VoidPaymentRequest(); + Ptsv2paymentsidreversalsClientReferenceInformation client = new Ptsv2paymentsidreversalsClientReferenceInformation(); + client.code("test_payment_void"); + request.setClientReferenceInformation(client); + + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + // ApiClient.respBody + VoidApi voidApi = new VoidApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = voidApi.voidPayment(request, columns[1]); + + if (!response.getStatus().getValue().equals(ConstantUtility.VOIDED_STATUS)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_PAYMENT, ConstantUtility.ASSERTION_FAILED, + ConstantUtility.NOT_VOIDED_STATUS, response.getId(), apiClient.getResponseCode(), + Boolean.TRUE); + } else if (response.getId() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_PAYMENT, ConstantUtility.ASSERTION_FAILED, + ConstantUtility.PAYMENT_ID_NULL, response.getId(), apiClient.getResponseCode(), + Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_PAYMENT, ConstantUtility.ASSERTION_PASS, + columns[3], response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } + } + + catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason =columns[3]; + apiClient.setResponseCode("404"); + } else { + JSONObject obj = new JSONObject(apiClient.getRespBody()); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_PAYMENT, ConstantUtility.FAIL, reason, null, + apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_PAYMENT, ConstantUtility.FAIL, e.getMessage(), + null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/VoidRefundTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/VoidRefundTest.java new file mode 100644 index 000000000..abac5c6bf --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payments/coreServices/VoidRefundTest.java @@ -0,0 +1,94 @@ +package qascripts.payments.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.VoidApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.PtsV2PaymentsVoidsPost201Response; +import Model.Ptsv2paymentsidreversalsClientReferenceInformation; +import Model.VoidRefundRequest; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class VoidRefundTest { + + public static void main(String args[]) throws Exception { + VoidRefundTest voidRefundTest = new VoidRefundTest(); + voidRefundTest.process(); + } + + public PtsV2PaymentsVoidsPost201Response process() throws Exception { + + PtsV2PaymentsVoidsPost201Response response = null; + Properties merchantProp; + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Payments\\CoreServices\\VoidRefund.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + VoidRefundRequest request = null; + + while ((columns = csvReader.readNext()) != null) { + + request = new VoidRefundRequest(); + Ptsv2paymentsidreversalsClientReferenceInformation client = new Ptsv2paymentsidreversalsClientReferenceInformation(); + client.code("test_refund_void"); + request.setClientReferenceInformation(client); + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + VoidApi voidApi = new VoidApi(merchantConfig); + apiClient=Invokers.Configuration.getDefaultApiClient(); + response = voidApi.voidRefund(request, columns[1]); + + if (!response.getStatus().getValue().equals(ConstantUtility.VOIDED_STATUS)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_REFUND, ConstantUtility.ASSERTION_FAILED, + ConstantUtility.NOT_VOIDED_STATUS, response.getId(), apiClient.getResponseCode(), + Boolean.TRUE); + } else if (response.getId() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_REFUND, ConstantUtility.ASSERTION_FAILED, + ConstantUtility.PAYMENT_ID_NULL, response.getId(), apiClient.getResponseCode(), + Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_REFUND, ConstantUtility.ASSERTION_PASS, + columns[3], response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } + } + + catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason =columns[3]; + apiClient.setResponseCode("404"); + } else { + JSONObject obj = new JSONObject(apiClient.getRespBody()); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_REFUND, ConstantUtility.FAIL, reason, null, + apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.VOID_REFUND, ConstantUtility.FAIL, e.getMessage(), + null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payouts/coreServices/ProcessPayoutTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payouts/coreServices/ProcessPayoutTest.java new file mode 100644 index 000000000..498c77b8e --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/payouts/coreServices/ProcessPayoutTest.java @@ -0,0 +1,170 @@ +package qascripts.payouts.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.ProcessAPayoutApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.PtsV2PaymentsPost201ResponseClientReferenceInformation; +import Model.PtsV2PayoutsPostResponse; +import Model.Ptsv2payoutsMerchantInformation; +import Model.Ptsv2payoutsMerchantInformationMerchantDescriptor; +import Model.Ptsv2payoutsOrderInformation; +import Model.Ptsv2payoutsOrderInformationAmountDetails; +import Model.Ptsv2payoutsPaymentInformation; +import Model.Ptsv2payoutsPaymentInformationCard; +import Model.Ptsv2payoutsProcessingInformation; +import Model.Ptsv2payoutsRecipientInformation; +import Model.Ptsv2payoutsSenderInformation; +import Model.Ptsv2payoutsSenderInformationAccount; +import au.com.bytecode.opencsv.CSVReader; +import junit.framework.Assert; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class ProcessPayoutTest { + + public static void main(String args[]) throws Exception { + ProcessPayoutTest processPayoutTest = new ProcessPayoutTest(); + processPayoutTest.process(); + } + + public void process() throws Exception { + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Payouts\\CoreServices\\CreatePayout.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + PtsV2PayoutsPostResponse request = null; + + while ((columns = csvReader.readNext()) != null) { + + request = new PtsV2PayoutsPostResponse(); + + PtsV2PaymentsPost201ResponseClientReferenceInformation client = new PtsV2PaymentsPost201ResponseClientReferenceInformation(); + client.code(columns[1]); + request.clientReferenceInformation(client); + + Ptsv2payoutsSenderInformationAccount account = new Ptsv2payoutsSenderInformationAccount(); + account.number("1234567890123456789012345678901234"); + account.fundsSource("01"); + + Ptsv2payoutsSenderInformation senderInformation = new Ptsv2payoutsSenderInformation(); + senderInformation.referenceNumber("1234567890"); + senderInformation.address1("900 Metro Center Blvd.900"); + senderInformation.countryCode("US"); + senderInformation.locality("Foster City"); + senderInformation.name("Thomas Jefferson"); + senderInformation.administrativeArea("CA"); + request.senderInformation(senderInformation); + + Ptsv2payoutsProcessingInformation processingInformation = new Ptsv2payoutsProcessingInformation(); + processingInformation.commerceIndicator("internet"); + processingInformation.businessApplicationId(columns[2]); + processingInformation.networkRoutingOrder("ECG"); + request.processingInformation(processingInformation); + + Ptsv2payoutsOrderInformationAmountDetails amountDetails = new Ptsv2payoutsOrderInformationAmountDetails(); + amountDetails.totalAmount(columns[3]); + amountDetails.currency("USD"); + + Ptsv2payoutsOrderInformation orderInformation = new Ptsv2payoutsOrderInformation(); + orderInformation.amountDetails(amountDetails); + request.orderInformation(orderInformation); + + Ptsv2payoutsMerchantInformationMerchantDescriptor merchantDescriptor = new Ptsv2payoutsMerchantInformationMerchantDescriptor(); + merchantDescriptor.country("US"); + merchantDescriptor.postalCode("94440"); + merchantDescriptor.locality("FC"); + merchantDescriptor.name("Thomas"); + merchantDescriptor.administrativeArea("CA"); + + Ptsv2payoutsMerchantInformation merchantInformation = new Ptsv2payoutsMerchantInformation(); + merchantInformation.categoryCode(123); + merchantInformation.merchantDescriptor(merchantDescriptor); + request.merchantInformation(merchantInformation); + + Ptsv2payoutsPaymentInformationCard card = new Ptsv2payoutsPaymentInformationCard(); + card.expirationYear("2025"); + card.number("4111111111111111"); + card.expirationMonth("12"); + card.type("001"); + card.sourceAccountType("CH"); + + Ptsv2payoutsPaymentInformation paymentInformation = new Ptsv2payoutsPaymentInformation(); + paymentInformation.card(card); + request.paymentInformation(paymentInformation); + + Ptsv2payoutsRecipientInformation recipientInformation = new Ptsv2payoutsRecipientInformation(); + recipientInformation.firstName("John"); + recipientInformation.lastName("Deo"); + recipientInformation.address1("Paseo Padre Boulevard"); + recipientInformation.locality("Foster City"); + recipientInformation.administrativeArea("CA"); + recipientInformation.postalCode("94400"); + recipientInformation.phoneNumber("6504320556"); + recipientInformation.country("US"); + request.recipientInformation(recipientInformation); + ApiClient apiClient = null; + String respId= null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + ProcessAPayoutApi payoutApi = new ProcessAPayoutApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + payoutApi.octCreatePayment(request); + JSONObject obj = new JSONObject(apiClient.getRespBody()); + respId = obj.getString("id"); + String amount = new JSONObject(apiClient.getRespBody()).getJSONObject("orderInformation").getJSONObject("amountDetails").getString("totalAmount"); + if (!obj.getString("status").equals(ConstantUtility.ACCEPTED_STATUS)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_PAYOUT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.NOT_ACCEPTED_STATUS, respId, + apiClient.getResponseCode(), Boolean.TRUE); + } else if (respId == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_PAYOUT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.PAYMENT_ID_NULL, respId, + apiClient.getResponseCode(), Boolean.TRUE); + } else { + Assert.assertEquals(columns[3], amount); + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_PAYOUT, ConstantUtility.ASSERTION_PASS, + columns[4], respId, apiClient.getResponseCode(), Boolean.TRUE); + } + } + + catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject obj = new JSONObject(apiClient.getRespBody()); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_PAYOUT, ConstantUtility.FAIL, reason, null, + apiClient.getResponseCode(), Boolean.TRUE); + } catch (AssertionError e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_PAYOUT, ConstantUtility.ASSERTION_FAILED, + columns[4], respId, apiClient.getResponseCode(), Boolean.TRUE); + }catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.PROCESS_PAYOUT, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/CreateAdhocReportTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/CreateAdhocReportTest.java new file mode 100644 index 000000000..f7c489661 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/CreateAdhocReportTest.java @@ -0,0 +1,119 @@ +package qascripts.reporting.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.ArrayList; +import java.util.List; +import java.util.Properties; + +import org.joda.time.DateTime; +import org.joda.time.DateTimeZone; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.ReportsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Invokers.ApiResponse; +import Model.ReportingV3ReportSubscriptionsGet200ResponseReportPreferences; +import Model.ReportingV3ReportSubscriptionsGet200ResponseReportPreferences.FieldNameConventionEnum; +import Model.ReportingV3ReportsIdGet200Response; +import Model.RequestBody1; +import Model.RequestBody1.ReportMimeTypeEnum; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class CreateAdhocReportTest { + + public static void main(String args[]) throws Exception { + CreateAdhocReportTest createAdhocReportTest = new CreateAdhocReportTest(); + createAdhocReportTest.process(); + } + + public ApiResponse process() throws Exception { + ApiResponse response = null; + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Reporting\\CoreServices\\CreateAdhocReport.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + RequestBody1 request = null; + while ((columns = csvReader.readNext()) != null) { + request = new RequestBody1(); + + request.reportDefinitionName(columns[1]); + request.timezone("GMT"); + request.reportMimeType(ReportMimeTypeEnum.APPLICATION_XML); + request.reportName(columns[2]); + + String timeString = columns[3]; + DateTime ddateTime = new DateTime(timeString); + DateTime startTime = ddateTime.withZone(DateTimeZone.forID("Asia/Dushanbe")); + request.reportStartTime(startTime); + + String timeString2 = columns[4]; + DateTime ddateTime2 = new DateTime(timeString2); + DateTime endTime = ddateTime2.withZone(DateTimeZone.forID("Asia/Dushanbe")); + request.reportEndTime(endTime); + + ReportingV3ReportSubscriptionsGet200ResponseReportPreferences reportPreferences = new ReportingV3ReportSubscriptionsGet200ResponseReportPreferences(); + reportPreferences.signedAmounts(true); + reportPreferences.fieldNameConvention(FieldNameConventionEnum.SOAPI); + request.reportPreferences(reportPreferences); + + List reportFields = new ArrayList(); + reportFields.add("Request.RequestID"); + reportFields.add("Request.TransactionDate"); + reportFields.add("Request.MerchantID"); + + request.reportFields(reportFields); + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + ReportsApi ReportsApi = new ReportsApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + ReportsApi.createReport(request); + + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_ADHOC_REPORTS, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, null, + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_ADHOC_REPORTS, + ConstantUtility.ASSERTION_PASS, columns[5], null, apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + JSONObject obj = jsonObject.getJSONArray("fields").getJSONObject(0); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_ADHOC_REPORTS, ConstantUtility.FAIL, reason, + null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_ADHOC_REPORTS, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/CreateReportSubscriptionForReportNameByOrganizationTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/CreateReportSubscriptionForReportNameByOrganizationTest.java new file mode 100644 index 000000000..7a47d68e1 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/CreateReportSubscriptionForReportNameByOrganizationTest.java @@ -0,0 +1,98 @@ +package qascripts.reporting.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.ArrayList; +import java.util.List; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.ReportSubscriptionsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.RequestBody; +import Model.RequestBody.ReportMimeTypeEnum; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class CreateReportSubscriptionForReportNameByOrganizationTest { + + public static void main(String args[]) throws Exception { + CreateReportSubscriptionForReportNameByOrganizationTest createReportSubscriptionForReportNameByOrganizationTest = new CreateReportSubscriptionForReportNameByOrganizationTest(); + createReportSubscriptionForReportNameByOrganizationTest.process(); + } + + public void process() throws Exception { + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Reporting\\CoreServices\\CreateReportSubscriptionForReportNameByOrganization.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + RequestBody request = null; + while ((columns = csvReader.readNext()) != null) { + request = new RequestBody(); + + request.reportDefinitionName(columns[1]); + + List reportFields = new ArrayList(); + reportFields.add("Request.RequestID"); + reportFields.add("Request.TransactionDate"); + reportFields.add("Request.MerchantID"); + request.reportFields(reportFields); + + request.reportFrequency(columns[3]); + request.startDay(1); + request.startTime("0959"); + + request.reportMimeType(ReportMimeTypeEnum.TEXT_CSV); + request.reportName(columns[2]); + request.timezone("America/Chicago"); + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + ReportSubscriptionsApi reportSubscriptionsApi = new ReportSubscriptionsApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + reportSubscriptionsApi.createSubscription(request); + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_REPORT_SUBSCRIPTION_FOR_REPORT_NAME_BY_ORG, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, null, + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_REPORT_SUBSCRIPTION_FOR_REPORT_NAME_BY_ORG, + ConstantUtility.ASSERTION_PASS, columns[4], null, apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + JSONObject obj = jsonObject.getJSONArray("fields").getJSONObject(0); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_REPORT_SUBSCRIPTION_FOR_REPORT_NAME_BY_ORG, ConstantUtility.FAIL, + reason, null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_REPORT_SUBSCRIPTION_FOR_REPORT_NAME_BY_ORG, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + + } +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/DeleteSubscriptionOfReportNameByOrganizationTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/DeleteSubscriptionOfReportNameByOrganizationTest.java new file mode 100644 index 000000000..68f9bfda2 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/DeleteSubscriptionOfReportNameByOrganizationTest.java @@ -0,0 +1,77 @@ +package qascripts.reporting.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.ReportSubscriptionsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class DeleteSubscriptionOfReportNameByOrganizationTest { + + public static void main(String args[]) throws Exception { + DeleteSubscriptionOfReportNameByOrganizationTest deleteSubscriptionOfReportNameByOrganizationTest = new DeleteSubscriptionOfReportNameByOrganizationTest(); + deleteSubscriptionOfReportNameByOrganizationTest.process(); + } + + public void process() throws Exception { + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Reporting\\CoreServices\\DeleteSubscriptionOfReportNameByOrganization.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + ReportSubscriptionsApi reportSubscriptionsApi = new ReportSubscriptionsApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + reportSubscriptionsApi.deleteSubscription(columns[1]); + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], + ConstantUtility.DELETE_SUBSCRIPTION_OF_REPORT_NAME_BY_ORG, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, null, + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], + ConstantUtility.DELETE_SUBSCRIPTION_OF_REPORT_NAME_BY_ORG, + ConstantUtility.ASSERTION_PASS, columns[2], null, apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + reason = jsonObject.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.DELETE_SUBSCRIPTION_OF_REPORT_NAME_BY_ORG, + ConstantUtility.FAIL, reason, null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.DELETE_SUBSCRIPTION_OF_REPORT_NAME_BY_ORG, + ConstantUtility.FAIL, e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + + } +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/DownloadReportTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/DownloadReportTest.java new file mode 100644 index 000000000..48ebb05d0 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/DownloadReportTest.java @@ -0,0 +1,103 @@ +package qascripts.reporting.coreServices; + +import java.io.BufferedReader; +import java.io.BufferedWriter; +import java.io.ByteArrayInputStream; +import java.io.ByteArrayOutputStream; +import java.io.File; +import java.io.FileReader; +import java.io.FileWriter; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.nio.charset.StandardCharsets; +import java.util.Properties; + +import org.joda.time.LocalDate; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.ReportDownloadsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class DownloadReportTest { + + public static void main(String args[]) throws Exception { + DownloadReportTest downloadReportTest = new DownloadReportTest(); + downloadReportTest.process(); + } + + public void process() throws Exception { + Properties merchantProp; + String resourceFile = "DownloadReport"; + final String FILE_PATH = "src/test/resources/"; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Reporting\\CoreServices\\DownloadReport.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + LocalDate reportDate = new LocalDate(columns[3]); + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + ReportDownloadsApi downloadsApi = new ReportDownloadsApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + downloadsApi.downloadReportWithHttpInfo(reportDate, columns[2], columns[1]); + InputStream stream = new ByteArrayInputStream( + apiClient.getResponseBody().getBytes(StandardCharsets.UTF_8)); + + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + org.apache.commons.io.IOUtils.copy(stream, baos); + byte[] bytes = baos.toByteArray(); + BufferedReader br = new BufferedReader(new InputStreamReader((new ByteArrayInputStream(bytes)))); + + String output; + String reportType = "csv"; + while ((output = br.readLine()) != null) { + if (output.contains("xml")) { + reportType = "xml"; + } + } + BufferedReader br_write = new BufferedReader(new InputStreamReader((new ByteArrayInputStream(bytes)))); + BufferedWriter bw = new BufferedWriter( + new FileWriter(new File(FILE_PATH + resourceFile + "." + reportType))); + while ((output = br_write.readLine()) != null) { + bw.write(output + "\n"); + } + bw.close(); + + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.DOWNLOAD_REPORT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, null, + apiClient.getResponseCode(), Boolean.TRUE); + } else if (apiClient.getResponseBody() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.DOWNLOAD_REPORT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.FILE_CONTENT_NULL, null, + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.DOWNLOAD_REPORT, ConstantUtility.ASSERTION_PASS, + columns[4], null, apiClient.getResponseCode(), Boolean.TRUE); + } + } catch (ApiException e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.DOWNLOAD_REPORT, ConstantUtility.FAIL, columns[4], null, + apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.DOWNLOAD_REPORT, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetAllSubscriptionsTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetAllSubscriptionsTest.java new file mode 100644 index 000000000..f20285d28 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetAllSubscriptionsTest.java @@ -0,0 +1,79 @@ +package qascripts.reporting.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.ReportSubscriptionsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.ReportingV3ReportSubscriptionsGet200Response; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class GetAllSubscriptionsTest { + + public static void main(String args[]) throws Exception { + GetAllSubscriptionsTest getAllSubscriptionsTest = new GetAllSubscriptionsTest(); + getAllSubscriptionsTest.process(); + } + + public ReportingV3ReportSubscriptionsGet200Response process() throws Exception { + ReportingV3ReportSubscriptionsGet200Response response = null; + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Reporting\\CoreServices\\GetAllSubscriptions.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + ReportSubscriptionsApi reportSubscriptionsApi = new ReportSubscriptionsApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = reportSubscriptionsApi.getAllSubscriptions(); + + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_ALL_SUBSCRIPTION, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, + null, apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_ALL_SUBSCRIPTION, + ConstantUtility.ASSERTION_PASS, columns[1], null, + apiClient.getResponseCode(), Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + reason = jsonObject.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_ALL_SUBSCRIPTION, ConstantUtility.FAIL, reason, + null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_ALL_SUBSCRIPTION, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetNotificationOfChangesTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetNotificationOfChangesTest.java new file mode 100644 index 000000000..3c0c0f990 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetNotificationOfChangesTest.java @@ -0,0 +1,85 @@ +package qascripts.reporting.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import org.joda.time.DateTime; +import org.joda.time.DateTimeZone; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.NotificationOfChangesApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class GetNotificationOfChangesTest { + + public static void main(String args[]) throws Exception { + GetNotificationOfChangesTest getNotificationOfChangesTest = new GetNotificationOfChangesTest(); + getNotificationOfChangesTest.process(); + } + + public void process() throws Exception { + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Reporting\\CoreServices\\GetNotificationOfChanges.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + String timeString = columns[1]; + DateTime ddateTime = new DateTime(timeString); + DateTime startTime = ddateTime.withZone(DateTimeZone.forID("America/Atikokan")); + + String timeString2 = columns[2]; + DateTime ddateTime2 = new DateTime(timeString2); + DateTime endTime = ddateTime2.withZone(DateTimeZone.forID("America/Atikokan")); + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + NotificationOfChangesApi notificationOfChangesApi = new NotificationOfChangesApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + notificationOfChangesApi.getNotificationOfChangeReport(startTime, endTime); + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_NOTIFICATION_OF_CHANGES, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, null, + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_NOTIFICATION_OF_CHANGES, + ConstantUtility.ASSERTION_PASS, columns[3], null, apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + reason = jsonObject.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_NOTIFICATION_OF_CHANGES, ConstantUtility.FAIL, + reason, null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_NOTIFICATION_OF_CHANGES, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + + } +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetPurchaseAndRefundDetailsTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetPurchaseAndRefundDetailsTest.java new file mode 100644 index 000000000..f37f6a3b2 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetPurchaseAndRefundDetailsTest.java @@ -0,0 +1,98 @@ +package qascripts.reporting.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import org.joda.time.DateTime; +import org.joda.time.DateTimeZone; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONArray; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.PurchaseAndRefundDetailsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class GetPurchaseAndRefundDetailsTest { + + public static void main(String args[]) throws Exception { + GetPurchaseAndRefundDetailsTest getPurchaseAndRefundDetailsTest = new GetPurchaseAndRefundDetailsTest(); + getPurchaseAndRefundDetailsTest.process(); + } + + public void process() throws Exception { + String organizationId = null; + String groupName = "groupName"; + String paymentSubtype = "VI"; + String viewBy = "requestDate"; + int offSet = 20; + int limit = 2000; + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Reporting\\CoreServices\\GetPurchaseAndRefundDetails.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + organizationId = columns[3]; + String timeString = columns[1]; + DateTime ddateTime = new DateTime(timeString); + DateTime startTime = ddateTime.withZone(DateTimeZone.forID("Asia/Ashkhabad")); + + String timeString2 = columns[2]; + DateTime ddateTime2 = new DateTime(timeString2); + DateTime endTime = ddateTime2.withZone(DateTimeZone.forID("Asia/Ashkhabad")); + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + PurchaseAndRefundDetailsApi purchaseAndRefundDetailsApi = new PurchaseAndRefundDetailsApi( + merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + purchaseAndRefundDetailsApi.getPurchaseAndRefundDetails(startTime, endTime, organizationId, + paymentSubtype, viewBy, groupName, offSet, limit); + + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_PURCHASE_AND_REFUND_DETAIL, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, null, + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_PURCHASE_AND_REFUND_DETAIL, + ConstantUtility.ASSERTION_PASS, columns[3], null, apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONArray jsonarray = new JSONObject(apiClient.getRespBody()).getJSONArray("fields"); + + JSONObject obj = jsonarray.getJSONObject(0); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_PURCHASE_AND_REFUND_DETAIL, + ConstantUtility.FAIL, reason, null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_PURCHASE_AND_REFUND_DETAIL, + ConstantUtility.FAIL, e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + + } +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetReportBasedOnReportidTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetReportBasedOnReportidTest.java new file mode 100644 index 000000000..a5949eb7e --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetReportBasedOnReportidTest.java @@ -0,0 +1,82 @@ +package qascripts.reporting.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.ReportsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.ReportingV3ReportsIdGet200Response; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class GetReportBasedOnReportidTest { + + public static void main(String args[]) throws Exception { + GetReportBasedOnReportidTest getReportBasedOnReportidTest = new GetReportBasedOnReportidTest(); + getReportBasedOnReportidTest.process(); + } + + public ReportingV3ReportsIdGet200Response process() throws Exception { + ReportingV3ReportsIdGet200Response response = null; + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Reporting\\CoreServices\\GetReportBasedOnReportid.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + ReportsApi reportsApi = new ReportsApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = reportsApi.getReportByReportId(columns[2], columns[1]); + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_REPORT_BASED_ON_ID, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, response.getReportId(), + apiClient.getResponseCode(), Boolean.TRUE); + }else if (!columns[2].equals(response.getReportId())) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_REPORT_BASED_ON_ID, + ConstantUtility.ASSERTION_FAILED, columns[3], response.getReportId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_REPORT_BASED_ON_ID, + ConstantUtility.ASSERTION_PASS, columns[3], response.getReportId(), apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + try { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + reason = jsonObject.getString("message"); + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_REPORT_BASED_ON_ID, + ConstantUtility.FAIL, reason, null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_REPORT_BASED_ON_ID, + ConstantUtility.FAIL, e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetReportDefinitionTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetReportDefinitionTest.java new file mode 100644 index 000000000..91f0ee9ae --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetReportDefinitionTest.java @@ -0,0 +1,71 @@ +package qascripts.reporting.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.ReportDefinitionsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.ReportingV3ReportDefinitionsNameGet200Response; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class GetReportDefinitionTest { + + public static void main(String args[]) throws Exception { + GetReportDefinitionTest getReportDefinitionTest = new GetReportDefinitionTest(); + getReportDefinitionTest.process(); + } + + public ReportingV3ReportDefinitionsNameGet200Response process() throws Exception { + ReportingV3ReportDefinitionsNameGet200Response response = null; + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Reporting\\CoreServices\\GetReportDefinition.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + ReportDefinitionsApi reportDefinitionsApi = new ReportDefinitionsApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = reportDefinitionsApi.getResourceInfoByReportDefinition(columns[1], null); + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_REPORT_DEFINITION, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, null, + apiClient.getResponseCode(), Boolean.TRUE); + } else if(!columns[1].equals(response.getReportDefintionName())){ + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_REPORT_DEFINITION, + ConstantUtility.ASSERTION_FAILED, columns[2], null, + apiClient.getResponseCode(), Boolean.TRUE); + }else{ + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_REPORT_DEFINITION, + ConstantUtility.ASSERTION_PASS, columns[2], null, apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_REPORT_DEFINITION, ConstantUtility.FAIL, + columns[2], null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_REPORT_DEFINITION, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetReportingResourceInformationTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetReportingResourceInformationTest.java new file mode 100644 index 000000000..dcd316623 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetReportingResourceInformationTest.java @@ -0,0 +1,78 @@ +package qascripts.reporting.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.ReportDefinitionsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.ReportingV3ReportDefinitionsGet200Response; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class GetReportingResourceInformationTest { + + public static void main(String args[]) throws Exception { + GetReportingResourceInformationTest getReportingResourceInformationTest = new GetReportingResourceInformationTest(); + getReportingResourceInformationTest.process(); + } + + public ReportingV3ReportDefinitionsGet200Response process() throws Exception { + ReportingV3ReportDefinitionsGet200Response response = null; + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Reporting\\CoreServices\\GetReportingResourceInformation.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + ReportDefinitionsApi reportDefinitionsApi = new ReportDefinitionsApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = reportDefinitionsApi.getResourceV2Info(columns[1]); + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_REPORTING_RESOURCE_INFORMATION, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, null, + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_REPORTING_RESOURCE_INFORMATION, + ConstantUtility.ASSERTION_PASS, columns[2], null, apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + try { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + reason = jsonObject.getString("message"); + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_REPORTING_RESOURCE_INFORMATION, ConstantUtility.FAIL, + reason, null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_REPORTING_RESOURCE_INFORMATION, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetSubscriptionForReportNameTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetSubscriptionForReportNameTest.java new file mode 100644 index 000000000..3a3d08efa --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/GetSubscriptionForReportNameTest.java @@ -0,0 +1,88 @@ +package qascripts.reporting.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.ReportSubscriptionsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.ReportingV3ReportSubscriptionsGet200Response; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class GetSubscriptionForReportNameTest { + + public static void main(String args[]) throws Exception { + GetSubscriptionForReportNameTest getSubscriptionForReportNameTest = new GetSubscriptionForReportNameTest(); + getSubscriptionForReportNameTest.process(); + } + + public ReportingV3ReportSubscriptionsGet200Response process() throws Exception { + ReportingV3ReportSubscriptionsGet200Response response = null; + String respReportName = null; + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Reporting\\CoreServices\\GetSubscriptionForReportName.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + ApiClient apiClient = null; + String reportDefinitionId = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + ReportSubscriptionsApi reportSubscriptionsApi = new ReportSubscriptionsApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = reportSubscriptionsApi.getSubscription(columns[1]); + JSONObject obj = new JSONObject(apiClient.getRespBody()); + respReportName = obj.getString("reportName"); + reportDefinitionId = obj.getString("reportDefinitionId"); + + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_SUBSCRIPTION_FOR_REPORT_NAME, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, null, + apiClient.getResponseCode(), Boolean.TRUE); + } else if (!columns[1].equals(respReportName)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_SUBSCRIPTION_FOR_REPORT_NAME, + ConstantUtility.ASSERTION_FAILED, columns[2], null, + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_SUBSCRIPTION_FOR_REPORT_NAME, + ConstantUtility.ASSERTION_PASS, columns[2], null, apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + reason = jsonObject.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_SUBSCRIPTION_FOR_REPORT_NAME, + ConstantUtility.FAIL, reason, reportDefinitionId, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_SUBSCRIPTION_FOR_REPORT_NAME, + ConstantUtility.FAIL, e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/RetrieveAvailableReportsTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/RetrieveAvailableReportsTest.java new file mode 100644 index 000000000..545443bd5 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/reporting/coreServices/RetrieveAvailableReportsTest.java @@ -0,0 +1,87 @@ +package qascripts.reporting.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import org.joda.time.DateTime; +import org.joda.time.DateTimeZone; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.ReportsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class RetrieveAvailableReportsTest { + + public static void main(String args[]) throws Exception { + RetrieveAvailableReportsTest retrieveAvailableReportsTest = new RetrieveAvailableReportsTest(); + retrieveAvailableReportsTest.process(); + } + + public void process() throws Exception { + Properties merchantProp; + String timeQueryType = null; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\Reporting\\CoreServices\\RetrieveAvailableReports.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + timeQueryType = columns[3]; + String timeString = columns[1]; + DateTime ddateTime = new DateTime(timeString); + DateTime startTime = ddateTime.withZone(DateTimeZone.forID("GMT")); + + String timeString2 = columns[2]; + DateTime ddateTime2 = new DateTime(timeString2); + DateTime endTime = ddateTime2.withZone(DateTimeZone.forID("GMT")); + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + ReportsApi reportsApi = new ReportsApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + reportsApi.searchReports(startTime, endTime, timeQueryType, "testrest", null, null, null, null, null); + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_AVAILABLE_REPORTS, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, null, + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_AVAILABLE_REPORTS, + ConstantUtility.ASSERTION_PASS, columns[4], null, apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + reason = jsonObject.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_AVAILABLE_REPORTS, ConstantUtility.FAIL, + reason, null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_AVAILABLE_REPORTS, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + + } +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/secureFileShare/coreServices/DownloadFileWithFileIdentifierTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/secureFileShare/coreServices/DownloadFileWithFileIdentifierTest.java new file mode 100644 index 000000000..fa7e9d73d --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/secureFileShare/coreServices/DownloadFileWithFileIdentifierTest.java @@ -0,0 +1,97 @@ +package qascripts.secureFileShare.coreServices; + +import java.io.BufferedReader; +import java.io.BufferedWriter; +import java.io.ByteArrayInputStream; +import java.io.ByteArrayOutputStream; +import java.io.File; +import java.io.FileReader; +import java.io.FileWriter; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.nio.charset.StandardCharsets; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.SecureFileShareApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class DownloadFileWithFileIdentifierTest { + + public static void main(String args[]) throws Exception { + DownloadFileWithFileIdentifierTest downloadFileWithFileIdentifierTest = new DownloadFileWithFileIdentifierTest(); + downloadFileWithFileIdentifierTest.process(); + } + + public void process() throws Exception { + Properties merchantProp; + String resourceFile = "SecureFile"; + final String FILE_PATH = "src/test/resources/"; + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\SecureFileShare\\CoreServices\\DownloadFileWithFileIdentifier.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + SecureFileShareApi secureFileShareApi = new SecureFileShareApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + secureFileShareApi.getFileWithHttpInfo(columns[2], columns[1]); + InputStream stream = new ByteArrayInputStream( + apiClient.getResponseBody().getBytes(StandardCharsets.UTF_8)); + + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + org.apache.commons.io.IOUtils.copy(stream, baos); + byte[] bytes = baos.toByteArray(); + BufferedReader br = new BufferedReader(new InputStreamReader((new ByteArrayInputStream(bytes)))); + + String output; + String reportType = "csv"; + while ((output = br.readLine()) != null) { + if (output.contains("xml")) { + reportType = "xml"; + } + } + BufferedReader br_write = new BufferedReader(new InputStreamReader((new ByteArrayInputStream(bytes)))); + BufferedWriter bw = new BufferedWriter( + new FileWriter(new File(FILE_PATH + resourceFile + "." + reportType))); + while ((output = br_write.readLine()) != null) { + bw.write(output + "\n"); + } + bw.close(); + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.DOWNLOAD_FILE_WITH_IDENTIFIER, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, null, + apiClient.getResponseCode(), Boolean.TRUE); + } else if (apiClient.getResponseBody() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.DOWNLOAD_FILE_WITH_IDENTIFIER, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.FILE_CONTENT_NULL, null, + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.DOWNLOAD_FILE_WITH_IDENTIFIER, ConstantUtility.ASSERTION_PASS, + columns[3], null, apiClient.getResponseCode(), Boolean.TRUE); + } + } catch (ApiException e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.DOWNLOAD_FILE_WITH_IDENTIFIER, ConstantUtility.FAIL, columns[3], null, + apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.DOWNLOAD_FILE_WITH_IDENTIFIER, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/secureFileShare/coreServices/GetListOfFilesTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/secureFileShare/coreServices/GetListOfFilesTest.java new file mode 100644 index 000000000..469eb64fa --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/secureFileShare/coreServices/GetListOfFilesTest.java @@ -0,0 +1,79 @@ +package qascripts.secureFileShare.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import org.joda.time.LocalDate; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.SecureFileShareApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class GetListOfFilesTest { + + public static void main(String args[]) throws Exception { + GetListOfFilesTest getListOfFilesTest = new GetListOfFilesTest(); + getListOfFilesTest.process(); + } + + public void process() throws Exception { + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\SecureFileShare\\CoreServices\\GetListOfFiles.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + LocalDate startDate = new LocalDate(columns[2]); + LocalDate endDate = new LocalDate(columns[3]); + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + SecureFileShareApi secureFileShareApi = new SecureFileShareApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + secureFileShareApi.getFileDetails(startDate, endDate, columns[1]); + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_LIST_OF_FILE, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, null, + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_LIST_OF_FILE, + ConstantUtility.ASSERTION_PASS, columns[4], null, apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + reason = jsonObject.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_LIST_OF_FILE, ConstantUtility.FAIL, reason, + null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_LIST_OF_FILE, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/CreateInstrumentIdentifierTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/CreateInstrumentIdentifierTest.java new file mode 100644 index 000000000..582372de5 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/CreateInstrumentIdentifierTest.java @@ -0,0 +1,119 @@ +package qascripts.tms.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.InstrumentIdentifiersApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.Body; +import Model.TmsV1InstrumentidentifiersPost200Response; +import Model.Tmsv1instrumentidentifiersCard; +import Model.Tmsv1instrumentidentifiersProcessingInformation; +import Model.Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptions; +import Model.Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptionsInitiator; +import Model.Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptionsInitiatorMerchantInitiatedTransaction; +import au.com.bytecode.opencsv.CSVReader; +import junit.framework.Assert; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class CreateInstrumentIdentifierTest { + + public static void main(String args[]) throws Exception { + CreateInstrumentIdentifierTest createInstrumentIdentifierTest = new CreateInstrumentIdentifierTest(); + createInstrumentIdentifierTest.process(); + } + + public TmsV1InstrumentidentifiersPost200Response process() throws Exception { + TmsV1InstrumentidentifiersPost200Response response = null; + String profileId = null; + String prevTransactionId = null; + Properties merchantProp; + Body body; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\TMS\\CoreServices\\CreateInstrumentIdentifier.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + + body = new Body(); + + profileId = columns[2]; + + Tmsv1instrumentidentifiersCard card = new Tmsv1instrumentidentifiersCard(); + card.number("4111111111111111"); + body.card(card); + + Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptionsInitiatorMerchantInitiatedTransaction merchantInitiatedTransaction = new Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptionsInitiatorMerchantInitiatedTransaction(); + merchantInitiatedTransaction.previousTransactionId(columns[1]); + + Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptionsInitiator initiator = new Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptionsInitiator(); + initiator.merchantInitiatedTransaction(merchantInitiatedTransaction); + + Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptions authorizationOptions = new Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptions(); + authorizationOptions.initiator(initiator); + + Tmsv1instrumentidentifiersProcessingInformation processingInformation = new Tmsv1instrumentidentifiersProcessingInformation(); + processingInformation.authorizationOptions(authorizationOptions); + body.processingInformation(processingInformation); + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + InstrumentIdentifiersApi instrumentIdentifierApi = new InstrumentIdentifiersApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = instrumentIdentifierApi.tmsV1InstrumentidentifiersPost(profileId, body); + prevTransactionId = response.getProcessingInformation().getAuthorizationOptions().getInitiator() + .getMerchantInitiatedTransaction().getPreviousTransactionId(); + if (!response.getState().getValue().equals(ConstantUtility.ACTIVE_STATE)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_INSTRUMENT_IDENTIFIER, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.STATUS_NOT_ACTIVE, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else if (response.getId() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_INSTRUMENT_IDENTIFIER, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.PAYMENT_ID_NULL, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else { + Assert.assertEquals(columns[1], prevTransactionId); + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_INSTRUMENT_IDENTIFIER, ConstantUtility.ASSERTION_PASS, + columns[3], response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + JSONObject obj = jsonObject.getJSONArray("errors").getJSONObject(0); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_INSTRUMENT_IDENTIFIER, ConstantUtility.FAIL, reason, null, + apiClient.getResponseCode(), Boolean.TRUE); + } catch (AssertionError e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_INSTRUMENT_IDENTIFIER, ConstantUtility.ASSERTION_FAILED, + columns[3], response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_INSTRUMENT_IDENTIFIER, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/CreatePaymentInstrumentTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/CreatePaymentInstrumentTest.java new file mode 100644 index 000000000..87e7b71af --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/CreatePaymentInstrumentTest.java @@ -0,0 +1,119 @@ +package qascripts.tms.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.PaymentInstrumentsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.Body2; +import Model.TmsV1PaymentinstrumentsPost201Response; +import Model.Tmsv1instrumentidentifiersCard; +import Model.Tmsv1paymentinstrumentsBillTo; +import Model.Tmsv1paymentinstrumentsCard; +import Model.Tmsv1paymentinstrumentsCard.TypeEnum; +import Model.Tmsv1paymentinstrumentsInstrumentIdentifier; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class CreatePaymentInstrumentTest { + + public static void main(String args[]) throws Exception { + CreatePaymentInstrumentTest createPaymentInstrumentTest = new CreatePaymentInstrumentTest(); + createPaymentInstrumentTest.process(); + } + + public TmsV1PaymentinstrumentsPost201Response process() throws Exception { + TmsV1PaymentinstrumentsPost201Response response = null; + Properties merchantProp; + Body2 body; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\TMS\\CoreServices\\CreatePaymentsInstruments.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + + body = new Body2(); + Tmsv1paymentinstrumentsCard card = new Tmsv1paymentinstrumentsCard(); + card.expirationMonth("09"); + card.expirationYear("2022"); + card.type(TypeEnum.VISA); + body.card(card); + + Tmsv1paymentinstrumentsBillTo billTo = new Tmsv1paymentinstrumentsBillTo(); + billTo.firstName("John"); + billTo.lastName("Deo"); + billTo.company("CyberSource"); + billTo.address1("12 Main Street"); + billTo.address2("20 My Street"); + billTo.locality("Foster City"); + billTo.administrativeArea("CA"); + billTo.postalCode("90200"); + billTo.country("US"); + billTo.email("test@cybs.com"); + billTo.phoneNumber("555123456"); + body.billTo(billTo); + + Tmsv1instrumentidentifiersCard instrumentidentifiersCard = new Tmsv1instrumentidentifiersCard(); + instrumentidentifiersCard.number("4111111111111111"); + + Tmsv1paymentinstrumentsInstrumentIdentifier instrumentIdentifier = new Tmsv1paymentinstrumentsInstrumentIdentifier(); + instrumentIdentifier.card(instrumentidentifiersCard); + body.instrumentIdentifier(instrumentIdentifier); + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + PaymentInstrumentsApi paymentInstrumentApi = new PaymentInstrumentsApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = paymentInstrumentApi.tmsV1PaymentinstrumentsPost(columns[1], body); + + if (!response.getState().getValue().equals(ConstantUtility.ACTIVE_STATE)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_PAYMENT_INSTRUMENT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.STATUS_NOT_ACTIVE, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else if (response.getId() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_PAYMENT_INSTRUMENT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.PAYMENT_ID_NULL, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_PAYMENT_INSTRUMENT, + ConstantUtility.ASSERTION_PASS, columns[2], response.getId(), apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + JSONObject obj = jsonObject.getJSONArray("errors").getJSONObject(0); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_PAYMENT_INSTRUMENT, ConstantUtility.FAIL, + reason, null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_PAYMENT_INSTRUMENT, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/DeleteInstrumentIdentifierTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/DeleteInstrumentIdentifierTest.java new file mode 100644 index 000000000..82c7a2efb --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/DeleteInstrumentIdentifierTest.java @@ -0,0 +1,76 @@ +package qascripts.tms.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.InstrumentIdentifierApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class DeleteInstrumentIdentifierTest { + + public static void main(String args[]) throws Exception { + DeleteInstrumentIdentifierTest deleteInstrumentIdentifierTest = new DeleteInstrumentIdentifierTest(); + deleteInstrumentIdentifierTest.process(); + } + + public void process() throws Exception { + Properties merchantProp; + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\TMS\\CoreServices\\DeleteInstrumentIdentifier.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + InstrumentIdentifierApi instrumentIdentifierApi = new InstrumentIdentifierApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + instrumentIdentifierApi.tmsV1InstrumentidentifiersTokenIdDelete(columns[1], columns[2]); + + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.DELETE_INSTRUMENT_IDENTIFIER, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, null, + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.DELETE_INSTRUMENT_IDENTIFIER, + ConstantUtility.ASSERTION_PASS, columns[3], null, apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + JSONObject obj = jsonObject.getJSONArray("errors").getJSONObject(0); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.DELETE_INSTRUMENT_IDENTIFIER, ConstantUtility.FAIL, + reason, null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.DELETE_INSTRUMENT_IDENTIFIER, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/DeletePaymentInstrumentTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/DeletePaymentInstrumentTest.java new file mode 100644 index 000000000..ec4008d60 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/DeletePaymentInstrumentTest.java @@ -0,0 +1,75 @@ +package qascripts.tms.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.PaymentInstrumentsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class DeletePaymentInstrumentTest { + + public static void main(String args[]) throws Exception { + DeletePaymentInstrumentTest deletePaymentInstrumentTest = new DeletePaymentInstrumentTest(); + deletePaymentInstrumentTest.process(); + } + + public void process() throws Exception { + Properties merchantProp; + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\TMS\\CoreServices\\DeletePaymentsInstrument.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + PaymentInstrumentsApi paymentInstrumentApi = new PaymentInstrumentsApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + paymentInstrumentApi.tmsV1PaymentinstrumentsTokenIdDelete(columns[1], columns[2]); + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.DELETE_PAYMENT_INSTRUMENT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, null, + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.DELETE_PAYMENT_INSTRUMENT, + ConstantUtility.ASSERTION_PASS, columns[3], null, apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + JSONObject obj = jsonObject.getJSONArray("errors").getJSONObject(0); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.DELETE_PAYMENT_INSTRUMENT, ConstantUtility.FAIL, + reason, null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.DELETE_PAYMENT_INSTRUMENT, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/RetrieveAllPaymentInstrumentsTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/RetrieveAllPaymentInstrumentsTest.java new file mode 100644 index 000000000..21ed58bef --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/RetrieveAllPaymentInstrumentsTest.java @@ -0,0 +1,80 @@ +package qascripts.tms.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.PaymentInstrumentsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.TmsV1InstrumentidentifiersPaymentinstrumentsGet200Response; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class RetrieveAllPaymentInstrumentsTest { + + public static void main(String args[]) throws Exception { + RetrieveAllPaymentInstrumentsTest retrieveAllPaymentInstrumentsTest = new RetrieveAllPaymentInstrumentsTest(); + retrieveAllPaymentInstrumentsTest.process(); + } + + public TmsV1InstrumentidentifiersPaymentinstrumentsGet200Response process() throws Exception { + TmsV1InstrumentidentifiersPaymentinstrumentsGet200Response response = null; + Properties merchantProp; + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\TMS\\CoreServices\\RetrieveAllPaymentInstruments.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + String tokenId = null; + while ((columns = csvReader.readNext()) != null) { + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + PaymentInstrumentsApi paymentInstrumentsApi = new PaymentInstrumentsApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = paymentInstrumentsApi.tmsV1InstrumentidentifiersTokenIdPaymentinstrumentsGet(columns[1], + columns[2], null, null); + tokenId=response.getLinks().getSelf().getHref().split("/")[6]; + if (!columns[2].equals(tokenId)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_ALL_PAYMENT_INSTRUMENTS, + ConstantUtility.ASSERTION_FAILED, columns[3], tokenId, + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_ALL_PAYMENT_INSTRUMENTS, + ConstantUtility.ASSERTION_PASS, columns[3], tokenId, apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + JSONObject obj = jsonObject.getJSONArray("errors").getJSONObject(0); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_ALL_PAYMENT_INSTRUMENTS, ConstantUtility.FAIL, + reason, tokenId, apiClient.getResponseCode(), Boolean.TRUE); + }catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_ALL_PAYMENT_INSTRUMENTS, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/RetrieveInstrumentIdentifierTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/RetrieveInstrumentIdentifierTest.java new file mode 100644 index 000000000..c35af77c4 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/RetrieveInstrumentIdentifierTest.java @@ -0,0 +1,87 @@ +package qascripts.tms.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.InstrumentIdentifierApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.TmsV1InstrumentidentifiersPost200Response; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class RetrieveInstrumentIdentifierTest { + + public static void main(String args[]) throws Exception { + RetrieveInstrumentIdentifierTest retrieveInstrumentIdentifierTest = new RetrieveInstrumentIdentifierTest(); + retrieveInstrumentIdentifierTest.process(); + } + + public TmsV1InstrumentidentifiersPost200Response process() throws Exception { + TmsV1InstrumentidentifiersPost200Response response = null; + Properties merchantProp; + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\TMS\\CoreServices\\RetrieveInstrumentIdentifier.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + InstrumentIdentifierApi instrumentIdentifierApi = new InstrumentIdentifierApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = instrumentIdentifierApi.tmsV1InstrumentidentifiersTokenIdGet(columns[1], columns[2]); + if (!response.getState().getValue().equals(ConstantUtility.ACTIVE_STATE)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_INSTRUMENT_IDENTIFIER, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.STATUS_NOT_ACTIVE, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else if (response.getId() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_INSTRUMENT_IDENTIFIER, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.TOKEN_ID_NULL, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_INSTRUMENT_IDENTIFIER, + ConstantUtility.ASSERTION_PASS, columns[3], response.getId(), apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + JSONObject obj = jsonObject.getJSONArray("errors").getJSONObject(0); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_INSTRUMENT_IDENTIFIER, ConstantUtility.FAIL, + reason, null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (AssertionError e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_INSTRUMENT_IDENTIFIER, + ConstantUtility.ASSERTION_FAILED, columns[3], response.getId(), apiClient.getResponseCode(), + Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_INSTRUMENT_IDENTIFIER, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/RetrievePaymentInstrumentTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/RetrievePaymentInstrumentTest.java new file mode 100644 index 000000000..e154e2146 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/RetrievePaymentInstrumentTest.java @@ -0,0 +1,87 @@ +package qascripts.tms.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.PaymentInstrumentsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.TmsV1PaymentinstrumentsPost201Response; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class RetrievePaymentInstrumentTest { + + public static void main(String args[]) throws Exception { + RetrievePaymentInstrumentTest retrievePaymentInstrumentTest = new RetrievePaymentInstrumentTest(); + retrievePaymentInstrumentTest.process(); + } + + public TmsV1PaymentinstrumentsPost201Response process() throws Exception { + TmsV1PaymentinstrumentsPost201Response response = null; + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\TMS\\CoreServices\\RetrievePaymentInstrument.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + PaymentInstrumentsApi paymentInstrumentApi = new PaymentInstrumentsApi(merchantConfig); + apiClient=Invokers.Configuration.getDefaultApiClient(); + response = paymentInstrumentApi.tmsV1PaymentinstrumentsTokenIdGet(columns[1], columns[2]); + if (!response.getState().getValue().equals(ConstantUtility.ACTIVE_STATE)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_PAYMENT_INSTRUMENT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.STATUS_NOT_ACTIVE, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else if (!response.getId().equals(columns[2])) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_PAYMENT_INSTRUMENT, + ConstantUtility.ASSERTION_FAILED, columns[3], response.getId(), apiClient.getResponseCode(), + Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_PAYMENT_INSTRUMENT, + ConstantUtility.ASSERTION_PASS, columns[3], response.getId(), apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + JSONObject obj = jsonObject.getJSONArray("errors").getJSONObject(0); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_PAYMENT_INSTRUMENT, ConstantUtility.FAIL, + reason, null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (AssertionError e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_PAYMENT_INSTRUMENT, + ConstantUtility.ASSERTION_FAILED, columns[3], response.getId(), apiClient.getResponseCode(), + Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_PAYMENT_INSTRUMENT, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/UpdateInstrumentIdentifierTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/UpdateInstrumentIdentifierTest.java new file mode 100644 index 000000000..f84e3e428 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/UpdateInstrumentIdentifierTest.java @@ -0,0 +1,111 @@ +package qascripts.tms.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.InstrumentIdentifierApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.Body1; +import Model.TmsV1InstrumentidentifiersPost200Response; +import Model.Tmsv1instrumentidentifiersProcessingInformation; +import Model.Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptions; +import Model.Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptionsInitiator; +import Model.Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptionsInitiatorMerchantInitiatedTransaction; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class UpdateInstrumentIdentifierTest { + + public static void main(String args[]) throws Exception { + UpdateInstrumentIdentifierTest updateInstrumentIdentifierTest = new UpdateInstrumentIdentifierTest(); + updateInstrumentIdentifierTest.process(); + } + + public TmsV1InstrumentidentifiersPost200Response process() throws Exception { + TmsV1InstrumentidentifiersPost200Response response = null; + Properties merchantProp; + Body1 body; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\TMS\\CoreServices\\UpdateInstrumentIdentifier.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + // Body request = null; + + while ((columns = csvReader.readNext()) != null) { + + body = new Body1(); + Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptionsInitiatorMerchantInitiatedTransaction merchantInitiatedTransaction = new Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptionsInitiatorMerchantInitiatedTransaction(); + merchantInitiatedTransaction.previousTransactionId("123456789012345"); + + Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptionsInitiator initiator = new Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptionsInitiator(); + initiator.merchantInitiatedTransaction(merchantInitiatedTransaction); + + Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptions authorizationOptions = new Tmsv1instrumentidentifiersProcessingInformationAuthorizationOptions(); + authorizationOptions.initiator(initiator); + + Tmsv1instrumentidentifiersProcessingInformation processingInformation = new Tmsv1instrumentidentifiersProcessingInformation(); + processingInformation.authorizationOptions(authorizationOptions); + body.processingInformation(processingInformation); + + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + InstrumentIdentifierApi instrumentIdentifierApi = new InstrumentIdentifierApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = instrumentIdentifierApi.tmsV1InstrumentidentifiersTokenIdPatch(columns[1], columns[2], body); + + if (!response.getState().getValue().equals(ConstantUtility.ACTIVE_STATE)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.UPDATE_INSTRUMENT_IDENTIFIER, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.STATUS_NOT_ACTIVE, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else if (response.getId() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.UPDATE_INSTRUMENT_IDENTIFIER, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.TOKEN_ID_NULL, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.UPDATE_INSTRUMENT_IDENTIFIER, + ConstantUtility.ASSERTION_PASS, columns[3], response.getId(), apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + JSONObject obj = jsonObject.getJSONArray("errors").getJSONObject(0); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.UPDATE_INSTRUMENT_IDENTIFIER, ConstantUtility.FAIL, + reason, null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (AssertionError e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.UPDATE_INSTRUMENT_IDENTIFIER, + ConstantUtility.ASSERTION_FAILED, columns[3], response.getId(), apiClient.getResponseCode(), + Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.UPDATE_INSTRUMENT_IDENTIFIER, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/UpdatePaymentInstrumentTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/UpdatePaymentInstrumentTest.java new file mode 100644 index 000000000..513d13a0d --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/tms/coreServices/UpdatePaymentInstrumentTest.java @@ -0,0 +1,124 @@ +package qascripts.tms.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.PaymentInstrumentsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.Body3; +import Model.TmsV1PaymentinstrumentsPost201Response; +import Model.Tmsv1instrumentidentifiersCard; +import Model.Tmsv1paymentinstrumentsBillTo; +import Model.Tmsv1paymentinstrumentsCard; +import Model.Tmsv1paymentinstrumentsCard.TypeEnum; +import Model.Tmsv1paymentinstrumentsInstrumentIdentifier; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class UpdatePaymentInstrumentTest { + + public static void main(String args[]) throws Exception { + UpdatePaymentInstrumentTest updatePaymentInstrumentTest = new UpdatePaymentInstrumentTest(); + updatePaymentInstrumentTest.process(); + } + + public TmsV1PaymentinstrumentsPost201Response process() throws Exception { + TmsV1PaymentinstrumentsPost201Response response = null; + Properties merchantProp; + Body3 body; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\TMS\\CoreServices\\UpdatePaymentInstrument.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + + body = new Body3(); + + Tmsv1paymentinstrumentsCard card = new Tmsv1paymentinstrumentsCard(); + card.expirationMonth("09"); + card.expirationYear("2022"); + card.type(TypeEnum.VISA); + body.card(card); + + Tmsv1paymentinstrumentsBillTo billTo = new Tmsv1paymentinstrumentsBillTo(); + billTo.firstName("John"); + billTo.lastName("Deo"); + billTo.company("CyberSource"); + billTo.address1("1 Market St"); + billTo.address2("20 Main Street"); + billTo.locality("san francisco"); + billTo.administrativeArea("CA"); + billTo.postalCode("94105"); + billTo.country("US"); + billTo.email("test@cybs.com"); + billTo.phoneNumber("555123456"); + body.billTo(billTo); + + Tmsv1instrumentidentifiersCard instrumentidentifiersCard = new Tmsv1instrumentidentifiersCard(); + instrumentidentifiersCard.number("4111111111111111"); + + Tmsv1paymentinstrumentsInstrumentIdentifier instrumentIdentifier = new Tmsv1paymentinstrumentsInstrumentIdentifier(); + instrumentIdentifier.card(instrumentidentifiersCard); + body.instrumentIdentifier(instrumentIdentifier); + + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + PaymentInstrumentsApi paymentInstrumentApi = new PaymentInstrumentsApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = paymentInstrumentApi.tmsV1PaymentinstrumentsTokenIdPatch(columns[1], columns[2], body); + if (!response.getState().getValue().equals(ConstantUtility.ACTIVE_STATE)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.UPDATE_PAYMENT_INSTRUMENT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.STATUS_NOT_ACTIVE, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else if (!response.getId().equals(columns[2])) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.UPDATE_PAYMENT_INSTRUMENT, + ConstantUtility.ASSERTION_FAILED, columns[3], response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.UPDATE_PAYMENT_INSTRUMENT, + ConstantUtility.ASSERTION_PASS, columns[3], response.getId(), apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + JSONObject obj = jsonObject.getJSONArray("errors").getJSONObject(0); + reason = obj.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.UPDATE_PAYMENT_INSTRUMENT, ConstantUtility.FAIL, + reason, null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (AssertionError e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.UPDATE_PAYMENT_INSTRUMENT, + ConstantUtility.ASSERTION_FAILED, columns[3], response.getId(), apiClient.getResponseCode(), + Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.UPDATE_PAYMENT_INSTRUMENT, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/transactionBatches/coreServices/GetIndividualBatchFileTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/transactionBatches/coreServices/GetIndividualBatchFileTest.java new file mode 100644 index 000000000..bf1326974 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/transactionBatches/coreServices/GetIndividualBatchFileTest.java @@ -0,0 +1,88 @@ +package qascripts.transactionBatches.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.TransactionBatchApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Invokers.ApiResponse; +import Model.PtsV1TransactionBatchesGet200Response; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class GetIndividualBatchFileTest { + + public static void main(String args[]) throws Exception { + GetIndividualBatchFileTest getIndividualBatchFileTest = new GetIndividualBatchFileTest(); + getIndividualBatchFileTest.process(); + } + + public ApiResponse process() throws Exception { + + ApiResponse response = null; + String respId = null; + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\TransactionBatches\\CoreServices\\GetIndividualBatchFile.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + TransactionBatchApi transactionBatchApi = new TransactionBatchApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + transactionBatchApi.ptsV1TransactionBatchesIdGet(columns[1]); + JSONObject obj = new JSONObject(apiClient.getRespBody()); + respId = obj.getString("id"); + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_INDIVIDUAL_BATCH_FILE, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, respId, + apiClient.getResponseCode(), Boolean.TRUE); + }else if (!columns[1].equals(respId)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_INDIVIDUAL_BATCH_FILE, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.INVALID_RESPONSE_ID, respId, + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_INDIVIDUAL_BATCH_FILE, + ConstantUtility.ASSERTION_PASS, columns[2], respId, apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + reason = jsonObject.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_INDIVIDUAL_BATCH_FILE, ConstantUtility.FAIL, + reason, respId, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_INDIVIDUAL_BATCH_FILE, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/transactionBatches/coreServices/GetListOfBatchFilesTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/transactionBatches/coreServices/GetListOfBatchFilesTest.java new file mode 100644 index 000000000..13cd37b84 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/transactionBatches/coreServices/GetListOfBatchFilesTest.java @@ -0,0 +1,91 @@ +package qascripts.transactionBatches.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import org.joda.time.DateTime; +import org.joda.time.DateTimeZone; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.TransactionBatchesApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.PtsV1TransactionBatchesGet200Response; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class GetListOfBatchFilesTest { + + public static void main(String args[]) throws Exception { + GetListOfBatchFilesTest getListOfBatchFilesTest = new GetListOfBatchFilesTest(); + getListOfBatchFilesTest.process(); + } + + public PtsV1TransactionBatchesGet200Response process() throws Exception { + + PtsV1TransactionBatchesGet200Response response = null; + String timeString = null; + String timeString2 = null; + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\TransactionBatches\\CoreServices\\GetListOfBatchFiles.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + timeString = columns[1]; + DateTime ddateTime = new DateTime(timeString); + DateTime startTime = ddateTime.withZone(DateTimeZone.forID("GMT")); + + timeString2 = columns[2]; + DateTime ddateTime2 = new DateTime(timeString2); + DateTime endTime = ddateTime2.withZone(DateTimeZone.forID("GMT")); + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + TransactionBatchesApi transactionBatchApi = new TransactionBatchesApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = transactionBatchApi.ptsV1TransactionBatchesGet(startTime, endTime); + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_LIST_OF_BATCH_FILE, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, null, + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_LIST_OF_BATCH_FILE, + ConstantUtility.ASSERTION_PASS, columns[3], null, apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + reason = jsonObject.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_LIST_OF_BATCH_FILE, ConstantUtility.FAIL, + reason, null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_LIST_OF_BATCH_FILE, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/transactionDetails/coreServices/RetrieveTransactionTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/transactionDetails/coreServices/RetrieveTransactionTest.java new file mode 100644 index 000000000..0cd0aad6e --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/transactionDetails/coreServices/RetrieveTransactionTest.java @@ -0,0 +1,83 @@ +package qascripts.transactionDetails.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.TransactionDetailsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.TssV2TransactionsGet200Response; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class RetrieveTransactionTest { + + public static void main(String args[]) throws Exception { + RetrieveTransactionTest retrieveTransactionTest = new RetrieveTransactionTest(); + retrieveTransactionTest.process(); + } + + public TssV2TransactionsGet200Response process() throws Exception { + TssV2TransactionsGet200Response response = null; + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\TransactionDetails\\CoreServices\\RetrieveTransaction.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + TransactionDetailsApi transactionDetailsApi = new TransactionDetailsApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = transactionDetailsApi.getTransaction(columns[1]); + + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_TRANSACTION, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else if (!columns[1].equals(response.getId())) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_TRANSACTION, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.INVALID_RESPONSE_ID, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_TRANSACTION, + ConstantUtility.ASSERTION_PASS, columns[2], response.getId(), apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + reason = jsonObject.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_TRANSACTION, ConstantUtility.FAIL, + reason, response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.RETRIEVE_TRANSACTION, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/transactionSearch/coreServices/CreateSearchTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/transactionSearch/coreServices/CreateSearchTest.java new file mode 100644 index 000000000..06171eda3 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/transactionSearch/coreServices/CreateSearchTest.java @@ -0,0 +1,94 @@ +package qascripts.transactionSearch.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.SearchTransactionsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.TssV2TransactionsPost201Response; +import Model.TssV2TransactionsPostResponse; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class CreateSearchTest { + + public static void main(String args[]) throws Exception { + CreateSearchTest createSearchTest = new CreateSearchTest(); + createSearchTest.process(); + } + + public TssV2TransactionsPost201Response process() throws Exception { + TssV2TransactionsPost201Response response = null; + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\TransactionSearch\\CoreServices\\CreateSearchRequest.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + TssV2TransactionsPostResponse request = null; + + while ((columns = csvReader.readNext()) != null) { + + request = new TssV2TransactionsPostResponse(); + request.save(false); + request.name(columns[1]); + request.timezone("America/Chicago"); + request.query(columns[2]); + request.offset(0); + request.limit(80); + request.sort("id:asc, submitTimeUtc:asc"); + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + SearchTransactionsApi searchTransactionsApi = new SearchTransactionsApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = searchTransactionsApi.createSearch(request); + + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_SEARCH_REQUEST, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else if (!columns[1].equals(response.getName())) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_SEARCH_REQUEST, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.INVALIDE_NAME, response.getId(), + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_SEARCH_REQUEST, + ConstantUtility.ASSERTION_PASS, columns[3], response.getId(), apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + reason = jsonObject.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_SEARCH_REQUEST, ConstantUtility.FAIL, reason, + response.getId(), apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.CREATE_SEARCH_REQUEST, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/transactionSearch/coreServices/GetSearchResultsTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/transactionSearch/coreServices/GetSearchResultsTest.java new file mode 100644 index 000000000..6ab677e8e --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/transactionSearch/coreServices/GetSearchResultsTest.java @@ -0,0 +1,86 @@ +package qascripts.transactionSearch.coreServices; +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.SearchTransactionsApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.TssV2TransactionsPost201Response; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class GetSearchResultsTest { + + public static void main(String args[]) throws Exception { + GetSearchResultsTest getSearchResultsTest = new GetSearchResultsTest(); + getSearchResultsTest.process(); + } + + public TssV2TransactionsPost201Response process() throws Exception { + TssV2TransactionsPost201Response response = null; + String respSearchId = null; + Properties merchantProp; + + File inputFile=new File(System.getProperty("user.dir")+"\\src\\main\\java\\CSV_Files\\TransactionSearch\\CoreServices\\GetSearchResults.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while((columns = csvReader.readNext()) != null) + { + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + SearchTransactionsApi searchTransactionsApi = new SearchTransactionsApi(merchantConfig); + apiClient=Invokers.Configuration.getDefaultApiClient(); + response = searchTransactionsApi.getSearch(columns[1]); + + JSONObject obj = new JSONObject(apiClient.getRespBody()); + respSearchId = obj.getString("searchId"); + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_SEARCH_RESULT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, respSearchId, + apiClient.getResponseCode(), Boolean.TRUE); + } else if (!columns[1].equals(respSearchId)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_SEARCH_RESULT, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.INVALID_SEARCH_ID, respSearchId, + apiClient.getResponseCode(), Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_SEARCH_RESULT, + ConstantUtility.ASSERTION_PASS, columns[2], respSearchId, apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + reason = jsonObject.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_SEARCH_RESULT, ConstantUtility.FAIL, reason, + respSearchId, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_SEARCH_RESULT, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } + } + \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/userManagement/coreServices/GetUserInformationTest.java b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/userManagement/coreServices/GetUserInformationTest.java new file mode 100644 index 000000000..62df9995d --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/qascripts/userManagement/coreServices/GetUserInformationTest.java @@ -0,0 +1,86 @@ +package qascripts.userManagement.coreServices; + +import java.io.File; +import java.io.FileReader; +import java.util.Properties; + +import com.cybersource.authsdk.core.MerchantConfig; +import com.cybersource.flex.sdk.repackaged.JSONException; +import com.cybersource.flex.sdk.repackaged.JSONObject; + +import Api.UserManagementApi; +import Data.Configuration; +import Invokers.ApiClient; +import Invokers.ApiException; +import Model.UmsV1UsersGet200Response; +import au.com.bytecode.opencsv.CSVReader; +import qascripts.Utility.ConstantUtility; +import qascripts.Utility.CsvUtility; + +public class GetUserInformationTest { + + public static void main(String args[]) throws Exception { + GetUserInformationTest getUserInformationTest = new GetUserInformationTest(); + getUserInformationTest.process(); + } + + public UmsV1UsersGet200Response process() throws Exception { + UmsV1UsersGet200Response response = null; + Properties merchantProp; + + File inputFile = new File(System.getProperty("user.dir") + + "\\src\\main\\java\\CSV_Files\\UserManagement\\CoreServices\\GetUserInformation.csv"); + CSVReader csvReader = new CSVReader(new FileReader(inputFile)); + String[] columns = null; + csvReader.readNext(); + + while ((columns = csvReader.readNext()) != null) { + + ApiClient apiClient = null; + try { + /* Read Merchant details. */ + merchantProp = Configuration.getMerchantDetails(); + MerchantConfig merchantConfig = new MerchantConfig(merchantProp); + UserManagementApi userManagementApi = new UserManagementApi(merchantConfig); + apiClient = Invokers.Configuration.getDefaultApiClient(); + response = userManagementApi.getUsers(columns[1], null, null, columns[2]); + JSONObject obj = new JSONObject(apiClient.getRespBody()).getJSONArray("users").getJSONObject(0) + .getJSONObject("organizationInformation"); + String organaisationId = obj.getString("organizationId"); + if (apiClient.getResponseCode() == null) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_USER_INFORMATION, + ConstantUtility.ASSERTION_FAILED, ConstantUtility.RESPONSE_CODE_NULL, null, + apiClient.getResponseCode(), Boolean.TRUE); + } else if (!columns[1].equals(organaisationId)) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_SEARCH_RESULT, + ConstantUtility.ASSERTION_FAILED, columns[3], null, apiClient.getResponseCode(), + Boolean.TRUE); + } else { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_USER_INFORMATION, + ConstantUtility.ASSERTION_PASS, columns[3], null, apiClient.getResponseCode(), + Boolean.TRUE); + } + } catch (ApiException e) { + String reason = null; + try { + if (apiClient.getRespBody() == null) { + reason = e.getMessage(); + } else { + JSONObject jsonObject = new JSONObject(apiClient.getRespBody()); + reason = jsonObject.getString("message"); + } + } catch (JSONException exp) { + reason = apiClient.getRespBody(); + } + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_USER_INFORMATION, ConstantUtility.FAIL, reason, + null, apiClient.getResponseCode(), Boolean.TRUE); + } catch (Exception e) { + CsvUtility.writingToCsv(columns[0], ConstantUtility.GET_USER_INFORMATION, ConstantUtility.FAIL, + e.getMessage(), null, apiClient.getResponseCode(), Boolean.FALSE); + } + } + csvReader.close(); + return response; + + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/java/sampleCodeJava/SampleCode.java b/src/test/cybersource-rest-qascripts-java/src/main/java/sampleCodeJava/SampleCode.java new file mode 100644 index 000000000..bfe93aa34 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/java/sampleCodeJava/SampleCode.java @@ -0,0 +1,272 @@ +package sampleCodeJava; + +import java.io.BufferedReader; +import java.io.InputStreamReader; + +import qascripts.flex.coreServices.GenerateKeyTest; +import qascripts.flex.coreServices.TokenizeCardTest; +import qascripts.flex.noEncryptionKeyGeneration.KeyGenerationNoEncTest; +import qascripts.payments.coreServices.CapturePaymentTest; +import qascripts.payments.coreServices.ProcessAuthorizationReversalTest; +import qascripts.payments.coreServices.ProcessCreditTest; +import qascripts.payments.coreServices.ProcessPaymentTest; +import qascripts.payments.coreServices.RefundCaptureTest; +import qascripts.payments.coreServices.RefundPaymentTest; +import qascripts.payments.coreServices.VoidCaptureTest; +import qascripts.payments.coreServices.VoidCreditTest; +import qascripts.payments.coreServices.VoidPaymentTest; +import qascripts.payments.coreServices.VoidRefundTest; +import qascripts.payouts.coreServices.ProcessPayoutTest; +import qascripts.reporting.coreServices.CreateAdhocReportTest; +import qascripts.reporting.coreServices.CreateReportSubscriptionForReportNameByOrganizationTest; +import qascripts.reporting.coreServices.DeleteSubscriptionOfReportNameByOrganizationTest; +import qascripts.reporting.coreServices.DownloadReportTest; +import qascripts.reporting.coreServices.GetAllSubscriptionsTest; +import qascripts.reporting.coreServices.GetNotificationOfChangesTest; +import qascripts.reporting.coreServices.GetPurchaseAndRefundDetailsTest; +import qascripts.reporting.coreServices.GetReportBasedOnReportidTest; +import qascripts.reporting.coreServices.GetReportDefinitionTest; +import qascripts.reporting.coreServices.GetReportingResourceInformationTest; +import qascripts.reporting.coreServices.GetSubscriptionForReportNameTest; +import qascripts.reporting.coreServices.RetrieveAvailableReportsTest; +import qascripts.secureFileShare.coreServices.DownloadFileWithFileIdentifierTest; +import qascripts.secureFileShare.coreServices.GetListOfFilesTest; +import qascripts.tms.coreServices.CreateInstrumentIdentifierTest; +import qascripts.tms.coreServices.CreatePaymentInstrumentTest; +import qascripts.tms.coreServices.DeleteInstrumentIdentifierTest; +import qascripts.tms.coreServices.DeletePaymentInstrumentTest; +import qascripts.tms.coreServices.RetrieveAllPaymentInstrumentsTest; +import qascripts.tms.coreServices.RetrieveInstrumentIdentifierTest; +import qascripts.tms.coreServices.RetrievePaymentInstrumentTest; +import qascripts.tms.coreServices.UpdateInstrumentIdentifierTest; +import qascripts.tms.coreServices.UpdatePaymentInstrumentTest; +import qascripts.transactionBatches.coreServices.GetIndividualBatchFileTest; +import qascripts.transactionBatches.coreServices.GetListOfBatchFilesTest; +import qascripts.transactionDetails.coreServices.RetrieveTransactionTest; +import qascripts.transactionSearch.coreServices.CreateSearchTest; +import qascripts.transactionSearch.coreServices.GetSearchResultsTest; +import qascripts.userManagement.coreServices.GetUserInformationTest; + +/** + * Samplecode + */ +public class SampleCode { + + public static void main(String[] args) throws Exception { + if (args.length == 0) { + SelectMethod(); + } else if (args.length == 1) { + RunMethod(args[0]); + return; + } + System.out.println(""); + System.out.print("Press to finish ..."); + BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); + try { + int i = Integer.parseInt(br.readLine()); + } catch (Exception ex) { + } + + } + + private static void SelectMethod() { + System.out.println("Code Sample Names: "); + System.out.println(""); + ShowMethods(); + System.out.println(""); + System.out.print("Type a sample name & then press : "); + BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); + try { + RunMethod(br.readLine()); + } catch (Exception ex) { + System.out.println(ex.toString()); + } + } + + private static void ShowMethods() { + System.out.println(" AuthorizationOnly"); + System.out.println(" GetAPayment"); + + } + + public static void RunMethod(String methodName) throws Exception { + System.out.println(methodName + " execution starts"); + switch (methodName) { + case "ProcessPaymentTest": + ProcessPaymentTest processPaymentTest = new ProcessPaymentTest(); + processPaymentTest.process(); + break; + case "CapturePaymentTest": + CapturePaymentTest capturePaymentTest = new CapturePaymentTest(); + capturePaymentTest.process(); + break; + case "ProcessAuthorizationReversalTest": + ProcessAuthorizationReversalTest processAuthorizationReversalTest = new ProcessAuthorizationReversalTest(); + processAuthorizationReversalTest.process(); + break; + case "ProcessCreditTest": + ProcessCreditTest processCreditTest = new ProcessCreditTest(); + processCreditTest.process(); + break; + case "RefundPaymentTest": + RefundPaymentTest refundPaymentTest = new RefundPaymentTest(); + refundPaymentTest.process(); + break; + case "RefundCaptureTest": + RefundCaptureTest refundCaptureTest = new RefundCaptureTest(); + refundCaptureTest.process(); + break; + case "VoidPaymentTest": + VoidPaymentTest voidPaymentTest = new VoidPaymentTest(); + voidPaymentTest.process(); + break; + case "VoidCaptureTest": + VoidCaptureTest voidCaptureTest = new VoidCaptureTest(); + voidCaptureTest.process(); + break; + case "VoidCreditTest": + VoidCreditTest voidCreditTest = new VoidCreditTest(); + voidCreditTest.process(); + break; + case "VoidRefundTest": + VoidRefundTest voidRefundTest = new VoidRefundTest(); + voidRefundTest.process(); + break; + case "ProcessPayoutTest": + ProcessPayoutTest processPayoutTest = new ProcessPayoutTest(); + processPayoutTest.process(); + break; + case "CreateInstrumentIdentifierTest": + CreateInstrumentIdentifierTest createInstrumentIdentifierTest = new CreateInstrumentIdentifierTest(); + createInstrumentIdentifierTest.process(); + break; + case "CreatePaymentInstrumentTest": + CreatePaymentInstrumentTest createPaymentInstrumentTest = new CreatePaymentInstrumentTest(); + createPaymentInstrumentTest.process(); + break; + case "RetrieveInstrumentIdentifierTest": + RetrieveInstrumentIdentifierTest retrieveInstrumentIdentifierTest = new RetrieveInstrumentIdentifierTest(); + retrieveInstrumentIdentifierTest.process(); + break; + case "UpdateInstrumentIdentifierTest": + UpdateInstrumentIdentifierTest updateInstrumentIdentifierTest = new UpdateInstrumentIdentifierTest(); + updateInstrumentIdentifierTest.process(); + break; + case "DeleteInstrumentIdentifierTest": + DeleteInstrumentIdentifierTest deleteInstrumentIdentifierTest = new DeleteInstrumentIdentifierTest(); + deleteInstrumentIdentifierTest.process(); + break; + case "RetrievePaymentInstrumentTest": + RetrievePaymentInstrumentTest retrievePaymentInstrumentTest = new RetrievePaymentInstrumentTest(); + retrievePaymentInstrumentTest.process(); + break; + case "UpdatePaymentInstrumentTest": + UpdatePaymentInstrumentTest updatePaymentInstrumentTest = new UpdatePaymentInstrumentTest(); + updatePaymentInstrumentTest.process(); + break; + case "DeletePaymentInstrumentTest": + DeletePaymentInstrumentTest deletePaymentInstrumentTest = new DeletePaymentInstrumentTest(); + deletePaymentInstrumentTest.process(); + break; + case "RetrieveAllPaymentInstrumentsTest": + RetrieveAllPaymentInstrumentsTest retrieveAllPaymentInstrumentsTest = new RetrieveAllPaymentInstrumentsTest(); + retrieveAllPaymentInstrumentsTest.process(); + break; + case "GetIndividualBatchFileTest": + GetIndividualBatchFileTest getIndividualBatchFileTest = new GetIndividualBatchFileTest(); + getIndividualBatchFileTest.process(); + break; + case "GetListOfBatchFilesTest": + GetListOfBatchFilesTest getListOfBatchFilesTest = new GetListOfBatchFilesTest(); + getListOfBatchFilesTest.process(); + break; + case "RetrieveTransactionTest": + RetrieveTransactionTest retrieveTransactionTest = new RetrieveTransactionTest(); + retrieveTransactionTest.process(); + break; + case "CreateSearchTest": + CreateSearchTest createSearchTest = new CreateSearchTest(); + createSearchTest.process(); + break; + case "GetSearchResultsTest": + GetSearchResultsTest getSearchResultsTest = new GetSearchResultsTest(); + getSearchResultsTest.process(); + break; + case "GetUserInformationTest": + GetUserInformationTest getUserInformationTest = new GetUserInformationTest(); + getUserInformationTest.process(); + break; + case "GetListOfFilesTest": + GetListOfFilesTest getListOfFilesTest = new GetListOfFilesTest(); + getListOfFilesTest.process(); + break; + case "DownloadFileWithFileIdentifierTest": + DownloadFileWithFileIdentifierTest downloadFileWithFileIdentifierTest = new DownloadFileWithFileIdentifierTest(); + downloadFileWithFileIdentifierTest.process(); + break; + case "GenerateKeyTest": + GenerateKeyTest generateKeyTest = new GenerateKeyTest(); + generateKeyTest.process(); + break; + case "KeyGenerationNoEncTest": + KeyGenerationNoEncTest keyGenerationNoEncTest = new KeyGenerationNoEncTest(); + keyGenerationNoEncTest.process(); + break; + case "TokenizeCardTest": + TokenizeCardTest tokenizeCardTest = new TokenizeCardTest(); + tokenizeCardTest.process(); + break; + case "GetSubscriptionForReportNameTest": + GetSubscriptionForReportNameTest getSubscriptionForReportNameTest = new GetSubscriptionForReportNameTest(); + getSubscriptionForReportNameTest.process(); + break; + case "GetReportingResourceInformationTest": + GetReportingResourceInformationTest getReportingResourceInformationTest = new GetReportingResourceInformationTest(); + getReportingResourceInformationTest.process(); + break; + case "GetReportDefinitionTest": + GetReportDefinitionTest getReportDefinitionTest = new GetReportDefinitionTest(); + getReportDefinitionTest.process(); + break; + case "GetReportBasedOnReportidTest": + GetReportBasedOnReportidTest getReportBasedOnReportidTest = new GetReportBasedOnReportidTest(); + getReportBasedOnReportidTest.process(); + break; + case "GetAllSubscriptionsTest": + GetAllSubscriptionsTest getAllSubscriptionsTest = new GetAllSubscriptionsTest(); + getAllSubscriptionsTest.process(); + break; + case "CreateAdhocReportTest": + CreateAdhocReportTest createAdhocReportTest = new CreateAdhocReportTest(); + createAdhocReportTest.process(); + break; + case "CreateReportSubscriptionForReportNameByOrganizationTest": + CreateReportSubscriptionForReportNameByOrganizationTest createReportSubscriptionForReportNameByOrganizationTest = new CreateReportSubscriptionForReportNameByOrganizationTest(); + createReportSubscriptionForReportNameByOrganizationTest.process(); + break; + case "DeleteSubscriptionOfReportNameByOrganizationTest": + DeleteSubscriptionOfReportNameByOrganizationTest deleteSubscriptionOfReportNameByOrganizationTest = new DeleteSubscriptionOfReportNameByOrganizationTest(); + deleteSubscriptionOfReportNameByOrganizationTest.process(); + break; + case "DownloadReportTest": + DownloadReportTest downloadReportTest = new DownloadReportTest(); + downloadReportTest.process(); + break; + case "RetrieveAvailableReportsTest": + RetrieveAvailableReportsTest retrieveAvailableReportsTest = new RetrieveAvailableReportsTest(); + retrieveAvailableReportsTest.process(); + break; + case "GetNotificationOfChangesTest": + GetNotificationOfChangesTest getNotificationOfChangesTest = new GetNotificationOfChangesTest(); + getNotificationOfChangesTest.process(); + break; + case "GetPurchaseAndRefundDetailsTest": + GetPurchaseAndRefundDetailsTest getPurchaseAndRefundDetailsTest = new GetPurchaseAndRefundDetailsTest(); + getPurchaseAndRefundDetailsTest.process(); + break; + default: + break; + } + System.out.println(methodName + " execution end"); + } +} diff --git a/src/test/cybersource-rest-qascripts-java/src/main/resources/cybs.properties b/src/test/cybersource-rest-qascripts-java/src/main/resources/cybs.properties new file mode 100644 index 000000000..4b9290abe --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/resources/cybs.properties @@ -0,0 +1,20 @@ +#HTTP_Signature and JWT +authenticationType = jwt +merchantID = testrest +runEnvironment = CyberSource.Environment.SANDBOX +# JWT Parameters +keyAlias = testrest +keyPass = testrest +keyFileName = testrest +#P12 key path. Enter the folder path where the .p12 file is located. +keysDirectory = src/main/resources +# HTTP Parameters +merchantKeyId = 08c94330-f618-42a3-b09d-e1e43be5efda +merchantsecretKey = yBJxy6LjM2TmcPGu+GaJrHtkke25fPpUX+UY6/L/1tE= +#Logging to be enabled or not. +enableLog = true +#Log directory Path +logDirectory = log +#Log file size in KB +logMaximumSize = 5M +logFilename = cybs \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/resources/reports.json b/src/test/cybersource-rest-qascripts-java/src/main/resources/reports.json new file mode 100644 index 000000000..99795302a --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/resources/reports.json @@ -0,0 +1,28 @@ +{ + "organizationId": "Test_Merchatnt_id", + "reportDefinitionName": "TransactionRequestClass", + "reportFields": [ + "Request.RequestID", + "Request.TransactionDate", + "Request.MerchantID" + ], + "reportMimeType": "application/xml", + "reportName": "My Transaction Request report", + "timezone": "America/Chicago", + "reportStartTime": "2017-10-01T10:10:10+05:00", + "reportEndTime": "2017-10-02T10:10:10+05:00", + "reportFilters": { + "property1": [ + "string" + ], + "property2": [ + "string" + ] + }, + "reportPreferences": { + "signedAmounts": true, + "fieldNameConvention": "SOAPI," + }, + "selectedOrganizationId": "myMerchantid", + "selectedMerchantGroupName": "myGroup" +} \ No newline at end of file diff --git a/src/test/cybersource-rest-qascripts-java/src/main/resources/testrest.p12 b/src/test/cybersource-rest-qascripts-java/src/main/resources/testrest.p12 new file mode 100644 index 000000000..3d09e5504 Binary files /dev/null and b/src/test/cybersource-rest-qascripts-java/src/main/resources/testrest.p12 differ diff --git a/src/test/cybersource-rest-qascripts-java/src/main/resources/testrest.pem b/src/test/cybersource-rest-qascripts-java/src/main/resources/testrest.pem new file mode 100644 index 000000000..11b4d28bb --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/resources/testrest.pem @@ -0,0 +1,87 @@ +Bag Attributes + localKeyID: 01 + friendlyName: serialNumber=5112108039940177031860,CN=testrest +subject=/CN=testrest/serialNumber=5112108039940177031860 +issuer=/CN=CyberSourceCertAuth +-----BEGIN CERTIFICATE----- +MIICXzCCAcigAwIBAgIWNTExMjEwODAzOTk0MDE3NzAzMTg2MDANBgkqhkiG9w0B +AQsFADAeMRwwGgYDVQQDDBNDeWJlclNvdXJjZUNlcnRBdXRoMB4XDTE3MTEyMDIw +NDY0M1oXDTE5MTEyMDIwNDY0M1owNDERMA8GA1UEAwwIdGVzdHJlc3QxHzAdBgNV +BAUTFjUxMTIxMDgwMzk5NDAxNzcwMzE4NjAwggEiMA0GCSqGSIb3DQEBAQUAA4IB +DwAwggEKAoIBAQC+BtdMcokaKwTes9O+snqjWsehO0/Y4CJrwo4cdGCafRO6ows3 +mC1xmpSYttTKIdeGR1qOYpTSeY9uJh2cCfayMKXmhQf4d5v8pNDnmYBMGBwU1wWj +lYsMLFbcPFWjdPtKlou2RIWZ566YWIbWCBf+G4dHkA0D7Csp3FT3lnUN2me4lJkl +ysfqp1X8q3JDqVIQFVAduamhWCYMRS5Kg8sKwMjldGQUby88S+MOwcCA3HOHT64b +arvPId2ExqAqvfyBCPAR49V6/ywDVsH9SyHewg121ckMcA9g55tIqdsyHGRZN9fs +20kMyqEP78L4cxfisuVQC8knlfZtdcqVAY7FAgMBAAEwDQYJKoZIhvcNAQELBQAD +gYEAuM+OjmBwvd4HuquFo7C7ySUpRnsEHLE+F0c/RFyeeVFlUJqv/ysbC1UQPi+M +XLufFAfoGcpg0Qb4PzU0XsDCQ2xAkx7CcAnlHLLEtQXMX3eJr8CM2SgB5jGl5aLu +bBpVQzn7BqCIFoDmcLst4pHb/gTWhiHvIYFXiHhLMgzGCeI= +-----END CERTIFICATE----- +Bag Attributes + friendlyName: serialNumber=4285458474900176195847,CN=CyberSource_SJC_US +subject=/CN=CyberSource_SJC_US/serialNumber=4285458474900176195847 +issuer=/CN=CyberSourceCertAuth +-----BEGIN CERTIFICATE----- +MIIB5TCCAU6gAwIBAgIWNDI4NTQ1ODQ3NDkwMDE3NjE5NTg0NzANBgkqhkiG9w0B +AQUFADAeMRwwGgYDVQQDDBNDeWJlclNvdXJjZUNlcnRBdXRoMB4XDTE1MDQwOTAy +MTcyN1oXDTE4MDQwOTAyMTcyN1owPjEbMBkGA1UEAwwSQ3liZXJTb3VyY2VfU0pD +X1VTMR8wHQYDVQQFExY0Mjg1NDU4NDc0OTAwMTc2MTk1ODQ3MIGfMA0GCSqGSIb3 +DQEBAQUAA4GNADCBiQKBgQCySptbugHAzWUJY3ALWhuSCPhVXnwbUBfsRExYQitB +CVny4V1DcU2SAx22bH9dSM0X7NdMObF74r+Wd77QoPAtaySqFLqCeRCbFmhHgVSi ++pGeCipTpueefSkz2AX8Aj+9x27tqjBsX1LtNWVLDsinEhBWN68R+iEOmf/6jGWO +bQIDAQABMA0GCSqGSIb3DQEBBQUAA4GBAIKEjexJPfPWWZ0pgr+cDUh7hzMJ3KD+ +8ari6TEL3QN5mmpJ98U+ltZ7dv8a4FSeg9o5syzDOTJMi/lFdobcc9SP3XkjrW7q +pPtla8XSrO2/01nkurB+gl+tkZ0Gwt4LQN33uib1se56bIu9hfRwEtB7EbLnoXXR +CygdCOV3v1CC +-----END CERTIFICATE----- +Bag Attributes + friendlyName: CN=CyberSourceCertAuth +subject=/CN=CyberSourceCertAuth +issuer=/CN=CyberSourceCertAuth +-----BEGIN CERTIFICATE----- +MIIBxTCCAS6gAwIBAgIWMzI2OTA0NjIyMzgwMDE2ODYyNjIyMDANBgkqhkiG9w0B +AQUFADAeMRwwGgYDVQQDDBNDeWJlclNvdXJjZUNlcnRBdXRoMB4XDTEyMDExODE2 +MzcwMloXDTIyMDExODE2MzcwMlowHjEcMBoGA1UEAwwTQ3liZXJTb3VyY2VDZXJ0 +QXV0aDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuVMamKpEz+KaQk1ZujUY +ms6xO89gIsl/hm5hMf75Gc5GsOSGYD1UI34NZfrBW9mSoySPgXYBH0pq82X6pa7W +hKVZHzK/0AA7hnbKbrshyvHfv2lNjpHqRAmzwfA9gc9J3crTDXPq+tsQJjRpPhLd +M3+Paw6AxFtCeX4oX959mU8CAwEAATANBgkqhkiG9w0BAQUFAAOBgQA0Do9T1RqU +lK5jR4AwJo5UQ2Ju/4gI28XvquLzi8TXZaOW52Z6ubpIz+uK9mmH2pgKpWcmmv0b +xae5UH9DGYnenI4TwuVmWNOdPoIJPCJxNOTyd51HrQYGn+pmkrMl2PHxkluJ5BAi +wjaUnH9zKfEDslltqUGqPquKatbMVzcQUg== +-----END CERTIFICATE----- +Bag Attributes + localKeyID: 01 + friendlyName: serialNumber=5112108039940177031860,CN=testrest +Key Attributes: +-----BEGIN ENCRYPTED PRIVATE KEY----- +MIIFDjBABgkqhkiG9w0BBQ0wMzAbBgkqhkiG9w0BBQwwDgQI8lXzPuvhz54CAggA +MBQGCCqGSIb3DQMHBAhC0KLEGNkdAwSCBMgpSV7gSntEeSQCMKTs2Zmn9/nnFoJP +DrzZb5PbZMW3YMJl+Szv4cRRPOMjjKCxGr9EVAxmn7LX0y+ZtIuiTgNcd3dWp5lY +TL2siMv3VWKPH/SRc25fm1JdiGKlJKSaaS9otvAkDx591G0VXahHsv63lfkUGVaO +EOEApd4evjNUHHX69XtrXTLQWAsWCYvvW7I589qTtvbrFqM8KLmkmv4QqnUwoeN1 +bUPmJvGtLlHhoIzo+DPbb6OV8M47Cl06lFj3UZiWN2HE04Q93GRutgoMvZ/JnioO +lV1+/9/r0JkgJWm2NF1ShHqQTbX0sOSBO79481SqWpvBNTybt7VI8L+6+5bHoY5m +NjrQ1ocsR/T4ZhZf84EuLecFYL1nNLU5AD1qiw4UY8uL2mzSspZ607okUN0y06zk +9Xc/Q4DQlyJsuPEV78sr4yDDg163GjC1oONDwbb62Ne38PsSX/COjF23NUy5gPwk +dghrum8Up/mCxduxRPtB0yWDlkMD7daXFml0wYvqyprqmN6kQJ4RXhCyTsZmiq+r +3kDke5Gtmh4pZ6CijdPEitxo6HHBaqF4rN/1J4m1DFgF9pEfbiUK3CK6CxA7SDgI +IpZrmnGfuE+H3Csd4Nqz+3e3D/lH/c/8jkHaWB+7eZaeq3MsaxWj2pPRgwORgCLt +2V6KxdOZAuaWFR3ofP1Rib238upLsUVYS6BRmY2cTO11KNY6+I25XdNsBg3/b2k3 +nMilm0eeobKkwSxWz1wv60IG6SIS7WTQRccBTl+jbId9IOy1orCnf24FIECoZIBr +pF3+ggCr+PxeP8E5IH8d8eAjOutFMsAp1yKOEFe2mKNlTABrHo9zwrEXvuQA6E4H +I1O4cArsPtgUwaBZdx+F7bOeJpkfa2SYIdUk90p9ThnyEbrMrsR05gRdPT5mfNgS +zLV6IdIj+8IMOTAC+whhcgbR98CszUhKnrfv9NQ+H5SMfCM2hYvl1QouEuK0vgOG +KxezR2JdTaYkoqC2czDWbn55tRPdgVakjflsGToxh771TOvOQMiaEAD564H9FCQg +4U/Yax3D+kAyRsrPS3Z18TQNlTF3ANmGqtjRCTPXmQIh4REbu60OjWdaJ0YXf9jW +AyRIgeMlqGodxFloFkZO7OqKvIwMrPLLnovF9o8mafFMOvM2kvVzm6SQOSwvIyp8 +lzDrUUsltKpghfX/odYa9EfoO23f+yeMxxHH3xYEU2RRRpVsh/fHzhU0op5evgXi ++5qKsSKMT3a7Zsq+LQBQlOKQ1cEOvOJ1MdIdGlqAe23snhWqYRd6a9OmeydfQADo +pXLOLXnrzg/gHLTZR1WiExkmZKs95eWfvoru6J0CLEj7+4LuE5Kt4cCeJ7bZQnvy +7sHBKyfjEco+rq9xr5f5Wm/TjH0UCATzKb697kIgp/G10m4YOTt+1zk1ReqdhvAP +JNBYoJZdWKgmQsY35q8g3mCAOe96/x5oG2dbaTcYeXQ26HC8dAykrx/HtXg++rgM +h3muetYRHnXM+KlVxyTzs6Cb8WSlnFcj7hcm0GOnOISCCS/SfHMCt9HHZDxavCnX +29cI6AoKamj25uqjm2tE5KMFDgSZOWLNnvEl2VljFszF/ZasVlfxqg1OyepycYLs +c5I= +-----END ENCRYPTED PRIVATE KEY----- diff --git a/src/test/cybersource-rest-qascripts-java/src/main/resourcesreport.xml b/src/test/cybersource-rest-qascripts-java/src/main/resourcesreport.xml new file mode 100644 index 000000000..be2bf89a5 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/main/resourcesreport.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/test/cybersource-rest-qascripts-java/src/test/resourcesreport.xml b/src/test/cybersource-rest-qascripts-java/src/test/resourcesreport.xml new file mode 100644 index 000000000..be2bf89a5 --- /dev/null +++ b/src/test/cybersource-rest-qascripts-java/src/test/resourcesreport.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +