<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Community Discussions - Recent Threads</title><link>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions</link><description /><dc:language>en-US</dc:language><generator>14.0.0.622 14</generator><lastBuildDate>Sun, 23 Nov 2025 14:20:00 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions" /><item><title>RE: Anyone experimenting with AI or automation alongside FieldPulse?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/761?ContentTypeID=1</link><pubDate>Sun, 23 Nov 2025 14:20:00 GMT</pubDate><guid isPermaLink="false">8609124c-f0ae-43f3-8d63-70e74fbdf06a</guid><dc:creator>Marcus Webb (Staff)</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/761?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/129/anyone-experimenting-with-ai-or-automation-alongside-fieldpulse/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Nadia — appreciate you surfacing this. We are actively exploring several AI-powered capabilities that would sit natively within FieldPulse rather than requiring external orchestration.&lt;/p&gt;

&lt;p&gt;Our current focus areas include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Intelligent job summarization&lt;/strong&gt; — auto-generating completion narratives from technician inputs and photo context&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Predictive scheduling&lt;/strong&gt; — surfacing likely duration overruns based on historical patterns&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Smart dispatch suggestions&lt;/strong&gt; — recommending technician assignments based on skill matching, proximity, and workload&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We do not have a public timeline for these capabilities, but I can confirm they are prioritized for our H1 roadmap. The webhook and API infrastructure you are using today will remain supported and will likely gain additional event types to better enable these workflows.&lt;/p&gt;

&lt;p&gt;If you are interested in early access or research participation, please reach out directly. We want to ensure native features address the real patterns emerging in customer implementations.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Anyone experimenting with AI or automation alongside FieldPulse?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/762?ContentTypeID=1</link><pubDate>Sun, 23 Nov 2025 11:45:00 GMT</pubDate><guid isPermaLink="false">c3a586b7-c816-4ffc-87d1-4ceca6c390b4</guid><dc:creator>Art Kowalczyk</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/762?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/129/anyone-experimenting-with-ai-or-automation-alongside-fieldpulse/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;In my experience, the fancy stuff breaks when you need it most. We&amp;#39;ve got a simple rules-based system that flags jobs where actual time &amp;gt; 150% of estimate. No AI, just math. Catches most of what we care about.&lt;/p&gt;
&lt;p&gt;The AI tools I&amp;#39;ve seen demo&amp;#39;d are neat until a customer gets a nonsense email because the model hallucinated a warranty extension. I&amp;#39;ll stick with reliable over clever.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Anyone experimenting with AI or automation alongside FieldPulse?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/129?ContentTypeID=1</link><pubDate>Sat, 22 Nov 2025 14:45:00 GMT</pubDate><guid isPermaLink="false">55afec68-284e-4501-be03-7daff128cac0</guid><dc:creator>Eli Torres (Staff)</dc:creator><slash:comments>13</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/129?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/129/anyone-experimenting-with-ai-or-automation-alongside-fieldpulse/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hey folks — Eli here from the dev side of the house. Been tinkering with some automation workflows around FieldPulse and got curious what the rest of you are up to.&lt;/p&gt;

&lt;p&gt;I&amp;#39;ve got a little side experiment going where I&amp;#39;m using a webhook → &lt;code&gt;work_order.status_changed&lt;/code&gt; → triggering a GPT-4 call to auto-draft customer follow-up emails based on the job notes. It&amp;#39;s... surprisingly not terrible? The prompt engineering is the hard part, honestly. Getting it to sound like &amp;quot;us&amp;quot; and not a robot took some iteration.&lt;/p&gt;

&lt;p&gt;Also played with:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Auto-categorizing photos from the mobile app (sending to a vision API to tag &amp;quot;panel photos&amp;quot; vs &amp;quot;wiring photos&amp;quot; etc)&lt;/li&gt;
&lt;li&gt;Slack bot that summarizes the day&amp;#39;s completed jobs and flags anything with suspiciously short duration&lt;/li&gt;
&lt;li&gt;Trying to extract parts lists from free-form technician notes — this one is still pretty rough, edge cases everywhere&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Yeah this one tripped me up too when I first looked at it — the webhook payload doesn&amp;#39;t include the full job history, so if you need context from previous visits you&amp;#39;re doing extra API calls. Worth keeping in mind if you&amp;#39;re building something similar.&lt;/p&gt;

&lt;p&gt;Anyway, curious if anyone&amp;#39;s actually production-ized anything AI-adjacent on top of FieldPulse, or if it&amp;#39;s all still weekend experiments like mine. What&amp;#39;s working? What&amp;#39;s a waste of time?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Wishlist: what feature would make the biggest difference for your team?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/103?ContentTypeID=1</link><pubDate>Thu, 20 Nov 2025 09:10:00 GMT</pubDate><guid isPermaLink="false">c86311c9-7c0f-4afd-b9df-15aefd751b1a</guid><dc:creator>Carla Jimenez (Staff)</dc:creator><slash:comments>21</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/103?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/103/wishlist-what-feature-would-make-the-biggest-difference-for-your-team/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hey everyone! &lt;span class="emoticon" data-url="https://verint14-pre-04.socialedgeconsulting.io/cfs-file/__key/system/emoji/1f44b.svg" title="Wave"&gt;&amp;#x1f44b;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;We&amp;#39;re always looking for ways to make FieldPulse work better for the teams using it every day. While we have a roadmap we&amp;#39;re excited about, we want to make sure we&amp;#39;re building what &lt;em&gt;you&lt;/em&gt; actually need.&lt;/p&gt;

&lt;p&gt;So here&amp;#39;s the question: &lt;strong&gt;if you could wave a magic wand and have one new feature (or big improvement to an existing one), what would it be?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;We&amp;#39;re especially interested in hearing:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;What pain point this would solve&lt;/li&gt;
&lt;li&gt;How often it comes up in your daily workflow&lt;/li&gt;
&lt;li&gt;What you&amp;#39;re doing as a workaround today&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No idea is too small or too ambitious—we want to hear it all! This thread will be shared directly with our product team, so your voice will absolutely be heard.&lt;/p&gt;

&lt;p&gt;Looking forward to learning what&amp;#39;s on your wishlist! &lt;span class="emoticon" data-url="https://verint14-pre-04.socialedgeconsulting.io/cfs-file/__key/system/emoji/1f4dd.svg" title="Pencil"&gt;&amp;#x1f4dd;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wishlist: what feature would make the biggest difference for your team?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/478?ContentTypeID=1</link><pubDate>Sun, 23 Nov 2025 11:30:00 GMT</pubDate><guid isPermaLink="false">9d1fced3-d709-41ee-b7d7-eb748cbb347a</guid><dc:creator>Marcus Webb (Staff)</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/478?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/103/wishlist-what-feature-would-make-the-biggest-difference-for-your-team/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Ray, Mike — fair feedback and I want to acknowledge the gap directly. The current route optimization release focuses on distance-based efficiency with basic time window support. What you&amp;#39;re describing (skill matching, equipment constraints, hard time windows) requires a more sophisticated constraint solver.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Where we&amp;#39;re headed:&lt;/strong&gt; We&amp;#39;re rebuilding the scheduling engine from scratch with constraint-based optimization — this was announced in our engineering blog earlier this year. Hard time windows and technician attributes (skills, certifications) are in the design spec for that release.&lt;/p&gt;

&lt;p&gt;Equipment/load constraints are trickier (requires inventory awareness + dimensional data we don&amp;#39;t yet collect) but on the longer-term roadmap.&lt;/p&gt;

&lt;p&gt;Template saving for manual routes is a smaller lift — I&amp;#39;ll flag that for potential near-term delivery.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wishlist: what feature would make the biggest difference for your team?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/477?ContentTypeID=1</link><pubDate>Sun, 23 Nov 2025 09:45:00 GMT</pubDate><guid isPermaLink="false">2258f09e-42e4-4595-bac9-f181500975a0</guid><dc:creator>Mike Dolan</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/477?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/103/wishlist-what-feature-would-make-the-biggest-difference-for-your-team/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Same. Route optimization is basically useless for us. Turned it off after two weeks.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Anyone experimenting with AI or automation alongside FieldPulse?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/760?ContentTypeID=1</link><pubDate>Sun, 23 Nov 2025 09:15:00 GMT</pubDate><guid isPermaLink="false">bee219f5-54d9-4edb-b81e-65a3047d9bab</guid><dc:creator>Nadia Petrov</dc:creator><slash:comments>1</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/760?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/129/anyone-experimenting-with-ai-or-automation-alongside-fieldpulse/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Another way to think about this — the automation layer is becoming as important as the core platform. We&amp;#39;re evaluating FieldPulse partially on how well it supports these experimental workflows.&lt;/p&gt;
&lt;p&gt;From a strategic standpoint, the teams that figure out how to augment field operations with intelligence (whether statistical or generative) will outpace those treating this as a novelty. The operational impact is real, but so is the risk of building on shifting sand if API stability or webhook reliability changes.&lt;/p&gt;
&lt;p&gt;I would be interested to hear from FieldPulse on their roadmap for first-party AI features, as this would substantially change our build-vs-buy calculus.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wishlist: what feature would make the biggest difference for your team?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/476?ContentTypeID=1</link><pubDate>Sun, 23 Nov 2025 08:30:00 GMT</pubDate><guid isPermaLink="false">f797bbb6-83a3-45ab-8d6d-4fcd5bfd6b39</guid><dc:creator>Ray DeLuca</dc:creator><slash:comments>2</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/476?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/103/wishlist-what-feature-would-make-the-biggest-difference-for-your-team/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;...route optimization that actually accounts for real-world constraints.&lt;/p&gt;

&lt;p&gt;Current version optimizes for distance but ignores:&lt;/p&gt;
&lt;p&gt;- Customer time windows (I set these, system ignores them)&lt;/p&gt;
&lt;p&gt;- Technician skill requirements&lt;/p&gt;
&lt;p&gt;- Equipment needed (van capacity)&lt;/p&gt;

&lt;p&gt;So I get a &amp;quot;perfect&amp;quot; route that has my apprentice doing a job he&amp;#39;s not qualified for, or a tech arriving outside the customer&amp;#39;s only available window. Then I rebuild it manually anyway.&lt;/p&gt;

&lt;p&gt;Either make it actually usable or let me save my manual routes as templates.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Anyone experimenting with AI or automation alongside FieldPulse?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/758?ContentTypeID=1</link><pubDate>Sat, 22 Nov 2025 18:15:00 GMT</pubDate><guid isPermaLink="false">c3021b20-2184-456e-841b-c1b402818790</guid><dc:creator>Gwen Albright</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/758?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/129/anyone-experimenting-with-ai-or-automation-alongside-fieldpulse/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Seconding this — we actually paused our most ambitious experiment after a compliance review. Not killed, just... properly governed now. Which is slower but safer.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Anyone experimenting with AI or automation alongside FieldPulse?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/759?ContentTypeID=1</link><pubDate>Sat, 22 Nov 2025 17:52:00 GMT</pubDate><guid isPermaLink="false">24b34057-6142-40fe-aef7-3c30ac694023</guid><dc:creator>Sam Kowalski</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/759?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/129/anyone-experimenting-with-ai-or-automation-alongside-fieldpulse/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;lol y&amp;#39;all are overthinking it&lt;/p&gt;
&lt;p&gt;i got a zap that reads my completed jobs and dumps a summary into chatgpt api and posts to slack. took like 20 min to set up. is it perfect? nah. does it save me scrolling through 50 jobs? yep&lt;/p&gt;
&lt;p&gt;tbh half the &amp;quot;AI&amp;quot; stuff is just better search and formatting. don&amp;#39;t need a policy for that&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Anyone experimenting with AI or automation alongside FieldPulse?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/757?ContentTypeID=1</link><pubDate>Sat, 22 Nov 2025 17:30:00 GMT</pubDate><guid isPermaLink="false">ca59adfa-0c54-4d67-b8f6-cc4f7314f884</guid><dc:creator>Fatima Al-Rashid</dc:creator><slash:comments>1</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/757?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/129/anyone-experimenting-with-ai-or-automation-alongside-fieldpulse/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;From a governance perspective, this is critical. It is worth noting that several jurisdictions now require disclosure when AI is used in customer communications, and your liability framework needs to account for hallucinated content.&lt;/p&gt;
&lt;p&gt;I would recommend:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Establishing a formal AI use policy before any production deployment&lt;/li&gt;
&lt;li&gt;Implementing human-in-the-loop review for all customer-facing outputs&lt;/li&gt;
&lt;li&gt;Documenting model versioning and training data provenance for audit purposes&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The security implications of webhook exposure to third-party AI services also warrant review. Ensure your endpoint authentication and payload validation are robust.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Anyone experimenting with AI or automation alongside FieldPulse?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/755?ContentTypeID=1</link><pubDate>Sat, 22 Nov 2025 16:45:00 GMT</pubDate><guid isPermaLink="false">40d34e84-7fb8-469e-9b86-cbc33bd04e32</guid><dc:creator>Brandon Okafor</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/755?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/129/anyone-experimenting-with-ai-or-automation-alongside-fieldpulse/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Next-day works. Thanks.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Anyone experimenting with AI or automation alongside FieldPulse?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/754?ContentTypeID=1</link><pubDate>Sat, 22 Nov 2025 16:22:00 GMT</pubDate><guid isPermaLink="false">3f273f9e-c909-40a3-aa63-1d81744b527b</guid><dc:creator>Devon Marsh</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/754?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/129/anyone-experimenting-with-ai-or-automation-alongside-fieldpulse/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;40-60 hours to get something that doesn&amp;#39;t embarrass you in production. Depends heavily on whether you need the prediction in real-time or next-day is fine. Next-day is way easier.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Anyone experimenting with AI or automation alongside FieldPulse?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/756?ContentTypeID=1</link><pubDate>Sat, 22 Nov 2025 16:18:00 GMT</pubDate><guid isPermaLink="false">d6a4543d-2865-42a5-942d-740209ed5d05</guid><dc:creator>Gwen Albright</dc:creator><slash:comments>2</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/756?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/129/anyone-experimenting-with-ai-or-automation-alongside-fieldpulse/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Let me tell you how we do it — we&amp;#39;re not using &amp;quot;AI&amp;quot; per se but we&amp;#39;ve built some solid automation around the same infrastructure. &lt;strong&gt;The key is treating FieldPulse as the system of record and layering intelligence on top, not inside.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Our dispatcher gets a morning briefing auto-generated from overnight completions. It&amp;#39;s just templated logic plus some conditional formatting (high-cost jobs, callbacks flagged, etc), but it&amp;#39;s eliminated the 8am scramble to figure out what happened yesterday.&lt;/p&gt;
&lt;p&gt;Pro tip: Start with structured data extraction before you try anything fancy. If your technician notes are free-form chaos, no model will save you. We spent two months just standardizing &lt;code&gt;Problem Description&lt;/code&gt; dropdowns before any automation touched it.&lt;/p&gt;
&lt;p&gt;Also worth mentioning — if you&amp;#39;re doing anything customer-facing with AI-generated text, get your legal/compliance folks involved early. We learned that one the hard way.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wishlist: what feature would make the biggest difference for your team?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/475?ContentTypeID=1</link><pubDate>Sat, 22 Nov 2025 16:10:00 GMT</pubDate><guid isPermaLink="false">1c1b98a5-d14e-499b-b174-2bc147bf2ab9</guid><dc:creator>Teresa Lund</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/475?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/103/wishlist-what-feature-would-make-the-biggest-difference-for-your-team/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;shift handoff YES. our night crew leaves stickies on my monitor. actual paper stickies. in 2025. something built in for pass-down notes with timestamp and acknowledgment would help&lt;/p&gt;

&lt;p&gt;technician swaps too but honestly anything that keeps them from calling me at 10pm works&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Anyone experimenting with AI or automation alongside FieldPulse?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/752?ContentTypeID=1</link><pubDate>Sat, 22 Nov 2025 16:05:00 GMT</pubDate><guid isPermaLink="false">19e99b87-f07f-4cd7-926f-9b6693c22664</guid><dc:creator>Devon Marsh</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/752?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/129/anyone-experimenting-with-ai-or-automation-alongside-fieldpulse/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;About 8 months of historical before I trusted it enough to surface to dispatchers. The feature engineering was way more important than model choice — stuff like &amp;quot;ratio of estimate to actual time&amp;quot; and whether the customer had a prior complaint were stronger signals than I expected.&lt;/p&gt;
&lt;p&gt;And lol yeah, webhook race conditions are a thing. I ended up adding a 5-min delay buffer before processing, which defeats some of the &amp;quot;real-time&amp;quot; promise but saves sanity.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Anyone experimenting with AI or automation alongside FieldPulse?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/753?ContentTypeID=1</link><pubDate>Sat, 22 Nov 2025 15:47:00 GMT</pubDate><guid isPermaLink="false">043fd3ea-8af8-401a-b73e-ed02b437ffeb</guid><dc:creator>Brandon Okafor</dc:creator><slash:comments>2</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/753?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/129/anyone-experimenting-with-ai-or-automation-alongside-fieldpulse/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;We need something like this working. My team can&amp;#39;t move forward on the volume we&amp;#39;re handling without better triage. What&amp;#39;s the actual lift to get a basic version running?&lt;/p&gt;
&lt;p&gt;No small talk — just rough hours for someone with decent API experience.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Anyone experimenting with AI or automation alongside FieldPulse?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/751?ContentTypeID=1</link><pubDate>Sat, 22 Nov 2025 15:38:00 GMT</pubDate><guid isPermaLink="false">5ef175d3-26ad-4919-b24b-90c1c80fdd87</guid><dc:creator>Eli Torres (Staff)</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/751?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/129/anyone-experimenting-with-ai-or-automation-alongside-fieldpulse/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Oh interesting — you&amp;#39;re doing the prediction layer. I got as far as &amp;quot;this seems possible&amp;quot; and then got distracted by the shinier generative stuff. How much training data did you need before it started being useful?&lt;/p&gt;
&lt;p&gt;Also yeah, the webhook ordering thing is real. I had a job completion fire before the photo uploads finished and the vision API got... creatively confused by placeholder URLs.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Anyone experimenting with AI or automation alongside FieldPulse?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/750?ContentTypeID=1</link><pubDate>Sat, 22 Nov 2025 15:12:00 GMT</pubDate><guid isPermaLink="false">1c6d6b34-d953-481d-b150-d5ed500fa901</guid><dc:creator>Devon Marsh</dc:creator><slash:comments>2</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/750?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/129/anyone-experimenting-with-ai-or-automation-alongside-fieldpulse/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;YMMV on this one, but I&amp;#39;ve got a Make scenario running that pulls completed jobs every hour and feeds them into a small classification model we trained. Basically trying to predict which jobs are likely to generate a callback based on tech notes, time of day, and parts used.&lt;/p&gt;
&lt;p&gt;Heads up: the webhook reliability for high-frequency jobs is not amazing, so we batch it instead. Worth noting that FieldPulse&amp;#39;s rate limiting on the read API (100 req/min last I checked) becomes your bottleneck real fast if you&amp;#39;re trying to hydrate a lot of historical data.&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s what worked for me:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;// webhook receiver → queue in Redis → worker processes batches
every 15 min: fetch /work_orders?status=completed&amp;amp;since=${last_run}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The model&amp;#39;s only about 70% accurate so far, but it&amp;#39;s enough to flag jobs for QA review. Small wins.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wishlist: what feature would make the biggest difference for your team?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/474?ContentTypeID=1</link><pubDate>Sat, 22 Nov 2025 14:45:00 GMT</pubDate><guid isPermaLink="false">77054a78-55e8-4ec1-a51d-cbaba180ad71</guid><dc:creator>Deja Washington</dc:creator><slash:comments>1</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/474?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/103/wishlist-what-feature-would-make-the-biggest-difference-for-your-team/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Okay so we have two actually! First is technician-initiated schedule swaps with approval workflow. Right now when someone needs to swap a job they text me and then I have to do all the reassigning manually and it&amp;#39;s just a lot of back and forth especially when it&amp;#39;s like a weekend or evening and I&amp;#39;m not at my desk. If they could propose a swap and the other tech could accept and then it just needs my approval that would save so much time!&lt;/p&gt;

&lt;p&gt;Second question — is there any plan for better shift handoff tools? We run 24/7 and our night dispatch leaves notes for day dispatch but there&amp;#39;s no structured way to do this in FieldPulse so we use a shared doc and it&amp;#39;s getting unwieldy. Thanks so much for gathering all this feedback really appreciate it!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wishlist: what feature would make the biggest difference for your team?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/473?ContentTypeID=1</link><pubDate>Sat, 22 Nov 2025 11:20:00 GMT</pubDate><guid isPermaLink="false">de196427-6999-47d8-a797-164703b7657e</guid><dc:creator>Sylvia Chen</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/473?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/103/wishlist-what-feature-would-make-the-biggest-difference-for-your-team/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;+1 on conditional logic. Our workaround:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Job type drives template assignment (via automation rules)&lt;/li&gt;
&lt;li&gt;Still requires dispatcher to categorize correctly upfront&lt;/li&gt;
&lt;li&gt;Fails when job type doesn&amp;#39;t predict actual work needed&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Would prefer technician-facing logic that adapts in the field.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wishlist: what feature would make the biggest difference for your team?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/472?ContentTypeID=1</link><pubDate>Sat, 22 Nov 2025 09:33:00 GMT</pubDate><guid isPermaLink="false">4b8278c2-b0db-4f2b-a176-b0e024abc299</guid><dc:creator>Connor Burke</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/472?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/103/wishlist-what-feature-would-make-the-biggest-difference-for-your-team/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;yesssss this basically I do electrical and commercial vs residential is so different also sometimes I&amp;#39;m doing panel upgrades and sometimes troubleshooting and the checklist that&amp;#39;s useful for one is like completely irrelevant for the other so what I did was I made this giant checklist with everything and I just skip the parts that don&amp;#39;t apply but that&amp;#39;s basically not a real solution tbh and I worry about missing something because I&amp;#39;m scrolling past so much stuff you know&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wishlist: what feature would make the biggest difference for your team?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/471?ContentTypeID=1</link><pubDate>Sat, 22 Nov 2025 07:55:00 GMT</pubDate><guid isPermaLink="false">921a5287-9d91-487f-9bee-3b25fd9cfeb9</guid><dc:creator>Josh Mercer</dc:creator><slash:comments>2</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/471?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/103/wishlist-what-feature-would-make-the-biggest-difference-for-your-team/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Pro tip: conditional logic in checklists. We do commercial HVAC and the questions I need to answer on a rooftop unit vs a split system vs a chiller are completely different. Right now I have three different checklist templates and I have to know which one to pick before I even see the equipment.&lt;/p&gt;

&lt;p&gt;What I want: one master checklist that asks &amp;quot;What type of system?&amp;quot; and then shows me only the relevant sections based on that answer. Would clean up our template library and reduce mistakes from picking the wrong form.&lt;/p&gt;

&lt;p&gt;I&amp;#39;m aware some form tools do this but having it native in FieldPulse would be huge. The current checklist template setup is solid but this is the gap that&amp;#39;s cost us time on site.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wishlist: what feature would make the biggest difference for your team?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/470?ContentTypeID=1</link><pubDate>Fri, 21 Nov 2025 19:15:00 GMT</pubDate><guid isPermaLink="false">9e1b7057-f2f4-4992-a560-45ed75930c81</guid><dc:creator>Lindsey Park</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/470?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/103/wishlist-what-feature-would-make-the-biggest-difference-for-your-team/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Oh thank you so much Fiona! That&amp;#39;s exactly what I needed to know. The form builder workaround is actually a great idea for now — really appreciate you taking the time to explain this!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wishlist: what feature would make the biggest difference for your team?</title><link>https://verint14-pre-04.socialedgeconsulting.io/thread/469?ContentTypeID=1</link><pubDate>Fri, 21 Nov 2025 17:40:00 GMT</pubDate><guid isPermaLink="false">61cbccbc-b968-48eb-aa78-04c1fa2e0784</guid><dc:creator>Fiona Grant (Staff)</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-04.socialedgeconsulting.io/thread/469?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-04.socialedgeconsulting.io/product-fieldpulse/f/community-discussions/103/wishlist-what-feature-would-make-the-biggest-difference-for-your-team/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Lindsey — current customer portal capabilities:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Customization:&lt;/strong&gt; Logo upload, primary color selection, custom domain (Enterprise plan). Full CSS control is not available.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Document upload:&lt;/strong&gt; Customers can upload documents to an existing work order. They cannot initiate new document submissions without a work order reference.&lt;/p&gt;
&lt;p&gt;See Customer Portal Setup and Customization for configuration steps.&lt;/p&gt;
&lt;p&gt;Document collection outside the portal is a known gap. Some teams use form builders (Typeform, Jotform) with webhook integration to FieldPulse as an interim solution.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>