Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi All,
I am trying to connect a REST API to Power BI using POST method -
i have the following details -
webURL - https://mis.domain.com/fms-mobile/profile/searchPerson/
API header - Content-Type: application/x-www-form-urlencoded
API Key - xxxxxxx
Request body - inputParam: {"searchValue":"0","searchId":"0","employeeCode":"0","apiKey":"xxxxxxxx","offset":"0","personId":"0"}
The API should return one of 2 options - and on success, it must display the results.
{
"failure": {
"failure_status": 0,
"failure_message": ""
},
"success": {
"success_status": 1,
"success_message": ""
},
"result_data":[ ....
I have written the following code in the advanced editor -
let
Query1 = Json.Document(Web.Contents("https://mis.domain.com/fms-mobile/profile/searchPerson/", [Headers = [#"Content-Type"="application/x-www-form-urlencoded"],
Content = Text.ToBinary("""inputparam"":{""searchValue"":""0"",""searchId"":""0"",""employeeCode"":""0"",""apiKey"":""xxxxxxx"",""offset"":""0"",""personId"":""0"" })]
))
in Query1
This code is fetching the API information, however giving the result as database connection failed.
I am unable to understand what the issue is. Request if anyone could help!!
Regards,
Manand
Solved! Go to Solution.
That seems to be a problem on "their" side. Check with the API owner.
Hi , I need to connect API to power BI by using the following credentails using "POST"method. Please let me know how can i connect to power bi.
I have API url , endpoint, and API key.
API URL: https://el.api.cloud.net/hsm/odata/v2.0/Loc
API Key: aef579dh799dgah123hdg
and below is the header deatils
{
"name": "GetLoc",
"request": {
"method": "POST",
"header": [
{
"key": "requestHeader",
"value":"companyId,<integer>,
userGuid,<string>,
environment,<string>,
userToken,<string>,
subscriptionKey,<string>,
version,<string>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json;odata.data=minimal;odata.streaming=true"
},
{
"key": "s-api-key",
"value": "{{h-api-key}}",
"type": "default"
},
{
"key": "Version",
"value": "{{Version}}",
"type": "default"
},
{
"key": "CompanyId",
"value": "{{CompanyId}}",
"type": "default",
"disabled": true
}
],
"body": {
"mode": "raw",
"raw": "{\n \"take\": 200,\n \"skip\": 0,\n \"filters\": {\n \"startDate\": \"1/1/2024\",\n \"endDate\": \"1/1/2025\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{hsmBaseURL}}/Locations",
"host": [
"{{hsmBaseURL}}"
],
"path": [
"Locations"
]
}
},
"response": []
},
That seems to be a problem on "their" side. Check with the API owner.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
8 | |
6 | |
5 | |
2 | |
2 |
User | Count |
---|---|
4 | |
4 | |
3 | |
3 | |
2 |