Forta Health Provider Assignments API

The provider_assignments API from Forta Health — 2 operation(s) for provider_assignments.

Operations 4

POST /api/v1/provider_assignments/ Create Provider Assignment #
GET /api/v1/provider_assignments/ Fetch Provider Assignments #
PATCH /api/v1/provider_assignments/{provider_assignment_id}/ Patch Provider Assignment #
DELETE /api/v1/provider_assignments/{provider_assignment_id}/ Delete Provider Assignment #

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/forta-health-provider-assignments-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

forta-health-provider-assignments-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Forta Health Provider Assignments API
  version: 0.1.0
  description: 'Operations tagged provider_assignments across 2 of this provider''s published API definitions: forta-health-platform-openapi.yml, forta-health-provider-assignments-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.prod.fortahealth.com/api/v1/
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: provider_assignments
paths:
  /api/v1/provider_assignments/:
    post:
      tags:
      - provider_assignments
      summary: Create Provider Assignment
      operationId: create_provider_assignment_api_v1_provider_assignments__post
      security:
      - HTTPBearer: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProviderAssignmentCreate'
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProviderAssignmentResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    get:
      tags:
      - provider_assignments
      summary: Fetch Provider Assignments
      operationId: fetch_provider_assignments_api_v1_provider_assignments__get
      security:
      - HTTPBearer: []
      parameters:
      - name: active_only
        in: query
        required: false
        schema:
          anyOf:
          - type: boolean
          - type: 'null'
          default: true
          title: Active Only
      - name: clinical_relationship
        in: query
        required: false
        schema:
          anyOf:
          - type: array
            items:
              type: string
          - type: 'null'
          title: Clinical Relationship
      - name: client_id
        in: query
        required: false
        schema:
          anyOf:
          - type: array
            items:
              type: integer
          - type: 'null'
          title: Client Id
      - name: provider_id
        in: query
        required: false
        schema:
          anyOf:
          - type: array
            items:
              type: integer
          - type: 'null'
          title: Provider Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProviderAssignmentListResponse'
                title: Response Fetch Provider Assignments Api V1 Provider Assignments  Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/provider_assignments/{provider_assignment_id}/:
    patch:
      tags:
      - provider_assignments
      summary: Patch Provider Assignment
      operationId: patch_provider_assignment_api_v1_provider_assignments__provider_assignment_id___patch
      security:
      - HTTPBearer: []
      parameters:
      - name: provider_assignment_id
        in: path
        required: true
        schema:
          type: integer
          title: Provider Assignment Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProviderAssignmentPatch'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProviderAssignmentResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - provider_assignments
      summary: Delete Provider Assignment
      operationId: delete_provider_assignment_api_v1_provider_assignments__provider_assignment_id___delete
      security:
      - HTTPBearer: []
      parameters:
      - name: provider_assignment_id
        in: path
        required: true
        schema:
          type: integer
          title: Provider Assignment Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ProviderAssignmentResponse:
      properties:
        date_start:
          type: string
          format: date
          title: Date Start
        date_end:
          anyOf:
          - type: string
            format: date
          - type: 'null'
          title: Date End
        id:
          type: integer
          title: Id
        provider:
          $ref: '#/components/schemas/ProviderListResponse'
        clinical_relationship:
          $ref: '#/components/schemas/ProviderAssignmentClinicalRelationshipEnum'
        client:
          $ref: '#/components/schemas/ClientListResponse'
      type: object
      required:
      - date_start
      - id
      - provider
      - clinical_relationship
      - client
      title: ProviderAssignmentResponse
    ProviderAssignmentCreate:
      properties:
        date_start:
          type: string
          format: date
          title: Date Start
        date_end:
          anyOf:
          - type: string
            format: date
          - type: 'null'
          title: Date End
        client_id:
          type: integer
          title: Client Id
        provider_id:
          type: integer
          title: Provider Id
        clinical_relationship:
          $ref: '#/components/schemas/ProviderAssignmentClinicalRelationshipEnum'
      type: object
      required:
      - date_start
      - client_id
      - provider_id
      - clinical_relationship
      title: ProviderAssignmentCreate
    ProviderAssignmentListResponse:
      properties:
        date_start:
          type: string
          format: date
          title: Date Start
        date_end:
          anyOf:
          - type: string
            format: date
          - type: 'null'
          title: Date End
        id:
          type: integer
          title: Id
        provider:
          $ref: '#/components/schemas/ProviderListResponse'
        clinical_relationship:
          $ref: '#/components/schemas/ProviderAssignmentClinicalRelationshipEnum'
        client:
          $ref: '#/components/schemas/ClientWithAddressListResponse'
      type: object
      required:
      - date_start
      - id
      - provider
      - clinical_relationship
      - client
      title: ProviderAssignmentListResponse
    ClientListResponse:
      properties:
        first_name:
          type: string
          title: First Name
        last_name:
          type: string
          title: Last Name
        sex:
          $ref: '#/components/schemas/Sex'
        dob:
          type: string
          format: date
          title: Dob
        clinical_status:
          $ref: '#/components/schemas/ClinicalStatusEnum'
        id:
          type: integer
          title: Id
      type: object
      required:
      - first_name
      - last_name
      - sex
      - dob
      - clinical_status
      - id
      title: ClientListResponse
    ClinicalStatusEnum:
      type: string
      enum:
      - PRE CLINICAL
      - CLINICAL
      - ON HOLD
      - OFFBOARDED
      - LIMITED ACCESS GUARDIAN
      title: ClinicalStatusEnum
    ProviderAssignmentPatch:
      properties:
        date_start:
          type: string
          format: date
          title: Date Start
        date_end:
          anyOf:
          - type: string
            format: date
          - type: 'null'
          title: Date End
      type: object
      required:
      - date_start
      title: ProviderAssignmentPatch
    Sex:
      type: string
      enum:
      - female
      - male
      - other
      - unknown
      title: Sex
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ProviderListResponse:
      properties:
        id:
          type: integer
          title: Id
        first_name:
          type: string
          title: First Name
        last_name:
          type: string
          title: Last Name
        email:
          type: string
          format: email
          title: Email
        status:
          type: string
          title: Status
        clinical_status:
          $ref: '#/components/schemas/ClinicalStatusEnum'
      type: object
      required:
      - id
      - first_name
      - last_name
      - email
      - status
      - clinical_status
      title: ProviderListResponse
    ProviderAssignmentClinicalRelationshipEnum:
      type: string
      enum:
      - home_bcba
      - bobbing_bcba
      - substitute_bcba
      - prbt
      - assistant_assessor
      - vbt
      - practicing_guardian
      - parent
      - caregiver
      - parent_and_caregiver
      - limited_access_guardian
      title: ProviderAssignmentClinicalRelationshipEnum
    ClientWithAddressListResponse:
      properties:
        first_name:
          type: string
          title: First Name
        last_name:
          type: string
          title: Last Name
        sex:
          $ref: '#/components/schemas/Sex'
        dob:
          type: string
          format: date
          title: Dob
        clinical_status:
          $ref: '#/components/schemas/ClinicalStatusEnum'
        id:
          type: integer
          title: Id
        street_address_zip:
          anyOf:
          - type: string
          - type: 'null'
          title: Street Address Zip
        street_address_city:
          anyOf:
          - type: string
          - type: 'null'
          title: Street Address City
        street_address_state:
          anyOf:
          - type: string
          - type: 'null'
          title: Street Address State
      type: object
      required:
      - first_name
      - last_name
      - sex
      - dob
      - clinical_status
      - id
      title: ClientWithAddressListResponse
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer
x-refined-from:
- forta-health-platform-openapi.yml
- forta-health-provider-assignments-api-openapi.yml