We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 26cb437 + 599f7c3 commit 7a0cffbCopy full SHA for 7a0cffb
1 file changed
easypost/services/tracker_service.py
@@ -25,6 +25,9 @@ def all(self, **params) -> dict[str, Any]:
25
"tracking_codes": params.get("tracking_codes"),
26
"carrier": params.get("carrier"),
27
}
28
+ # Make Ruby on Rails happy with proper URL encoding
29
+ if params.get("tracking_codes"):
30
+ params["tracking_codes[]"] = params.pop("tracking_codes")
31
32
return self._all_resources(self._model_class, filters, **params)
33
0 commit comments