TallyMarks
  • Overview
  • Getting Started
    • Points Economy
    • Creating Your First Rule
      • Assessment Criteria
      • Fulfilment Actions
      • Rule Status
    • Testing Rules
    • Sending Events
  • Key Concepts
    • Customer Profile
    • Events
      • Action
      • Anniversary
      • Basket
      • Errors
      • Orders
      • Points
      • Redemptions
      • Transactions
    • Segments
    • Points Expiry
    • Triggers
    • Web Hooks
  • API Documentation
    • Authentication
    • Error Handling
    • End Point Urls
    • Event API
    • Customer API
    • Admin API
  • Example Rules Sets
    • Bonus Points Earning for Specific Orders
Powered by GitBook
On this page
  • Http Error Codes
  • Error Response

Was this helpful?

  1. API Documentation

Error Handling

Http Error Codes

  • 200 — Success: Everything went ok.

  • 208 - Already Reported: An event with this EventId has already been recieved. The event will be reprocessed and any previously incomplete assessment or fulfilment rules will be executed. Not duplicate processing will take place.

  • 400 - Invalid Request: The request contain invalid information, refer to the error response for further detail.

  • 401 — Unauthorized: Missing or incorrect API token in header.

  • 404 - Not Found: The resource was not found.

  • 500 — Internal Server Error: This is an issue with Postmark’s servers processing your request. In most cases the message is lost during the process, and we are notified so that we can investigate the issue.

Error Response

The standard response code is as follows:

{
  "code": "string",
  "message": "string",
  "detail": "string",
  "errors": [
    {
      "message": "string",
      "param": "string",
      "value": "string"
    }
  ]
}
PreviousAuthenticationNextEnd Point Urls

Last updated 5 years ago

Was this helpful?