Optum Decision Support Record Service API

The DecisionSupportRecordService API from Optum — 2 operation(s) for decisionsupportrecordservice.

Operations 3

POST /abm/dsrservice/v1 Create a new Decision Support Record (POST /abm/dsrservice/v1)
GET /abm/dsrservicesearch/v1/{decisionSupportNumber} Retrieve a Decision Support Record by decisionSupportNumber (GET /abm/dsrservicesearch/v1/{decisionSupportNumber})
DELETE /abm/dsrservicesearch/v1/{decisionSupportNumber} Delete a Decision Support Record by decisionSupportNumber (DELETE /abm/dsrservicesearch/v1/{decisionSupportNumber})

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-decisionsupportrecordservice-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-decisionsupportrecordservice-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ABM Care Decision Support Decision Support Record Service API
  version: 1.7.0
servers:
- url: https://sandbox-apigw.optum.com
  description: ABM Care Decision Support API server
tags:
- name: DecisionSupportRecordService
paths:
  /abm/dsrservice/v1:
    post:
      tags:
      - DecisionSupportRecordService
      summary: Create a new Decision Support Record (POST /abm/dsrservice/v1)
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DecisionSupportRecord'
          text/json:
            schema:
              $ref: '#/components/schemas/DecisionSupportRecord'
          application/*+json:
            schema:
              $ref: '#/components/schemas/DecisionSupportRecord'
      responses:
        '200':
          description: OK
  /abm/dsrservicesearch/v1/{decisionSupportNumber}:
    get:
      tags:
      - DecisionSupportRecordService
      summary: Retrieve a Decision Support Record by decisionSupportNumber (GET /abm/dsrservicesearch/v1/{decisionSupportNumber})
      parameters:
      - name: decisionSupportNumber
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
    delete:
      tags:
      - DecisionSupportRecordService
      summary: Delete a Decision Support Record by decisionSupportNumber (DELETE /abm/dsrservicesearch/v1/{decisionSupportNumber})
      parameters:
      - name: decisionSupportNumber
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
components:
  schemas:
    DecisionSupportRecord:
      required:
      - decisionSupportNumber
      - orderDate
      - organizationId
      - procedureCode
      - procedureDescription
      - score
      type: object
      properties:
        organizationId:
          maximum: 2147483647
          minimum: 1
          type: integer
          format: int32
        decisionSupportNumber:
          minLength: 1
          type: string
        score:
          type: integer
          format: int32
        procedureCode:
          minLength: 1
          type: string
        procedureDescription:
          minLength: 1
          type: string
        orderDate:
          type: string
          format: date-time
        indicationId:
          type:
          - integer
          - 'null'
          format: int32
        indicationDescription:
          type:
          - string
          - 'null'
      additionalProperties: false
x-readme:
  explorer-enabled: true
  proxy-enabled: true