Retrieving All Custom Articles GET

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 an access token. Please see Using the Client Credentials Grant for further information.

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": "C123456789",
            "title": "title 1",
            "slug": "c123456789-title-1",
            "status": "PUBLISHED",
            "customer": {
                "id": "my-customer-id"
            },
            "lastUpdate": {
                "timestamp": "2020-08-19T07:48:27.000Z",
                "username": "msmith"
            },
            "links": [
                {
                    "rel": "self",
                    "href": "https://apis.ebsco.com/medsapi-dynamic-health/v1/content/custom-articles/C123456789"
                }
            ]
        },
        {
            "id": "C987654321",
            "title": "Wooooow 2",
            "slug": "c987654321-wooooow-2",
            "status": "PUBLISHED",
            "customer": {
                "id": "my-customer-id"
            },
            "lastUpdate": {
                "timestamp": "2020-08-19T07:47:45.000Z",
                "username": "msmith"
            },
            "links": [
                {
                    "rel": "self",
                    "href": "https://apis.ebsco.com/medsapi-dynamic-health/v1/content/custom-articles/C987654321"
                }
            ]
        },
        {
            "id": "C192837645",
            "title": "Test Skill 2",
            "slug": "c192837645-test-skill-2",
            "status": "PUBLISHED",
            "customer": {
                "id": "my-customer-id"
            },
            "lastUpdate": {
                "timestamp": "2020-07-09T15:47:14.000Z",
                "username": "msmith"
            },
            "links": [
                {
                    "rel": "self",
                    "href": "https://apis.ebsco.com/medsapi-dynamic-health/v1/content/custom-articles/C192837645"
                }
            ]
        },
        {
            "id": "C564738291",
            "title": "test skill",
            "slug": "c564827391-test-skill",
            "status": "PUBLISHED",
            "customer": {
                "id": "my-customer-id"
            },
            "lastUpdate": {
                "timestamp": "2020-07-09T15:46:53.000Z",
                "username": "msmith"
            },
            "links": [
                {
                    "rel": "self",
                    "href": "https://apis.ebsco.com/medsapi-dynamic-health/v1/content/custom-articles/C564738291"
                }
            ]
        }
    ]
}

Error Response Codes

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