Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jmgrdg
Frequent Visitor

Post Request advanced editor

Hello I want to connect to data on my webservice

h**p://*****.com/provision/user/user_login.h*ml

 

I need parameters in the body clause: user, password, clientId

 

I wrote this c# code in postman:

 

var client = new RestClient("h**p://******.com/provision/user....ht ml");
var request = new RestRequest(Method.POST);
request.AddHeader("Postman-Token", "c153f34d-5c8b-46dd-b9e7-7901aa6e62fc");
request.AddHeader("cache-control", "no-cache");
request.AddHeader("Content-Type", "application/x-www-form-urlencoded");
request.AddHeader("content-type", "multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW");
request.AddParameter("multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW", "------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"user\"\r\n\r\nUSER\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"password\"\r\n\r\nPASSWORD\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"clientId\"\r\n\r\nCLIENTID\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW--", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);

 

But i didnt know how to use it in the power query editor. Some code example to transform my code?

Thanks a lot

4 REPLIES 4
jmgrdg
Frequent Visitor

Hello I want to connect to website

https://*****.com/provision/user/user_login.html

 

I need parameters in the body clause: user, password, clientId

 

I wrote this c# code in postman:

 

var client = new RestClient("https://************.com/provision/user/user_login.html");
var request = new RestRequest(Method.POST);
request.AddHeader("Postman-Token", "c153f34d-5c8b-46dd-b9e7-7901aa6e62fc");
request.AddHeader("cache-control", "no-cache");
request.AddHeader("Content-Type", "application/x-www-form-urlencoded");
request.AddHeader("content-type", "multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW");
request.AddParameter("multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW", "------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"user\"\r\n\r\nUSER\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"password\"\r\n\r\nPASSWORD\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"clientId\"\r\n\r\nCLIENTID\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW--", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);

 

But i didnt know how to use it in the power query editor. Some code example to transform my code?

Thanks a lot.

jmgrdg
Frequent Visitor

Hello I want to connect to website

https://*****.com/provision/user/user_login.html

 

I need parameters in the body clause: user, password, clientId

 

I wrote this c# code in postman:

 

var client = new RestClient("https://ws.xxx.com/provision/user/user_login.html");
var request = new RestRequest(Method.POST);
request.AddHeader("Postman-Token", "c153f34d-5c8b-46dd-b9e7-7901aa6e62fc");
request.AddHeader("cache-control", "no-cache");
request.AddHeader("Content-Type", "application/x-www-form-urlencoded");
request.AddHeader("content-type", "multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW");
request.AddParameter("multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW", "------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"user\"\r\n\r\nUSER\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"password\"\r\n\r\nPASSWORD\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"clientId\"\r\n\r\nCLIENTID\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW--", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);

 

But i didnt know how to use it in the power query editor. Some code example to transform my code?

Thanks a lot.

jmgrdg
Frequent Visitor

Hello I want to connect to data on my webservice

 

I need parameters in the body clause: user, password, clientId

 

I wrote this c# code in postman:

 

var client = new RestClient("h**p://******.c*m/provision/user....htm*");
var request = new RestRequest(Method.POST);
request.AddHeader("Postman-Token", "c153f34d-5c8b-46dd-b9e7-7901aa6e62fc");
request.AddHeader("cache-control", "no-cache");
request.AddHeader("Content-Type", "application/x-www-form-urlencoded");
request.AddHeader("content-type", "multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW");
request.AddParameter("multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW", "------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"user\"\r\n\r\nUSER\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"password\"\r\n\r\nPASSWORD\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"clientId\"\r\n\r\nCLIENTID\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW--", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);

 

But i didnt know how to use it in the power query editor. Some code example to transform my code?

Thanks a lot

v-juanli-msft
Community Support
Community Support

Hi @jmgrdg

What kind webservice is your link?

"h**p://*****.com/provision/user/user_login.h*ml"

 

When you use Postman, i would suggest you refer to this thread.

https://community.powerbi.com/t5/Developer/Power-BI-REST-API-using-postman-generate-embed-token/td-p...

 

Best Regards

Maggie

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.