How Do I get the list of Allergenic Items using Rest API

In order to add Allergenic Items to Patient I need to get the list of Allergenic Items (Drug, Food, Environmental etc) and Reaction List. I understand Allergenic Item List and Reaction List are Collection of Concepts. My question is how do I get those two lists using Rest API. (Or are those lists hard coded List of concepts.)

Go to the concept dictionary (https://demo.openmrs.org/openmrs/dictionary/index.htm) and type “allerg” to see their groupings. On selecting each, you should get the uuid from the screen that comes up. For instance, selecting “Reference application common drug allergens” gives me the uuid which i can use to access them via rest as: …/ws/rest/v1/concept/162552AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

1 Like

Thank you very much Daniel.