Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

GET /users/:id/emr

Parameters

Parameter

Type

Description

id

String

User’s or "-" (dash) for current user

...

Code Block
curl -k -X GET -H "X-ApiToken: 5a2eb231d652b49f4d7fc0fbb78328fb" -H "X-AccountCode: vclinic" "https://api.vsee.me/api_v3/users/575/emr"

{
  "data": {
    "allergies": {
      "data": [
        {
          "substance": "A+D"
        }
      ],
      "modified": 1467667527,
      "modified_by": {
        "id": "575",
        "type": "200",
        "subtype": "",
        "first_name": "Keven2",
        "last_name": "Teodoro2",
        "title": "Dr.",
        "Suffix": "MD"
      }
    },
    "conditions": {
      "data": [
        {
          "condition": "Bleeding problem"
        }
      ],
      "modified": 1465941203,
      "modified_by": {
        
      },
      ...
    }
  }
}

POST /users/:id/emr/:name

Input fields should follow schema from GET /emr/schema for corresponding :name schema.

...