Code Snippet
Live Specificationimport { DevSampClient } from "@devsamp/sdk";
const devsamp = new DevSampClient({
apiKey: process.env.DEVSAMP_API_KEY,
environment: "sandbox" // or "production"
});
// Fetch active hospital departments
const departments = await devsamp.departments.list();
console.log("Active Pod Departments:", departments);