LeadSquared website screenshot

LeadSquared

LeadSquared is a marketing automation and CRM platform that helps businesses capture, manage, nurture, and convert leads across sales, marketing, and service workflows. It offers Sales CRM, Service CRM, marketing automation, field force automation, and a no-code/low-code platform for building industry-specific customer experiences. The LeadSquared REST API provides access to core platform resources like leads, opportunities, activities, tasks, and users using API key authentication.

1 APIs 0 Features
Marketing AutomationCRMSales AutomationLead ManagementCustomer EngagementField Force Automation

APIs

LeadSquared REST API

REST API for managing leads, opportunities, activities, tasks, users, campaigns, and other CRM resources in LeadSquared. Includes Sales CRM, Service CRM, Async, and Portal APIs ...

Collections

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
💰
Pricing
Pricing
📝
Signup
Signup

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: LeadSquared REST API
  version: '2.0'
request:
  auth:
    type: apikey
    key: accessKey
    value: '{{accessKey}}'
    placement: query
items:
- info:
    name: Leads
    type: folder
  items:
  - info:
      name: Create a lead
      type: http
    http:
      method: POST
      url: https://{host}/v2/LeadManagement.svc/Lead.Create
      body:
        type: json
        data: '{}'
    docs: 'Create a new lead in LeadSquared. At least one unique field

      (such as EmailAddress or Phone) must be provided.

      '
  - info:
      name: Get a lead by ID
      type: http
    http:
      method: GET
      url: https://{host}/v2/LeadManagement.svc/Leads.GetById
      params:
      - name: id
        value: ''
        type: query
        description: Unique identifier of the lead
    docs: Retrieve a single lead by its unique ProspectID.
  - info:
      name: Quick search leads
      type: http
    http:
      method: GET
      url: https://{host}/v2/LeadManagement.svc/Leads.GetByQuickSearch
      params:
      - name: key
        value: ''
        type: query
        description: Search value
    docs: 'Search leads by FirstName, LastName, EmailAddress, Phone, Mobile,

      Company, City, or Country. Mirrors the in-app Quick Search box.

      '
- info:
    name: Activities
    type: folder
  items:
  - info:
      name: Post an activity on a lead
      type: http
    http:
      method: POST
      url: https://{host}/v2/ProspectActivity.svc/Create
      body:
        type: json
        data: '{}'
    docs: 'Create a custom activity event against a lead. The

      RelatedProspectId identifies the lead, ActivityEvent is the

      configured event code.

      '
bundled: true