How to send http request to power automate

0
Hello there, I’m building an app in Mendix to Create, Read, Update, and Delete data from Mendix to Sharepoint. I Just built a flow, in power automate. The trigger starts when a http request is sent. I’ve been testing the flow with Postman and everything looks right, the Sharepoint list is updated, etc… I don’t really know how to send the same request in my Mendix App such like I do in Postman… I’ll be super grateful if anyone can help me... I add some captures.    
asked
1 answers
0

This How To would be a good starting point:  https://docs.mendix.com/howto/integration/consume-a-rest-service

**EDIT**

Based on the screen shots in your post, the JSON structure will look something like this:

{
	"Picture": "https://somereallylongurlfromyourforumpost",
	"Department": "RC-AR IT PTM",
	"JobTitle": "Apprentice Administrative"
}

The documentation of the API you are calling should contain information about what the JSON structure should look like.

Also, the returned JSON structure is visible in your screenshots.  If you want to save some typing, when you create a REST Call in Mendix, have the return value stored in a string.  Then run the microflow in the debugger and you’ll be able to copy the contents of the string return value.

Here is some more info on how to work with JSON structures in Mendix:  https://docs.mendix.com/refguide/json-structures

answered