LogoLogo
  • 👋START HERE
    • Welcome!
  • ℹ️General
    • Release Notes
      • Full Feature Base Template
      • Services
      • Rule-based Automation
        • June 2025
        • 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
  • Overview
  • Identifier Definitions and Usage
  • Session ID Creation and Lifetime
  • Initialization
  • Parallel Call Handling
  • Release Connection
  • Caller ID Encoding and Privacy
  • Encoding Methodology
  • GDPR Compliance
  • Data Management, Retention and Privacy
  • Session Data Lifecycle
  • Retention Policies
  • Handling Special Cases and Anomalies
  • Anonymous Calls
  • Identifying Returning Callers
  • Caller Recognition
  • Data Utilization
  • Compliance with Data Privacy Regulations

Was this helpful?

Export as PDF
  1. Rule-based Automation
  2. Analytics and Debugging

Managing Caller ID Data

Encryption, Retention, and Compliance

PreviousUnderstanding Conversations and TransactionsNextHangup Events and Triggered Analytics

Last updated 1 year ago

Was this helpful?

Overview

The following outlines the policies and processes for managing caller identification (caller ID) data to ensure privacy, security, and compliance with GDPR and other data protection regulations. It covers the creation of unique identifiers, identification of returning callers, data retention policies, and privacy considerations in line with GDPR standards.

Identifier Definitions and Usage

callid (Call Identifier)
  • Assignment: Automatically assigned upon entry into Parloa's Voice Gateway.

  • Purpose: Facilitates the tracking of specific individual calls for thorough analysis or efficient debugging.

  • Special Characteristics: No persistent storage; changes with each new call to ensure privacy and security.

callerid (Caller Identifier)
  • Assignment: Derived from the incoming call’s telephone number or a unique user ID.

  • Form: Telephone number or a unique alphanumeric string.

  • Purpose: Enables the identification of the caller, supporting personalized interactions and analytics.

  • Special Characteristics: Anonymity Handling - Implements robust procedures for managing anonymous or blocked numbers to uphold privacy while ensuring high service quality.

sessionid (Session Identifier)
  • Assignment: Generated upon the first contact of a caller with a specific release, persisting indefinitely within our system.

  • Form: A one-way hashed string combining the hashed ( + ) callerid and the instanceId of the release.

  • Purpose: Ensures a consistent and secure session management across different calls and interactions.

  • Special Characteristics: Parallel Call Handling - Maintains a consistent sessionid for simultaneous interactions from the same number, while uniquely managing each call with its callid.

conversationid (Conversation Identifier)
  • Assignment: Allocated for each unique conversation initiated within the system.

  • Purpose: Provides a reliable method to retrieve all state information related to a single conversation through the .

  • Special Characteristics: Essential for aggregating and analyzing conversation data, facilitating improvements in conversational AI performance and user experience.

Session ID Creation and Lifetime

Initialization

Parallel Call Handling

For simultaneous calls, it is the callerid that serves as a composite identifier, uniquely managing each interaction by incorporating elements such as the callid. This ensures that every call is distinctly identified, while the sessionid remains consistent throughout the user's lifetime with our system, providing a persistent reference point across multiple interactions, including parallel calls.

Release Connection

Caller ID Encoding and Privacy

Encoding Methodology

GDPR Compliance

The encoding process aligns with GDPR standards, ensuring non-reversible data transformation for privacy protection.

Data Management, Retention and Privacy

Session Data Lifecycle

Session data becomes subject to review and cleaning processes after 30 days of inactivity or at the beginning of a new call. However, the session ID itself is not deleted.

Retention Policies

Data are retained in accordance with data protection regulations. Variables set with a 'session' lifetime are deleted after 30 days of inactivity or at the start of a new call. Variables with a 'user' lifetime remain indefinitely unless manually deleted or purged.

Handling Special Cases and Anomalies

Anonymous Calls

Anonymous or blocked numbers are treated similarly to regular calls, with limitations on certain caller ID-dependent functionalities.

Identifying Returning Callers

Caller Recognition

Our system uses encoded caller IDs, also known as session IDs, to recognize returning callers in future interactions.

Data Utilization

Relevant session and user variable data associated with the encoded caller ID are retrieved for personalized service.

Compliance with Data Privacy Regulations

All processes comply with GDPR, ensuring data privacy and security.

A unique , also referred to as the "user lifetime" context by some, is generated upon the first contact from a particular caller with a specific release. This ID is persistently stored in our system and maintained as long as any data associated with a customer tenant exists."

In phone 2 releases, the sessionid is a combination of the hashed (+) callerId and the release's instanceId.

Caller IDs are transformed into unique identifiers through a two-step cryptographic process involving hashing and , enhancing security and privacy. However, it's important to note that while this process is used to create a session ID from a caller ID, the caller ID that typically appears in the frontend is usually just the phone number.

⚙️
SHA256
HMAC
Conversation History API
session ID
SHA256
HMAC
SHA256
HMAC