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

# The Client Wallet object

### Description

The Client Wallet object represents one of two wallets created automatically by Mangopay for the platform in each currency:

* Fees Wallet - Stores all `Fees` taken on transactions by the platform and paid out by Mangopay automatically as part of the billing cycle (see the [Fees](/guides/fees) guide). The `FundsType` of the Fees Wallet is `FEES`.
* Repudiation Wallet - Manages funds relating to [disputes management](/guides/disputes). The `FundsType` of the Repudiation Wallet is `CREDIT`.

There can be only one wallet per `FundsType` and `Currency`.

<Note>
  **Note – Latency of balance update**

  The client wallet balance can take a few minutes to be updated after a transfer with fees has been done.
</Note>

### Attributes

<ParamField body="Balance" type="object">
  The current balance of the wallet.

  <Expandable title="properties">
    <ParamField body="Currency" type="string">
      **Returned values:** The three-letter <a href="/api-reference/overview/data-formats" target="_blank">ISO 4217 code</a> (EUR, GBP, etc.) of a <a href="/guides/currencies" target="_blank">supported currency</a> (depends on feature, contract, and activation settings).

      The currency of the balance.
    </ParamField>

    <ParamField body="Amount" type="integer">
      An amount of money in the smallest sub-division of the currency (e.g., EUR 12.60 would be represented as `1260` whereas JPY 12 would be represented as just `12`).
    </ParamField>
  </Expandable>
</ParamField>

<ParamField body="Currency" type="string">
  **Returned values:** The three-letter <a href="/api-reference/overview/data-formats" target="_blank">ISO 4217 code</a> (EUR, GBP, etc.) of a <a href="/guides/currencies" target="_blank">supported currency</a> (depends on feature, contract, and activation settings).

  The currency of the wallet.
</ParamField>

<ParamField body="FundsType" type="string">
  **Returned values:** `DEFAULT`, `FEES`, `CREDIT`

  The type of funds in the wallet:

  * `DEFAULT` – Regular funds for user-owned wallets. Wallets with this `FundsType` cannot have a negative balance.
  * `FEES` – Fees Wallet, for fees collected by the platform, specific to the Client Wallet object.
  * `CREDIT` – Repudiation Wallet, for funds for the platform's dispute management, specific to the Client Wallet object.

  **Note:** The Fees Wallet and Repudiation Wallet are created automatically by Mangopay for each currency.
</ParamField>

<ResponseField name="Id" type="string">
  The unique identifier of the wallet.

  The `Id` of Client Wallet object has the format `FundsType`\_`Currency`, for example: `FEES_EUR`, `CREDIT_GBP`, etc.
</ResponseField>

<ParamField body="Tag" type="string">
  Max. length: 255 characters

  This parameter usually allows you to enter custom data, but in the case of the Client Wallet object, it is always “null” as the object is automatically created.
</ParamField>

<ParamField body="CreationDate" type="Unix timestamp">
  The date and time at which the wallet was created.
</ParamField>
