Step 6: Publish an API

This page applies to Apigee and Apigee hybrid.

View Apigee Edge documentation.

In this step, you'll publish an API to the portal by performing the following steps:

  1. Create an API proxy from a spec
  2. Create an API product
  3. Publish the API to your portal

Step 1: Create an API Proxy from a spec

Create an API proxy from an OpenAPI Specification that describes the API.

To create an API proxy from an OpenAPI Specification:

  1. In the Apigee UI, select Develop > API proxies in the left navigation bar to open the API proxies page.
  2. Click Create New.
    Add API proxy

    The Create Proxy wizard opens prompting you to select the type of API proxy to create.

  3. Under Reverse Proxy (most common), click Use OpenAPI Spec. Use OpenAPI Spec

    The Use OpenAPI Spec dialog displays.

  4. Copy and paste the following URL in OpenAPI Spec URL field on the URL tab:

    https://raw.githubusercontent.com/apigee/api-platform-samples/master/default-proxies/helloworld/openapi/mocktarget3.0.yaml
  5. Click Select.
    The Create Proxy wizard opens and the Proxy details page is prepopulated using values from the OpenAPI Specification.

    Proxy details page in the Create Proxy wizard, prepopulated with content

  6. Edit the Description field as follows: API proxy for hello world.

  7. Click Next.

  8. On the Policies page:

    • Under Security: Authorization, select Pass through (no authorization).
    • Under Security: Browser, select Add CORS headers .

    Common policies page in the Create Proxy wizard with Pass through and Add CORS headers selected

  9. Click Next.

  10. On the Flows page, make sure all operations are selected and click Next.
    Build a Proxy Flows

  11. On the Summary page, select the environment to which you want to deploy under Optional Deployment.

  12. Click Create and deploy.

On the Summary page, you'll see an acknowledgement that your new API proxy was created successfully and deployed to the selected environment.


Step 2: Create an API product

Create an API product that contains the API resources that you want to expose to your API consumers.

To create an API product:

  1. In the Apigee UI, select Publish > API Products in the left navigation bar to open the API Products page.
  2. Click +CREATE.
    The Product page is displayed.
  3. Enter the Product Details for your API product.
    Note: The Display Name and Description fields are displayed in the portal when you publish the API product, by default. You can edit the values in Step 3: Publish the API to your portal.
    Field Value
    Name Hello World
    Display Name Hello World
    Description Simple hello world example
    Environment Select environment where API proxy is deployed.
    Access Public
    Automatically approve access requests Enabled
    Quota (leave blank)
    Allowed OAuth Scopes (leave blank)
  4. In the Operations section, click ADD AN OPERATION to identify the operations to add to your API product.
  5. Under Source, click API proxy and select Mock-Target-API from the drop-down.
  6. Under Operation, enter a forward slash (/) in the Path field. Ignore the other fields.
  7. Click Save to save the Operation.
  8. The Add Operation dialog displays. Add Mock-Target-API API proxy in the Add Operation dialog
  9. Click Add.
  10. Click Save.

Step 3: Publish the API to your portal

Publish the API to your portal to enable your customers to learn about and use it.

To publish the API to your portal:

  1. In the Apigee UI, navigate to the APIs page in your portal:
    1. Select Publish > Portals in the left navigation bar.
    2. Click in the My first portal row to open the portal.
    3. Click API Catalog to display the APIs page.
  2. Click +.
  3. Select Hello World in the Add an API product to the catalog dialog and click Next.
  4. Under API details, configure the following options:
    • Select Published (listed in the catalog) to publish the API to your portal.
    • For Display image:
      1. Click Select image.
      2. Click home-background.jpg from the list of existing images in the Select image dialog.
      3. Click Select.
      4. Preview the image and click Select.
    • For Categories, enter Get Started and press Enter.

    Leave all other values set to their defaults.

    API details section when adding an API to the portal

  5. Under API documentation, to auto-generate API reference documentation from a snapshot of your OpenAPI Specification:
    1. Select OpenAPI document.
    2. Click Select Document.
    3. Select the Import from a URL tab.
    4. Enter helloworld in the Spec name field.
    5. Copy and paste the following URL in the URL field and press Enter:
      https://raw.githubusercontent.com/apigee/api-platform-samples/master/default-proxies/helloworld/openapi/mocktarget3.0.yaml
    6. Click Select.

    API documentation section when adding an API to the portal

  6. Click Save.

To view the API reference documentation:

  1. In the Apigee UI, click Live Portal to view the changes in the live portal (or refresh the live portal if it is already open in another tab).
  2. In the live portal:
    a. Click APIs in the top navigation bar to the view published API.
    b. Click the Hello World card to view the API reference documentation.
    c. Give your API a try!

Mock Target API published with Try this API panel