Best answer

Hydrate GET result

  • 15 June 2022
  • 3 replies
  • 558 views

I’m using a GET request to an api and for some reason it returns a hydrate file instead of a text/json response. In Integromat and Power automate it does not give me this result.

 

Does anyone know why this is?

 

And how can I handle this hydrate file in a proper manner and read the content in it.

icon

Best answer by Aaron1515 16 June 2022, 19:41

View original

This post has been closed for comments. Please create a new post if you need help or have a question about this topic.

3 replies

Userlevel 7
Badge +9

Hey there, @bluedude! Thanks for reaching out!

Is this regarding a custom integration you’re building using the developer platform? I just want to make sure your question gets in front of the right eyes. 🙂

If it’s not, I wonder if any of these similar questions and/or resources might be useful for you?

I’m eager to see what the Community can surface for you! Please keep us posted on your success. 

Hi,

 

This is not custom development but using the HTTP Module. This sample hydration is not the solution.

Userlevel 1

Could you share your code?

It should look something like

response = requests.get(‘https://www.company.com/stuff’)
json_response = response.json()

json_response should give you what you need.