Retrieving a Custom Article GET

The Dynamic Health API GET /content/custom-articles/{id} endpoint gets a custom article by article ID. Before you can execute a custom article call, you must have an 'Authorization' token which is to be entered into the request header.

Basic Custom Article Request

To Perform a Custom Article Request (example):

Gather the following information for the request:

Request

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

Response

{
  "id": "C123456789",
  "title": "Admission and Discharge Skills for our Org",
  "links": [
    {
      "rel": "self",
      "href": "https://apis.ebsco.com/medsapi-dynamic-health/v1/content/custom-articles/C123456789"
    }
  ],
  "customer": {
    "id": "my-customer-id"
  },
  "description": "Description of the skill",
  "purpose": "Purpose for the skill",
  "redflags": [
    "Do not do this if..."
  ],
  "supplies": [
    "syringe"
  ],
  "preProcedureSteps": [
    "Sterilize the needle"
  ],
  "procedureSteps": [
    "Steps 1..."
  ],
  "postProcedureSteps": [
    "To cleanup after this process..."
  ],
  "patientFamilyEducation": "string",
  "documentation": "List any required documentation for the procedure",
  "notes": "Any other comments"
}

Error Response Codes

The Dynamic Health get a custom article endpoint can return one of the error response codes.