Make a custom, authenticated HTTP call to the Google API.

Options

  • Request Type (dropdown): use the appropriate request type depending on the endpoint/method
    • GET
    • POST
    • PUT
    • PATCH
    • DELETE

Input

  • Relative URL (text): Specify the relative URL as /api/{insert_remaining_URL}. You can specify query parameters in the relative URL using “?”, or specify the query parameters as an object key pair in the Query input.
  • Query (object): Specify any additional query parameters that should be included in object format (key value pairs).
  • Headers (object): Specify any headers required in addition to authorization or content-type (these are already handled by this connector).
  • Body (object): Specify a request body in JSON format. Only available for POST, PUT, and PATCH requests.

Output

Response

  • Status Code (number): success or failure of your HTTP request. Here is a list of all status codes.
  • Headers (object): a detailed context for the status code, unrelated to the output body. Response headers are dependent on your selected HTTP request option. Note that not all headers are response headers. This will usually be a replica of the example below.

    Example: {"Content-type":"application/json"}
  • Body (object): data returned from your selected HTTP request (for example, the data from a GET request).