- When the URL is structured as
?activationId=<value>&year=<value>
, I receive the error:
"The year query parameter is not supported."
- However, if I swap the order to
?year=<value>&activationId=<value>
, it works fine.
The year
parameter's value is correct (a valid record ID), and the error only occurs when year
is used in the second position of the query string.
I've ensured proper URL encoding for all parameters..
How can I use year
as a query parameter without causing this issue?