Retrieving All Custom Articles GET

Dynamic Health allows an administrator to create a custom article for use by their institution. The Dynamic Health API GET /content/custom-articles endpoint returns a list of custom articles for your institution. Before you can execute a custom article call, you must have an 'Authorization' token which is to be entered into the request header.

Basic Retrieve All Custom Articles

To Perform a Custom Articles Search (example):

Gather a personalized access token.

Request

GET https://apis.ebsco.com/medsapi-dynamic-health/v1/content/custom-articles

Response

{
    "_metadata": {
        "links": [
            {
                "rel": "self",
                "href": "https://apis.ebsco.com/medsapi-dynamic-health/v1/content/custom-articles"
            }
        ],
        "totalItems": 4
    },
    "items": [
         {
            "id": "C1732542697844",
            "title": "Case Management for Patients with Diabetes Workplace Skill",
            "slug": "c1732542697844-case-management-for-patients-with-diabetes-workplace-skill",
            "status": "PUBLISHED",
            "customer": {
                "id": "my-customer-id"
            },
            "lastUpdate": {
                "timestamp": "2026-03-09T15:30:20.000Z",
                "username": "msmith"
            },
            "links": [
                {
                    "rel": "self",
                    "href": "https://apis.ebsco.com/medsapi-dynamic-health/v1/content/custom-articles/C1732542697844"
                }
            ]
        },
         {
            "id": "C1723211328438",
            "title": "Risk Factors for Heart Laceration",
            "slug": "c1723211328438-risk-factors-for-heart-laceration",
            "status": "PUBLISHED",
            "customer": {
                "id": "my-customer-id"
            },
            "lastUpdate": {
                "timestamp": "2024-11-21T16:16:15.000Z",
                "username": "msmith"
            },
            "links": [
                {
                    "rel": "self",
                    "href": "https://ebscois-development-devqa.apigee.net/medsapi-dynamic-health/v1/content/custom-articles/C1723211328438"
                }
            ]
        }
    ]
}

Error Response Codes

The Dynamic Health get all custom articles endpoint can return one of the error response codes.


Did this page help you?