Skip to content

sentNotificationRecordsCount

Get number of SentNotificationRecord entries

Arguments

org_level · Boolean · Used in conjunction with provider_id. When true, returns sent notification records for all patients in the organization
patient_id · ID · The ID of the patient to return sent notification records for.
provider_id · ID · When passed in, returns sent notification records for the given provider's patients. Overrides patient_id. Current user must be an admin to use this param

Returns

Int

Example

query sentNotificationRecordsCount(
$end_date: ISO8601DateTime
$org_level: Boolean
$patient_id: ID
$provider_id: ID
$start_date: ISO8601DateTime
$status: String
$type: String
) {
sentNotificationRecordsCount(
end_date: $end_date
org_level: $org_level
patient_id: $patient_id
provider_id: $provider_id
start_date: $start_date
status: $status
type: $type
)
}