Push Audit Results API to External Source(s)

This integration will send a request to the configured endpoint as a POST request. Containing the transaction details as JSON object in the body of the request.

URL Example to receive the transaction data:

https://yourserver.com/receive-transaction?key=3844ikksdl3905klxio1

(URL and Key is configurable on the dashboard. By default Senitron will Attempt to send the data to the end point 5 times, and then it will stop, and will send out an Fail Email notification)

{
  "id":          48475,                  // Senitron Transaction ID (Internal)
  "name":        "Sale",                 // Transaction Name / Type
  "location":    "001",                  // Store Location Number
  "zone":        "54, Sales Floor",      // Audit location,
  "user":        "John Doe",             // User name
  "user_email":  "john.doe@test.com",    // User email
  "comment":     "Reason / notes",       // Reason / notes memo from the audit
  "document_id": "183-642958",           // Ticket No / Transaction ID
  "reference":   "6000",                 // Misc. reference attached on transaction recorded
  "count":       2,                      // Count of items in transaction
  "total":       "25.00",                // Total amount of sale transaction
  "currency":    "USD",                  // Transaction currency
  "date":        "2020-05-14 11:51:55",  // Transaction date & time
  "audit_date":  "2020-05-14 11:51:55",  // Audit date & time
  "transaction_details": [
    {
      "id":          129551,                       // Senitron Transaction ID (Internal)
      "epc":         "3074D89E04D99E7503C1A452",   // RFID Tag EPC
      "product_id":  "1271417",                    // Catalog Product ID / Item Number
      "serial_no":   "2033",                       // Tag Serial number
      "alt_serial":  "AL-1000",                    // Alt. Serial
      "description": "Shimmer Lettermen Hood",     // Catalog Item description
      "price":       "19.00",                      // Catalog Item price
      "comment":     "Reason / notes"              // Item notes
    },
    {
      "id":          129552,                       // Senitron Transaction ID (Internal)
      "epc":         "3074D89E05372DF5038345AA",   // RFID Tag EPC
      "product_id":  "1367223",                    // Catalog Product ID / Item Number
      "serial_no":   "2033",                       // Tag Serial number
      "alt_serial":  "AL-1000",                    // Alt. Serial
      "description": "Classic Lettermen Tee",      // Catalog Item description
      "price":       "6.00",                       // Catalog Item price
      "comment":     "Reason / notes"              // Item notes
    }
  ]
}