zzAPI (prounounced like pizza, the syllables interchanged) is an HTTP (REST) API documentation and testing tool, a very simplified version of Postman. See zzAPI core to learn about the zzAPI file formats (.zzb and .zzv files) and philosophy.
This extension makes it easy to create, document and test API requests from within the IDE. Request bundles are YAML files with the .zzb extension.
Features
Provides Code Lenses above requests when a .zzb file is opened. These are mini-buttons that execute a request or all requests in a bundle.
Provides the ability to choose environments (sets of variables) to use when running requests.
In conjunction with RedHat YAML provides schema validation for the .zzb file extension.
Request responses are shown in an editor window. Other response elements such as status, headers and test results are shown in the ouptput window.
Tests can be run against the responses. The test specification is simple and needs no coding.
Getting Started
Install the RedHat YAML extension. This is not strictly needed, but the formatting and schema validation is really helpful and useful.
Install this extension
Start creating a request bundle. Here is a very simple example:
Save the The file with a .zzb file extension to activate the extension.
Alternatively import a Postman collection:
Export the Postman collection as a JSON (v2.0.1) schema
Use the command pallete in VS Code (Cmd-Shift-P or Ctrl-Shift-P) and choose zzAPI: Import Postman collection
In the File Open dialog, choose the Postman collection you exported in the first step
The command will open a new editor window and place the converted YAML. Save it to a file with a .zzb extension
If you have used variables in Postman, you have to create a .zzv file (or a variables block in the bundle itself). Sorry, we don't support importing Postman environment yet.
You will see a Code Lense above each named request for running the request. You will also see a Code Lens above the requests node, to run all the requests sequenctially. Click on these to execute them and see the response.
Detailed Usage
The extension works with .zzb files, which are YAML request bundles as described here.
You can use variables within the bundle, and also common variable set files and environments as described here.
You can best learn about the .zzb file format by just browsing the bundle used for comprehensively testing zzAPI itself: tests-bundle.zzb.
Tips and Tricks
Use OUTLINE in the VS Code Explorer sidebar to show a list of requests within the .zzb file: Collapse the entire tree and open only the first level of the requests node. Now you can easily navigate to each request for editing/running.
Instead of the raw body, the request body can be a YAML/JSON object. This is a great convenience compared to other API tools, that need you to create valid JSONs with quotes around every key and string. YAML is much easier to hand-create.
Save the bundles along with your code and commit them to your repo. This is how you share them with your team. Also keep the tests right next to the code.
Multiple variable set files are merged. Keep one set as your secrets or personal set where you specify your passwords etc. needed for the requests. Do not commit this to your repo.
Create multiple bundles (eg, some for documentation and some for tests) within the same directory and share the variable sets among them. Or, if you prefer, declare variable sets within the bundle itself for easy visibility.