Alleva Intake API

The Intake API from Alleva — 8 operation(s) for intake.

Business capability
Patient Registration Management BC-2800.20

Operations 10

GET /intakes/types Get intakes types #
GET /v{version}/intakes/types Get v{version} intakes types #
GET /intakes/{intakeType} Get intakes by intake type #
GET /v{version}/intakes/{intakeType} Get v{version} intakes by intake type #
GET /intakes/{intakeType}/sections/{sectionType}/{intakeId} Get intakes by intake type sections by section type by intake id #
PUT /intakes/{intakeType}/sections/{sectionType}/{intakeId} Replace intakes by intake type sections by section type by intake id #
GET /v{version}/intakes/{intakeType}/sections/{sectionType}/{intakeId} Get v{version} intakes by intake type sections by section type by intake id #
PUT /v{version}/intakes/{intakeType}/sections/{sectionType}/{intakeId} Replace v{version} intakes by intake type sections by section type by intake id #
POST /intakes/{intakeType}/sections/{sectionType} Create intakes by intake type sections by section type #
POST /v{version}/intakes/{intakeType}/sections/{sectionType} Create v{version} intakes by intake type sections by section type #

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/alleva-intake-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

alleva-intake-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Alleva Rest Intake API
  version: '1.0'
security:
- Bearer: []
tags:
- name: Intake
paths:
  /intakes/types:
    get:
      tags:
      - Intake
      parameters:
      - name: api-version
        in: query
        schema:
          type: string
      - name: X-Version
        in: header
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            text/plain; ver=1.0:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IntakeTypes'
            application/json; ver=1.0:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IntakeTypes'
            text/json; ver=1.0:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IntakeTypes'
      summary: Get intakes types
      x-summary-source: derived
      operationId: getIntakesTypes
      x-operation-id-source: derived
  /v{version}/intakes/types:
    get:
      tags:
      - Intake
      parameters:
      - name: version
        in: path
        required: true
        schema:
          type: string
      - name: api-version
        in: query
        schema:
          type: string
      - name: X-Version
        in: header
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            text/plain; ver=1.0:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IntakeTypes'
            application/json; ver=1.0:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IntakeTypes'
            text/json; ver=1.0:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IntakeTypes'
      summary: Get v{version} intakes types
      x-summary-source: derived
      operationId: getV{version}IntakesTypes
      x-operation-id-source: derived
  /intakes/{intakeType}:
    get:
      tags:
      - Intake
      parameters:
      - name: intakeType
        in: path
        required: true
        schema:
          type: string
      - name: leadId
        in: query
        schema:
          type: integer
          format: int32
      - name: api-version
        in: query
        schema:
          type: string
      - name: X-Version
        in: header
        schema:
          type: string
      responses:
        '200':
          description: Success
      summary: Get intakes by intake type
      x-summary-source: derived
      operationId: getIntakesByIntakeType
      x-operation-id-source: derived
  /v{version}/intakes/{intakeType}:
    get:
      tags:
      - Intake
      parameters:
      - name: intakeType
        in: path
        required: true
        schema:
          type: string
      - name: leadId
        in: query
        schema:
          type: integer
          format: int32
      - name: version
        in: path
        required: true
        schema:
          type: string
      - name: api-version
        in: query
        schema:
          type: string
      - name: X-Version
        in: header
        schema:
          type: string
      responses:
        '200':
          description: Success
      summary: Get v{version} intakes by intake type
      x-summary-source: derived
      operationId: getV{version}IntakesByIntakeType
      x-operation-id-source: derived
  /intakes/{intakeType}/sections/{sectionType}/{intakeId}:
    get:
      tags:
      - Intake
      parameters:
      - name: intakeType
        in: path
        required: true
        schema:
          type: string
      - name: sectionType
        in: path
        required: true
        schema:
          type: string
      - name: intakeId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      - name: api-version
        in: query
        schema:
          type: string
      - name: X-Version
        in: header
        schema:
          type: string
      responses:
        '200':
          description: Success
      summary: Get intakes by intake type sections by section type by intake id
      x-summary-source: derived
      operationId: getIntakesByIntakeTypeSectionsBySectionTypeByIntakeId
      x-operation-id-source: derived
    put:
      tags:
      - Intake
      parameters:
      - name: intakeType
        in: path
        required: true
        schema:
          type: string
      - name: sectionType
        in: path
        required: true
        schema:
          type: string
      - name: intakeId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      - name: api-version
        in: query
        schema:
          type: string
      - name: X-Version
        in: header
        schema:
          type: string
      requestBody:
        content:
          application/json-patch+json; ver=1.0:
            schema:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/JToken'
          application/json; ver=1.0:
            schema:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/JToken'
          text/json; ver=1.0:
            schema:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/JToken'
          application/*+json; ver=1.0:
            schema:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/JToken'
      responses:
        '200':
          description: Success
      summary: Replace intakes by intake type sections by section type by intake id
      x-summary-source: derived
      operationId: putIntakesByIntakeTypeSectionsBySectionTypeByIntakeId
      x-operation-id-source: derived
  /v{version}/intakes/{intakeType}/sections/{sectionType}/{intakeId}:
    get:
      tags:
      - Intake
      parameters:
      - name: intakeType
        in: path
        required: true
        schema:
          type: string
      - name: sectionType
        in: path
        required: true
        schema:
          type: string
      - name: intakeId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      - name: version
        in: path
        required: true
        schema:
          type: string
      - name: api-version
        in: query
        schema:
          type: string
      - name: X-Version
        in: header
        schema:
          type: string
      responses:
        '200':
          description: Success
      summary: Get v{version} intakes by intake type sections by section type by intake id
      x-summary-source: derived
      operationId: getV{version}IntakesByIntakeTypeSectionsBySectionTypeByIntakeId
      x-operation-id-source: derived
    put:
      tags:
      - Intake
      parameters:
      - name: intakeType
        in: path
        required: true
        schema:
          type: string
      - name: sectionType
        in: path
        required: true
        schema:
          type: string
      - name: intakeId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      - name: version
        in: path
        required: true
        schema:
          type: string
      - name: api-version
        in: query
        schema:
          type: string
      - name: X-Version
        in: header
        schema:
          type: string
      requestBody:
        content:
          application/json-patch+json; ver=1.0:
            schema:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/JToken'
          application/json; ver=1.0:
            schema:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/JToken'
          text/json; ver=1.0:
            schema:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/JToken'
          application/*+json; ver=1.0:
            schema:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/JToken'
      responses:
        '200':
          description: Success
      summary: Replace v{version} intakes by intake type sections by section type by intake id
      x-summary-source: derived
      operationId: putV{version}IntakesByIntakeTypeSectionsBySectionTypeByIntakeId
      x-operation-id-source: derived
  /intakes/{intakeType}/sections/{sectionType}:
    post:
      tags:
      - Intake
      parameters:
      - name: intakeType
        in: path
        required: true
        schema:
          type: string
      - name: sectionType
        in: path
        required: true
        schema:
          type: string
      - name: api-version
        in: query
        schema:
          type: string
      - name: X-Version
        in: header
        schema:
          type: string
      requestBody:
        content:
          application/json-patch+json; ver=1.0:
            schema:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/JToken'
          application/json; ver=1.0:
            schema:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/JToken'
          text/json; ver=1.0:
            schema:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/JToken'
          application/*+json; ver=1.0:
            schema:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/JToken'
      responses:
        '200':
          description: Success
      summary: Create intakes by intake type sections by section type
      x-summary-source: derived
      operationId: postIntakesByIntakeTypeSectionsBySectionType
      x-operation-id-source: derived
  /v{version}/intakes/{intakeType}/sections/{sectionType}:
    post:
      tags:
      - Intake
      parameters:
      - name: intakeType
        in: path
        required: true
        schema:
          type: string
      - name: sectionType
        in: path
        required: true
        schema:
          type: string
      - name: version
        in: path
        required: true
        schema:
          type: string
      - name: api-version
        in: query
        schema:
          type: string
      - name: X-Version
        in: header
        schema:
          type: string
      requestBody:
        content:
          application/json-patch+json; ver=1.0:
            schema:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/JToken'
          application/json; ver=1.0:
            schema:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/JToken'
          text/json; ver=1.0:
            schema:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/JToken'
          application/*+json; ver=1.0:
            schema:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/JToken'
      responses:
        '200':
          description: Success
      summary: Create v{version} intakes by intake type sections by section type
      x-summary-source: derived
      operationId: postV{version}IntakesByIntakeTypeSectionsBySectionType
      x-operation-id-source: derived
components:
  schemas:
    JToken:
      type: array
      items:
        $ref: '#/components/schemas/JToken'
    IntakeTypes:
      type: object
      properties:
        globalCodeId:
          type: integer
          format: int32
        codeName:
          type:
          - string
          - 'null'
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: "JWT Authorization header using the Bearer scheme. \n\n Enter Bearer [space] and then your token in the text input below.\n\nExample: Bearer 12345abcdef"
      name: Authorization
      in: header