
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
Zuper-SDK
Zuper Field Service Management platform lets you reimagine field service delivery and delight your customers. Collaborate Seamlessly with your field teams anytime, anywhere.
Download & Installation:
npm i -s zuper-sdk
To generate API Key:
Modules:
| Module | Permitted Operations |
|---|---|
| Jobs | get, getAll, create, update, updateStatus, delete, updateSchedule, updateAssignment, getJobTimelogs, rollbackStatus, getAllRecurringJobs, getAssistedScheduling |
| Property | get, getAll, create, update, updateStatus, delete |
| Customers | get, getAll, create, update, sendEmail, delete |
| Organizations | get, getAll, create, update, delete |
| Users | get, getAll, create, update, delete, getWorkHours, getUserTeams |
| Assets | get, getAll, create, update, getHistory, getInspectionForm, updateStatus, getPPM, delete |
| Quotes | get, getAll, create, update, delete, updateStatus |
| Invoices | get, getAll, create, update, delete, updateStatus |
| Parts & Services | get, getAll, create, update, createTranscation, getTranscations, delete |
| Activity | get, create |
| Misc | notify ( Send Email / SMS ) |
| Service Taks | get, getAll, create, update, delete, bulkAction, updateStatus, assignUsers, reorder |
| Proposal | get, getAll, create, update, delete, updateStatus |
| Requests | get, getAll, create, update, updateStatus, delete, rollbackStatus, createAssignment, createAttachment, updateAttachment, deleteAttachment |
| Projects | get, getAll, create, update, updateStatus, delete, recover, assign, updateAssignment, linkJob, removeJob, createMilestone, updateMilestone, updateMilestoneStatus, deleteMilestone, createPhase, updatePhase, updatePhaseItems, getAllPhases, deletePhase, deletePhaseItems, createDependency, updateDependency, deleteDependency |
| Transfer Orders | get, getAll, create, update,updateStatus, createAttachment, deleteAttachment |
Example:
const Zuper = require("zuper-sdk");
const zuper = Zuper.init("<origin>", "<Zuper API key>");
const jobs = async () => {
try {
let jobs = await zuper.jobs.get("<job_uid>");
console.log("Get Job details", jobs);
} catch (e) {
console.log("Error:", e);
}
};
let jobsList = async () => {
try {
let options = {
page: 1,
count: 2,
filter: {
priority: "LOW",
},
};
let jobs = await zuper.jobs.getAll(options);
console.log("Get Job details", jobs);
} catch (e) {
console.log("Error:", e);
}
};
More:
Jobs
Property
Customers
Organizations
Users
Assets
Quotes
Invoices
Parts & Services
Activity
Misc
Service Tasks
Proposal
Requests
Projects
Transfer Orders
FAQs
Zuper SDK
The npm package zuper-sdk receives a total of 81 weekly downloads. As such, zuper-sdk popularity was classified as not popular.
We found that zuper-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.