Using Azure function with webhooks and updating Dynamics 365
We have a scenario where we want to call a third party API on update of a field on account entity in Dynamics 365, send some data to…
Read more →
We have a scenario where we want to call a third party API on update of a field on account entity in Dynamics 365, send some data to…
Read more →
Today we are going to create a Logic App to pass some sample JSON data, do some basic steps in it, call Azure function from Logic App, connect…
Read more →Let’s say we have a azure blob storage URL and we want to download contents of the file and store it somewhere, for example we could get a…
Read more →In this example, we are going to use Liquid template to transform our JSON input. Let’s say we have a requirement where we get data in JSON format…
Read more →If you are working in Dynamics 365 then most probably you have used or at least have heard about logic apps. We had an urgent requirement where needed…
Read more →If we are using List Records (To get a list of records from Dynamics 365) in Logic App, some times we need to check if list returned any…
Read more →If you need to add padding and limit it to a certain length in C# substring(concat('0000000',variables('MyNumber')),length(string(variables('MyNumber'))),7)Above code will limit it to seven characters length
Read more →
As we know we can only get one entity back if we are using Get record connector to query Dynamics 365 in Logic App however if we use List records…
Read more →Below is a query to check if List Records in Dynamics 365 in Azure Logic App contains some data and is not nulllength(body('List_accounts')?['value'])
Read more →We are going to connect to Dynamics 365 api , get a list of contacts using Web Api using a token First thing we need to do is, resister…
Read more →