@upvio/sdk-node
v0.1.0
Published
Communicate with the Upvio API from a Node.js environment.
Readme
Upvio SDK Node
Communicate with the Upvio API from a Node.js environment.
Installation
pnpm add @upvio/sdk-nodeUsage
import { UpvioApiClient } from '@upvio/sdk-node'
const client = new UpvioApiClient({
apiKey: process.env.UPVIO_API_KEY!,
businessId: process.env.UPVIO_BUSINESS_ID!,
})
const patients = await client.v1.core.patients.list()
for (const patient of patients) {
console.log(patient.email)
}