Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
maxLevel7
minLevel1

GET /users/:id/erx/prescriptions

...

Parameter

Type

Description

address

String

1010 UNIVERSITY AVENUE, SAN DIEGO, CA, 92103

address_more

String

code

String

5555008

name

Date

02855

city

String

Los Angeles

country

String

state

String

CA

zip

String

90027

phone

String

4017707046

fax

String

8663528725

lat

Double

36.800488

long

Double

-116.718750

distance

Double

0.95993211712521

type

String

mdtoolbox

extra

Object

Unmodified data returned by pharmacy search API

ResponseSample Request

Code Block
    curl -k -X POST -H "X-ApiToken: c1dfcb553b2395a902722387222310a4" -H "X-AccountCode: vclinic" -H "Content-Type: application/json" -d '   {
      "name": "A247PC00-Anesthesia 24/7, PC",
      "address": "Freas Avenue, 1200",
      "address_more": "",
      "code": "1001103",
      "city": "Berwick",
      "country": "",
      "state": "PA",
      "zip": "18063",
      "phone": "5707525572",
      "fax": "6153972423",
      "type": "mdtoolbox",
      "extra": {
        "NCPDPID": "1001103",
        "StoreName": "A247PC00-Anesthesia 24/7, PC",
        "Addr1": "1200 Freas Avenue",
        "Addr2": "",
        "City": "Berwick",
        "State": "PA",
        "Zip": "18063",
        "Phone": "5707525572",
        "Fax": "6153972423",
        "Email": "",
        "ServiceLevel": 1
      }
    }
    "https://api.vsee.me/api_v3/users/575/erx/pharmacies"

{
    "data": true
}

Sample Minimal Request

Code Block
curl --location --request POST 'https://api.vsee.me/api_v3/users/575/erx/pharmacies' \
--header 'X-ApiToken: c1dfcb553b2395a902722387222310a4' \
--header 'X-AccountCode: vclinic' \
--header 'Content-Type: application/json' \
--data-raw '    {
      "name": "MY PHARMACY",
      "extra": {
        "NCPDPID": "4229919"
      }
    }'

DELETE /users/:id/erx/pharmacies/:code

...