JSONを送信する際、パラメーター抽出器で抽出された文字列形式の時刻変数(例:2026-03-06 14:00:00)が、HTTPリクエストを送信するとバックエンドに渡されるパラメーターでは2026-03-06 14になるのはなぜですか?
It looks like your datetime string is getting truncated during serialization or parameter parsing in the HTTP request node. This usually happens when the system interprets the value as a non-string type (like a date or number) instead of preserving it as a full string.
A couple of things you can check:
-
Ensure the variable is explicitly treated as a string before sending (e.g., wrap it in quotes or cast it).
-
Check the parameter extractor output format — sometimes it auto-formats values and drops parts like minutes/seconds.
-
Inspect the HTTP node configuration, especially if it’s using JSON schema or auto-parsing that might trim unsupported formats.
-
If you’re passing it in JSON, make sure it’s like:
{ "time": "2026-03-06 14:00:00" }and not unquoted.
I’ve seen similar issues when tools try to “simplify” datetime values unintentionally.
Also, if you’re testing different setups or need reference configs, you might find some helpful examples alongside various internet packages resources and setups people use for connectivity-dependent workflows.
If the issue persists, try logging the exact payload right before sending — that usually reveals where the truncation happens.