Retrieving Followed Articles GET

The DynaMed/DynaMedex API GET /v1/user/followed-articles endpoint returns metadata for articles followed by a user.

Basic Retrieving of Followed Articles

To Get Article Metadata Followed by a User (example):

Gather the following information for the request:

  • A valid personal access token.
  • limit (optional) Number of items to return

Request

GET https://apis.ebsco.com/medsapi-dynamed/v1/user/followed-articles

Response

{
  "_metadata": {
    "totalItems": 1,
    "links": [
      {
        "rel": "self",
        "href": "https://apis.ebsco.com/medsapi-dynamed/v1/user/followed-articles"
      }
    ]
  },
  "items": [
    {
      "id": "t919792",
      "title": "Acid-base Abnormalities - Approach to the Patient",
      "slug": "/approach-to/acid-base-abnormalities-approach-to-the-patient"
      }
    },
    ...
  ]
} 

The id can be used with the articles API or the slug can be used with the slug API to get the article.

Error Response Codes

The DynaMed GET followed articles endpoint can return one of the error response codes.