Certifyos V2/facility Credentialing Workflows API

The v2/facility-credentialing-workflows API from Certifyos — 3 operation(s) for v2/facility-credentialing-workflows.

Business capability
Medical Staff & Credentialing Management BC-2890

Operations 3

PUT /v2/facility-credentialing-workflows/{id}/steps/move-to-cancel Cancel Facility Credentialing Workflow #
PUT /v2/facility-credentialing-workflows/{id}/steps/move-to-cred-approved Approve Facility Credentialing Workflow #
PUT /v2/facility-credentialing-workflows/{id}/steps/move-to-cred-denied Deny Facility Credentialing Workflow #

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/certifyos-v2-facility-credentialing-workflows-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

certifyos-v2-facility-credentialing-workflows-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: CertifyOS V2/facility Credentialing Workflows API
  description: ''
  contact: {}
servers:
- url: https://ng-api-production.certifyos.com
  description: Production
- url: https://ng-api-stg.certifyos.com/
  description: Staging (Test Data)
tags:
- name: v2/facility-credentialing-workflows
paths:
  /v2/facility-credentialing-workflows/{id}/steps/move-to-cancel:
    put:
      operationId: FacilityCredentialingWorkflowsV2Controller_moveToCancel
      summary: Cancel Facility Credentialing Workflow
      description: Move a facility credentialing workflow to cancel status.
      parameters:
      - name: organization-id
        in: header
        schema:
          type: string
      - name: id
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MoveToCancelV2Dto'
      responses:
        '204':
          description: Updated.
        '400':
          description: Bad request.
        '401':
          description: Unauthorized if authorization token is not provided or invalid.
        '403':
          description: Forbidden if user access is not right.
        '404':
          description: Resource not found.
      tags:
      - v2/facility-credentialing-workflows
      security:
      - BearerAuth: []
  /v2/facility-credentialing-workflows/{id}/steps/move-to-cred-approved:
    put:
      operationId: FacilityCredentialingWorkflowsV2Controller_moveToCredApproved
      summary: Approve Facility Credentialing Workflow
      description: Move a facility credentialing workflow to approved status.
      parameters:
      - name: organization-id
        in: header
        schema:
          type: string
      - name: id
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SetCredStatusChangeMetaDataDtoV2'
      responses:
        '204':
          description: Updated.
        '400':
          description: Bad request.
        '401':
          description: Unauthorized if authorization token is not provided or invalid.
        '403':
          description: Forbidden if user access is not right.
        '404':
          description: Resource not found.
      tags:
      - v2/facility-credentialing-workflows
      security:
      - BearerAuth: []
  /v2/facility-credentialing-workflows/{id}/steps/move-to-cred-denied:
    put:
      operationId: FacilityCredentialingWorkflowsV2Controller_moveToCredDenied
      summary: Deny Facility Credentialing Workflow
      description: Move a facility credentialing workflow to denied status.
      parameters:
      - name: organization-id
        in: header
        schema:
          type: string
      - name: id
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SetCredStatusChangeMetaDataDtoV2'
      responses:
        '204':
          description: Updated.
        '400':
          description: Bad request.
        '401':
          description: Unauthorized if authorization token is not provided or invalid.
        '403':
          description: Forbidden if user access is not right.
        '404':
          description: Resource not found.
      tags:
      - v2/facility-credentialing-workflows
      security:
      - BearerAuth: []
components:
  schemas:
    SetCredStatusChangeMetaDataDtoV2:
      type: object
      properties:
        credStatusDate:
          format: date-time
          type: string
          description: Timestamp at which credentialing was approved/denied.
        medicalDirectorId:
          type: string
          description: ID of the medical director authorized to communicate the approval as assigned by Certify.
    MoveToCancelV2Dto:
      type: object
      properties:
        reason:
          type: string
          description: Reason for moving the workflow to cancel
      required:
      - reason
  securitySchemes:
    BearerAuth:
      scheme: bearer
      bearerFormat: JWT
      type: http