# Money Transfer Details
source: https://developer.mastercard.com/open-finance-au/documentation/products/money-transfer-details/index.md

Tip: Accessing user data (account data, transactions, reports, etc.) requires user consent. For more about consent please check the [consent](https://developer.mastercard.com/open-finance-au/documentation/consent/index.md) page.

This product can be used to retrieve a customer's money transfer details for the purposes of Account Opening or Money Transfer Verification (MTV) to initiate payment. Use the `customerId` and the `accountId` parameters to specify the customer's account.

API Reference: `GET /aggregation/v3/customers/{customerId}/accounts/{accountId}/details`

A successful response will have the following form:
* JSON

```JSON
"paymentInstructions":
[
  {
    "type": "moneyTransfer",
    "accountNumber": "2343534556",
    "descriptors":
    [
      {
        "type": "bsbNumber",
        "value": "033-547"
      }
    ]
  }
]
```

The `bsbNumber` is required for money transfer and consists of three distinct parts in the format: XXY-ZZZ, where:

* XX = The parent Financial Institution
* Y = The state where the branch is located
* ZZZ = The branch location
