Error Handling in Synqpay
Synqpay uses the JSON-RPC protocol to handle errors during communication between the client and the payment device. This document explains how errors are structured and handled within this protocol, including the error hierarchy and various types of errors that may be encountered.
Error Hierarchy
-
Transport Layer Errors:
These errors occur at the transport layer and are not related to the processing of the JSON-RPC request itself. They typically indicate issues with the underlying connection or authorization.- Example: HTTP 401 Unauthorized – This occurs if the client is not authorized to access the requested resource.
-
JSON-RPC Errors (Method-Specific Errors):
These errors are thrown when the request cannot be processed due to issues within the method itself, such as invalid parameters or an unsupported operation. Each method specifies the types of errors it may throw, and these errors prevent the request from being processed.- Example: Invalid parameters – A required parameter is missing or incorrectly formatted.
-
Response Handling for Methods That Start Processing:
Some methods do not immediately complete their operation upon receiving the request. Instead, they begin processing and return a response indicating that the request is valid and processing has started.-
Response Contains a Result:
For methods that start processing, the response will include aResult
field. If the request is valid, theResult
field indicates that the operation has begun, but the task is not yet completed.- Error in the Result Field: If an issue occurs during processing (like a user cancellation or a timeout), the error will be returned inside the
Result
field, signaling that the request was valid, but some problem prevented the task from completing.
- Error in the Result Field: If an issue occurs during processing (like a user cancellation or a timeout), the error will be returned inside the
-
Key Point: If the response contains a
Result
field, it means processing has started. The response could either contain a successful result or an error related to the processing, depending on what happened during the execution.
-
-
Transaction-Specific Errors
Transaction requests have a special error handling structure. TheResult
field in the response indicates whether the transaction was successful or not, but there's an additional level of error handling whenHOST_ERROR
is encountered.-
Approved Transaction:
If the transaction is successfully approved, the result will be "OK", and the transaction has been processed. -
Transaction Failure with HOST_ERROR:
If the transaction is not approved, the result may beHOST_ERROR
. This indicates that the transaction could not be processed because of a host-level decision, such as:- Online decline: The transaction was declined by the host.
- Processing failure: The host determined that the transaction request was invalid for some reason.
-
Best Practice:
While theHOST_ERROR
in the result field indicates a failure, it is recommended to also check thetransactionStatus
field (e.g.,CAPTURED
,DECLINED
, etc.) for more detailed information about the transaction status.
-