Hi @Andy Dawdy,
Unlike R11 which uses a single request response, R12 uses a two step process:
1. Make a connection to frontdoor.apptio.com and get a "token"
2. Use token to request data from your R12 instance
The beauty is that once you have the token, you can use it for subsequent calls. You can also choose to refresh the token before each call.
The only problem is that everytime the token is refreshed, you will need to update all your PowerBI queries with the token. I would look into whether this is possible through PowerBI API. I don't know PowerBI but this article might throw some light on using API to update PowerBI parameters: https://community.powerbi.com/t5/Developer/Updating-parameters-through-the-service-API/td-p/559439
Hard coding your token is not a sustainable solution - so ask your team if they are able to set it up so that when you make a call, break it down into three steps:
1. Refresh Token and store it
2. Update BI Queries with updated token
3. Make API Calls
All the best!
Regards,
@Sanjay Valiyaveettil