Export Transaction by Date
This request will allow you to export your credit card transactions by a Start and End Date range. Submitting optional attributes will allow you to narrow down to the specific transactions you are looking for between this range.
Request
Response
POST: /v1/transactions/export/by_date_range
REQUEST:
{
"start_date":"04/10/2015",
"end_date":"04/15/2015"
}
Field types: R – Required, O – Optional, C - Conditional
RESPONSE:
{
"success": true,
"response_code": 1,
"status_message": "Your request has been successfully completed.",
"transactions": [
{
"transaction_id": 79388123,
"credit_card": {
"masked_number": "************5454",
"expiration_month": 12,
"expiration_year": 20
},
"transaction_type": "SALE",
"description": "",
"amount": 110,
"invoice_id": "inv1234",
"shipping_address": {
"name": "",
"street_address": "",
"street_address2": "",
"city": "",
"county": "",
"state": "",
"zip": "85284",
"country": "US"
},
"billing_address": {
"name": "Kevin",
"street_address": "8320 E. West St.",
"street_address2": "",
"city": "Spokane",
"state": "WA",
"zip": "85284",
"country": "US"
},
"receipt_emailed_to": "",
"tax_amount": "8.10",
"customer_reference_id": "PO123456",
"approval_code": "VTLMC1",
"approval_message": "EXACT MATCH - Approved and completed",
"avs_response": "Full Exact Match",
"csc_response": "Match",
"status_code": "GB571",
"status_message": "GB571",
"created": {
"through": "API",
"at": "4/10/2015 4:06:30 PM",
"by": "sandbox123",
"from_ip": "64.106.246.164"
},
"settled": "4/10/2015 8:13:45 PM",
"customer_id": ""
}
],
"external_transaction_id": ""
}
page revision: 5, last edited: 29 Jul 2016 19:30