Creating Collections
You can create a new collection in multiple ways:Using the Sidebar
Click the New Collection button (folder icon) at the top of the Collections tab in the sidebar.
Using the Command Palette
Open the Command Palette (
Cmd/Ctrl+Shift+P) and run LiteClient: New Collection.Organizing Requests
Adding Requests to Collections
Once you’ve created a collection, you can add requests to it:- Right-click on a collection in the sidebar
- Select Add Request to Collection
- Configure your request (URL, method, headers, body, auth)
- Save the request with a descriptive name
Nested Folders
For larger projects, you can nest requests inside folders for logical organization:- Group endpoints by resource type (e.g., “Users”, “Orders”, “Products”)
- Organize by feature or workflow
- Create hierarchies that mirror your API structure
Collections support unlimited nesting depth, so you can organize requests in whatever structure makes sense for your project.
Drag-and-Drop Reordering
Keep your collections organized by dragging requests and folders to reorder them. This helps you:- Prioritize frequently used requests
- Group related endpoints together
- Maintain a logical workflow order
Saving Requests
When you save a request to a collection, LiteClient stores the complete configuration:- Request URL with variables
- HTTP method (GET, POST, PUT, etc.)
- Headers (custom and authentication)
- Request body and body type
- Authentication settings
- Pre-request and post-response scripts
- Save New Request
- Update Existing Request
After configuring a request:
- Click the Save button in the request editor
- Choose the target collection
- Enter a request name
- The request appears in your collection immediately
Postman Collection Import
Migrate from Postman effortlessly with full Collection v2.1 import support.Export from Postman
In Postman, right-click your collection and select Export. Choose Collection v2.1 format.
Import to LiteClient
In LiteClient, run LiteClient: Import Collection from the Command Palette and select your exported JSON file.
Pre-request and test scripts are fully supported during import. Collection-level and folder-level scripts will show a warning as they’re not yet supported.
Exporting Collections
Share your API collections with your team by exporting to Postman Collection v2.1 format:- Right-click on a collection in the sidebar
- Select Export Collection
- Choose a save location
- Share the JSON file via email, Slack, or version control
Collection Management
Renaming Collections
Right-click on a collection and select Rename Collection to update its name.Deleting Collections
Right-click on a collection and select Delete Collection. This action is permanent and removes all requests and folders within the collection.Best Practices
Use descriptive names
Use descriptive names
Name your collections and requests clearly so team members can understand their purpose at a glance. Use names like “Create User” instead of “POST /users”.
Leverage folder hierarchy
Leverage folder hierarchy
Mirror your API’s structure with folders. For a REST API, create folders for each resource (Users, Posts, Comments) and nest related operations inside.
Combine with environments
Combine with environments
Use variables like
{{baseUrl}} in your request URLs so collections work seamlessly across local, staging, and production environments.Version control your collections
Version control your collections
Enable workspace storage and commit your
.liteclient/ folder to Git. This lets your team share collections and track API changes over time.