v1
latestOpenAPI 3.0.02026-07-2671142187.3 KBPayment
Process a Verify Transaction
post/payment/verify
Headers
idempotency-keystring uuid required
A UUID-formatted idempotency key. Accepted format is 25-36 alphanumeric characters (including '-' and '_').
Request body
Example request
{
"ipAddress": "192.168.1.1",
"ecommerce": true,
"currency": "CAD",
"amount": 100,
"invoice": {
"notes": "No vegetables please",
"shipping": {
"amount": 10.99,
"details": "Canada Post 1-day shipping",
"address": {
"name": "John Smith/Helcim",
"street1": "123 Street",
"city": "Calgary",
"province": "AB",
"country": "CAN",
"postalCode": "H0H0H0",
"phone": "1234567890",
"email": "john@example.com"
}
},
"pickup": {
"date": "2022-01-25 13:55:55",
"name": "Jane Smith"
},
"tax": {
"amount": 5.99,
"details": "GST 5%"
},
"discount": {
"amount": 10.99,
"details": "DISC100"
}
},
"cardData": {
"cardHolderName": "John Doe"
},
"billingAddress": {
"name": "John Smith/Helcim",
"street1": "123 Street",
"city": "Calgary",
"province": "AB",
"country": "CAN",
"postalCode": "H0H0H0",
"phone": "1234567890",
"email": "john@example.com"
}
}Response
Successful
Example response
{
"transactionId": 10,
"cardBatchId": 11,
"dateCreated": "2020-01-01 00:00:00",
"status": "APPROVED",
"user": "Helcim System",
"type": "purchase",
"amount": 11.99,
"currency": "CAD",
"avsResponse": "M",
"cvvResponse": "Y",
"cardType": "Visa",
"approvalCode": "HCMAPPRV",
"cardToken": "5454HCMXTEST5454",
"cardHolderName": "John Smith",
"customerCode": "CST1010",
"invoiceNumber": "INV2022",
"warning": "Failed to link customer to invoice"
}