lib/athena_health/endpoints/encounters.rb in athena_health-1.0.46 vs lib/athena_health/endpoints/encounters.rb in athena_health-1.0.48

- old
+ new

@@ -35,8 +35,16 @@ endpoint: "#{practice_id}/chart/encounters/#{encounter_id}/summary", method: :get ) EncounterSummary.new(response) end + + def create_encounter_order_lab(practice_id:, encounter_id:, body: {}) + @api.call( + endpoint: "#{practice_id}/chart/encounter/#{encounter_id}/orders/lab", + method: :post, + body: body + ) + end end end end