This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Dears,
I have 10 Student ID in a table and basicly I want to do post call that will call an API to retrive t he token for all these students.
the call like this:
let
url = "https://api.SchoolXXX/oauth/token",
body = "{""School_id"" :""XXXXX-XXXXXXX-XXXXXXX"", ""School_secret"" : ""XXXXXXXXXXX"", ""grant_type"" : ""client_credentials"", ""Student"" :XXXXXX}" ,Source = Json.Document(Web.Contents(url, [Headers=[Method="POST", #"Content-Type"="application/json", Accept="application/json"], Content=Text.ToBinary(body)])),
#"Converted to Table" = Record.ToTable(Source)
in
#"Converted to Table"
So i want to pass the Students ID that in another table to the POST CAL so i will get the token for each student.
Is that possible? @mahoneypat
Solved! Go to Solution.
Yes. You can start with a table with a column of student IDs and pass those into the API call. Please see this video to see an example, but basically you can conacenate it in your code as follows:
let
url = "https://api.SchoolXXX/oauth/token",
body = "{""School_id"" :""XXXXX-XXXXXXX-XXXXXXX"", ""School_secret"" : ""XXXXXXXXXXX"", ""grant_type"" : ""client_credentials"", ""Student"" :" & [StudentIDColumn] & "}" ,Source = Json.Document(Web.Contents(url, [Headers=[Method="POST", #"Content-Type"="application/json", Accept="application/json"], Content=Text.ToBinary(body)])),
#"Converted to Table" = Record.ToTable(Source)
in
#"Converted to Table"
Power BI - Tales From The Front - REST APIs - YouTube
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Yes. You can start with a table with a column of student IDs and pass those into the API call. Please see this video to see an example, but basically you can conacenate it in your code as follows:
let
url = "https://api.SchoolXXX/oauth/token",
body = "{""School_id"" :""XXXXX-XXXXXXX-XXXXXXX"", ""School_secret"" : ""XXXXXXXXXXX"", ""grant_type"" : ""client_credentials"", ""Student"" :" & [StudentIDColumn] & "}" ,Source = Json.Document(Web.Contents(url, [Headers=[Method="POST", #"Content-Type"="application/json", Accept="application/json"], Content=Text.ToBinary(body)])),
#"Converted to Table" = Record.ToTable(Source)
in
#"Converted to Table"
Power BI - Tales From The Front - REST APIs - YouTube
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 1 |