WorkSpan Status API

The Status API from WorkSpan — 1 operation(s) for status.

Operations 1

GET /status/{integration_id} Get Status of execution of integration using integration id #

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/workspan-status-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

workspan-status-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Authentication Actions Status API
  description: 'Implementation of [OAuth 2.0](https://tools.ietf.org/html/rfc6749  "Docs") with Client Credentials Grant type

    '
  version: '1.0'
servers:
- url: https://api-sandbox.workspan.com/oauth
security:
- {}
- apiKeyHeader: []
- apiKeyQuery: []
tags:
- name: Status
paths:
  /status/{integration_id}:
    get:
      operationId: status
      summary: Get Status of execution of integration using integration id
      description: Check the execution status of your integration.
      parameters:
      - name: integration_id
        in: path
        required: true
        schema:
          type: string
        description: Integration ID that is configured in WorkSpan App
      - name: execution_id
        in: path
        required: true
        schema:
          type: string
        description: Execution ID of an integration execution which is returned from bulk API
      - name: include_errors
        in: query
        required: false
        schema:
          type: boolean
          default: 'false'
        description: Include errors in the response if there are any errors
      - name: max_errors
        in: query
        required: false
        schema:
          type: number
          default: '10'
        description: Maximum number of errors to return back in the response
      responses:
        '200':
          description: Execution is retrieved successfully
          content:
            application/json:
              examples:
                default:
                  value: "{\n  \"integration_id\": \"WS-Integration_agpzfndzLW\",\n  \"execution_id\": \"a64690c2450\",\n  \"status\": \"completed\",\n  \"input_count\": 200,\n  \"error_count\": 3,\n  \"success_count\": 197,\n  \"skip_count\": 0,\n  \"started_at\": \"2020-05-07T14:06:57.572Z\",\n  \"completed_at\": \"2020-05-07T14:07:10.572Z\",\n  \"include_errors\": true,\n  \"errors\": [\n    {\n      \"id\": \"aw00079\",\n      \"message\": \"invalid value in field 'close_date'\",\n      \"data_row\": {\n        \"opportunity_id\": \"aw00079\",\n        \"close_date\": \"20-jan-2020\",\n        \"amount\": 250000\n      }\n    },\n    {\n      \"id\": \"aw00082\",\n      \"message\": \"invalid value in field 'amount'\",\n      \"data_row\": {\n        \"opportunity_id\": \"aw00082\",\n        \"close_date\": \"2021-01-20\",\n        \"amount\": \"-\"\n      }\n    },\n    {\n      \"id\": \"\",\n      \"message\": \"Missing value of key field\",\n      \"data_row\": {\n        \"opportunity_id\": \"\",\n        \"close_date\": \"2020-10-20\",\n        \"amount\": 75000\n      }\n    }\n  ]\n}"
        '400':
          description: invalid execution_id
        '401':
          description: Authorization Error
        '404':
          description: integration_id or execution_id not found
      tags:
      - Status
components:
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      name: Ocp-Apim-Subscription-Key
      in: header
    apiKeyQuery:
      type: apiKey
      name: subscription-key
      in: query
x-harvest:
  source: https://developer.workspan.com/developer/apis/authentication-api?export=true&format=openapi+json&api-version=2022-04-01-preview
  operations_source: https://developer.workspan.com/developer/apis/authentication-api/operations?api-version=2022-04-01-preview
  harvested: '2026-07-21'
  note: Assembled from WorkSpan's Azure APIM developer portal data API (export skeleton + published operations/schemas).