Credit Transfer Collection Reject Webhook event

Failed vs Rejected Collections

It is important to distinguish between FAILED and REJECTED states, which both indicate unsuccessful processing but have different implications:

  • A FAILED collection occurs when the entire collection fails validation checks before individual Credit Transfers (CTs) are created. This is a collection-level failure triggered by a common error affecting the whole collection. The collection is marked as FAILED, and no CTs are created.
  • REJECTED applies when individual CTs within a collection fail specific validations during processing. This is a transaction-level failure, and a collection can be marked as REJECTED even if only one CT fails. A REJECTED collection can also have a mix of rejected and failed CTs.

The following table summarises the key differences:

Feature FAILED REJECTED
Scope Collection-level Transaction-level (can include collection-level failures)
Trigger Failure of collection-level validations Failure of individual CT validations during processing
CT Creation No CTs are created CTs are created, but some/all may fail or be rejected
Error Reporting rejectDetails on the collection object rejectDetails on individual CT objects (and potentially the collection)
Example Reason Invalid originator account, incorrect total amount Insufficient funds for a specific CT

Webhook Message Details

This Webhook has the following event types:

Webhook Event Type Description
CreditTransferCollectionRejected Triggered where a Credit Transfer collection transitions to status = REJECTED

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 CreditTransferCollectionRejected
root resourceReference string optional This can be the business reference of the resource, useful when filtering events via the Webhooks area of the Nuapay Console.
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 the URI of the resource. Use the URI to retrieve more details - see Retrieve Credit Transfer Collection.
root resourceType string Mandatory This is the type of the resource to which the URI is related. In this case it is a Credit Transfer Collection resource.
root reasonCode string optional The SEPA Reason Code, the Bacs Reason Code (depending on the scheme) or the Application Reason Code (where a collection has been rejected prior be being passed to Clearing).
root resourceOwner string Mandatory This is the identifier of the merchant resource to which this notification is linked.
root resourceRemittanceInformation string optional Null.

JSON Sample

The following is an example of a Credit Transfer Collection Rejection 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": "CreditTransferCollectionRejected",    
 "resourceReference": "E2E123456",
 "resourceReferenceType": "Reference",   
 "resourceUri": "/credittransfers/collections/w24y5qgv2p",
 "resourceType": "CreditTransferCollection",
 "reasonCode": null,
 "resourceOwner": "878UJK",
 "resourceRemittanceInformation": null


}