Optum Get Doc Counts API

The GetDocCounts API from Optum — 1 operation(s) for getdoccounts.

Operations 1

GET /getDocCounts/{contextID}

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/optum-getdoccounts-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

optum-getdoccounts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: File and Document Tracking API v1 Get Doc Counts API
  description: The File and Document Tracking API, a healthcare API for customers using Communication and Payment Services solutions from Optus, provides payers with real-time processing status at the file and document levels.
  version: 1.0.0
servers:
- url: https://sandbox-apigw.optum.com/api/ptapi/v1
tags:
- name: GetDocCounts
paths:
  /getDocCounts/{contextID}:
    get:
      tags:
      - GetDocCounts
      parameters:
      - name: contextID
        in: path
        required: true
        schema:
          type: string
      - name: fileName
        in: query
        schema:
          type: string
      - name: claimNumber
        in: query
        schema:
          type: string
      - name: importStartDate
        in: query
        description: MM/DD/YYYY
        schema:
          type: string
      - name: importEndDate
        in: query
        description: MM/DD/YYYY
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/documentCountRespObj'
components:
  schemas:
    documentCountObj:
      type: object
      properties:
        fileName:
          type: string
          example: 123402820210316OR.TXT
        errorCount:
          type: integer
          example: 1
        heldCount:
          type: integer
          example: 0
        confirmedCount:
          type: integer
          example: 1
        InProductionCount:
          type: integer
          example: 3
        completedCount:
          type: integer
          example: 4
        webCount:
          type: integer
          example: 1
        importCount:
          type: integer
          example: 1
        importDate:
          type: string
          example: 02/15/2022 06:41:38 am
        enotesCount:
          type: integer
          example: 1
        clientKey:
          type: string
          example: '1234028'
    documentCountRespObj:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/documentCountObj'
        rowCount:
          type: integer
          example: 1
x-readme:
  explorer-enabled: true
  proxy-enabled: true
  samples-enabled: true