Nuxeo Workflow API

Workflow Operations

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/nuxeo-workflow-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

nuxeo-workflow-api-openapi.yml Raw ↑
openapi: 3.0.2
info:
  version: LTS 2021
  title: Nuxeo Platform ACL Workflow API
  termsOfService: https://www.nuxeo.com/about/why-nuxeo/
  contact:
    email: support@nuxeo.com
    url: https://www.nuxeo.com/contact/
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  x-logo:
    url: https://d1q6f0aelx0por.cloudfront.net/product-logos/library-nuxeo-logo.png
  description: '# Nuxeo Platform https://www.nuxeo.com/

    OpenAPI 3.0 Specification for the Nuxeo Platform.'
servers:
- url: https://{host}:{port}/nuxeo/api/v1
  variables:
    host:
      default: demo.nuxeo.com
      description: Nuxeo Platform Host
    port:
      default: '443'
      description: Nuxeo Platform Port
- url: https://nightly.nuxeo.com/nuxeo/api/v1
  description: Nuxeo Platform Nightly Test Server
tags:
- name: Workflow
  description: Workflow Operations
paths:
  /id/{docId}/@task:
    get:
      operationId: DocumentIdTaskAdapterGet
      parameters:
      - description: Id of the document
        in: path
        name: docId
        required: true
        schema:
          type: string
      - description: id of the user who is actor of the task
        in: query
        name: userId
        required: true
        schema:
          type: string
      - description: id of the workflow instance the task belongs to
        in: query
        name: workflowInstanceId
        required: false
        schema:
          type: string
      - description: name of the workflow model of the task (i.e. 'SerialDocumentReview', 'ParallelDocumentReview'). Deprecated since 11.1 as this parameter forces post-filtering and prevents paginated results.
        in: query
        name: workflowModelName
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/tasks'
        '401':
          description: Not Authorized to get document
        '404':
          description: Document not found
      description: Only task instance which you have permission to see will be returned
      summary: List tasks of the given document
      tags:
      - Workflow
  /path/{docPath}/@task:
    get:
      operationId: DocumentPathTaskAdapterGet
      parameters:
      - description: 'Path of the document, ex: ''default-domain'''
        in: path
        name: docPath
        required: true
        schema:
          type: string
      - description: id of the user who is actor of the task
        in: query
        name: userId
        required: true
        schema:
          type: string
      - description: id of the workflow instance the task belongs to
        in: query
        name: workflowInstanceId
        required: false
        schema:
          type: string
      - description: name of the workflow model of the task (i.e. 'SerialDocumentReview', 'ParallelDocumentReview'). Deprecated since 11.1 as this parameter forces post-filtering and prevents paginated results.
        in: query
        name: workflowModelName
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/tasks'
        '401':
          description: Not Authorized to get document
        '404':
          description: Document not found
      description: Only task instance which you have permission to see will be returned
      summary: List tasks of the given document
      tags:
      - Workflow
  /task:
    get:
      operationId: TaskGet
      parameters:
      - description: id of the user who is actor of the task
        in: query
        name: userId
        required: true
        schema:
          type: string
      - description: id of the workflow instance the task belongs to
        in: query
        name: workflowInstanceId
        required: false
        schema:
          type: string
      - description: name of the workflow model of the task (i.e. 'SerialDocumentReview', 'ParallelDocumentReview'). Deprecated since 11.1 as this parameter forces post-filtering and prevents paginated results.
        in: query
        name: workflowModelName
        required: false
        schema:
          type: string
      - description: Index of the current page
        in: query
        name: currentPageIndex
        required: false
        schema:
          type: integer
      - description: Offset of the page to retrieve. If set, the 'currentPageIndex' parameter is ignored
        in: query
        name: offset
        required: false
        schema:
          type: integer
      - description: Size of the page to retrieve. Ignored if offset set
        in: query
        name: pageSize
        required: false
        schema:
          type: integer
      - description: Maximum results to retrieve
        in: query
        name: maxResults
        required: false
        schema:
          type: integer
      - description: Property to sort by, for example 'dc:title'
        in: query
        name: sortBy
        required: false
        schema:
          type: string
      - description: Sort order, accepts 'asc' or 'desc', default is 'desc'
        in: query
        name: sortOrder
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/tasks'
        '401':
          description: Not Authorized to get document
        '404':
          description: Document not found
      description: Only task instance which you have permission to see will be returned
      summary: Query tasks by user and workflow ids
      tags:
      - Workflow
  /task/{taskId}:
    get:
      operationId: TaskIdGet
      parameters:
      - description: Id of the task
        in: path
        name: taskId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/task'
        '401':
          description: Not Authorized to get document
        '404':
          description: Document not found
      description: Only task instance which you have permission to see will be returned
      summary: Get a task by its id
      tags:
      - Workflow
  /task/{taskId}/delegate:
    put:
      operationId: TaskDelegatePut
      parameters:
      - description: Id of the task
        in: path
        name: taskId
        required: true
        schema:
          type: string
      - description: comma separated ids of the delegated actors
        in: query
        name: delegatedActors
        required: true
        schema:
          type: string
      - description: comment
        in: query
        name: comment
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Successful response
        '401':
          description: Not Authorized to get document
        '404':
          description: Document not found
      description: See https://doc.nuxeo.com/x/34z1
      summary: Delegate a task
      tags:
      - Workflow
  /task/{taskId}/reassign:
    put:
      operationId: TaskReassignPut
      parameters:
      - description: Id of the task
        in: path
        name: taskId
        required: true
        schema:
          type: string
      - description: comma separated ids of the new actors
        in: query
        name: actors
        required: true
        schema:
          type: string
      - description: comment
        in: query
        name: comment
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Successful response
        '401':
          description: Not Authorized to get document
        '404':
          description: Document not found
      description: See https://doc.nuxeo.com/x/1YcZAQ
      summary: Reassign a task
      tags:
      - Workflow
  /task/{taskId}/{action}:
    put:
      operationId: TaskActionPut
      parameters:
      - description: Id of the task
        in: path
        name: taskId
        required: true
        schema:
          type: string
      - description: the action to be applied when completed the task. The action determines the transition to be followed and the next task within the workflow.
        in: path
        name: action
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/taskCompletionRequest'
      responses:
        '200':
          description: Successful response
        '401':
          description: Not Authorized to get document
        '404':
          description: Document not found
      description: Complete a workflow related task
      summary: Complete task
      tags:
      - Workflow
  /id/{docId}/@workflow:
    get:
      operationId: DocumentIdWorkflowAdapterGet
      parameters:
      - description: Id of the document
        in: path
        name: docId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/workflows'
        '401':
          description: Not Authorized to get document
        '404':
          description: Document not found
      description: Only workflow instances launched by current user will be returned
      summary: Get the workflow instances launched on the given document
      tags:
      - Workflow
    post:
      operationId: DocumentIdWorkflowAdapterPost
      parameters:
      - description: Id of the document
        in: path
        name: docId
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/workflowRequest'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/workflowRequest'
        '401':
          description: Not Authorized to get document
        '404':
          description: Document not found
      summary: Start a workflow instance on the given document
      tags:
      - Workflow
  /path/{docPath}/@workflow:
    get:
      operationId: DocumentPathWorkflowAdapterGet
      parameters:
      - description: 'Path of the document, ex: ''default-domain'''
        in: path
        name: docPath
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/workflows'
        '401':
          description: Not Authorized to get document
        '404':
          description: Document not found
      description: Only workflow instances launched by current user will be returned
      summary: Get the workflow instances launched on the given document
      tags:
      - Workflow
    post:
      operationId: DocumentPathWorkflowAdapterPost
      parameters:
      - description: 'Path of the document, ex: ''default-domain'''
        in: path
        name: docPath
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/workflowRequest'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/workflowRequest'
        '401':
          description: Not Authorized to get document
        '404':
          description: Document not found
      summary: Start a workflow instance on the given document
      tags:
      - Workflow
  /workflow:
    get:
      operationId: WorkflowGet
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/workflows'
        '401':
          description: Not Authorized to get document
        '404':
          description: Document not found
      description: Only workflow instances launched by current user will be returned
      summary: Get the workflow instances launched by the current user
      tags:
      - Workflow
    post:
      operationId: WorkflowPost
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/workflowRequest'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/workflowRequest'
        '401':
          description: Not Authorized to get document
        '404':
          description: Document not found
      summary: Start a workflow instance
      tags:
      - Workflow
  /workflow/{workflowInstanceId}:
    delete:
      operationId: WorkflowInstanceDelete
      parameters:
      - description: Id of the workflow instance
        in: path
        name: workflowInstanceId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
        '401':
          description: Not Authorized to get document
        '404':
          description: Document not found
      description: Only workflow instance which you have permission to see will be returned
      summary: Delete a workflow instance by its id
      tags:
      - Workflow
    get:
      operationId: WorkflowInstanceGet
      parameters:
      - description: Id of the workflow instance
        in: path
        name: workflowInstanceId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/workflow'
        '401':
          description: Not Authorized to get document
        '404':
          description: Document not found
      description: Only workflow instance which you have permission to see will be returned
      summary: Find a workflow instance by its id
      tags:
      - Workflow
  /workflow/{workflowInstanceId}/graph:
    get:
      operationId: WorkflowInstanceGraphGet
      parameters:
      - description: Id of the workflow instance
        in: path
        name: workflowInstanceId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/workflowGraph'
        '401':
          description: Not Authorized to get document
        '404':
          description: Document not found
      description: Get the json serialization of a workflow instance graph
      summary: Get the json serialization of a workflow instance graph
      tags:
      - Workflow
components:
  schemas:
    tasks:
      properties:
        entity-type:
          type: string
          uniqueItems: false
        entries:
          items:
            $ref: '#/components/schemas/task'
          type: array
          uniqueItems: false
      required:
      - entity-type
      - entries
      uniqueItems: false
    workflowGraph:
      uniqueItems: false
    workflows:
      properties:
        entity-type:
          type: string
          uniqueItems: false
        entries:
          items:
            $ref: '#/components/schemas/workflow'
          type: array
          uniqueItems: false
      required:
      - entity-type
      - entries
      uniqueItems: false
    taskInfo:
      properties:
        actions:
          items:
            $ref: '#/components/schemas/taskAction'
          type: array
          uniqueItems: false
        layoutResource:
          properties:
            name:
              type: string
              uniqueItems: false
            url:
              type: string
              format: uri
              uniqueItems: false
          required:
          - name
          - url
          uniqueItems: false
      required:
      - actions
      - layoutResource
      uniqueItems: false
    taskCompletionRequest:
      properties:
        comment:
          type: string
          uniqueItems: false
        entity-type:
          type: string
          uniqueItems: false
        nodeVariables:
          items:
            $ref: '#/components/schemas/Property'
          type: object
          uniqueItems: true
        worflowVariables:
          items:
            $ref: '#/components/schemas/Property'
          type: object
          uniqueItems: true
      required:
      - entity-type
      uniqueItems: false
    workflowRequest:
      properties:
        documentIds:
          items:
            type: string
          type: array
        entity-type:
          type: string
          uniqueItems: false
        worflowVariables:
          items:
            $ref: '#/components/schemas/Property'
          type: object
          uniqueItems: true
        workflowModelName:
          type: string
          uniqueItems: false
      required:
      - entity-type
      uniqueItems: false
    taskComments:
      properties:
        author:
          type: string
          uniqueItems: false
        date:
          format: date
          type: string
          uniqueItems: false
      required:
      - author
      - date
      uniqueItems: false
    workflow:
      properties:
        attachedDocumentIds:
          items:
            type: string
          type: array
        entity-type:
          type: string
          uniqueItems: false
        id:
          type: string
          uniqueItems: false
        initiator:
          type: string
          uniqueItems: false
        name:
          type: string
          uniqueItems: false
        variables:
          items:
            $ref: '#/components/schemas/Property'
          type: object
          uniqueItems: true
      required:
      - entity-type
      uniqueItems: false
    task:
      properties:
        actors:
          items:
            type: string
          type: array
        comments:
          items:
            $ref: '#/components/schemas/taskComments'
          type: array
        created:
          format: date
          type: string
          uniqueItems: false
        directive:
          type: string
          uniqueItems: false
        dueDate:
          format: date
          type: string
          uniqueItems: false
        entity-type:
          type: string
          uniqueItems: false
        id:
          type: string
          uniqueItems: false
        name:
          type: string
          uniqueItems: false
        nodeName:
          format: date
          type: string
          uniqueItems: false
        state:
          type: string
          uniqueItems: false
        targetDocumentIds:
          items:
            type: string
          type: array
        taskInfo:
          $ref: '#/components/schemas/taskInfo'
        type:
          format: date
          type: string
          uniqueItems: false
        variables:
          items:
            $ref: '#/components/schemas/Property'
          type: object
          uniqueItems: true
        workflowId:
          type: string
          uniqueItems: false
      required:
      - entity-type
      uniqueItems: false
    Property:
      properties:
        context:
          type: object
          uniqueItems: false
        params:
          type: object
          uniqueItems: false
      required:
      - context
      - params
      uniqueItems: false
    taskAction:
      properties:
        label:
          type: string
          uniqueItems: false
        name:
          type: string
          uniqueItems: false
        url:
          type: string
          uniqueItems: false
      required:
      - label
      - name
      - url
      uniqueItems: false
  securitySchemes:
    basic_auth:
      type: http
      scheme: basic
    token:
      type: apiKey
      in: header
      name: X-Authentication-Token
externalDocs:
  description: Nuxeo Documentation
  url: https://doc.nuxeo.com/