v1

latestOpenAPI 3.0.32026-07-24156161.2 MB
Dispatch Automation (Recomended)

Dispatch Leads

Dispatch leads to Dialer

This endpoint enables you to push leads into the Dialer system programmatically. It leverages the Dialer's remote adapter architecture, allowing seamless integration with your sources, such as CRM systems.

Key Features:

  • Specify adapter and import group for each batch of leads.

  • Automatically applies lead lifecycle updates and weight prioritization.

  • Supports priority automation for outbound calls.

Learn more about integrating remote adapter via API here.

Request params
  • adapter_id - your Dialer adapter id

  • import_group_id - your import group is related to the Dialer adapter.

Request body:

JSON with the following allowed possible lead fields:

id (your original identifier), first_name, last_name, phone, campaign, source, affiliate, country, language, status (your dedicated statuses list from /statuses), agent, email, desk, business_unit, registration_date, last_updated_at, last_login_date, first_deposit_date

===

get/{adapter_id}/{import_group_id}/leads

Request body

affiliatestring
agentstring
business_unitboolean
campaignstring
countrystring
deskstring
emailstring
first_deposit_datestring
first_namestring
idstring
languagestring
last_login_datestring
last_namestring
last_updated_atstring
phonestring
registration_datestring
sourcestring
statusstring

Example request

[
  {
    "affiliate": "svr",
    "agent": "test",
    "business_unit": false,
    "campaign": "conversion 2",
    "country": "Germany",
    "desk": "english1",
    "email": "test@domain.com",
    "first_deposit_date": "2020-01-20 13:20:00",
    "first_name": "Shon",
    "id": "156015",
    "language": "English",
    "last_login_date": "2020-01-20 13:20:00",
    "last_name": "jacson",
    "last_updated_at": "2020-01-20 13:20:00",
    "phone": "4977123456",
    "registration_date": "2020-01-20 13:20:00",
    "source": "102030",
    "status": "new"
  },
  {
    "affiliate": "ETC",
    "agent": "test",
    "business_unit": false,
    "campaign": "conversion 5",
    "country": "United States",
    "desk": "english1",
    "email": "test@domain.com",
    "first_deposit_date": "2020-01-20 13:20:00",
    "first_name": "Shiran",
    "id": "181091",
    "language": "English",
    "last_login_date": "2020-01-20 13:20:00",
    "last_name": "Freez",
    "last_updated_at": "2020-01-20 13:20:00",
    "phone": "12120001414",
    "registration_date": "2020-01-20 13:20:00",
    "source": "10888",
    "status": "new"
  }
]

Response

Successful operation

Example response

{
  "156015": {
    "success": true
  },
  "181091": {
    "success": true
  }
}
All 156 operations