Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / Productivity / KiSSFLOW REST API
KiSSFLOW REST API logo

KiSSFLOW REST API

Agent-ready OpenAPI document · curated by JenticProductivityTask ManagementapiKey13 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Submit, approve, reject, and inspect Kissflow process requests across any process configured in a Kissflow account.

Use for: Submit a new purchase request through Kissflow, Approve a Kissflow request that is waiting on me, Reject the request waiting at my approval step, Get the workflow progress for request 4567

Not supported: Does not author processes, manage user accounts, or build forms - use for driving requests through existing Kissflow processes only.

Jentic publishes the only available OpenAPI specification for KiSSFLOW REST API, keeping it validated and agent-ready. Kissflow is a process and workflow platform, and its REST API exposes the operations that drive a request through a process: create a draft, submit it, approve, reject, complete an input step, seek clarification, and read progress. The 13-endpoint surface is shaped around a single process_name path parameter so the same calls reach any process in the account, with authentication by an api_key header and an optional email_id header for acting on behalf of another user.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the KiSSFLOW REST API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the KiSSFLOW REST API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fkissflow.com%2Fkissflow" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fkissflow.com%2Fkissflow" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with KiSSFLOW REST API.

Create and immediately submit a request inside a named Kissflow process

Approve, reject, or complete an input step on an in-flight request

Seek clarification on a submitted request before approving

List paginated requests from a process and read full request details

Read the workflow progress of a request to see the current step

Verify Kissflow API connectivity and act on behalf of another user with the email_id header

Use Cases

Patterns agents use KiSSFLOW REST API for, with concrete tasks.

★ Drive process requests from a chat surface

Operations teams can let employees submit standard requests like leave or travel through chat or a custom form, with the bot calling POST /{process_name}/submit to create and submit the request in a single call. The same surface lets approvers approve or reject from chat via POST /{process_name}/{request_id}/approve.

POST a payload to /{process_name}/submit with the form fields and surface the returned request_id back to the user.

Approval routing through an existing tool

When approvers prefer their existing inbox or task tool, an integration can read pending requests with GET /{process_name}/list/p{page}/{size} and post the action with POST /{process_name}/{request_id}/approve or .../reject. This keeps Kissflow as the system of record while the approval UX lives elsewhere.

List pending requests, route each one to the approver's tool, and POST the approve or reject endpoint with their decision.

Process progress dashboard

A status dashboard can poll GET /{process_name}/{request_id}/progress for in-flight requests and combine it with GET /{process_name}/{request_id}/read to show field values and the current step. The combination is enough to render a complete request card without screen-scraping Kissflow.

Call GET /{process_name}/{request_id}/progress for each open request and write the current step to the dashboard.

Agent integration via Jentic

An operations agent can use Jentic to discover the Kissflow approve and submit operations, load their schemas, and execute them with a vaulted api_key. The agent never sees the raw key and can act on behalf of another user by passing the email_id header through Jentic.

Search Jentic for 'submit a Kissflow process request', load POST /{process_name}/submit, and execute it with the process name and form payload.

Key Endpoints

13 endpoints — jentic publishes the only available openapi specification for kissflow rest api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/process

List processes on the account

POST

/{process_name}/submit

Create and submit a request

POST

/{process_name}/{request_id}/approve

Approve a request

POST

/{process_name}/{request_id}/reject

Reject a request

POST

/{process_name}/{request_id}/done

Complete an input step

GET

/{process_name}/{request_id}/read

Read request details

GET

/{process_name}/{request_id}/progress

Read workflow progress

GET

/{process_name}/list/p{page}/{size}

List paginated requests

GET

/process

List processes on the account

POST

/{process_name}/submit

Create and submit a request

POST

/{process_name}/{request_id}/approve

Approve a request

POST

/{process_name}/{request_id}/reject

Reject a request

POST

/{process_name}/{request_id}/done

Complete an input step

GET

/{process_name}/{request_id}/read

Read request details

GET

/{process_name}/{request_id}/progress

Read workflow progress

GET

/{process_name}/list/p{page}/{size}

List paginated requests

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring KiSSFLOW by hand means learning its api_key header auth and building the per-account {account_id}.appspot.com host yourself. Through Jentic you install once, import KiSSFLOW from the API Directory, store the key once, and your agent calls it.

Permission scoping

Permission scoping

KiSSFLOW puts the process name in the URL path (/{process_name}/submit), so a rule can pin your agent to one process: it can submit and read requests for that process and nothing else. You choose the operations it may call, so state changes like approve, reject, or done are not included unless you add them.

Credential management

Credential isolation

Your KiSSFLOW API key is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'submit a request to a Kissflow process' or 'check request progress', and Jentic returns the matching Kissflow operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Tallyfy API

→

Tallyfy is a workflow platform with a similar request and approval model

Choose Tallyfy when the team prefers its task-driven UI for collaborators rather than Kissflow's process model

Alternative

Process Street API

→

Process Street drives checklist-style procedures rather than form-based workflows

Choose Process Street when the work is repeatable checklists rather than approval-heavy requests

Alternative

SmartSuite API

→

SmartSuite is a work-management platform that overlaps with Kissflow's process layer

Choose SmartSuite when the team wants databases and work tracking in the same product as workflows

Complementary

Slack API

→

Slack is the surface where Kissflow approvals are most often actioned

Pair with Slack when approvers want a Block Kit message that calls the Kissflow approve or reject endpoint on click

FAQs

Specific to using KiSSFLOW REST API through Jentic.

Why is there no official OpenAPI spec for KiSSFLOW REST API?

Kissflow does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call KiSSFLOW REST API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the KiSSFLOW REST API use?

Kissflow authenticates with an api_key header. An optional email_id header lets the caller act on behalf of another user. Jentic stores the api_key in the vault and supports passing through a chosen email_id at execution time.

Can I approve a request with the KiSSFLOW REST API?

Yes. POST to /{process_name}/{request_id}/approve. Reject with the parallel /reject endpoint and complete an input step with /done. Each call uses the same path shape and authenticates with the api_key header.

What are the rate limits for the KiSSFLOW REST API?

The OpenAPI specification does not declare explicit rate limits across the 13 endpoints. Use GET /{process_name}/list/p{page}/{size} with a sensible page size for reporting rather than re-pulling the full list, and back off if a 429 is returned.

How do I submit a Kissflow request with the KiSSFLOW REST API through Jentic?

Run pip install jentic, search Jentic for 'submit a Kissflow process request', load the POST /{process_name}/submit operation, and execute it with the process name and form payload. Jentic supplies the api_key header from the vault.

Can I limit what my agent is allowed to do with the Kissflow REST API?

Yes. Because you run Jentic One yourself, your own rules decide which Kissflow operations and credentials the agent may use. Since Kissflow puts the process name in the URL path, such as /{process_name}/submit, you can pin the agent to a single process and grant only read and submit calls for it. State-changing operations like approve, reject, and done stay off unless you explicitly add them, so the agent can never take an action you did not allow.

GET STARTED

Start building with KiSSFLOW REST API

Explore with Jentic One
View OpenAPI Document