lib/athena_health/endpoints/encounters.rb in athena_health-1.0.42 vs lib/athena_health/endpoints/encounters.rb in athena_health-1.0.43

- old
+ new

@@ -27,8 +27,16 @@ method: :get ) Order.new(response) end + + def encounter_summary(practice_id:, encounter_id:) + response = @api.call( + endpoint: "#{practice_id}/chart/encounters/#{encounter_id}/summary", + method: :get + ) + EncounterSummary.new(response) + end end end end