Mitratech Workflow API

The Workflow API from Mitratech — 1 operation(s) for workflow.

Operations 1

POST /v2/workflows/audittrail/details Returns audit trail details for each provided workflow name #

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/mitratech-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 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 Specification

mitratech-workflow-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v1
  title: TAP API Explorer Workflow API
servers:
- url: https://demo.tap.thinksmart.com/prod/api
tags:
- name: Workflow
paths:
  /v2/workflows/audittrail/details:
    post:
      tags:
      - Workflow
      summary: Returns audit trail details for each provided workflow name
      description: 'Expects a JSON array of workflow names in the request body.

        Example:


        ["Request # 00020998","Request # 00020995","CNDA0207"]'
      operationId: Workflow_SearchAuditTrailDetails
      responses:
        '200':
          description: Audit trail information was found and returned.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AuditTrailDetailList'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AuditTrailDetailList'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AuditTrailDetailList'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AuditTrailDetailList'
        '400':
          description: The input was invalid (e.g., null or empty list).
        '401':
          description: Authentication is required or has failed.
        '403':
          description: The caller is not authorized for the current tenant.
        '500':
          description: An unexpected error occurred.
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
          text/json:
            schema:
              type: array
              items:
                type: string
          application/xml:
            schema:
              type: array
              items:
                type: string
          text/xml:
            schema:
              type: array
              items:
                type: string
          application/x-www-form-urlencoded:
            schema:
              type: array
              items:
                type: string
        description: List of workflow names to query. Must not be null or empty.
        required: true
components:
  schemas:
    AuditTrailFieldLogStage:
      description: Workflow Attachment
      type: object
      properties:
        Stage:
          description: Name of the stage
          type: string
        Date:
          format: date-time
          description: Timestamp when stage was saved
          type: string
        User:
          description: User that saved the stage
          type: string
        Status:
          description: Status of the stage
          type: string
        Fields:
          description: Specific field log
          type: array
          items:
            $ref: '#/components/schemas/AuditTrailFieldLog'
    AuditTrailDetailList:
      description: Workflow Attachment
      type: object
      properties:
        WorkflowName:
          type: string
        AuditTrailFieldLogStageList:
          type: array
          items:
            $ref: '#/components/schemas/AuditTrailFieldLogStage'
    AuditTrailFieldLog:
      description: Workflow Attachment
      type: object
      properties:
        Name:
          description: Name of the field
          type: string
        Value:
          description: Value of the field
          type: string
        Type:
          description: Type of the field
          type: string
        Label:
          description: Label of the field
          type: string