Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Automate - Using Flows
Answered

Connect HTTP GET link with dynamics dates

(0) ShareShare
ReportReport
Posted on by 480

Hi Team,

I have a below HTTP GET link:

https://abc.xyz.io/api/sync/ems/powerbi?date_start="&startDateText&"&date_end="&endDateText, [Headers=[Token="7901d563-a86f-4031-8900-7e0378ae"]]))

where the startDate and the endDate need to be put dynamically in the HTTP card. Please help.

  • Verified answer
    nitishsh91 Profile Picture
    200 on at
    Re: Connect HTTP GET link with dynamics dates

    Hi @cyberco01 

     

    You can use the Uri.BuildQueryString function to dynamically construct the query string with the start and end date.

    You can create two variables startDateText and endDateText and pass them in the function:

    Copy code
    let
    startDateText = "2021-01-01",
    endDateText = "2021-01-31",
    url = "https://abc.xyz.io/api/sync/ems/powerbi?date_start=" & Uri.EscapeDataString(startDateText) & "&date_end=" & Uri.EscapeDataString(endDateText),
    response = Json.Document(Web.Contents(url,[Headers=[Token="7901d563-a86f-4031-8900-7e0378ae"]]))
    in
    response

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,645 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 65,997 Most Valuable Professional

Leaderboard

Featured topics

Restore a deleted flow