Hi,
I'm trying to run an HTTP request to gather the data of the activities ran in a certain pipeline. The documentation I've been following is this one: https://docs.microsoft.com/en-us/rest/api/datafactory/activity-runs/query-by-pipeline-run
On top of that document, we have a "Try it" button. I ran a certain pipeline in my ADF and filled the gaps as needed. I also set the request body as follows:
{
lastUpdatedAfter: "2021-07-27T10:35:15.805",
lastUpdatedBefore: "2021-07-27T10:39:16.805"
}
Which is the execution time of that pipeline with a certain margin. But, I'm receiving no body when executing that request either via ADF (using an Azure Function) or via the mentioned button.
{
"value": []
}
The response code was 200 every time, so I don't really know what I'm doing wrong.
Any help is appreciated.
Thanks.