Reputation: 41
I have one lookup activity and one Copy data Activity which is using REST linked service to get data from one Rest API.
As, I need to do incremental data, I need to pass max id in the url. So, I have set relative URL as
?id=@dataset().parameters.id
And I am settings Dataset parameter value from Pipeline. Pipeline is working fine but only issue I am facing here is, it is sending to the server - @body('dataset46621dd59dc847cd812d0ef8472587e0').parameters.id
So, my issue here is - it is not evaluating expression and setting parameter value.
Please let me know, where I am doing mistake here?
Thanks
Upvotes: 0
Views: 397
Reputation: 23782
Please use built-in concat()
function to construct your relative url:
@concat('?id=',dataset().param)
Upvotes: 1