Skip to main content

Lead Disqualified

When to Use

The lead_disqualified event should be triggered when leads are determined to not meet qualification criteria or business requirements, enabling accurate funnel analysis and qualification process optimization.

Budget Constraints
When leads indicate budget limitations that fall below minimum project or product requirements during discovery conversations.

Timing Misalignment
When leads have unrealistic timelines, no immediate need, or decision-making processes that don't align with business cycles.

Authority Issues
When leads lack decision-making authority, budget approval rights, or influence within their organization for purchase decisions.

Poor Fit Assessment
When leads don't match ideal customer profiles in terms of company size, industry, geographic location, or use case requirements.

Competitor Preference
When leads indicate strong preference for competitors, existing vendor relationships, or alternative solutions that better meet their needs.

Complete Reference

event object required

name string required

info

Use only static value lead_disqualified for `event.name'.

name: "lead_disqualified"

value number recommended

info

Event value in decimal format.

Represent the potential value that was lost due to disqualification.

value: 0.00

currency string required

info

Currency code that specifies the currency in which all monetary values from any object associated with this event are expressed.

Note: This value can be overridden in nested objects if they contain their own value key with a currency specified.

currency: "USD"

exchange_rate number

info

Custom exchange rate for multi-currency. Default has value 1.

Note: This value can be overridden in nested objects if they contain their own value key with a currency specified.

exchange_rate: 1

id string required

info

Event ID — required for any actions that require deduplication or uniqueness. Represents the unique identifier of an action ID used in your system.

id: "UNIQUE_DISQUALIFICATION_ID_123"

context object

info

Use only if exists new data. View complete Context Object documentation

url string required-if-applicable

info

Complete URL of the current page including all parameters

SPA Applications: context.url is particularly valuable for Single Page Applications where URL changes don’t automatically trigger page context updates. Manual implementation ensures accurate tracking of page transitions and user navigation within SPA frameworks.

url:"https://shop.example.com/products/laptop?color=silver&storage=512gb&utm_source=google"
warning

URL Parameter Sensitivity: Be mindful of sensitive information in URLs. Query parameters may contain personal identifiers, session tokens, or private information that should be handled according to privacy regulations.

page_type string recommended

info

Type of page (product, home ...)

page_type: "product"

environment string recommended

info

Allowed values: prod, dev

environment: "prod"

user object recommended

id string recommended

info

Unique customer identifier in your system.

id: "CUSTOMER_INTERNAL_ID"

email string|array recommended

info

Customer email address(es) provided in plaintext or as SHA-256 hashed values.

email: "[email protected]" 
// or
email: ["[email protected]", "[email protected]"]
// or
email: ["3e1ufd1rdnh8l1rfz6xlreyw2yryd4zrf8zsk1pxh2x8wbsp2mw1g93rs5nx68dq"]

phone string|array recommended

info

Customer phone number(s) in E.164 format (plaintext) or as SHA-256 hashed values.

phone: "+40712345678"
// or
phone: ["+40712345678", "+4079876543"]
// or
phone: ["unw5r66oikql4n4tlg2c54bkd2npephsbwwhxuoxreu6ph8uv6k424y9x15opy9y"]

first_name string recommended

info

Customer first name

first_name: "John"

last_name string recommended

info

Customer last name

last_name: "Doe"

country string

info

Country name or ISO country code

country: "Romania"

region string recommended

info

State, province, or region name

region: "Bucuresti"

city string recommended

info

City or locality name

city: "Bucuresti"

street string

info

Street address including number

street: "Strada Principala 1"

postal_code string

info

Postal code or ZIP code

postal_code: "700000"

orders_total_number number recommended

info

Cumulative number of orders placed by this user

orders_total_number: 5

orders_canceled_number number recommended

info

Cumulative number of orders placed and canceled by this user

orders_canceled_number: 0

orders_total_value number recommended

info

Cumulative lifetime user orders value (decimal format: 2500.50)

orders_total_value: 1234.99

orders_refunded_value number recommended

info

Cumulative lifetime user orders value canceled (decimal format: 2500.50)

orders_refunded_value: 250.99

predicted_value number

info

Predicted lifetime value of a customer for your business

predicted_value: 100.99

created_at number recommended

info

Timestamp in milliseconds since Unix epoch representing the first time the user was recorded

created_at: 1754926521690

properties object recommended

info

Custom Customer Properties Examples

User Segmentation

Use the properties object to store custom user attributes, with property names defined by each business as needed, that enable advanced segmentation, personalization, and analytics across your marketing campaigns.

properties: {
customer_type: "returning",
membership_level: "platinum",
preferred_category: ["electronics", "fashion"],
last_purchase_date: "2024-12-15",
average_order_value: "350.00",
payment_method_preference: "card",
registration_date: "2023-06-15"
}

properties object recommended

info

Custom Event Properties Examples

properties: {
cancel_reason: "returning",
}

Object Examples

These examples demonstrate the complete data object structure for the lead_disqualified event. Use the complete example for detailed implementations or the minimal example for quick integrations.

{
"event": {
"name": "lead_disqualified",
"value": 0.00,
"currency": "USD",
"exchange_rate": 1,
"id": "DISQUALIFIED_LEAD_789",
"properties": {
"disqualification_reason": "budget_constraints",
"disqualification_method": "discovery_call",
"lead_score_at_disqualification": 45,
"days_in_pipeline": 7,
"touchpoints_before_disqualification": 5,
"sales_rep_notes_added": true,
"potential_future_opportunity": true,
"nurture_campaign_assigned": "budget_education",
"competitor_mentioned": "none",
"follow_up_scheduled": false
}
},
"context": {
"environment": "prod",
"data_source": "crm_system",
"user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36",
"overide_ip": "198.51.100.45",
"url": "https://crm.example.com/leads/disqualification",
"landing_url": "https://example.com/pricing",
"referring_url": "https://google.com/search"
},
"user": {
"id": "LEAD_456789",
"email": ["[email protected]"],
"phone": ["+1555111222"],
"first_name": "David",
"last_name": "Wilson",
"country": "United Kingdom",
"region": "England",
"city": "London",
"street": "789 Innovation Street, Unit 3",
"postal_code": "SW1A 1AA",
"properties": {
"job_title": "Founder",
"company_industry": "technology",
"company_size": "1-10",
"annual_revenue": "under_1M",
"decision_maker": true,
"budget_authority": false,
"preferred_language": "en",
"lead_source": "google_ads",
"disqualification_status": "budget_insufficient"
}
}
}

Implementation Methods

These examples show how to send the data objects using different implementation approaches. Choose the method that best fits your technical setup.

// Web tracking implementation
window.reshape = window.reshape || [];

// Send the complete data object
reshape.push({
"event": {
"name": "lead_disqualified",
"value": 0.00,
"currency": "USD",
"id": "DISQUALIFIED_LEAD_789"
},
"context": {
"environment": "prod",
"data_source": "crm_system"
},
"user": {
"email": "[email protected]",
"new_customer": true
}
});