Notification- Callback URL

This endpoints are used to manage notifications for merchants and partners

Partner Merchant Payment Notification CallBackURL

This endpoint is used to notify partners of the payment status of an order

POST

The URL of this endpoint is sent during the 'Create Order' call on IntraPay by Partner as the partner_callback_url

Authentication

Partner Public key pk_partner_xxx will be added as authorization header

The secret key of merchant and secret key of partner (for example, concat string:- [sk_merchant_xxx+''+sk_partner_xxx] ) is used to generate the digital signature that is attached to the request body when making the notification request

Security

Only request from Whitelisted IntraPay IPs will be accepted by Partner

Headers

Request Body

Example Request- Code

const fetch = require('node-fetch');

fetch("null", {
  "method": "POST"
})
  .then(response => console.log(response))
  .catch(err => console.error(err))

Last updated