Optional HTTP-Parameter

Hey guys,

is there a way to define an optional (query/form) parameter for a request?

Greetings
Niko

Hi Niko,

I see 2 solutions:

  • have different versions of the request (you can share a common prototype with mandatory parameters), and switch depending on the presence of parameters
  • manually provide the parameter values with the Session API, and default to empty String. But then, the parameter will still be present (but empty).
    Cheers,