MedAdvisor Communication API

The Communication API from MedAdvisor — 6 operation(s) for communication.

Operations 6

GET /api/v1/comunication/GetPatientGroups Get patient groups #
GET /api/v1/comunication/GetAllPatientGroupMembers Get all patient group members #
POST /api/v1/comunication/AddPatientGroup Add patient group #
POST /api/v1/comunication/EditPatientGroup Edit patient group #
POST /api/v1/comunication/UpdatePatientGroupMembers Update patient group members #
DELETE /api/v1/comunication/DeletePatientGroup/{id} Delete patient group #

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/medadvisor-communication-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

medadvisor-communication-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v1
  title: Pharmacy Unified API v1.0 Communication API
servers:
- url: https://pharmacy-unified.api.medadvisor.com.au
tags:
- name: Communication
paths:
  /api/v1/comunication/GetPatientGroups:
    get:
      tags:
      - Communication
      summary: Get patient groups
      operationId: Communication_GetPatientGroups
      parameters:
      - name: groupType
        in: query
        description: ''
        required: true
        schema:
          type: integer
          format: int32
          enum:
          - 0
          - 1
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
            text/json:
              schema:
                type: object
            application/xml:
              schema:
                type: object
            text/xml:
              schema:
                type: object
      security:
      - Bearer: []
  /api/v1/comunication/GetAllPatientGroupMembers:
    get:
      tags:
      - Communication
      summary: Get all patient group members
      operationId: Communication_GetAllPatientGroupMembers
      parameters:
      - name: groupId
        in: query
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
            text/json:
              schema:
                type: object
            application/xml:
              schema:
                type: object
            text/xml:
              schema:
                type: object
      security:
      - Bearer: []
  /api/v1/comunication/AddPatientGroup:
    post:
      tags:
      - Communication
      summary: Add patient group
      operationId: Communication_AddPatientGroup
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
            text/json:
              schema:
                type: object
            application/xml:
              schema:
                type: object
            text/xml:
              schema:
                type: object
      security:
      - Bearer: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientGroupRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientGroupRequest'
          application/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientGroupRequest'
          text/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientGroupRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientGroupRequest'
        required: true
  /api/v1/comunication/EditPatientGroup:
    post:
      tags:
      - Communication
      summary: Edit patient group
      operationId: Communication_EditPatientGroup
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
            text/json:
              schema:
                type: object
            application/xml:
              schema:
                type: object
            text/xml:
              schema:
                type: object
      security:
      - Bearer: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientGroupRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientGroupRequest'
          application/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientGroupRequest'
          text/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientGroupRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientGroupRequest'
        required: true
  /api/v1/comunication/UpdatePatientGroupMembers:
    post:
      tags:
      - Communication
      summary: Update patient group members
      operationId: Communication_UpdatePatientGroupMembers
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
            text/json:
              schema:
                type: object
            application/xml:
              schema:
                type: object
            text/xml:
              schema:
                type: object
      security:
      - Bearer: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientGroupMemberRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientGroupMemberRequest'
          application/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientGroupMemberRequest'
          text/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientGroupMemberRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientGroupMemberRequest'
        required: true
  /api/v1/comunication/DeletePatientGroup/{id}:
    delete:
      tags:
      - Communication
      summary: Delete patient group
      operationId: Communication_DeletePatientGroup
      parameters:
      - name: id
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
            text/json:
              schema:
                type: object
            application/xml:
              schema:
                type: object
            text/xml:
              schema:
                type: object
      security:
      - Bearer: []
components:
  schemas:
    MedAdvisor.Framework.Interface.PatientGroupRequest:
      type: object
      properties:
        groupId:
          format: int32
          type: integer
        name:
          type: string
        patientGroupType:
          format: int32
          enum:
          - 0
          - 1
          type: integer
    MedAdvisor.Framework.Interface.PatientGroupMemberRequest:
      type: object
      properties:
        groupId:
          format: int32
          type: integer
        addUsers:
          type: array
          items:
            format: int32
            type: integer
        removeUsers:
          type: array
          items:
            format: int32
            type: integer
  securitySchemes:
    Bearer:
      type: apiKey
      description: 'JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"'
      name: Authorization
      in: header