Connectors

Connectors

Is there a way to pass in a body to an HTTPS GET request within the Domo Connector IDE?

In Domo's Custom Connector documentation, they talk about the 'httprequest.get(url)' funtion (see here: DOMO Developer

). Unlike PUT and POST, there is no argument available to supply a body to the GET request. Is this a missing functionality, or am I supposed to pass in the body a different way? Without this, there are several API endpoints that can't be accessed via a Domo Custom Connector…

Welcome!

It looks like you're new here. Members get access to exclusive content, events, rewards, and more. Sign in or register to get started.
Sign In

Best Answers

  • Coach
    Answer ✓

    HTTP GET requests typically don't accept body parameters as part of the protocol specifications. GET requests typically pass parameters as part of the URL as URL parameters instead of body parameters. Are you able to pass those using addParameter before your request?

    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**
  • Coach
    Answer ✓

    Does it accept a POST request instead of a GET request?

    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**

Answers

  • Coach
    Answer ✓

    HTTP GET requests typically don't accept body parameters as part of the protocol specifications. GET requests typically pass parameters as part of the URL as URL parameters instead of body parameters. Are you able to pass those using addParameter before your request?

    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**
  • @GrantSmith Unfortunately no, this particular API requires a body in order to add filters or a date range to the call (even though I agree that those should be passed in as Parameters). Not sure how easy it would be to implement in Domo, but I think this could be submitted as a Product Idea 👍️

  • Coach
    Answer ✓

    Does it accept a POST request instead of a GET request?

    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**
  • Ooooo now that might work, it's not in the documentation but it will probably still function! Let me try it out…

  • That did it, thank you!

Welcome!

It looks like you're new here. Members get access to exclusive content, events, rewards, and more. Sign in or register to get started.
Sign In