Create and Publish an API from a Swagger Definition

This site contains the documentation that is relevant to older WSO2 product versions and offerings.
For the latest WSO2 documentation, visit https://wso2.com/documentation/.

Create and Publish an API from a Swagger Definition

A Swagger definition is a format that describes REST APIs. In this tutorial, you create and publish an API in WSO2 API Manager using a Swagger definition for an existing API.

  1. Sign in to the WSO2 API Publisher.
    https://<hostname>:9443/publisher

  2. In the APIS menu, click Add New API.

  3. Select I Have an Existing API. Click Swagger URL and give http://petstore.swagger.io/v2/swagger.json  as the URL. Click Start Creating.

  4. Edit the information as given below.

  5. Notice that all the API resources are created automatically when the Swagger URL is specified.

  6. Click Edit Source to edit the Swagger file and remove security headers. This is required to invoke the API in the Store using the Swagger UI.

  7. Remove the security tag from the /pet POST resource given below. This is required to enable API invocation using the API (store) console.

    Swagger - Post resource

    //remove the following code snippet security: - petstore_auth: - 'write:pets' - 'read:pets'
  8. Remove the security pet/{petId} GET resource given below:

    Swagger - Get resource

    //remove the following code snippet security: - api_key: []
  9. After removing the security tags, click Apply Changes to save the changes.


    Then, click Next: Implement.

  10. Click the Managed API option. Enter the information shown below and click Next: Manage.

  11. Select the options described in the table below.

  12. Click Save & Publish

Now you have successfully published an API using a Swagger defintion.

Let's invoke the API from the API Store.

Invoking the API

  1. Sign in to the WSO2 API Store.
    https://<hostname>:9443/store

  2. Select the PetStore API to open it.

  3. Subscribe to the API using the DefaultApplication and the Gold tier.

  4. Click View Subscriptions to view all the APIs to which the Default Application has subscribed.

  5. Click the Production Keys tab and generate a token.

  6. Navigate to the API Console for the PetStore API.

  7. Expand the POST resource, click Try it out, and give the following example as the request body. Click Execute and view the response.

    You have successfully invoked the Petstore API.