Options:

  • Request Type (dropdown)
    • GET
    • POST
    • PUT
    • DELETE

Inputs:

  • Request
    • Relative URL (text) - This is everything that comes after the base URL, which in this case is “https://api.pingdom.com/api/2.1/". For example, to GET a list of teams, your value for this field would be “teams” or “/teams” (the request will work with or without an initial forward slash).
    • Query _(object_ or string) - Any query parameters can be passed as an object or as a string.
    • Body (_object_ or string) - Any body parameters can be passed as an object or as a string. In the case of PUT, the Pingdom API will throw an error if you do not pass the body as a string.
    • Headers (object) - Any additional headers that you need for your request. You do not need to enter “Authorization” or “App-Key” headers, as these will be added to the call when it runs.

Outputs:

  • Response
    • Status Code (number)
    • Headers (object)
    • Body (object)