Retrieving All Article Notes GET

The Dynamic Health API GET /content/article-notes endpoint returns a list of all article notes for your institution. Before you can execute a article notes call, you must have an 'Authorization' token for the request header.

Basic Search for All Article Notes

To Perform an Article Notes Search (example):

Gather an access token for the request. Please see Using the Client Credentials Grant for further information.

Request

GET https://apis.ebsco.com/medsapi-dynamic-health/v1/content/article-notes

Response

{
  "_metadata": {
    "links": [
      {
        "rel": "self",
        "href": "https://apis.ebsco.com/medsapi-dynamic-health/v1/content/article-notes"
      }
    ],
    "totalItems": 1
  },
  "items": [
    {
      "customer": {
        "id": "your-customer-id"
      },
      "text": "this is a new note",
      "lastUpdate": {
        "timestamp": "2019-10-28T18:51:18.614Z",
        "username": "msmith",
        "firstName": "Mary",
        "lastName": "Smith"
      },
      "article": {
        "id": "T987654"
      }
    }
  ]
}

Error Response Codes

The Dynamic Health get all article notes endpoint can return one of the error response codes.