MedAdvisor Pharmacy API

The Pharmacy API from MedAdvisor — 31 operation(s) for pharmacy.

Operations 33

GET /api/v1/pharmacy #
GET /api/v1/pharmacy/settings Retrieve Pharmacy Details #
PUT /api/v1/pharmacy/settings Update Pharmacy Details #
GET /api/v1/pharmacy/GetAuthInfo #
GET /api/v1/pharmacy/ho-pending-activations Pending HO-pushed services for this pharmacy — pushed, not yet live, with an auto-activation countdown (RAP-38 Story 3a.5). Empty list when nothing is pending. #
GET /api/v1/pharmacy/PharmacyHasPendingHshSms Get all pharmacy which has Pending SMS Broadcast messages #
GET /api/v1/pharmacy/GetPharmacyModuleSettings Get pharmacy module settings #
GET /api/v1/pharmacy/GetPharmacyActivatingBanner Get pharmacy activating banner #
GET /api/v1/pharmacy/ElectronicPrescribingSettings Retrieve Pharmacy Electronic Prescribing Settings #
GET /api/v1/pharmacy/RetrievePharmaciesWithPendingSMSReminders Retrieves pharmacies with pending SMS Reminders. #
GET /api/v1/pharmacy/PendingHshSmsMessage Get all pharmacy which has Pending SMS Broadcast messages #
GET /api/v1/pharmacy/RetrieveSMSReminderPending Retrieves SMS Reminder Pending patients. #
GET /api/v1/pharmacy/RetrievePlusOneQueuedActions Retrieves actions to be carried out by the PlusOne client. #
GET /api/v1/pharmacy/GetPharmacyReleaseNotes Get pharmacy release notes #
GET /api/v1/pharmacy/GetPharmacyReleaseNotesByType Get pharmacy release notes by types #
GET /api/v1/pharmacy/logo Get Photo PreSigned Url #
GET /api/v1/pharmacy/GetModuleSettingsByIdentifier #
GET /api/v1/pharmacy/GetPharmacySettingByIdentifier Get pharmacy setting by identifier #
POST /api/v1/pharmacy/features Retrieve Pharmacy features #
POST /api/v1/pharmacy/SearchPatients Search patient free text #
POST /api/v1/pharmacy/getpharmacyinfos #
POST /api/v1/pharmacy/RegisterAccountV4 Registers account (instant activate). #
POST /api/v1/pharmacy/UpdateActionStatus Update Action Status #
POST /api/v1/pharmacy/UpdateCachePatient #
POST /api/v1/pharmacy/VerifyPharmacyInfo #
POST /api/v1/pharmacy/SearchPatientAdvance Search patient advance #
POST /api/v1/pharmacy/SendBroadcastMessage Requests that a message be broadcasted to a set of recipients by App Message, SMS, etc. #
POST /api/v1/pharmacy/AcceptTermsConditions Accept terms conditions #
POST /api/v1/pharmacy/GenerateActivationCodeV3 Generate Activation Code V3. #
POST /api/v1/pharmacy/UpdateSMSReminderComplete Updates SMS Reminder Completed patients. #
POST /api/v1/pharmacy/GeneratePharmacyChangeRequest #
POST /api/v1/pharmacy/SendEScriptTokenToMedViewFlow Send EScript Token To MedView Flow #

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-pharmacy-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-pharmacy-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v1
  title: Unified API v1.0 Pharmacy API
servers:
- url: https://pharmacy-unified.api.medadvisor.com.au
tags:
- name: Pharmacy
paths:
  /api/v1/pharmacy:
    get:
      tags:
      - Pharmacy
      operationId: Pharmacy_GetPharmacyDetail
      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/pharmacy/settings:
    get:
      tags:
      - Pharmacy
      summary: Retrieve Pharmacy Details
      operationId: Pharmacy_RetrievePharmacySettings
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PharmacySettingsResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PharmacySettingsResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PharmacySettingsResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PharmacySettingsResult'
      security:
      - Bearer: []
    put:
      tags:
      - Pharmacy
      summary: Update Pharmacy Details
      operationId: Pharmacy_UpdatePharmacySettings
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PharmacySettingsResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PharmacySettingsResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PharmacySettingsResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PharmacySettingsResult'
      security:
      - Bearer: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.PharmacySettingsModel'
          text/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.PharmacySettingsModel'
          application/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.PharmacySettingsModel'
          text/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.PharmacySettingsModel'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.PharmacySettingsModel'
        description: PharmacySettingsModel
        required: true
  /api/v1/pharmacy/GetAuthInfo:
    get:
      tags:
      - Pharmacy
      operationId: Pharmacy_GetAuthInfo
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: string
            text/json:
              schema:
                type: string
            application/xml:
              schema:
                type: string
            text/xml:
              schema:
                type: string
      security:
      - Bearer: []
  /api/v1/pharmacy/ho-pending-activations:
    get:
      tags:
      - Pharmacy
      summary: 'Pending HO-pushed services for this pharmacy — pushed, not yet live, with an auto-activation

        countdown (RAP-38 Story 3a.5). Empty list when nothing is pending.'
      operationId: Pharmacy_GetHoPendingActivations
      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/pharmacy/PharmacyHasPendingHshSms:
    get:
      tags:
      - Pharmacy
      summary: Get all pharmacy which has Pending SMS Broadcast messages
      operationId: Pharmacy_PharmacyHasPendingHshSms
      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/pharmacy/GetPharmacyModuleSettings:
    get:
      tags:
      - Pharmacy
      summary: Get pharmacy module settings
      operationId: Pharmacy_GetPharmacyModuleSettings
      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/pharmacy/GetPharmacyActivatingBanner:
    get:
      tags:
      - Pharmacy
      summary: Get pharmacy activating banner
      operationId: Pharmacy_GetPharmacyActivatingBanner
      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/pharmacy/ElectronicPrescribingSettings:
    get:
      tags:
      - Pharmacy
      summary: Retrieve Pharmacy Electronic Prescribing Settings
      operationId: Pharmacy_GetPharmacyElectronicPrescribingSettings
      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/pharmacy/RetrievePharmaciesWithPendingSMSReminders:
    get:
      tags:
      - Pharmacy
      summary: Retrieves pharmacies with pending SMS Reminders.
      operationId: Pharmacy_RetrievePharmaciesWithPendingSMSReminders
      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/pharmacy/PendingHshSmsMessage:
    get:
      tags:
      - Pharmacy
      summary: Get all pharmacy which has Pending SMS Broadcast messages
      operationId: Pharmacy_GetPendingHshSmsMessage
      parameters:
      - name: pharmacyUUid
        in: query
        required: true
        schema:
          type: string
          format: uuid
      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/pharmacy/RetrieveSMSReminderPending:
    get:
      tags:
      - Pharmacy
      summary: Retrieves SMS Reminder Pending patients.
      operationId: Pharmacy_RetrieveSMSReminderPending
      parameters:
      - name: pharmacyId
        in: query
        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/pharmacy/RetrievePlusOneQueuedActions:
    get:
      tags:
      - Pharmacy
      summary: Retrieves actions to be carried out by the PlusOne client.
      operationId: Pharmacy_RetrievePlusOneQueuedActions
      parameters:
      - name: pharmacyId
        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/pharmacy/GetPharmacyReleaseNotes:
    get:
      tags:
      - Pharmacy
      summary: Get pharmacy release notes
      operationId: Pharmacy_GetPharmacyReleaseNotes
      parameters:
      - name: releaseNoteId
        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/pharmacy/GetPharmacyReleaseNotesByType:
    get:
      tags:
      - Pharmacy
      summary: Get pharmacy release notes by types
      operationId: Pharmacy_GetPharmacyReleaseNotesByType
      parameters:
      - name: releaseNoteType
        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/pharmacy/logo:
    get:
      tags:
      - Pharmacy
      summary: Get Photo PreSigned Url
      operationId: Pharmacy_GetPhoto
      parameters:
      - name: id
        in: query
        description: File Id
        required: true
        schema:
          type: string
      - name: extension
        in: query
        description: File extension
        required: true
        schema:
          type: string
      - name: isDefaultLogo
        in: query
        description: ''
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.OperationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.OperationResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.OperationResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.OperationResult'
      security:
      - Bearer: []
    post:
      tags:
      - Pharmacy
      summary: Upload Pharmacy Logo
      operationId: Pharmacy_UploadLogo
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PharmacySettingsResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PharmacySettingsResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PharmacySettingsResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PharmacySettingsResult'
      security:
      - Bearer: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.FileUploadModel'
          text/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.FileUploadModel'
          application/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.FileUploadModel'
          text/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.FileUploadModel'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.FileUploadModel'
        description: File content
        required: true
  /api/v1/pharmacy/GetModuleSettingsByIdentifier:
    get:
      tags:
      - Pharmacy
      operationId: Pharmacy_GetModuleSettingsByIdentifier
      parameters:
      - name: pharmacyIdentifier
        in: query
        required: true
        schema:
          type: string
      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/pharmacy/GetPharmacySettingByIdentifier:
    get:
      tags:
      - Pharmacy
      summary: Get pharmacy setting by identifier
      operationId: Pharmacy_GetPharmacySettingByIdentifier
      parameters:
      - name: pharmacyIdentifier
        in: query
        description: ''
        required: true
        schema:
          type: string
          format: uuid
      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/pharmacy/features:
    post:
      tags:
      - Pharmacy
      summary: Retrieve Pharmacy features
      operationId: Pharmacy_SearchPharmacyFeatures
      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:
              type: array
              items:
                $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.PharmacyGuidModel'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.PharmacyGuidModel'
          application/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.PharmacyGuidModel'
          text/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.PharmacyGuidModel'
          application/x-www-form-urlencoded:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.PharmacyGuidModel'
        description: Pharmacy GUIDs
        required: true
  /api/v1/pharmacy/SearchPatients:
    post:
      tags:
      - Pharmacy
      summary: Search patient free text
      operationId: Pharmacy_SearchPatients
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientSearchResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientSearchResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientSearchResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientSearchResult'
      security:
      - Bearer: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientSearchFreeTextRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientSearchFreeTextRequest'
          application/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientSearchFreeTextRequest'
          text/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientSearchFreeTextRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientSearchFreeTextRequest'
        required: true
  /api/v1/pharmacy/getpharmacyinfos:
    post:
      tags:
      - Pharmacy
      operationId: Pharmacy_GetPharmacyInfos
      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:
              type: array
              items:
                format: uuid
                type: string
                example: 00000000-0000-0000-0000-000000000000
          text/json:
            schema:
              type: array
              items:
                format: uuid
                type: string
                example: 00000000-0000-0000-0000-000000000000
          application/xml:
            schema:
              type: array
              items:
                format: uuid
                type: string
                example: 00000000-0000-0000-0000-000000000000
          text/xml:
            schema:
              type: array
              items:
                format: uuid
                type: string
                example: 00000000-0000-0000-0000-000000000000
          application/x-www-form-urlencoded:
            schema:
              type: array
              items:
                format: uuid
                type: string
                example: 00000000-0000-0000-0000-000000000000
        required: true
  /api/v1/pharmacy/RegisterAccountV4:
    post:
      tags:
      - Pharmacy
      summary: Registers account (instant activate).
      operationId: Pharmacy_RegisterAccountV4
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.InstantActivateResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.InstantActivateResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.InstantActivateResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.InstantActivateResult'
      security:
      - Bearer: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.InstantActivateRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.InstantActivateRequest'
          application/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.InstantActivateRequest'
          text/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.InstantActivateRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.InstantActivateRequest'
        required: true
  /api/v1/pharmacy/UpdateActionStatus:
    post:
      tags:
      - Pharmacy
      summary: Update Action Status
      operationId: Pharmacy_UpdateActionStatus
      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.PharmacyUnifiedAPI.v1.Models.ActionUpdateModel'
          text/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.ActionUpdateModel'
          application/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.ActionUpdateModel'
          text/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.ActionUpdateModel'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.ActionUpdateModel'
        required: true
  /api/v1/pharmacy/UpdateCachePatient:
    post:
      tags:
      - Pharmacy
      operationId: Pharmacy_UpdateCachePatient
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.OperationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.OperationResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.OperationResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.OperationResult'
      security:
      - Bearer: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.UpdateCachePatientRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.UpdateCachePatientRequest'
          application/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.UpdateCachePatientRequest'
          text/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.UpdateCachePatientRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.UpdateCachePatientRequest'
        required: true
  /api/v1/pharmacy/VerifyPharmacyInfo:
    post:
      tags:
      - Pharmacy
      operationId: Pharmacy_VerifyPharmacyInfo
      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.PharmacyUnifiedAPI.v1.Models.PharmacyIdentifierModel'
          text/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.PharmacyIdentifierModel'
          application/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.PharmacyIdentifierModel'
          text/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.PharmacyIdentifierModel'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.PharmacyIdentifierModel'
        required: true
  /api/v1/pharmacy/SearchPatientAdvance:
    post:
      tags:
      - Pharmacy
      summary: Search patient advance
      operationId: Pharmacy_SearchPatientAdvance
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientSearchResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientSearchResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientSearchResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientSearchResult'
      security:
      - Bearer: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientSearchAdvanceRequestDto'
          text/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientSearchAdvanceRequestDto'
          application/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientSearchAdvanceRequestDto'
          text/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientSearchAdvanceRequestDto'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.PatientSearchAdvanceRequestDto'
        required: true
  /api/v1/pharmacy/SendBroadcastMessage:
    post:
      tags:
      - Pharmacy
      summary: Requests that a message be broadcasted to a set of recipients by App Message, SMS, etc.
      operationId: Pharmacy_SendBroadcastMessage
      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.PharmacyUnifiedAPI.v1.Models.SendBroadcastMessageRequestModel'
          text/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.SendBroadcastMessageRequestModel'
          application/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.SendBroadcastMessageRequestModel'
          text/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.SendBroadcastMessageRequestModel'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/MedAdvisor.PharmacyUnifiedAPI.v1.Models.SendBroadcastMessageRequestModel'
        required: true
  /api/v1/pharmacy/AcceptTermsConditions:
    post:
      tags:
      - Pharmacy
      summary: Accept terms conditions
      operationId: Pharmacy_AcceptTermsConditions
      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.AcceptTermsConditionsRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.AcceptTermsConditionsRequest'
          application/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.AcceptTermsConditionsRequest'
          text/xml:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.AcceptTermsConditionsRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.AcceptTermsConditionsRequest'
        required: true
  /api/v1/pharmacy/GenerateActivationCodeV3:
    post:
      tags:
      - Pharmacy
      summary: Generate Activation Code V3.
      operationId: Pharmacy_GenerateActivationCodeV3
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.ActivationKeyResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.ActivationKeyResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.ActivationKeyResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MedAdvisor.Framework.Interface.ActivationKeyResult'
      security:
      - Bearer: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.AccountActivationRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/MedAdvisor.Framework.Interface.AccountActivationRequest'
      

# --- truncated at 32 KB (68 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/medadvisor/refs/heads/main/openapi/medadvisor-pharmacy-api-openapi.yml