Hello there,
I am trying to create an automation that sends money from my WISE Account to a different recipient. I have tried using the Module created by MIF Marketplace, but it doesn’t work.
I have tried creating the API Requests manually and it still doesn’t work.
You can see below a picture of my whole scenario and everything I have tried.
This is the most recent JSON Body I sent with my API Request which always gets me a server error 500 code.
{
"targetAccount": Account ID,
"quote": "{{30.data.id}}",
"originalTransferId": "{{25.data[]}}",
"details" : {
"reference" : "Test Payment"
},
"originator" : {
"legalEntityType" : "PRIVATE",
"reference" : "Customer-1",
"name" : {
"givenName": "First Name",
"middleNames": [""],
"familyName": "Last Name"
},
"dateOfBirth": "Birthdate",
"address" : {
"firstLine": "Street",
"city": "City",
"countryCode": "Country Code",
"postCode": "Postal Code"
}
}
}
When I run the following JSON Body I get this error code:
Error: 422 Unprocessable Entity
- {“errors”:[{“code”:“illegal.argument.exception”,“message”:“Illegal query argument”,“arguments”:}]}
Here is the JSON Body:
{
"targetAccount": Account ID,
"quote": "30. data.id",
"originalTransferId": "25. data[]",
"details": {
"reference": "Test"
}
}
Yes I have tried using every single module you see on the screen and I have changed the JSON Body multiple times but it still doesn’t work.
Thank you for your help!