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

# Refresh Products

> Requests an update of the provided products for the link.

<Tip>This is an asynchronous operation.</Tip>

<Note>The response will be a `202 Accepted` if the request was successful.</Note>

<Warning>Refreshes are subject to rate limiting.</Warning>

## Rate Limits

* 1 refresh per link per hour for account data
* 1 refresh per link per hour for transaction data
* 1 refresh per link per day for account numbers
* 1 refresh per link per day for identity data

<div className="tailwind hidden">
  ```
  curl -i -X POST \
    'http://localhost:8080/links/{id}/products' \
    -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
    -H 'Content-Type: application/json' \
    -H 'moneykit-version: 2023-02-18' \
    -d '{
      "products": [
        "account_numbers",
        "transactions"
      ]
    }'
  ```

  ```
  {
    "error_code": "api_error.auth.expired_access_token",
    "error_message": "Access token expired",
    "documentation_url": "string"
  }
  ```
</div>
