We're evaluating building a stripped-down mobile interface for our technicians using the FieldPulse API — basically a custom PWA that hits the standard REST endpoints and renders what we need without the full native app experience.
Before I sink too much time into prototyping, has anyone actually gone down this road? Specifically curious about:
- Offline behavior — does the API expose conflict resolution, or are we rolling our own sync logic?
- Photo upload reliability over spotty cell — any gotchas with the multipart/form-data endpoints?
- Real-time updates — polling
/work_ordersevery 30s feels wrong. Webhooks to a mobile PWA seems awkward too.
I've got a basic proof-of-concept working for read-only views, but I'm hitting some friction around session handling that makes me wonder if this is a path FieldPulse actually supports or just tolerates.
YMMV obviously, but would love to hear from anyone who's shipped something like this to actual techs in the field.