How to get the Token from Logic app using postman collection to get the Latest Run from workflow

Aboorva Ramar 20 Reputation points
2024-05-20T01:34:00.0633333+00:00

Hi,

I want to download the workflow runs from logic app and display to client the details of the Runs (Success or Failure).

To get the Workflow details we have an API to get the information. But there is a process to get the Token , using the credential. I tried to create the token from posting by sending request

https://login.microsoftonline.com/:tenant/oauth2/v2.0/token

User's image

User's image

I am getting below error while sending request. Do i need to add any other information to get the Token to extract my workflow. Please adviceUser's image

How to get the Token from Logic app using postman collection to get the Latest Run from workflow

Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
2,908 questions
0 comments No comments
{count} votes

Accepted answer
  1. SwathiDhanwada-MSFT 18,036 Reputation points
    2024-05-23T03:54:14.92+00:00

    @Aboorva Ramar Thanks for reaching out. You can follow below steps to retrieve the access token and query the logic app workflow. First step is to register you application with the Azure AD tenant and note down the values of tenant ID, client ID, and client secret. You will use these values latest when testing the REST API using the Postman tool.

    Sign in to the Azure portal.

    In the search bar, search for Azure Active Directory, and select it from the drop-down list.

    Search for Azure Active Directory and select it

    On the Azure Active Directory page, select App Registrations link on the left menu, and then select + New registration on the toolbar.

    Switch to the App registrations page, and select New registration

    Enter a name for the app, and select Register.

    Enter a name and select Register

    On the home page for the application, note down the values of Application (client) ID and Directory (tenant) ID. You will use these values to get a token from Azure AD.

    Note down client ID and tenant ID

    Now, select Certificates & secrets on the left menu, and select + New client secret.

    Switch to Certificates & Secrets page, and select New client secret

    Enter a description, select when the secret will expire, and select Add.

    Enter description, select expiry time, and select Add

    Select the copy button next to the secret value in the Client secrets list to copy the value to the clipboard. Paste it somewhere. You will use it later to get a token from Azure AD.

    Copy client secret

    After creating the application, assign minimum permission roles to the application using role assignment to access logic app.

    Querying in Postman:

    1. Launch Postman.
    2. For the method, select GET.
    3. For the URI, enter https://login.microsoftonline.com/<TENANT ID>/oauth2/token. Replace <TENANT ID> with the tenant ID value you copied earlier.
    4. On the Headers tab, add Content-Type key and application/x-www-form-urlencoded for the value. Add content-type header
    5. Switch to the Body tab, and add the following keys and values.
      1. Select form-data.
      2. Add grant_type key, and type client_credentials for the value.
      3. Add client_id key, and paste the value of client ID you noted down earlier.
      4. Add client_secret key, and paste the value of client secret you noted down earlier.
      5. Add resource key, and type https://management.azure.com for the value. Set body for the request
    6. Select Send to send the request to get the token. You see the token in the result. Save the token (excluding double quotes). You will use it later. Access token from Azure AD

0 additional answers

Sort by: Most helpful