Orkes Human Tasks API
The Human Tasks API from Orkes — 5 operation(s) for human tasks.
The Human Tasks API from Orkes — 5 operation(s) for human tasks.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/orkes-human-tasks-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Orkes Conductor REST Authentication Human Tasks API
description: The Orkes Conductor REST API provides endpoints for managing workflows, tasks, human tasks, secrets, schedules, and other resources in the Orkes workflow orchestration platform built on Netflix Conductor.
version: 2.0.0
contact:
name: Orkes
url: https://orkes.io/
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: '{baseUrl}/api'
description: Orkes Conductor Server
variables:
baseUrl:
default: https://play.orkes.io
security:
- BearerAuth: []
tags:
- name: Human Tasks
paths:
/human/tasks/search:
get:
operationId: searchHumanTasks
summary: Search human tasks
description: Search for human tasks across workflows.
tags:
- Human Tasks
parameters:
- name: start
in: query
schema:
type: integer
- name: size
in: query
schema:
type: integer
- name: query
in: query
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
properties:
results:
type: array
items:
$ref: '#/components/schemas/HumanTask'
totalHits:
type: integer
/human/tasks/{taskId}:
get:
operationId: getHumanTask
summary: Get a human task
description: Returns details of a specific human task.
tags:
- Human Tasks
parameters:
- name: taskId
in: path
required: true
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/HumanTask'
/human/tasks/{taskId}/claim/{userId}:
post:
operationId: claimHumanTask
summary: Claim a human task
description: Claims a human task for a specific user.
tags:
- Human Tasks
parameters:
- name: taskId
in: path
required: true
schema:
type: string
- name: userId
in: path
required: true
schema:
type: string
responses:
'200':
description: Task claimed
/human/tasks/{taskId}/release:
post:
operationId: releaseHumanTask
summary: Release a human task
description: Releases a claimed human task.
tags:
- Human Tasks
parameters:
- name: taskId
in: path
required: true
schema:
type: string
responses:
'200':
description: Task released
/human/tasks/{taskId}/complete:
post:
operationId: completeHumanTask
summary: Complete a human task
description: Completes a human task with output.
tags:
- Human Tasks
parameters:
- name: taskId
in: path
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
type: object
properties:
output:
type: object
responses:
'200':
description: Task completed
components:
schemas:
HumanTask:
type: object
properties:
taskId:
type: string
displayName:
type: string
state:
type: string
enum:
- PENDING
- ASSIGNED
- IN_PROGRESS
- COMPLETED
- TIMED_OUT
assignee:
type: object
properties:
userType:
type: string
user:
type: string
workflowId:
type: string
workflowName:
type: string
input:
type: object
output:
type: object
createdOn:
type: integer
format: int64
securitySchemes:
BearerAuth:
type: http
scheme: bearer