- Payment Gateway Overview
- Getting Started
- Payment Methods
- Integration
- API Endpoints
- APIs
- Authorisation
- Order
- Payment
- Refund
- Settlement
- Split Settlement
- E-Commerce Plugins
- Payment Button
- Qr Code
- UPI Mandate
- Payment Links
- Authorisation
Payment Link Webhook Request
POST
merchant_url
Request
Body Params application/json
quickCollectRequestId
string
optional
type
enum<string>
optional
Allowed values:
PAYMENTDUE_DATE
amount
number
optional
paymentStatus
enum<string>
optional
Allowed values:
SUCCESSFAILED
message
string
optional
paymentDate
string <date-time>
optional
Example
{
"quickCollectRequestId": "string",
"type": "PAYMENT",
"amount": 0,
"paymentStatus": "SUCCESS",
"message": "string",
"paymentDate": "2019-08-24T14:15:22Z"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'merchant_url' \
--header 'Content-Type: application/json' \
--data-raw '{
"quickCollectRequestId": "string",
"type": "PAYMENT",
"amount": 0,
"paymentStatus": "SUCCESS",
"message": "string",
"paymentDate": "2019-08-24T14:15:22Z"
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}