MedAdvisor Communication API
The Communication API from MedAdvisor — 6 operation(s) for communication.
The Communication API from MedAdvisor — 6 operation(s) for communication.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/medadvisor-communication-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 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