> ## Documentation Index
> Fetch the complete documentation index at: https://developer.tazapay.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Fetch Collect Details via Dashboard

> View incoming collects on the [Tazapay dashboard](https://dashboard.tazapay.com/)

## Accessing Transactions

* Once logged in, click on the `Transactions` tab located on the left-hand side vertical navigation bar.
* A listing screen will appear displaying the following columns:
  * Payment ID: A unique identifier for each collect, starts with `col_`
  * Status: The status of the collect - succeeded, failed or on\_hold
  * Invoice Amt: The amount in the currency collected
  * Date: The timestamp at which the collect was created
  * Payment Method: Indicates whether the collect was made using Local Bank Transfer, Wire Transfer or via Stablecoins.

<img src="https://mintcdn.com/tazapay-58ae360f/SWJmhDU02-pAjete/images/diagrams/collections-listing.png?fit=max&auto=format&n=SWJmhDU02-pAjete&q=85&s=21ce662b4b4b59d3c74a87b6c5bd672d" alt="collections-listing" width="1999" height="1242" data-path="images/diagrams/collections-listing.png" />

## Searching for collection records

Use the search tab at the top-left corner of the screen to find a specific collect ID. You can perform a full search with the exact ID or a partial search with a part of the ID.

## Viewing Collect Details

To view the expanded details for a collect, you can simply click on the Payment ID starting with `col_` on the `Transactions` screen and it will redirect you to the collection summary screen. The screen will display the following information -

### Account Details

| Fields          | Description                                            |
| --------------- | ------------------------------------------------------ |
| Account ID      | Unique Tazapay Account ID for your registered business |
| Account Email   | User Email                                             |
| Account Country | Business Registration Country                          |
| Business Name   | Registered Name of your business                       |

### Collection Details

| Fields                          | Description                                                                                       |
| ------------------------------- | ------------------------------------------------------------------------------------------------- |
| Collection Amount               | The amount credited for the payment                                                               |
| Fees                            | Tazapay Fees for the payment                                                                      |
| Payment Method                  | The payment method (Local Bank Transfer or Wire Transfer or Stablecoin)                           |
| Receiving Account Number / IBAN | The account number (or IBAN in case the currency is EUR) of the receiving account for the payment |
| Status                          | The status of the collect - its usually `succeeded`. Rarely can be `on_hold` or `failed`          |
| Transaction Hash                | Unique identifier assigned to this blockchain transaction                                         |

### Sender details

Sender details vary by the payment method used to fund the payment.

<Tabs>
  <Tab title="Virtual account">
    <Note>
      These fields are populated only if the sender enters them in the banking
      application used to transfer the funds. Any of them may be empty.
    </Note>

    | Field                    | Description                                           |
    | ------------------------ | ----------------------------------------------------- |
    | `name`                   | Name of the sender                                    |
    | `bank`                   | Details of the bank account the payment was sent from |
    | `reference`              | Reference entered by the sender                       |
    | `additional_information` | Free-text details entered by the sender               |
  </Tab>

  <Tab title="Wallet">
    | Field             | Description                                    |
    | ----------------- | ---------------------------------------------- |
    | `deposit_address` | Sender's address on the blockchain             |
    | `type`            | Wallet or blockchain used, e.g. Ethereum, Tron |
  </Tab>
</Tabs>

***

## Next steps

<CardGroup cols={2}>
  <Card title="Fetch incoming payments" icon="code" href="/collection-accounts/incoming-payments/api">
    Poll the API to retrieve incoming payments and their sender details.
  </Card>

  <Card title="Subscribe to webhooks" icon="webhook" href="/collection-accounts/incoming-payments/webhooks">
    Get notified the moment funds land, instead of polling.
  </Card>
</CardGroup>
