Applications
Applications are top-level containers for your product spaces in Vortex.
Use Applications to organize teams, workflows, and related resources in one place.
What You Can Do
- Create an application.
- List existing applications.
- Update application details.
- Replace an application.
- Delete an application.
Application Fields
name: Human-readable display name.slug: Stable identifier used in URLs and API payloads.description: Optional notes about purpose and scope.
Dashboard Workflow
- Open the Dashboard home page.
- Go to the
Applicationssection. - Use
Createto add a new application. - Use
Editto update name, slug, or description. - Use
Deleteto remove an application you no longer need.
API Endpoints
GET /applicationsPOST /applicationsGET /applications/{id}PUT /applications/{id}(replace)PATCH /applications/{id}(update)DELETE /applications/{id}
Notes
slugvalues should be unique and URL-safe.- Prefer
PATCHfor partial updates andPUTwhen replacing the full resource.