Fetch List of Lead Lists

This API allows you to fetch list of lead lists.

Sample Request

curl --request GET \
     --url https://api-smartflo.tatateleservices.com/v1/broadcast/lists \
     --header 'accept: application/json'

📘 Important!

Before we begin, note that the * sign denotes the mandatory variables in each table.

Sample Response

[
  {
    "id": 8668,
    "name": "Dialer dynamic field list",
    "description": "Dialer dynamic field list",
    "sensitive_field_map": [
      5,
      6,
      7
    ],
    "field_map": [
      "Phone Number",
      "Name",
      "Email Id",
      "Address",
      "Company Name",
      "Alternate Phone Number",
      "DOB",
      "Credit Score",
      "Nature of Business"
    ],
    "in_process": 0,
    "assigned_to": null,
    "outbound_skill_based_routing": {
      "enabled": false,
      "skill_list": null
    }
  },

Response Variables

The response returned is as following:

Variable NameDescriptionData Type
idUnique ID of the broadcast listInteger
nameName of the broadcastString
descriptionDescription Related to broadcast.String
sensitive_field_mapNumber of fields mapped with the list that are sensitive.String
field_mapNumber of fields mapped with the list.String
in_processWhether the status of the list is active or inactive. For example: PROCESS_ACTIVE => 1, self:: PROCESS_INACTIVE => 0Integer
assigned_toReturns the ID of broadcast on which this list is assigned to.Integer
outbound_skill_based_routing.enabledWhether skill list is mapped against the lead list or not.Boolean.
outbound_skill_based_routing.skill_listReturn the ID and name of the skill list.String.
Language
Click Try It! to start a request and see the response here!