Contact Us 1-800-596-4880

Create an API Specification Project in Studio

Studio enables you to create a RAML API specification, an OAS 2.0 or 3.0 API specification, or an API fragment, and automatically sync it with Design Center.

Studio uses the EGit plugin only for the VCS feature of editing API specifications offline. Studio does not support the EGit plugin for Mule application projects that you might track using your own VCS.

To start creating an API specification project in Studio, you must log in to Anypoint Platform. See Configure Platform Credentials.

  1. In the taskbar of the Anypoint Studio display, select File > New > API Specification Project.

  2. Select the tab of type of API specification project that you want to create:

    • To create a new API specification, select the New API Specification tab, and then select the type of API.

      create api specification
    • To create a new API fragment, select the New API Fragment tab, and then select the type of API fragment.

      create api fragment
  3. Type a name for your project.

  4. Select Finish.

Studio prompts you to switch to the API design perspective.

In the API design perspective, use the API editor to write your API specification or API fragment. Additionally, you can use the API Console view to mock a live service so you can test your API specification.

Studio uses VCS to track the development of your API specification project and keep it synchronized with Design Center.

Create Branches

Using a different branch enables you to used a modified API definition in certain cases, without modifying the main branch in Design Center.

To create a different branch in Studio:

  1. In the Package Explorer view, right-click your API specification project and select Team > Switch To > New Branch…​.

    switch to new branch
  2. In the Create Branch window, configure your new branch:

    create new branch
1 In the branch name field, type the name of your new branch.
2 You can select the Configure upstream for push and pull option if you want to also pull changes from Design Center into your local branch.
When configuring this option, you must select the behavior you want git to have when it pulls the changes from Design Center.
3 Select the Check out new branch for git to switch to this new branch as soon as you create it.
  1. Select Finish.

With a newly created branch, you can start committing your changes.

Commit Changes to Your API Specification Project

The VCS in Studio tracks every change you make to your project and shows them in the Unstaged Changes area of your Git Staging view.

You can track your changes to a file by right-clicking it in the Unstaged Changes section and selecting Compare with index:

compare with index

After applying your changes, add them to your index:

compare to index view
1 Use the Add selected files to the index icon to stage for commit the files that you selected.
2 Use the Add all files including not selected ones to the index icon to stage for commit all unstaged changes.

When you staged the changes that you want to commit, write a commit message in the Commit Message section:

add commit message
1 Select Commit and Push to also push the change to Design Center.
See Push Your Branch to Design Center below for more information.
2 Select Commit to add the commit to your local copy.

See Git Staging View Reference for more information about this view.

Merge and Push Your API Specification Project

You can merge the changes made to your API specification to your main branch and sync it with Design Center.

  1. In the Package Explorer view, right-click your API specification project and select Team > Merge > Push Branch…​.

    merge menu
  2. Select the local branch to which you want to merge your changes:

    merge view
  3. Select Merge.

Push Your Branch to Design Center

You can choose to publish your local branch to Design Center after you committed all your changes to your local branch:

  1. In the Package Explorer view, right-click your API specification project and select Team > Switch To > Push Branch…​.

    push branch
  2. Verify the changes that you are pushing to Design Center.

    push branch view
1 The Source section shows the changes that you are pushing to Design Center.
2 The Remote section shows the coordinates to the remote you are pushing to.
3 The Branch section shows the local branch that you are pushing.
4 You can select the Configure upstream for push and pull option if you want to also pull changes from Design Center into your local branch.
When configuring this option, you must select the behavior you want git to have when it pulls the changes from Design Center.
5 Select the Force overwrite branch in remote if it exists and has diverged only if you know that your local changes must overwrite the changes in Design Center.
This option force pushes your changes to the branch in Design Center.
  1. Select Preview to see a summary of the changes you are pushing.

  2. Select Push

In certain scenarios, someone else might have modified the version in Design Center while you modified the same version locally. This triggers conflicts in git.
See Solve Conflicts for more information.