get https://api-smartflo.tatateleservices.com/v1/broadcast/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 Name | Description | Data Type |
---|---|---|
id | Unique ID of the broadcast list | Integer |
name | Name of the broadcast | String |
description | Description Related to broadcast. | String |
sensitive_field_map | Number of fields mapped with the list that are sensitive. | String |
field_map | Number of fields mapped with the list. | String |
in_process | Whether the status of the list is active or inactive. For example: PROCESS_ACTIVE => 1, self:: PROCESS_INACTIVE => 0 | Integer |
assigned_to | Returns the ID of broadcast on which this list is assigned to. | Integer |
outbound_skill_based_routing.enabled | Whether skill list is mapped against the lead list or not. | Boolean. |
outbound_skill_based_routing.skill_list | Return the ID and name of the skill list. | String. |