curl --request POST \
--url https://{tenant}.fincode.software/api/v6/services/transactionmanagement/create-transaction/ \
--header 'Content-Type: application/json' \
--header 'X-Auth-Token: <x-auth-token>' \
--header 'X-Idempotency-Key: <x-idempotency-key>' \
--header 'ipAddress: <ipaddress>' \
--header 'password: <password>' \
--header 'platform: <platform>' \
--header 'uuid: <uuid>' \
--data '
{
"amount": "<string>",
"sendAmount": "<string>",
"inclussive": true,
"receivingCurrency": "NGN",
"sendCurrency": "GBP",
"type": "ACCOUNTPAYMENT",
"creditParty": [
{}
],
"internationalTransferInformation": {},
"newSenderKyc": {},
"newRecipientKyc": {},
"transactionProcessingMode": "NONE_AGGREGATION",
"descriptionText": "<string>",
"transactionModule": "REMITTANCE"
}
'