Payment Disclosure Resource

The Payment Disclosure resource is used to return information about a payment to meet regulatory compliance. The service accepts a customerId and paymentId and returns relevant payment details including fee and available date information.

Disclosure will only return information on committed Dodd-Frank payments.

{
    "paymentId": string,
    "availableDate": string,
    "currencyCode": string,
    "estimatedPaymentAmount": 0,
    "estimatedExchangeRate": 0,
    "feeInformation": [
        {
            "totalFees": 0,
            "description": string
        }
    ]
}
{
    "paymentId": "Payment123",
    "availableDate": "2022-02-12T00:00:00",
    "currencyCode": "NZD",
    "estimatedPaymentAmount": 1000.0,
    "estimatedExchangeRate": 0.6805,
    "feeInformation": {
        "totalFees": 4.16,
        "description": "Wire"
    }
}