Structify workflow_schedule API

The workflow_schedule API from Structify — 6 operation(s) for workflow_schedule.

Operations 8

GET /workflow-schedule #
GET /workflow-schedule/{chat_session_id} #
POST /workflow-schedule/{chat_session_id} #
DELETE /workflow-schedule/{schedule_id} #
PUT /workflow-schedule/{schedule_id} #
PATCH /workflow-schedule/{schedule_id}/pause #
POST /workflow-schedule/{schedule_id}/run #
POST /workflow-schedule/{schedule_id}/sessions #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/structify-workflow-schedule-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

structify-workflow-schedule-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: team@structify.ai
    name: Structify Team
  description: Every enterprise's data team.
  license:
    name: Discuss directly with founders for license.
    url: https://structify.ai
  title: Structify account Workflow Schedule API
  version: 0.1.0
servers:
- description: Production server
  url: https://api.structify.ai
- description: Local server
  url: http://localhost:8080
security:
- api_key: []
- session_token: []
tags:
- name: workflow_schedule
paths:
  /workflow-schedule:
    get:
      operationId: get_workflow_schedules_for_user
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/WorkflowScheduleInfo'
                type: array
          description: Successfully retrieved workflow schedules
        '403':
          description: Access denied
      tags:
      - workflow_schedule
  /workflow-schedule/{chat_session_id}:
    get:
      operationId: get_workflow_schedules_for_chat
      parameters:
      - description: The chat session ID
        in: path
        name: chat_session_id
        required: true
        schema:
          $ref: '#/components/schemas/ChatSessionId'
      responses:
        '200':
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/WorkflowScheduleInfo'
          description: Successfully retrieved workflow schedule
        '403':
          description: Access denied
        '404':
          description: Chat session not found
      tags:
      - workflow_schedule
    post:
      operationId: create_workflow_schedule
      parameters:
      - description: The chat session ID
        in: path
        name: chat_session_id
        required: true
        schema:
          $ref: '#/components/schemas/ChatSessionId'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateWorkflowScheduleRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkflowScheduleInfo'
          description: Successfully created workflow schedule
        '400':
          description: Invalid request
        '403':
          description: Access denied
      tags:
      - workflow_schedule
  /workflow-schedule/{schedule_id}:
    delete:
      operationId: delete_workflow_schedule
      parameters:
      - description: The workflow schedule ID
        in: path
        name: schedule_id
        required: true
        schema:
          $ref: '#/components/schemas/WorkflowScheduleId'
      responses:
        '204':
          description: Successfully deleted workflow schedule
        '403':
          description: Access denied
        '404':
          description: Workflow schedule not found
      tags:
      - workflow_schedule
    put:
      operationId: update_workflow_schedule
      parameters:
      - description: The workflow schedule ID
        in: path
        name: schedule_id
        required: true
        schema:
          $ref: '#/components/schemas/WorkflowScheduleId'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateWorkflowScheduleRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkflowScheduleInfo'
          description: Successfully updated workflow schedule
        '400':
          description: Invalid request
        '403':
          description: Access denied
        '404':
          description: Workflow schedule not found
      tags:
      - workflow_schedule
  /workflow-schedule/{schedule_id}/pause:
    patch:
      operationId: pause_workflow_schedule
      parameters:
      - description: The workflow schedule ID
        in: path
        name: schedule_id
        required: true
        schema:
          $ref: '#/components/schemas/WorkflowScheduleId'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PauseWorkflowScheduleRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkflowScheduleInfo'
          description: Successfully updated workflow schedule pause status
        '403':
          description: Access denied
        '404':
          description: Workflow schedule not found
      tags:
      - workflow_schedule
  /workflow-schedule/{schedule_id}/run:
    post:
      operationId: run_workflow_schedule
      parameters:
      - description: The workflow schedule ID
        in: path
        name: schedule_id
        required: true
        schema:
          $ref: '#/components/schemas/WorkflowScheduleId'
      responses:
        '200':
          description: Successfully triggered workflow execution
        '403':
          description: Access denied
        '404':
          description: Workflow schedule not found
      tags:
      - workflow_schedule
  /workflow-schedule/{schedule_id}/sessions:
    post:
      operationId: get_workflow_schedule_sessions
      parameters:
      - description: The workflow schedule ID
        in: path
        name: schedule_id
        required: true
        schema:
          $ref: '#/components/schemas/WorkflowScheduleId'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetWorkflowScheduleSessionsRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetWorkflowScheduleSessionsResponse'
          description: Successfully retrieved workflow sessions
        '403':
          description: Access denied
        '404':
          description: Workflow schedule not found
      tags:
      - workflow_schedule
components:
  schemas:
    UpdateWorkflowScheduleRequest:
      properties:
        cron_schedule:
          type:
          - string
          - 'null'
        git_commit_hash:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        paused:
          type:
          - boolean
          - 'null'
      type: object
    WorkflowSession:
      properties:
        aborted:
          type: boolean
        chat_session_id:
          $ref: '#/components/schemas/ChatSessionId'
        created_at:
          format: date-time
          type:
          - string
          - 'null'
        dag_ready:
          type: boolean
        dag_ready_at:
          format: date-time
          type:
          - string
          - 'null'
        dashboard_layout_proto:
          format: binary
          type:
          - string
          - 'null'
        error_message:
          type:
          - string
          - 'null'
        error_traceback:
          type:
          - string
          - 'null'
        id:
          $ref: '#/components/schemas/WorkflowSessionId'
        parent_chat_message_id:
          allOf:
          - $ref: '#/components/schemas/ChatMessageId'
        updated_at:
          format: date-time
          type: string
        workflow_schedule_id:
          allOf:
          - $ref: '#/components/schemas/WorkflowScheduleId'
      required:
      - id
      - chat_session_id
      - updated_at
      - dag_ready
      - aborted
      type: object
    ChatMessageId:
      format: uuid
      type: string
    WorkflowSessionId:
      format: uuid
      type: string
    GetWorkflowScheduleSessionsRequest:
      properties:
        limit:
          format: int64
          type: integer
        offset:
          format: int64
          type: integer
      type: object
    CreateWorkflowScheduleRequest:
      properties:
        cron_schedule:
          type:
          - string
          - 'null'
        git_commit_hash:
          type:
          - string
          - 'null'
        name:
          type: string
      required:
      - name
      type: object
    WorkflowScheduleInfo:
      properties:
        chat_session_id:
          $ref: '#/components/schemas/ChatSessionId'
        cron_schedule:
          type:
          - string
          - 'null'
        git_commit_hash:
          type:
          - string
          - 'null'
        id:
          $ref: '#/components/schemas/WorkflowScheduleId'
        name:
          type: string
        next_run_time:
          type:
          - string
          - 'null'
        owner_email:
          type:
          - string
          - 'null'
        paused:
          type: boolean
        updated_at:
          type:
          - string
          - 'null'
        visibility:
          allOf:
          - $ref: '#/components/schemas/ChatVisibility'
      required:
      - id
      - name
      - chat_session_id
      - paused
      type: object
    GetWorkflowScheduleSessionsResponse:
      properties:
        sessions:
          items:
            $ref: '#/components/schemas/WorkflowSession'
          type: array
        total_count:
          format: int64
          type: integer
      required:
      - sessions
      - total_count
      type: object
    WorkflowScheduleId:
      format: uuid
      type: string
    PauseWorkflowScheduleRequest:
      properties:
        paused:
          type: boolean
      required:
      - paused
      type: object
    ChatSessionId:
      format: uuid
      type: string
    ChatVisibility:
      enum:
      - private
      - shared_with_team
      - shared_with_team_view
      - public
      type: string
  securitySchemes:
    api_key:
      in: header
      name: api_key
      type: apiKey
    session_token:
      scheme: bearer
      type: http