PowerBI API to send filter parameters and related data to existing pbix report and send it Options - asp.net-core

I have pbix already created in my workspace with a given report id.
I am creating a .net core mvc web application. From my web application i will call PowerBI API.
I will pass on the filter parameters and email id.
Based on filter parameter report should be sent to the mentioned email id by PowerBI.
which API is useful for me?

Related

Acumatica API - Upload attachment to an Appointment detail record

I am trying to attach a file to an appointment detail record. I can successfully attach a file to an appointment using the URL
{{baseUrl}}/Appointment/MRO/006301-1/files/image.png
However, I am unable to determine the endpoint for appointment detail records. The Acumatica development guide does not provide any insight into related/nested records. As far as I can tell, the appointment detail record is not accessible via a direct endpoint, only with /Appointment/[uuid]?$expand=Details
What is the correct API endpoint for upload files to an appointment detail record?
It's my understanding that the Android application uses the API so there should be a matching endpoint.
If an Endpoint does not exists relative to the detail line your could try to define your own via the Web Service Endpoints screen in the Integrations module. You may need to define a screen for just the detail in order to get that endpoint established. Im not at all certain this is going to get you the end result you need but it may be worth a try.

How to programmatically create a Subscription Add-On on Microsoft Store via API

I need to create some Add-Ons of type "Subscription" for my UWP product in the Microsoft Store.
I have seen several API that are used to manage the subscription (e.g. https://learn.microsoft.com/en-us/windows/uwp/monetize/change-the-billing-state-of-a-subscription-for-a-user and https://learn.microsoft.com/en-us/windows/uwp/monetize/get-subscriptions-for-a-user) but nothing so far to create a new subscription.
Moreover, there is an API to create Add-Ons, but only for types "Durable" and "Consumable" (https://learn.microsoft.com/en-us/windows/uwp/monetize/create-an-add-on).
Are you aware of any API to create a Subscription?
Currently, there is no API that could create subscription Add-ons based on the document. You have to create it on the Partner Center now. You could submit a feature request on the Feedback Hub about this.

Power BI Embedded Token Not allowing me to get report by id

I'm trying to use the Power BI API to load a Power BI Embedded report into my custom web app.
I login against AD
And then use that token to access the report list using
https://api.powerbi.com/v1.0/myorg/groups/{{groupId}}/reports
Then use the report ID selected to generate a token and then request the report by id for the embedded details.
Token
https://api.powerbi.com/v1.0/myorg/groups/{{groupId}}/reports/{{reportId}}/GenerateToken
https://api.powerbi.com/v1.0/myorg/groups/{{groupId}}/reports/{{reportId}}
Calling the reports URL above gives me 403 Forbidden.
I can't figure out what I'm doing wrong.
You can't get report id informations using the embed token , you should use the acces token for that.
Once you get the report embed url , use the embed token and the sdk client to integrate the report into your third party app.

Shopify custom form

I need to create custom form in shopify eshop and the data send via external API. Is there some way how to do that? Or is there some way how to store the custom data and then access it via private app? Thanks a lot!
This really depends on what data you are trying to collect. If you are just trying to collect standard customer info you can create your own form in .liquid and have a webhook forward the info to zapier or create a private app key/pwd and use the Shopify api to pull information.
If you want more arbitrary information you can create or use an app that allows you to create a form and then process that form's responses.
I have a forms app in development that allows you to create a form and use an api to pull data from form submissions or have the form response sent as a JSON email body. (https://knightsofthenet.herokuapp.com/questionnaire/)
Some of the competition will just email the response in their own format and then you have to parse that response (in the past I've done that with mail gun and a node app. This would be a good use case for SES and AWS Lambda as well.

Does DoubleClick support API url for retrieving ads?

I have a service that I developed. This service gets parameters of a user via API url, and returns the relevant ad.
Can I use it in DoubleClick Campaign manager? (I think it's another name for DoubleClick for Advertisers).
I mean to set a dynamic urls in advertisers sites that contain relevant data for the visited user. It will be generated to the relevant ad by my service.
If I can't do it with DoubleClick, do you know another platform I can achieve it?