URL: /baas/api/reference/financial-operations/transfers/create-topup --- title: 'Create topup (typed endpoint)' --- ## Sample cURL ```bash curl --request POST \ --url 'https://sandbox.finhub.cloud/api/v2.1/fintrans/{accountId}/transfers/types.topup' \ --header 'Authorization: Bearer ' \ --header 'X-Tenant-Id: ' \ --header 'Content-Type: application/json' \ --header 'Accept: application/json' \ --header 'X-Forwarded-From: ' \ --header 'deviceId: ' \ --data '{ "type": "TOPUP", "amount": { "value": "5000000", "currency": "EUR", "scale": 2 }, "sourceAccount": { "iban": "" }, "description": "Incoming SEPA transfer" }' ```