jc14
13
This bug is really strange… More details below.
I have configured an API call through API connector, that has one parameter called k_category_id (number value, default = 1)
It’s then used in a workflow in which it takes admin’s last_category_created value (which evaluates to a number)
I see on the API server’s side that the number that is sent is not the one that is expected.
Some tests:
-
if I keep admin’s last_category_created value, it sends 1 (the default value). In the debugger when I pause on this workflow step, I see the right value should be taken
-
if I use ‘Arbitrary text:converted to number’ with admin’s last_category_created inside the arbitrary text => same, the right value is put on the debugger, but it still sends 1 to the API
-
if I use admin’s last_category_created + 5, the debugger says it will send the expected value (last_category_created + 5). In reality, it send 5!
-
I I use admin’s last_category_created:floor, the debugger says it will send the expected value. In reality, it sends 0