Manual Integration API (Open API)
If you've created your own e-commerce site and require manual integration, here are the details.
Information required
To get started, please gather the following details from your senangPay Dashboard:
Go to Menu > Settings > Profile
1. Merchant ID and Secret Key : Find these in the Shopping Cart Integration Link section.
2. Return URL : Specify the Return URL where senangPay will redirect buyers after payment processing.
3. Callback URL :
Provide the Callback URL, which serves as an alternative notification method if there is an issue with the transaction flow.
For more information on the Callback URL, please read here ->
Ensure you have these details ready to facilitate a smooth integration process.
What parameters to send to senangPay
Below are the details of the elements in the table :
detail
Description displayed during payment (max 500 characters). Underscores (_) convert to spaces.
Example:
Shopping_cart_id_30
Allowed characters: A-Z, a-z, 0-9, dot ( . ), comma ( , ), dash ( - ), underscore ( _ ).
amount
The charge amount, formatted to 2 decimal places.
Example:
25.50
.
order_id
Identifies the shopping cart on return after payment (max 100 characters).
Example:
3432D4
Allowed characters: A-Z, a-z, 0-9, dash ( - ).
hash
name
Adds the customer's name automatically. It's optional and can be edited.
email
Populates the customer's email for them. Optional and can be modified.
phone
Inserts the customer's phone number. Optional and adjustable by the customer.
timeout
(optional)
Sets the payment timeout in seconds
Example : 8 minutes = 480 seconds
If not completed within this time, the payment will expire and redirect to the return URL. Minimum is 60 seconds; below this defaults to 60 seconds. No timeout if omitted.
** The "Test it" option is available when using Firefox or Safari to test the API
Handles 'Return' & 'Callback' from senangPay
1. The parameters will be send using GET method.
2. The parameters are sent to URL as configured in the return URL. Refer to the ‘Information Required’ section.
The table below lists the details of the elements:
status_id
This is to indicate the status of the payment. It only has 3 values which is ; 2 for pending authorization, 1 for successful and 0 for failed.
order_id
This is the order that is sent to senangPay. This is to identify the shopping cart transaction.
msg
This is the message to describe the payment status. The maximum length is 100 characters. Take note that the message may contain underscores. You can replace the underscore as space when displaying the message to your customers. Example: Payment_was_successful.
transaction_id
This is the transaction ID used by senangPay. You can use this ID to track the transaction in senangPay. The maximum length is 100 characters. Example 14363538840
hash
3. Callback : The parameter will be send by POST method.
Last updated