AdvancedMD Obtain Access Token API

The Obtain Access Token API from AdvancedMD — 1 operation(s) for obtain access token.

Operations 1

POST /v1/oauth2/token Request Backend Services Access Token

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/advancedmd-obtain-access-token-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

advancedmd-obtain-access-token-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: FHIR Bulk Obtain Access Token API
  description: HealthAPIx OAuth v2.0 API Specs for Backend Services Token Generation and Bulk Data Export Procedure
  version: '1.1'
servers:
- url: https://providerapi.advancedmd.com
tags:
- name: Obtain Access Token
paths:
  /v1/oauth2/token:
    post:
      tags:
      - Obtain Access Token
      summary: Request Backend Services Access Token
      description: Trusted B2B Partner makes a request to the token endpoint by adding the following parameters describerd below
      security: []
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                client_assertion:
                  type: string
                  example: jwt_token
                client_assertion_type:
                  type: string
                  example: urn:ietf:params:oauth:client-assertion-type:jwt-bearer
                scope:
                  type: string
                  example: system/*.read
                grant_type:
                  type: string
                  example: client_credentials
                username:
                  type: string
                  example: your_username
                password:
                  type: string
                  example: your_password
                officekey:
                  type: integer
                  example: your_officekey
        required: true
      responses:
        '200':
          description: Authorisation token (Bearer)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
        '400':
          description: Error. Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error400oAuth2'
components:
  schemas:
    Error400oAuth2:
      type: object
      properties:
        error:
          type: string
        error_description:
          type: string
    Token:
      type: object
      properties:
        access_token:
          type: string
          description: The access token value
        token_type:
          type: string
          description: Type of the token is set to "Bearer"
          enum:
          - Bearer
        expires_in:
          type: integer
          description: The lifetime in seconds of the access token
        scope:
          type: string
          description: authorized scopes based on apps registered scopes
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT