POST api/ADRDrugsByAdverseReaction

Returns details for drugs that may cause given adverse reactions.


Request Information

URI Parameters

None.

Body Parameters

ADRDrugsByAdverseReactionRequest
NameDescriptionTypeAdditional information
AdverseReactionCodes Collection of adverse reaction codes. Drugs with these adverse reactions will be returned. Collection of ConditionIdentifier

Required

SeverityFilter Used to filter the response based on severity of the adverse reaction. Limits the results to severities of equal or greater value to the filter. Indicates how serious the adverse event is and what the anticipated clinician’s action would be. If no severity value is included in the request, then all known adverse drug reaction(s) are returned. ADRSeverityEnum

None.

IncidenceFilter Used to filter the adverse reaction results based on incidence. Limits the results to incidences of equal or greater value to the filter. Identifies the reported percentage range of patients who experience the adverse reaction when taking the specified drug. If no incidence value is included in the request, then all known incidence information for the adverse drug reaction(s) is returned. ADRIncidenceEnum

None.

OnsetFilter Used to filter the adverse reaction results based on onset. Indicates when the adverse event is anticipated to occur following drug administration. If no onset value is included in the request, then all known onset information for the adverse drug reaction(s) is returned. ADROnsetEnum

None.

SortBy Used to sort the return results. The default sort is by Incidence. ADRSortByEnum

None.

Gender Used to filter based on gender. Default is both. GenderEnum

None.

FilterPreferences All warnings, drugs, indications, classifications, etc., for each supplied identifier are filtered out of the response. FilterPreferences

None.

AccessToken Temporary access token from the GSDD Auth API. Used to validate your license.

Note: Access tokens are temporary and may be invalidated early for various reasons, including—but not limited to—site maintenance and security updates. If a token is invalidated prematurely, simply request new tokens via the AccessToken method in the GSDD Auth API. This is a rather rare occurrence, but should be planned for and handled by the consuming application.
string

Required

Request Formats

application/json, text/json

Sample:
{
  "AdverseReactionCodes": [
    {
      "IdType": "ICD10",
      "Id": "123ABC1"
    },
    {
      "IdType": "ICD10",
      "Id": "123ABC2"
    }
  ],
  "SeverityFilter": "Severe",
  "IncidenceFilter": "Rare",
  "OnsetFilter": "Early",
  "SortBy": "Onset",
  "Gender": "Female",
  "FilterPreferences": {
    "Patient": [
      {
        "IdType": "IngredientId",
        "Id": "3"
      },
      {
        "IdType": "IngredientId",
        "Id": "4"
      }
    ],
    "Physician": [
      {
        "IdType": "IngredientId",
        "Id": "5"
      },
      {
        "IdType": "IngredientId",
        "Id": "6"
      }
    ]
  },
  "AccessToken": "T25lX0hhcHB5X0FuZF9TYXRpc2ZpZWRfR1NERF9DdXN0b21lcl9TYW1wbGVfQWNjZXNzVG9rZW4="
}

Response Information

Resource Description

ADRDrugsByAdverseReactionResponse
NameDescriptionTypeAdditional information
AdverseReactions A collection of detailed adverse reaction information. Collection of ADRConditionDrugInfo

None.

Response Formats

application/json, text/json

Sample:
{
  "AdverseReactions": [
    {
      "ConditionInfo": {
        "AdverseReactionId": {
          "IdType": "ICD10",
          "Id": "123ABC1"
        },
        "Description": "Sample Description text.",
        "BoxedWarning": true,
        "MonographSectionId": 2,
        "Gender": "Female",
        "Onset": "Early",
        "Severity": "Severe",
        "IncidenceFrom": 1.234,
        "IncidenceTo": 1.234,
        "IncidenceInclusive": true,
        "Reported": true
      },
      "DrugInfo": {
        "DrugId": {
          "IdType": "NDC11",
          "Id": "12345-6789-03"
        },
        "Name": "Sample Name text.",
        "LevelsOfEvidence": [
          {
            "Recommended": true,
            "StrengthOfRecommendation": "EquivocalWeakAgainst",
            "Rating": "VeryLow",
            "ErrorMessage": "Sample ErrorMessage text."
          },
          {
            "Recommended": true,
            "StrengthOfRecommendation": "EquivocalWeakAgainst",
            "Rating": "VeryLow",
            "ErrorMessage": "Sample ErrorMessage text."
          }
        ],
        "Message": "Sample Message text."
      },
      "Message": "Sample Message text."
    },
    {
      "ConditionInfo": {
        "AdverseReactionId": {
          "IdType": "ICD10",
          "Id": "123ABC4"
        },
        "Description": "Sample Description text.",
        "BoxedWarning": true,
        "MonographSectionId": 5,
        "Gender": "Female",
        "Onset": "Early",
        "Severity": "Severe",
        "IncidenceFrom": 1.234,
        "IncidenceTo": 1.234,
        "IncidenceInclusive": true,
        "Reported": true
      },
      "DrugInfo": {
        "DrugId": {
          "IdType": "NDC11",
          "Id": "12345-6789-06"
        },
        "Name": "Sample Name text.",
        "LevelsOfEvidence": [
          {
            "Recommended": true,
            "StrengthOfRecommendation": "EquivocalWeakAgainst",
            "Rating": "VeryLow",
            "ErrorMessage": "Sample ErrorMessage text."
          },
          {
            "Recommended": true,
            "StrengthOfRecommendation": "EquivocalWeakAgainst",
            "Rating": "VeryLow",
            "ErrorMessage": "Sample ErrorMessage text."
          }
        ],
        "Message": "Sample Message text."
      },
      "Message": "Sample Message text."
    }
  ]
}