Skip to main content
This is an asynchronous operation.
The response will be a 202 Accepted if the request was successful.
Refreshes are subject to rate limiting.

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
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"
}