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