LogoLogo
  • đź‘‹START HERE
    • Welcome!
  • ℹ️General
    • Release Notes
      • Full Feature Base Template
      • Services
      • Rule-based Automation
        • May 2025
        • February 2025
        • January 2025
        • December 2024
        • November 2024
        • October 2024
        • September 2024
        • August 2024
        • July 2024
        • June 2024
        • May 2024
        • April 2024
        • March 2024
        • February 2024
        • January 2024
        • 2023
        • 2022
        • 2021
        • Dialog Design Update
    • Glossary of Terms
    • Authentication Methods
      • SSO (Single Sign-On)
      • Built-In User Management
    • Acceptable Use Policy
  • ⚙️Rule-based Automation
    • Overview
      • Account Settings
        • Profile
        • Team
        • Roles and Permissions
          • User Management
          • Project Permissions
      • Basic Concepts
        • Project Management
        • Version Management
        • Multi-Lingual Bots
          • Supported Languages
        • Managing User Interactions
          • Unexpected User Input
          • No User Input
    • Dialog Interface
      • Blocks
        • Conversation Logic
          • Start Conversation
          • Global
          • State
          • Intermediate Response
          • To Previous State
          • End Conversation
        • Subdialog
          • Reusable Subdialogs
        • Phone
          • Continue Listening
          • Call Control
        • Technical Logic
          • Service
          • Condition
          • Storage
        • Other
          • Note
      • Speech Assets
        • Intents
          • Utterances
          • Descriptions
        • Slots
          • Custom Slots
            • List Slots
            • Machine Learning Slots
            • Regex Slots
            • LLM Slots
          • Prebuilt Slots
            • DTMF Slot
        • Text Snippets
        • Dictionary
      • Variables
        • Intents
        • Slots
        • Storage
        • Text Snippets
        • Environments
        • Platform
        • Context
      • Services
        • Service Integration Guide
        • Service Development
        • Service Branches and Error Handling
        • Public Services
          • Date and Birthdate Recognition
          • Spelling Post-Processing for Phone
          • IBAN Validation
          • License Plate Validation
          • Address Search
          • Street Names per Postal Code
          • Email Service
          • SMS Service
          • API Adapter
          • Salesforce-Flow Connector
          • Opening Hours
          • Speech-to-Text Hints
          • Fuzzy Match Names
          • Delay Service
      • Debugger
        • Phone 2
        • WhatsApp
        • Textchat 2
    • Environments Interface
      • Service Keys
    • Deployments Interface
      • Creating a Release
      • Editing a Release
    • Text-to-Speech
      • Azure
      • ElevenLabs
      • OpenAI via Azure (Preview)
      • SSML
        • Audio
        • Break
        • Emphasis
        • Prosody
        • Say-as
        • Substitute
        • Paragraph and Sentence
        • Voice
    • Autocomplete
    • Parloa APIs
      • CallData Service and API
      • Conversation History API
      • Textchat V2 API
    • Phone Integrations
      • Genesys Cloud
        • Setting up the SIP Trunk
        • Sending/Receiving UUI Data
        • Creating a Script to Display UUI
      • SIP
      • Tenios
        • Setting Up an Inbound Connection
        • Setting Up an Outbound Connection
        • Transferring a Call
      • Twilio
      • Public IPs and Port Information
    • AI Integration Overview
      • Dual Intent Recognizer (DIR)
      • Dual Tone Multifrequency (DTMF) Intent
    • Analytics and Debugging
      • Understanding Conversations and Transactions
      • Managing Caller ID Data
      • Hangup Events and Triggered Analytics
      • Analytics Transactions: Data Structure and Insights
      • Dialog Analytics
      • Audit Logs
      • Parloa-hosted Analytics
    • Data Privacy
      • Anonymizing Personally Identifiable Information
    • NLU Training
      • NLU Training Best Practices
    • How To
      • Create a Scalable and Maintainable Bot Architecture
      • Implement OnError Loop Handling
      • Resolve the 'Service Unavailable' Error
    • Reference
      • Parloa Keyboard Shortcuts
      • Frequently Asked Questions (FAQ)
      • JavaScript Cheat Sheet
        • Using Regular Expressions (Regex)
  • đź§ Knowledge Skill
    • Introduction
    • Knowledge Collections
    • Knowledge Sources
    • Knowledge Skill Setup
      • Step 1 – Create a Knowledge Skill Agent
      • Step 2 – Configure a Knowledge Skill Agent
      • Step 3 – Configure a Knowledge Skill Agent
Powered by GitBook
On this page
  • Input Formatting
  • Service Configuration
  • Example Inputs

Was this helpful?

Export as PDF
  1. Rule-based Automation
  2. Dialog Interface
  3. Services
  4. Public Services

License Plate Validation

Available lang-locales: de (Germany), ch (Switzerland), and en (North America)

Parloa’s License Plate Validation Service is designed to process and validate license plates from specified regions – Germany (de), Switzerland (ch), and North America (NA). It checks for common mis-transcriptions between numbers and letters, validates against region-specific license plate formats, and returns the processed input.

Input Formatting

Input can be provided as a non-delimited string, like “B ER 1234,” or delimited with a “minus” – “B minus ER 1234.” The latter helps reduce ambiguity, especially beneficial when using phoneV2, as transcription may not reliably add spaces due to factors like talking speed.

For North American regions, separate the region identifier (e.g., state or province) and the license plate, then input both parameters into the service.

Hint: Retain spaces in states or provinces with multi-word names, such as “District of Columbia” or “Nova Scotia.”

Service Configuration

  • single : A valid single result was found.

  • multi: Multiple candidate license plates were found due to ambiguous input or multiple results like “Frankfurt.”

  • fail: No valid license plate was detected.

  • utterance: The raw utterance of the caller. Retrieve it in a storage block with intent.rawPlatformRequestBody.text (phoneV2 only), and use the storage variable subsequently in the service call.

  • region: Select between “de” (default), “ch” for Swiss, or a North American region* for license plate recognition. Note: For North American regions, your input to the region parameter should be the name of the state or province.

  • single: The single valid result formatted without delimiter

  • ssml: The result wrapped in <say-as interpret-as="characters">...</say-as> SSML, with groups separated by short breaks. Returned as a JSON-stringified array.

  • list: In case of ambiguous input or multiple results, a JSON-stringified array of candidates is provided.

  • countyList: In case of ambiguous input or multiple results, a JSON-stringified array of county names is provided.

For ambiguous input, the index of array results is aligned between all output parameters (list, countyList, ssml).

  • URL: https://parloaservices.azurewebsites.net/api/ValidateLicensePlate?clientId=<CLIENT_ID>

  • Header: x-functions-key: <AUTHCODE>

For authentication, replace <AUTHCODE> and <CLIENTID> with the values provided by your Parloa representative.

Example Inputs

License plate from region de:

{
    "input": {
        "region": "de",
        "utterance": "KN AX 45"
    }
}

License plate from region North America:

{
    "input": {
        "region": "District of Columbia",
        "utterance": "AG5766"
    }
}
PreviousIBAN ValidationNextAddress Search

Last updated 1 year ago

Was this helpful?

⚙️