Returns all existing Level 3 Data for a specific transaction.
Usage
curl -X GET https://api.payjunction.com/transactions/{transactionId}/level3 \
-u "YOUR_USER:YOUR_PASSWORD" \
-H "Accept: application/json" \
-H "X-PJ-Application-Key: YOUR_PRODUCTION_APP_KEY"
Example Request in "Labs Demo" account:
curl -X GET -u "YOUR_USER:YOUR_PASSWORD" -H "Accept: application/json" -H "X-PJ-Application-Key: 70ef7234-c45d-472b-92b8-e8f494901a84" \
"https://api.payjunctionlabs.com/transactions/19/level3"
Example Response
{
"amountDuty" : "1.11",
"amountFreight" : "2.22",
"destinationZip" : "93101",
"shipFromZip" : "91737"
"items" : [ {
"amountDiscount" : "0.00",
"amountTax" : "2.17",
"amountTotal" : "9.87",
"amountUnitCost" : "2.2200",
"commodityCode" : "9504500000",
"description" : "description",
"discountIndicator" : "NOT_DISCOUNTED",
"discountRate" : "0.00",
"grossNetIndicator" : "NET",
"productCode" : "812872019123",
"quantity" : "1.0000",
"taxRate" : "8.75",
"taxType" : "941",
"unitOfMeasure" : "EA"
}, {
"amountDiscount" : "0.00",
"amountTax" : "2.17",
"amountTotal" : "9.87",
"amountUnitCost" : "2.2200",
"commodityCode" : "9504500000",
"description" : "description2",
"discountIndicator" : "NOT_DISCOUNTED",
"discountRate" : "0.00",
"grossNetIndicator" : "NET",
"productCode" : "812872019123",
"quantity" : "1.0000",
"taxRate" : "8.75",
"taxType" : "941",
"unitOfMeasure" : "EA"
} ]
}