Retrieving Chemo Regimen Diseases GET

The DynaMed/DynaMedex GET /v2/products/{productId}/content/chemo-regimens/diseases endpoint returns the list of diseases that have associated chemo regimen templates. Each disease entry includes the disease's "id", "name", a "templatesCount" of how many templates match that disease, and any "subTypes" of the disease. A subtype has the same shape as its parent disease and may itself have subtypes. The disease "id" can be used with the chemo regimen disease templates endpoint to retrieve the regimen templates for that disease, and the disease "name" can be used with the templates by-disease-name endpoint to do the same by name instead of ID.

Basic Search for Chemo Regimen Diseases

To Retrieve the List of Chemo Regimen Diseases (example):

Gather the following information for the request:

Request

GET https://apis.ebsco.com/medsapi-dynamed/v2/content/chemo-regimens/diseases

Response

{
    "_metadata": {
        "totalItems": 1,
        "links": [
            {
                "rel": "self",
                "href": "https://apis.ebsco.com/medsapi-dynamed/v2/content/chemo-regimens/diseases"
            }
        ]
    },
    "items": [
        {
            "id": "ade1f851-2198-4d5d-8aec-93beec66cc09",
            "name": "Acute Myeloid Leukemia",
            "subTypes": [
                {
                    "id": "778fda34-1897-48ce-a07c-a9f8d2296ffc",
                    "name": "Acute Promyelocytic Leukemia",
                    "templatesCount": 42
                },
                {
                    "id": "5d1ff265-ad65-4093-af02-ddf27ad73a6f",
                    "name": "Blastic Plasmacytoid Dendritic Cell Neoplasm (BPDCN)",
                    "templatesCount": 10
                }
            ],
            "templatesCount": 81
        }
    ]
}

Error Response Codes

The DynaMed chemo regimen diseases endpoint can return one of the error response codes.


Did this page help you?