Examples

Sample Deposit Notification

{
    "subject": "TRANSACTION:GBP:1234567812345678",
    "timestamp": "YYYY-MM-DDTHH:MM:SS.000Z",
    "account_id": 1234,
    "transactions": [
        {
            "id": "transaction id here",
            "timestamp": "transaction timestamp here",
            "amount_instructed": 9.99,
            "amount_actual": 9.99,
            "currency": "GBP",
            "credit": true,
            "reference": "sender's reference",
            "bank_name": "",
            "bank_country": "",
            "account_name": "senders name",
            "account_number": "sender's account number available",
            "account_address": "sender's address if available",
            "sort_code": "sender's UK sort code if applicable",
            "iban": "sender's IBAN if available",
            "notes_external": "",
            "from": "sender's name"
        }
    ]
}

Sample Payment Notification

{
    "subject": "TRANSACTION:GBP:1234567812345678",
    "timestamp": "YYYY-MM-DDTHH:MM:SS.000Z",
    "account_id": 1234,
    "transactions": [
        {
            "id": "transaction id here",
            "timestamp": "transaction timestamp here",
            "amount_instructed": 9.99,
            "amount_actual": 9.99,
            "currency": "GBP",
            "credit": false,
            "reference": "sender's reference",
            "bank_name": "",
            "bank_country": "",
            "account_name": "beneficiary name",
            "account_number": "beneficiary account number if available",
            "account_address": ""
            "sort_code": "beneficiary's UK sort code if applicable",
            "iban": "beneficiary's IBAN if available",
            "notes_external": "",
            "to": "beneficiary name"
        }
    ]
}