
Announcements
I am doing a simple flow that automates an http POST function to do a reservation. The problem is that inside the queries parameter it contains an email and I think this causes problems as it contains an @ symbol.
The flow is the following.
And the contents of it are the following.
I think that the email field is the problem because the error returned by the API says that the email is invalid:
I've tested the API quite a bit with some python code and as far as I know this error is only returned when the email field is incorrect.
Alright, apparently I was loading the parameters inside the queries fields and in POST petitions the json must be loaded in the body content. That solves it.