GET request

Modified on Tue, 09 Apr 2024 at 01:46 PM

A GET request is one of the methods of HTTP requests, which is used to obtain resources from a web server.

To send a GET request to the specified URL, select the GET method.
 

To form the body of a JSON request, the following parameters are provided:

  1. In the “Query parameters” section, check the variables that are required in the query parameters of the request. If there is a check - the variable will be sent, no check - it will not be sent. Examples of variables:

    If you click on the question mark (hint), text will be shown - a description of the information contained in the variable.

  2. In the “User parameters” section, you can add your own keys and their corresponding values or variables that will be included in the query parameters of the request.

  3. In the “Headers” section, pass your headers if necessary.


  • As an example, we filled in the fields: billsec, timestamp, eventType, InternalNumber. 

    In this case, the following structure of JSON will be formed:

    {
    "billsec": "${{billsec}}",
    "timestamp": "${{timestamp}}",
    "eventType": "${{eventType}}",
    "InternalNumber": "${{InternalNumber}}",
    "Key": "Example"
    }

    And it will come to the specified URL:

    <https://example.com/?billsec=6&timestamp=1687271174&InternalNumber=100&Key=Example>

    Because the values of these variables generated by a specific event will be substituted instead of variables in the format ${{…}}.
     

    Also see:

    Webhooks

    POST request

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select atleast one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article