Function: getPaymentsByTeachingHospital() ​
ts
function getPaymentsByTeachingHospital(opts?: {
limit?: number;
offset?: number;
}): Promise<PaymentQueryResult>;Defined in: open-payments/sdk.ts:353
Get payments grouped by teaching hospital. Shows total payments to teaching hospitals from pharma companies.
Example: const data = await getPaymentsByTeachingHospital({ limit: 20 });
Parameters ​
| Parameter | Type |
|---|---|
opts? | { limit?: number; offset?: number; } |
opts.limit? | number |
opts.offset? | number |
Returns ​
Promise<PaymentQueryResult>