<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>post The art of 'Auto data extraction from Images using ServiceNow AI' in Developer Advocate Blog</title>
    <link>https://www.servicenow.com/community/developer-advocate-blog/the-art-of-auto-data-extraction-from-images-using-servicenow-ai/ba-p/3526470</link>
    <description>&lt;P&gt;&lt;div class="video-embed-center video-embed"&gt;&lt;iframe class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2Flwc0bh8ma70%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dlwc0bh8ma70&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2Flwc0bh8ma70%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="600" height="337" scrolling="no" title="Learn the art of Auto data extraction from Images using ServiceNow AI." frameborder="0" allow="autoplay; fullscreen; encrypted-media; picture-in-picture" allowfullscreen="true"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;If you've ever submitted an expense report, you know the drill: upload the receipt, then manually type in the vendor name, the amount, the date, the transaction type — all information that's already sitting right there on the receipt. And then someone on the finance team has to eyeball both the receipt and the form to make sure everything matches. In 2026, that workflow is long overdue for an upgrade.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;In this episode, Tushar Mishra — a ServiceNow MVP with over a decade of experience and deep expertise in AI integrations — walks through a solution he built that reduces the entire claim submission process to a single click.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt;How It Works&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;The user opens a ServiceNow catalog form (on mobile or desktop), attaches a photo of their receipt, and hits submit. That's it. Their job is done.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;Behind the scenes, a business rule fires on record insertion. It grabs the attachment, converts the image file to base64 (since you can't send a file directly over a REST call), and sends it to OpenAI's multimodal vision model. The model reads the image — even if it's blurry, crumpled, or in a different language — and returns all the extracted text back to ServiceNow.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;At that point, an analyst can click a "Populate Claims Data" button, which triggers a Now Assist analysis skill. The skill takes that raw extracted text and maps it into structured fields: transaction amount, date, type, vendor name, and location. The prompt is remarkably simple — just one line of instruction plus a format example — because Now Assist is fine-tuned on ServiceNow's own data and understands the platform's table structures natively.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;Customisation Is Straightforward&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;Need to extract different fields? Just update the analysis skill prompt. Want to add a custom field like "cost center" or "project code"? No additional coding required — adjust the skill, and the structured output adapts. That's the advantage of building on Now Assist rather than rolling your own parsing logic.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;Multi-Language Support Out of the Box&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;Tushar demoed a Spanish-language receipt during the session, and the system handled it without any configuration changes. OpenAI's multimodal model understands multiple languages natively, so receipts in Spanish, French, or other languages are extracted and parsed just the same. For teams that deal with vendors across geographies, this is a big deal.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;A Quick Word on LLM Gateway&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;One of the practical challenges with AI integrations is managing different payload formats across providers. OpenAI expects one structure, Anthropic another, AWS Bedrock yet another. ServiceNow's LLM Gateway solves this by giving you a single standardized payload format. You connect your models to the gateway, and it handles the transformation. One integration to maintain instead of many — and it gives you a centralized point for security and governance over which models your instance talks to.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;Why This Pattern Matters&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;This isn't just about expense receipts. The architecture — attachment intake, multimodal extraction, AI-powered structured parsing — is a pattern you can apply to invoice processing, onboarding document verification, insurance claims, or any workflow where humans are currently re-keying information that already exists on a document. The building blocks are all platform-native, and the development effort is surprisingly light.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;Check out the full episode for Tushar's complete walkthrough, including the business rule code, the REST message configuration, and the Now Assist skill prompt.&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 16 Apr 2026 10:34:00 GMT</pubDate>
    <dc:creator>SujanDutta</dc:creator>
    <dc:date>2026-04-16T10:34:00Z</dc:date>
    <item>
      <title>The art of 'Auto data extraction from Images using ServiceNow AI'</title>
      <link>https://www.servicenow.com/community/developer-advocate-blog/the-art-of-auto-data-extraction-from-images-using-servicenow-ai/ba-p/3526470</link>
      <description>&lt;P&gt;&lt;div class="video-embed-center video-embed"&gt;&lt;iframe class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2Flwc0bh8ma70%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dlwc0bh8ma70&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2Flwc0bh8ma70%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="600" height="337" scrolling="no" title="Learn the art of Auto data extraction from Images using ServiceNow AI." frameborder="0" allow="autoplay; fullscreen; encrypted-media; picture-in-picture" allowfullscreen="true"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;If you've ever submitted an expense report, you know the drill: upload the receipt, then manually type in the vendor name, the amount, the date, the transaction type — all information that's already sitting right there on the receipt. And then someone on the finance team has to eyeball both the receipt and the form to make sure everything matches. In 2026, that workflow is long overdue for an upgrade.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;In this episode, Tushar Mishra — a ServiceNow MVP with over a decade of experience and deep expertise in AI integrations — walks through a solution he built that reduces the entire claim submission process to a single click.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt;How It Works&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;The user opens a ServiceNow catalog form (on mobile or desktop), attaches a photo of their receipt, and hits submit. That's it. Their job is done.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;Behind the scenes, a business rule fires on record insertion. It grabs the attachment, converts the image file to base64 (since you can't send a file directly over a REST call), and sends it to OpenAI's multimodal vision model. The model reads the image — even if it's blurry, crumpled, or in a different language — and returns all the extracted text back to ServiceNow.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;At that point, an analyst can click a "Populate Claims Data" button, which triggers a Now Assist analysis skill. The skill takes that raw extracted text and maps it into structured fields: transaction amount, date, type, vendor name, and location. The prompt is remarkably simple — just one line of instruction plus a format example — because Now Assist is fine-tuned on ServiceNow's own data and understands the platform's table structures natively.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;Customisation Is Straightforward&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;Need to extract different fields? Just update the analysis skill prompt. Want to add a custom field like "cost center" or "project code"? No additional coding required — adjust the skill, and the structured output adapts. That's the advantage of building on Now Assist rather than rolling your own parsing logic.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;Multi-Language Support Out of the Box&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;Tushar demoed a Spanish-language receipt during the session, and the system handled it without any configuration changes. OpenAI's multimodal model understands multiple languages natively, so receipts in Spanish, French, or other languages are extracted and parsed just the same. For teams that deal with vendors across geographies, this is a big deal.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;A Quick Word on LLM Gateway&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;One of the practical challenges with AI integrations is managing different payload formats across providers. OpenAI expects one structure, Anthropic another, AWS Bedrock yet another. ServiceNow's LLM Gateway solves this by giving you a single standardized payload format. You connect your models to the gateway, and it handles the transformation. One integration to maintain instead of many — and it gives you a centralized point for security and governance over which models your instance talks to.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;Why This Pattern Matters&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;This isn't just about expense receipts. The architecture — attachment intake, multimodal extraction, AI-powered structured parsing — is a pattern you can apply to invoice processing, onboarding document verification, insurance claims, or any workflow where humans are currently re-keying information that already exists on a document. The building blocks are all platform-native, and the development effort is surprisingly light.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;Check out the full episode for Tushar's complete walkthrough, including the business rule code, the REST message configuration, and the Now Assist skill prompt.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2026 10:34:00 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-advocate-blog/the-art-of-auto-data-extraction-from-images-using-servicenow-ai/ba-p/3526470</guid>
      <dc:creator>SujanDutta</dc:creator>
      <dc:date>2026-04-16T10:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: The art of 'Auto data extraction from Images using ServiceNow AI'</title>
      <link>https://www.servicenow.com/community/developer-advocate-blog/the-art-of-auto-data-extraction-from-images-using-servicenow-ai/bc-p/3527423#M2668</link>
      <description>&lt;DIV&gt;This is a fantastic use of Now Assist and multimodal AI. Turning a painful expense workflow into a single click is exactly the kind of experience upgrade users expect in 2026. Great work!&lt;/DIV&gt;</description>
      <pubDate>Fri, 17 Apr 2026 10:33:54 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-advocate-blog/the-art-of-auto-data-extraction-from-images-using-servicenow-ai/bc-p/3527423#M2668</guid>
      <dc:creator>Community Alums</dc:creator>
      <dc:date>2026-04-17T10:33:54Z</dc:date>
    </item>
  </channel>
</rss>

