Payment Timeout Webhook event

Webhook Message Details

This Webhook has a single event type: PaymentTimeout

Timeouts Overview

The timeout is the configured period from when a payment is initiated and when the PSU can complete that payment (by authorising it at the ASPSP). You can:

  • Set the timeout individually, per payment, by setting the paymentTimeout parameter in the Create Payment API.
  • Use the global timeout (15 minutes).
  • Set up a custom default timeout for all your payments.

Please discuss your requirements with your Account Manager. The Nuapay API Support team will be happy to configure your required timeout value if requested.

Webhook Event Message Details

The following table describes the details of the Webhook notification:

Parent Parameter Type Mandatory/Optional Description
root eventTimestamp number Mandatory The Unix epoch timestamp
root eventType string Mandatory PaymentTimeout
root resourceReference string optional This can be the business reference of the resource, useful when filtering events via the Webhooks area of the Developer Dashboard.
root resourceReferenceType string optional This can be a business reference of the resource, useful when filtering events via the Webhooks area of the Developer Dashboard.
root resourceUri string Mandatory This is URI of the payment resource. Use the URI in the Retrieve Payment call.
root resourceType string Mandatory This is the type of the resource to which the URI is related. In this case it is a payment resource.
root reasonCode string optional Null
root resourceOwner string Mandatory This is the identifier of the merchant resource to which this notification is linked.
root resourceRemittanceInformation string optional Remittance information related to the transaction.

JSON Sample

The following is an example of a Received Payment event JSON:

Headers:

POST http://example.com/webhooks
Content-Type: application/json;charset=UTF-8
x-signature: 123ab01d030dee864fb44cc65a3be52ae591f46cde8d14d3e72fbc3790e4a304
Content-Length: 261
X-Request-Id: dc645679-71a5-498d-bb29-ec027948c7c1

JSON Request Body

{
    "eventTimestamp": 1501169079000,
    "eventType": "PaymentTimeout",    
    "resourceReference": "7392ihg234rg8b4d1362y4",
    "resourceReferenceType": "EndToEndId",    
    "resourceUri": "/payments/n7rklmvdmq",
    "resourceType": "payment",
    "reasonCode": null,
    "resourceOwner": "tc47ygrg72",
    "resourceRemittanceInformation": null    
}