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

# Record Deposit Wallet Activity (By Token)

> Call this endpoint whenever you display deposit wallets for a customer identified by their customer deposit token. Activity is recorded for all wallets linked to that customer, temporarily increasing balance polling so incoming payments are detected more quickly.

<Info>
  **Note:** When using the production environment at [moonpay.hel.io](http://app.hel.io), set your API endpoint to `api.hel.io/v1` and generate API keys there. For the development environment, use `api.dev.hel.io/v1` and generate API keys from [moonpay.dev.hel.io](http://app.dev.hel.io).
</Info>


## OpenAPI

````yaml POST /v1/deposit-wallet/token/{tokenId}/activity
openapi: 3.0.0
info:
  title: Helio Open API
  description: |-
    API schema and definitions for Helio API. <br/> 
          The API is using two types of Authentication, for dashboard endpoints we use <b>JSON Web Token (JWT)</b> that is generated by self custodial wallet signing a message from API.</br> 
          We also support authentication with <b>API Key and Secret</b> which can be generated on <a href='https://hel.io'>Helio dashboard</a>.
  version: 1.0.0
  contact: {}
servers:
  - description: Helio API (Mainnet)
    url: https://api.hel.io
  - description: Helio API (Devnet)
    url: https://api.dev.hel.io
security: []
tags:
  - name: Webhooks
  - name: Exports
  - name: Currencies
    description: >-
      Supported currencies endpoint, includes fiat and digital assets
      </br><i>Authentication: </i><b>None</b>
externalDocs:
  description: Helio product documentation
  url: https://docs.hel.io/
paths:
  /v1/deposit-wallet/token/{tokenId}/activity:
    post:
      tags:
        - Deposits
      summary: Record Deposit Wallet Activity (By Token)
      description: >-
        Call this endpoint whenever you display deposit wallets to a customer
        identified by their **customer deposit token**. Activity is recorded for
        **all** deposit wallets linked to that customer. This temporarily
        increases balance polling and helps detect incoming payments more
        quickly, improving the payment experience for your customers.
      operationId: DepositController_recordActivity
      parameters:
        - name: tokenId
          in: path
          required: true
          description: A unique customer token that identifies the customer’s deposit.
          schema:
            type: string
      responses:
        '201':
          description: >-
            Deposit wallet activity was successfully recorded. No response body
            is returned.
      security: []

````