This browser is no longer supported.

Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.

Download Microsoft Edge More info about Internet Explorer and Microsoft Edge

With the built-in HTTP + Swagger operation and Azure Logic Apps , you can create automated integration workflows that regularly call any REST endpoint through a Swagger file . The HTTP + Swagger trigger and action work the same as the HTTP trigger and action but provide a better experience in the workflow designer by exposing the API structure and outputs described by the Swagger file. To implement a polling trigger, follow the polling pattern that's described in Create custom APIs to call other APIs, services, and systems from logic app workflows .

Prerequisites

  • An account and Azure subscription. If you don't have an Azure subscription, sign up for a free Azure account .

  • The URL for the Swagger file (OpenAPI 2.0, not OpenAPI 3.0) that describes the target REST endpoint that you want to call

    Typically, the REST endpoint has to meet the following criteria for the trigger or action to work:

  • The Swagger file must be hosted on an HTTPS URL that's publicly accessible.

  • The Swagger file must contain an operationID property for each operation in the definition. If not, the connector only shows the last operation in the Swagger file.

  • The Swagger file must have Cross-Origin Resource Sharing (CORS) enabled.

    The examples in this topic uses Azure AI Face , which requires an Azure AI services resource key and region .

    To reference a Swagger file that's unhosted or that doesn't meet the security and cross-origin requirements, you can upload the Swagger file to a blob container in an Azure storage account , and enable CORS on that storage account so that you can reference the file.

  • The logic app workflow from where you want to call the target endpoint. To start with the HTTP + Swagger trigger, create a blank logic app workflow. To use the HTTP + Swagger action, start your workflow with any trigger that you want. This example uses the HTTP + Swagger trigger as the first step.

    Add an HTTP + Swagger trigger

    This built-in trigger sends an HTTP request to a URL for a Swagger file that describes a REST API. The trigger then returns a response that contains that file's content.

  • Sign in to the Azure portal . Open your blank logic app workflow in the designer.

  • On the designer, in the search box, enter swagger . From the Triggers list, select the HTTP + Swagger trigger.

  • In the SWAGGER ENDPOINT URL box, enter the URL for the Swagger file that you want, and select Next .

    Make sure to use or create your own endpoint. As an example only, these steps use the following Cognitive Services Face API Swagger URL located in the West US region and might not work in your specific trigger:

    https://westus.dev.cognitive.microsoft.com/docs/services/563879b61984550e40cbbe8d/export?DocumentFormat=Swagger&ApiName=Face%20API%20-%20V1.0

  • When the designer shows the operations described by the Swagger file, select the operation that you want to use.

  • Provide the values for the trigger parameters, which vary based on the selected operation, that you want to include in the endpoint call. Set up the recurrence for how often you want the trigger to call the endpoint.

    This example renames the trigger to "HTTP + Swagger trigger: Face - Detect" so that the step has a more descriptive name.

  • To add other available parameters, open the Add new parameter list, and select the parameters that you want.

    For more information about authentication types available for HTTP + Swagger, review Add authentication to outbound calls .

  • Continue building your workflow with actions that run when the trigger fires.

  • When you're finished, remember to save your workflow. On the designer toolbar, select Save .

    Add an HTTP + Swagger action

    This built-in action sends an HTTP request to the URL for the Swagger file that describes a REST API. The action then returns a response that contains that file's content.

  • Sign in to the Azure portal . Open your logic app workflow in designer.

  • Under the step where you want to add the HTTP + Swagger action, select New step .

    To add an action between steps, move your pointer over the arrow between steps. Select the plus sign ( + ) that appears, and then select Add an action .

  • On the designer, in the search box, enter swagger . From the Actions list, select the HTTP + Swagger action.

  • In the SWAGGER ENDPOINT URL box, enter the URL for the Swagger file that you want, and select Next .

    Make sure to use or create your own endpoint. As an example only, these steps use the following Cognitive Services Face API Swagger URL located in the West US region and might not work in your specific action:

    https://westus.dev.cognitive.microsoft.com/docs/services/563879b61984550e40cbbe8d/export?DocumentFormat=Swagger&ApiName=Face%20API%20-%20V1.0

  • When the designer shows the operations described by the Swagger file, select the operation that you want to use.

  • Provide the values for the action parameters, which vary based on the selected operation, that you want to include in the endpoint call.

    This example has no parameters, but renames the action to "HTTP + Swagger action: Face - Identify" so that the step has a more descriptive name.

  • To add other available parameters, open the Add new parameter list, and select the parameters that you want.

    For more information about authentication types available for HTTP + Swagger, review Add authentication to outbound calls .

  • When you're finished, remember to save your logic app workflow. On the designer toolbar, select Save .

    Host Swagger in Azure Storage

    You can still reference a Swagger file that's not hosted or that doesn't meet the security and cross-origin requirements. Upload the Swagger file to blob container in an Azure storage account and enable CORS on that storage account. To create, set up, and store Swagger files in Azure Storage, follow these steps:

  • Create an Azure storage account .

  • Now enable CORS for the blob. On your storage account's menu, select CORS . On the Blob service tab, specify these values, and then select Save .

    Property Value

    Although this example uses the Azure portal , you can use a tool such as Azure Storage Explorer , or automatically configure this setting by using this sample PowerShell script .

  • Create a blob container . On the container's Overview pane, select Change access level . From the Public access level list, select Blob (anonymous read access for blobs only) , and select OK .

  • Upload the Swagger file to the blob container , either through the Azure portal or Azure Storage Explorer .

  • To reference the file in the blob container, get the HTTPS URL that follows this format, which is case-sensitive, from Azure Storage Explorer:

    https://<storage-account-name>.blob.core.windows.net/<blob-container-name>/<complete-swagger-file-name>?<query-parameters>

    Connector reference

    This section provides more information about the outputs from an HTTP + Swagger trigger or action. The HTTP + Swagger call returns this information:

    Property name Description
  •