Quick Start
This guide walks you through creating and deploying your first API using DotPortion, from project setup to testing a live endpoint. By the end, you’ll have a working API you can call from any client.Step 1: Create a Project
A project is the top-level container for your APIs, workflows, and configurations.- Go to the Projects dashboard
- Click Create Project
- Enter:
- Project Name – A short, meaningful name
- Description – What this project is used for
Step 2: Create a Workflow
A workflow defines how an API request is processed.- Inside your project, click Create Workflow
- Enter:
- Workflow Name – Example:
Create User API - Description – What this workflow does
- Method – Choose an HTTP method (
GET,POST,PUT, etc.) - Path – Define the API route
- Do not start the path with /
- Workflow Name – Example:
Example
Tip: DotPortion automatically handles routing, you only define the method and path.
Step 4: Test the Workflow
Before deploying, you can test your API directly from DotPortion.- Open the Test Panel inside the workflow editor
- Provide:
- Request body
- Query parameters (if any)
- Headers (if required)
- Click Run
- Node-by-node execution
- Request and response data
- Errors (if any)
Step 5: Deploy the Workflow
Once you’re happy with the result, deploy your API.- Go to the Workflows Table
- Find your workflow
- Toggle the Deploy switch to ON
- The API becomes publicly accessible
- DotPortion hosts and manages the endpoint
Step 6: Get Your API Endpoint
To find your API URL:- Open API Docs for your project
- Copy the generated endpoint URL
- Frontend apps
- Mobile apps
- Backend services
- API clients like Postman or curl
What’s Next?
You’ve successfully:- Created a project
- Built a workflow
- Tested your API
- Deployed it live 🎉
- Add more nodes (logic, database, auth)
- Create additional workflows
- Version and iterate safely
- Explore AI-assisted workflow building