Added the ability to set URL parameters via the Api instance:
- Api.setUrlParameter(name, value), Note: a single URL parameter may be removed by setting value = None
- Api.getUrlParameter(name)
- Api.clearUrlParameters()
Example: Api.setUrlParameter('output', 'rosette') will append ?output=rosette to the endpoint URL and return additional information (subject to change).
Note: Once set on an Api instance, the parameter will remain active for all endpoint calls.