Defintions
For request and response defintions, visit Defintions For Validate Receipts
Example Request
cURL
curl --request POST \
--url https://api.taggun.io/api/validation/v1/campaign/receipt-validation/file \
--header 'accept: application/json' \
--header 'apikey: 12345678abcd1234efgh567890abcdef' \
--header 'content-type: multipart/form-data' \
--form incognito=false \
--form file='@example-image.jpeg' \
--form campaignId=october-cola-24
Request Breakdown
file
: The receipt image/PDF file (required)- Maximum size: 20MB
- Supported formats: PDF, JPG, PNG, GIF, HEIC
campaignId
: Unique identifier for the campaign settings (required)incognito
: Boolean flag to control receipt storage (optional)- Default: false
ipAddress
: End user's IP address (optional)near
: Geographic location for merchant search (optional)- Format: "city, state, country"
referenceId
: Custom reference for tracking (optional)userId
: Individual user identifier for fraud detection (optional)
Example JSON Responses
Successful Validation
{
"successful": true,
"failedValidations": [],
"passedValidations": [
"merchant_name_validated",
"campaign_date_validated",
"product_line_items_validated",
"fraud_detection_unique_receipt_validated"
],
"productLineItems": [
{
"name": "COCA COLA 12PK",
"unitPrice": 6.99,
"totalPrice": 13.98,
"quantity": 2
},
{
"name": "DORITOS NACHO",
"unitPrice": 4.99,
"totalPrice": 4.99,
"quantity": 1
}
],
"matchedProductLineItems": [
{
"name": "COCA COLA 12PK",
"unitPrice": 6.99,
"totalPrice": 13.98,
"quantity": 2
}
],
"date": "2024-10-15T14:22:31.000Z",
"merchantName": "Walmart",
"totalAmount": 23.97,
"receiptNumber": "0021556789",
"invoiceNumber": null,
"trackingId": "T-20241015-8834567",
"targetRotation": 0,
"fraudDetection": {
"similarityScore": 0.12,
"passed": true
}
}
Failed Validation
{
"successful": false,
"failedValidations": [
"merchant_name_validated",
"product_line_items_validated",
"fraud_detection_unique_receipt_validated"
],
"passedValidations": [
"campaign_date_validated",
],
"productLineItems": [
{
"name": "PEPSI 12PK",
"unitPrice": 6.99,
"totalPrice": 13.98,
"quantity": 2
},
{
"name": "MTN DEW 2L",
"unitPrice": 2.50,
"totalPrice": 5.00,
"quantity": 2
},
{
"name": "DORITOS NACHO",
"unitPrice": 4.99,
"totalPrice": 4.99,
"quantity": 1
}
],
"matchedProductLineItems": [],
"date": "2024-10-15T14:22:31.000Z",
"merchantName": "Kroger",
"totalAmount": 23.97,
"receiptNumber": "0021556789",
"invoiceNumber": null,
"trackingId": "T-20241015-8834567",
"targetRotation": 0,
"fraudDetection": {
"similarityScore": 0.12,
"passed": true
}
}
Response Breakdown
successful
: Boolean indicating if the receipt passed all validationsfailedValidations
: Array of validation rules that failedpassedValidations
: Array of validation rules that passedproductLineItems
: Array of all products found on the receiptmatchedProductLineItems
: Array of products that match campaign requirementsdate
: Receipt transaction datemerchantName
: Name of the merchanttotalAmount
: Total amount of the receiptreceiptNumber
: Receipt identifier from merchantinvoiceNumber
: Invoice number if availabletrackingId
: Unique identifier for the validation requesttargetRotation
: Image rotation valuefraudDetection
: Fraud detection results including similarity score
Status Codes
200
: Successful validation400
: Bad request (invalid parameters or file)403
: Authentication error (invalid API key)404
: Campaign ID is not found