Skip to Content
APIsapis.doAIWorkflows

Workflows API

API for managing Workflows resources.

Fields

interface Workflows { name?: string; type?: string; code?: string; functions?: string; module?: string; package?: string; deployment?: string; public?: boolean; clonedFrom?: string; pricing?: any; }

API Endpoints

GET /api/workflows

Retrieves a list of Workflows with pagination.

Query Parameters

  • limit: Maximum number of items to return (default: 10)
  • page: Page number for pagination (default: 1)
  • sort: Field to sort by (default: createdAt)
  • where: JSON query for filtering results

GET /api/workflows/:id

Retrieves a single Workflows by ID.

POST /api/workflows

Creates a new Workflows.

PATCH /api/workflows/:id

Updates an existing Workflows.

DELETE /api/workflows/:id

Deletes a Workflows.

Last updated on