Authentication
All API endpoints require authentication. To authenticate your request, you will need to provide an API key, EMR Id, and tenant id in the header with every API call that is made
# Headers
Innowell-SubscriptionKey : <ADD_API_KEY>
Innowell-EmrId : <ADD_INNOWELL_EMR_ID>
Innowell-TenantId : <ADD_INNOWELL_TENANT_ID>
For example,
# get a list of patients
curl --location '<INTEGRATION_ENDPOINT_URL>/Patient' \
--header 'Content-Type: application/json' \
--header 'Innowell-SubscriptionKey: <ADD_API_KEY>' \
--header 'Innowell-EmrId: <ADD_INNOWELL_EMR_ID>' \
--header 'Innowell-TenantId: <ADD_INNOWELL_TENANT_ID>'