Express Credit Transfer Reject Webhook event

Webhook Message Details

This Webhook has the following event types:

Webhook Event Type Description
InstantCreditTransferCSMReject Triggered where a PACS.002 import from the CSM updates an Express Credit Transfer transaction (EUR) to status = REJECTED
InstantCreditTransferBBReject Triggered where a PACS.002 import updates the Express CT transaction (EUR) to status = REJECTED. This reject was generated by the Beneficiary Bank (BB) rather than at Clearing.
CreditTransferReject Triggered when a Webhook is received from the 3rd-Party FPS processor, informing of a CT transaction (GBP) rejection

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 One of: - InstantCreditTransferCSMReject

- InstantCreditTransferBBReject - CreditTransferReject
root resourceTechnicalId number Mandatory Unique identifier
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 the URI of the resource. Use the URI to retrieve more details - see Retrieve Credit Transfer.
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 resource.
root reasonCode string optional The The SEPA Reason Code or the Bacs Reason Code (depending on the scheme)
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 Credit Transfer 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": "InstantCreditTransferBBReject",
	"resourceReference": "321-CTAB-234-GFT",
	"resourceReferenceType": "EndToEndId",
	"resourceUri": "/beneficiaries/abxq9ox92l/credittransfers/a2av38kz2w",
	"resourceType": "CreditTransfer",
	"reasonCode": "CUST",
	"resourceOwner": "tc47ygrg72",
	"resourceRemittanceInformation": "PAYMENT RE: DEF"
}