### Medication History Webhook Structure Example Source: https://help.akutehealth.com/article/229-request-surescripts-medication-history-via-api This is an example of the data structure for a medication history webhook payload. It includes event details and patient information. An empty 'medications' array indicates no history was found. ```json event_id: "evt-0d78b17648ed4c9580c5e0c4d68a7740", event_type: "request", resource_type: "MedicationHistory", data: { patient_id: "c8ba4545-e052-43df-913a-c551ae72fdf5", external_patient_id: "1234", start_date: "2023-12-25", end_date: "2024-01-15", medications: [] } ``` -------------------------------- ### Test Patient Demographics for Medication History Source: https://help.akutehealth.com/article/229-request-surescripts-medication-history-via-api Use these specific patient demographics to create a test patient in staging to receive a non-empty medication history response. Other patients will not yield medication history. ```json { "first_name": "Winston", "middle_name": "Barnaby", "last_name": "Addington", "address_line_1": "178 Paradise Crescent", "address_city": "Royal Palm Beach", "address_state": "FL", "address_zipcode": "33411", "date_of_birth": "1940-03-14", "sex": "male", "primary_phone_number": "6082516774", "primary_phone_type": "mobile" } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.