Create purchase transfer (typed endpoint)
Sample cURL
curl --request POST \
--url 'https://sandbox.finhub.cloud/api/v2.1/fintrans/{accountId}/transfers/types.purchase' \
--header 'Authorization: Bearer <ACCESS_TOKEN>' \
--header 'X-Tenant-Id: <TENANT_ID>' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'X-Forwarded-From: <FORWARDED_FROM>' \
--header 'deviceId: <DEVICE_ID>' \
--data '{
"type": "PURCHASE",
"amount": { "value": "1000", "currency": "EUR", "scale": 2 },
"description": "Purchase"
}'