Replace wallet metadata
This endpoint replaces all existing metadata on a wallet with the provided key-value pairs. Any existing metadata keys not included in the request will be removed.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Unique identifier assigned to the wallet within the Lago application.
"1a901a90-1a90-1a90-1a90-1a901a901a90"
Body
Custom metadata stored as key-value pairs. Keys are strings (max 100 characters), values can be strings (max 255 characters) or null.
{
"external_id": "ext-123",
"synced_at": "2024-01-15",
"source": null
}Response
Wallet metadata replaced
Custom metadata stored as key-value pairs. Keys are strings (max 100 characters), values can be strings (max 255 characters) or null.
{
"external_id": "ext-123",
"synced_at": "2024-01-15",
"source": null
}