Forum Discussion
zah33r
3 years agoNew Member
Rest API Call from Custom Visual
Hi Everyone, I am new to power bi development and trying to achieve below scenario. I am trying to make a REST API call through the Custom Visual created in javascript. But unable to perform the...
chandanmanna48
3 years agoNew Member
Hi,
You need to specify the RestAPI endpoint inside capabilities.json, Below is the code for your reference :
"privileges": [
{
"name": "WebAccess",
"essential": true,
},
]
- wonderkid882 years agoFrequent Visitor
Can a custom visual do an API call and hold the response in memory? does the 30,000 limit apply in that case?