When calling an API method, there are two ways to pass parameters:
- directly on the URL (usually for parameters that are required or essential to the execution of the request);
- in GET and / or POST parameters (usually for optional parameters, which do not fundamentally change the requested query);
Each method decides what parameters it expects, and how they should be passed to it. One method can expect both URL and GET/POST settings.