What is the Integration Account Callback URL for?

Viewed 46

The Azure Integration Account features a tab on its configuration blade labelled "Callback URL":

Screenshot of the Integration Account configuration blade

This is documented in terms of generated API documentation but this doesn't say anything about its purpose. I can't find any documentation that mentions it.

What is this URL for?

1 Answers

Basically the callback uri we are using for reverifying/recheck the details of our integration account that we created earlier so that we can see properties of it. Likewise, we use jwt.io to see the content of any token.

For example:- enter image description here enter image description here

You can generate the callback url of an integration account using the below api with post method by passing the following parameter as mentioned in this MS DOC:-

POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/listCallbackUrl?api-version=2016-06-01
Related