Skip to main content
POST
/
refresh-card-data
Trigger a card data refresh
curl --request POST \
  --url https://laso.finance/refresh-card-data \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "card_id": "<string>"
}
'
{
  "success": true,
  "message": "Card refresh requested."
}

Documentation Index

Fetch the complete documentation index at: https://agents.laso.finance/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

ID token from /auth or /get-card

Body

application/json
card_id
string
required

The card ID to refresh data for

card_type
enum<string>

The type of card. Defaults to Non-Reloadable U.S. if omitted.

Available options:
Non-Reloadable U.S.,
Non-Reloadable International

Response

Card refresh requested successfully

success
boolean
message
string
Example:

"Card refresh requested."