I need a small, one-off utility that takes the leads our company already has on hand and pushes them into Jobber through their public API. The scope is limited to sending data only—no need to read or sync anything back. Each lead contains basic customer information (name, phone, email, address) plus the initial appointment details we captured when the lead came in. Here’s what success looks like to me: • A script or lightweight app (Python, Node.js, or PHP are fine) that authenticates with Jobber’s API and creates the matching Customer and Job/Visit records from the data file I provide (CSV or JSON—your choice). • A clear mapping table in the source code so I can understand which of my fields go to which Jobber fields. • Simple configuration for my API token and the input file path. • When the run finishes, a concise log or report showing how many records were created and any errors returned by Jobber. Because this is a one-time migration, scheduling or real-time syncing isn’t required. Clean, well-commented code and a short readme will be enough so I can rerun or audit the import later if needed.