File: //home/arjun/projects/buyercall_forms/buyercall/deploy/dumps/dev.sql
--
-- PostgreSQL database dump
--
SET statement_timeout = 0;
SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
SET search_path = public, pg_catalog;
--
-- Name: billing_types; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE billing_types AS ENUM (
'partnership',
'account',
'invoice'
);
--
-- Name: block_states; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE block_states AS ENUM (
'blocked',
'unblocked'
);
--
-- Name: duration_types; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE duration_types AS ENUM (
'forever',
'once',
'repeating'
);
--
-- Name: label_types; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE label_types AS ENUM (
'login',
'signup',
'billing',
'email',
'request',
'other'
);
--
-- Name: role_types; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE role_types AS ENUM (
'guest',
'member',
'admin',
'agent',
'partner',
'sysadmin'
);
--
-- Name: status_types; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE status_types AS ENUM (
'unread',
'open',
'contacted',
'closed'
);
--
-- Name: subscription_status; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE subscription_status AS ENUM (
'inactive',
'active',
'suspended',
'closed'
);
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: agent_groups; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE agent_groups (
group_id integer NOT NULL,
agent_id integer NOT NULL
);
--
-- Name: agent_schedules; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE agent_schedules (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
agent_id integer NOT NULL,
is_active boolean NOT NULL,
day integer NOT NULL,
available_from character varying(8) DEFAULT '08:00:00'::character varying NOT NULL,
available_to character varying(8) DEFAULT '17:00:00'::character varying NOT NULL,
partnership_account_id integer NOT NULL
);
--
-- Name: agent_schedules_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE agent_schedules_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: agent_schedules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE agent_schedules_id_seq OWNED BY agent_schedules.id;
--
-- Name: agents; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE agents (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
user_id integer,
partnership_account_id integer NOT NULL,
firstname character varying(128) DEFAULT ''::character varying NOT NULL,
lastname character varying(128) DEFAULT ''::character varying NOT NULL,
title character varying(128),
email character varying(254) DEFAULT ''::character varying NOT NULL,
phonenumber character varying(20) DEFAULT ''::character varying NOT NULL,
mobile character varying(20) DEFAULT ''::character varying NOT NULL,
extension integer,
department character varying(128),
description character varying DEFAULT ''::character varying,
is_group boolean DEFAULT false NOT NULL,
timezone character varying DEFAULT 'US/Central'::character varying NOT NULL,
all_hours boolean,
deactivated_on timestamp without time zone,
is_deactivated boolean DEFAULT false NOT NULL
);
--
-- Name: agents_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE agents_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: agents_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE agents_id_seq OWNED BY agents.id;
--
-- Name: alembic_version; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE alembic_version (
version_num character varying(32) NOT NULL
);
--
-- Name: api_tokens; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE api_tokens (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
is_active boolean DEFAULT false NOT NULL,
api_token_hash character varying(64) NOT NULL
);
--
-- Name: api_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE api_tokens_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: api_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE api_tokens_id_seq OWNED BY api_tokens.id;
--
-- Name: audio_urls; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE audio_urls (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
inbound_id integer,
widget_guid character varying(128),
whisper_message_type character varying(128) DEFAULT ''::character varying NOT NULL,
audio_url character varying(256) DEFAULT ''::character varying NOT NULL,
is_enabled boolean DEFAULT false NOT NULL
);
--
-- Name: audio_urls_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE audio_urls_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: audio_urls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE audio_urls_id_seq OWNED BY audio_urls.id;
--
-- Name: block_numbers; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE block_numbers (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
partnership_accounts_id integer NOT NULL,
status block_states DEFAULT 'blocked'::block_states NOT NULL,
phonenumber character varying(20) DEFAULT ''::character varying NOT NULL,
is_global_exclusion boolean DEFAULT false NOT NULL
);
--
-- Name: block_numbers_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE block_numbers_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: block_numbers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE block_numbers_id_seq OWNED BY block_numbers.id;
--
-- Name: contact_notes; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE contact_notes (
id integer NOT NULL,
created_on timestamp without time zone NOT NULL,
updated_on timestamp without time zone NOT NULL,
contact_id integer NOT NULL,
is_enabled boolean NOT NULL,
text text DEFAULT ''::text,
user_id integer NOT NULL,
partnership_account_id integer NOT NULL
);
--
-- Name: contact_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE contact_notes_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: contact_notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE contact_notes_id_seq OWNED BY contact_notes.id;
--
-- Name: contacts; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE contacts (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
firstname character varying(128) DEFAULT ''::character varying NOT NULL,
lastname character varying(128) DEFAULT ''::character varying NOT NULL,
caller_id character varying(128) DEFAULT ''::character varying NOT NULL,
phonenumber_1 character varying(20) DEFAULT ''::character varying NOT NULL,
phonenumber_2 character varying(20) DEFAULT ''::character varying NOT NULL,
email character varying(64) DEFAULT ''::character varying NOT NULL,
address_1 character varying(128) DEFAULT ''::character varying NOT NULL,
address_2 character varying(128) DEFAULT ''::character varying NOT NULL,
city character varying(64) DEFAULT ''::character varying NOT NULL,
state character varying(64) DEFAULT ''::character varying NOT NULL,
zip character varying(10) DEFAULT ''::character varying NOT NULL,
country character varying(64) DEFAULT ''::character varying NOT NULL,
ip character varying(32) DEFAULT ''::character varying NOT NULL,
partnership_account_id integer NOT NULL,
is_do_not_call boolean DEFAULT false NOT NULL,
is_unsubscribe boolean DEFAULT false NOT NULL,
agent_assigned character varying(128),
status character varying(128) DEFAULT 'no status'::character varying,
agent_id integer,
birthday character varying(32) DEFAULT ''::character varying NOT NULL,
avatar character varying(512) DEFAULT ''::character varying NOT NULL,
large_avatar character varying(512) DEFAULT ''::character varying NOT NULL,
api_source boolean DEFAULT false NOT NULL,
api_token_id integer,
is_deactivated boolean DEFAULT false NOT NULL,
deactivated_on timestamp without time zone
);
--
-- Name: contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE contacts_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: contacts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE contacts_id_seq OWNED BY contacts.id;
--
-- Name: coupons; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE coupons (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
code character varying(32),
duration duration_types DEFAULT 'forever'::duration_types NOT NULL,
amount_off integer,
percent_off integer,
currency character varying(8),
duration_in_months integer,
max_redemptions integer,
redeem_by timestamp with time zone,
times_redeemed integer NOT NULL,
valid boolean DEFAULT true NOT NULL
);
--
-- Name: coupons_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE coupons_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: coupons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE coupons_id_seq OWNED BY coupons.id;
--
-- Name: credit_cards; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE credit_cards (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
brand character varying(32),
last4 integer,
exp_date date,
is_expiring boolean DEFAULT false NOT NULL,
cc_name character varying(128),
is_deleted boolean DEFAULT false NOT NULL
);
--
-- Name: credit_cards_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE credit_cards_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: credit_cards_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE credit_cards_id_seq OWNED BY credit_cards.id;
--
-- Name: external_api_service_providers; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE external_api_service_providers (
created_on timestamp with time zone,
updated_on timestamp with time zone,
id integer NOT NULL,
name character varying(128) NOT NULL
);
--
-- Name: external_api_service_providers_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE external_api_service_providers_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: external_api_service_providers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE external_api_service_providers_id_seq OWNED BY external_api_service_providers.id;
--
-- Name: external_api_service_providers_partnership_account_tie; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE external_api_service_providers_partnership_account_tie (
created_on timestamp with time zone,
updated_on timestamp with time zone,
external_api_service_provider_id integer NOT NULL,
partnership_account_id integer NOT NULL,
username character varying(128) DEFAULT ''::character varying NOT NULL,
password character varying(128) DEFAULT ''::character varying NOT NULL,
secret character varying(128) DEFAULT ''::character varying NOT NULL,
url character varying(128) DEFAULT ''::character varying NOT NULL,
token_url character varying(128) DEFAULT ''::character varying NOT NULL,
client_id character varying(128) DEFAULT ''::character varying NOT NULL,
source character varying(128) DEFAULT ''::character varying NOT NULL,
app_source character varying(128) DEFAULT ''::character varying NOT NULL
);
--
-- Name: external_form_fields; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE external_form_fields (
form_id integer NOT NULL,
"position" integer NOT NULL,
field_id character varying(50) NOT NULL,
display_name character varying NOT NULL,
show_in_table boolean DEFAULT false NOT NULL
);
--
-- Name: external_forms; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE external_forms (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
public_id character varying(50) NOT NULL,
display_name character varying(100) DEFAULT ''::character varying NOT NULL,
partnership_account_id integer,
routing_id integer,
is_external_api_auto boolean DEFAULT false NOT NULL,
email_addresses json DEFAULT '{}'::json NOT NULL,
adf_email_addresses json DEFAULT '{"emails": ""}'::json NOT NULL,
email_subject character varying(64) DEFAULT ''::character varying NOT NULL,
partial_data_email boolean DEFAULT true NOT NULL,
full_submit_email boolean DEFAULT false NOT NULL,
send_auto_email boolean DEFAULT false NOT NULL,
send_auto_email_subject character varying(128) DEFAULT ''::character varying NOT NULL,
send_auto_email_msg character varying(512) DEFAULT ''::character varying NOT NULL,
send_auto_sms boolean DEFAULT false NOT NULL,
send_auto_sms_inbound_id integer,
send_auto_sms_msg character varying(256) DEFAULT ''::character varying NOT NULL
);
--
-- Name: external_forms_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE external_forms_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: external_forms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE external_forms_id_seq OWNED BY external_forms.id;
--
-- Name: form_lead_fields; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE form_lead_fields (
lead_id integer NOT NULL,
field_id character varying(50) NOT NULL,
field_value character varying
);
--
-- Name: form_leads; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE form_leads (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
form_id integer NOT NULL,
partnership_account_id integer,
external_api_lead_id character varying(50),
email_sent boolean DEFAULT false NOT NULL,
contact_id integer
);
--
-- Name: form_leads_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE form_leads_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: form_leads_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE form_leads_id_seq OWNED BY form_leads.id;
--
-- Name: form_logs; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE form_logs (
posted_on timestamp with time zone NOT NULL,
id integer NOT NULL,
form_id integer NOT NULL,
form_lead_id integer NOT NULL,
status character varying(32) DEFAULT 'fail'::character varying NOT NULL,
description character varying(1024) DEFAULT ''::character varying NOT NULL
);
--
-- Name: form_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE form_logs_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: form_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE form_logs_id_seq OWNED BY form_logs.id;
--
-- Name: holdmusic; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE holdmusic (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
partnership_account_id integer NOT NULL,
uuid character varying,
filename character varying,
url character varying
);
--
-- Name: holdmusic_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE holdmusic_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: holdmusic_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE holdmusic_id_seq OWNED BY holdmusic.id;
--
-- Name: invoices; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE invoices (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
partnership_id integer,
partnership_account_id integer,
credit_card_id integer,
plan character varying(128),
receipt_number character varying(128),
description character varying(128),
period_start_on date,
period_end_on date,
currency character varying(8),
tax integer,
tax_percent double precision,
total integer
);
--
-- Name: invoices_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE invoices_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: invoices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE invoices_id_seq OWNED BY invoices.id;
--
-- Name: issues; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE issues (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
status status_types DEFAULT 'unread'::status_types NOT NULL,
label label_types DEFAULT 'login'::label_types NOT NULL,
email character varying(255) DEFAULT ''::character varying NOT NULL,
question text,
partnership_id integer,
partnership_account_id integer
);
--
-- Name: issues_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE issues_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: issues_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE issues_id_seq OWNED BY issues.id;
--
-- Name: lead_notes; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE lead_notes (
id integer NOT NULL,
lead_id integer NOT NULL,
created_on timestamp without time zone NOT NULL,
updated_on timestamp without time zone NOT NULL,
is_enabled boolean NOT NULL,
text text DEFAULT ''::text,
user_id integer NOT NULL
);
--
-- Name: lead_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE lead_notes_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: lead_notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE lead_notes_id_seq OWNED BY lead_notes.id;
--
-- Name: leads; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE leads (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
partnership_account_id integer NOT NULL,
call_source character varying(50),
status character varying(64) NOT NULL,
progress_status character varying(128) DEFAULT 'new lead'::character varying,
firstname character varying(255) DEFAULT ''::character varying NOT NULL,
caller_id character varying(256) DEFAULT ''::character varying NOT NULL,
lastname character varying(255) DEFAULT ''::character varying NOT NULL,
email character varying(128) DEFAULT ''::character varying NOT NULL,
phonenumber character varying(20) DEFAULT ''::character varying NOT NULL,
my_phone character varying DEFAULT ''::character varying NOT NULL,
question character varying(255) DEFAULT ''::character varying,
duration integer,
starttime timestamp without time zone,
endtime timestamp without time zone,
call_type character varying(10) NOT NULL,
call_sid character varying(128) DEFAULT ''::character varying,
recording_url character varying(1024) DEFAULT ''::character varying,
widget_guid character varying,
inbound_id integer,
agent_id integer,
contact_id integer,
agent_assigned_id integer,
notes text DEFAULT ''::text,
call_count integer DEFAULT 0 NOT NULL,
response_time_seconds double precision,
additional_info json,
transcription_text character varying(1024) DEFAULT ''::character varying,
recording_id character varying(128) DEFAULT ''::character varying
);
--
-- Name: leads_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE leads_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: leads_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE leads_id_seq OWNED BY leads.id;
--
-- Name: messages; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE messages (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
type character varying(32) DEFAULT ''::character varying NOT NULL,
provider character varying(32) DEFAULT ''::character varying NOT NULL,
provider_message_id character varying(64) DEFAULT ''::character varying NOT NULL,
provider_message_date character varying(64) DEFAULT ''::character varying NOT NULL,
"to" character varying(20) DEFAULT ''::character varying NOT NULL,
from_ character varying(20) DEFAULT ''::character varying NOT NULL,
body_text character varying(1024) DEFAULT ''::character varying NOT NULL,
num_media_files character varying(10),
media_url character varying(512),
status character varying(64) DEFAULT ''::character varying NOT NULL,
delivery_code integer,
delivery_description character varying(256),
direction character varying(64) DEFAULT ''::character varying NOT NULL,
inbound_id integer NOT NULL,
partnership_account_id integer NOT NULL,
contact_id integer NOT NULL
);
--
-- Name: messages_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE messages_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE messages_id_seq OWNED BY messages.id;
--
-- Name: partnership_account_group_tie; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE partnership_account_group_tie (
created_on timestamp with time zone,
updated_on timestamp with time zone,
partnership_account_group_id integer NOT NULL,
partnership_account_id integer NOT NULL
);
--
-- Name: partnership_account_groups; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE partnership_account_groups (
created_on timestamp with time zone,
updated_on timestamp with time zone,
id integer NOT NULL,
name character varying(128) NOT NULL
);
--
-- Name: partnership_account_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE partnership_account_groups_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: partnership_account_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE partnership_account_groups_id_seq OWNED BY partnership_account_groups.id;
--
-- Name: partnership_accounts; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE partnership_accounts (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
name character varying(255) DEFAULT ''::character varying NOT NULL,
partnership_id integer,
subscription_id integer,
is_active boolean DEFAULT false NOT NULL,
billing_type billing_types DEFAULT 'partnership'::billing_types NOT NULL,
api_token_id integer,
partner_account_code character varying(64) DEFAULT ''::character varying NOT NULL
);
--
-- Name: partnership_accounts_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE partnership_accounts_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: partnership_accounts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE partnership_accounts_id_seq OWNED BY partnership_accounts.id;
--
-- Name: partnerships; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE partnerships (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
name character varying(255) DEFAULT ''::character varying NOT NULL,
is_active boolean DEFAULT true NOT NULL,
account_invitation_url_token character varying(255) DEFAULT ''::character varying NOT NULL,
subscription_id integer,
logo character varying(2000) DEFAULT ''::character varying NOT NULL,
default_billing_type billing_types DEFAULT 'partnership'::billing_types NOT NULL,
default_provider character varying(10) DEFAULT 'twilio'::character varying NOT NULL,
api_token_id integer,
partner_url character varying(256) DEFAULT ''::character varying NOT NULL,
email_sender character varying(64) DEFAULT ''::character varying NOT NULL
);
--
-- Name: partnerships_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE partnerships_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: partnerships_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE partnerships_id_seq OWNED BY partnerships.id;
--
-- Name: phonenumbers; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE phonenumbers (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
partnership_account_id integer NOT NULL,
phonenumber character varying(20) DEFAULT ''::character varying NOT NULL,
is_local boolean DEFAULT false NOT NULL,
is_tollfree boolean DEFAULT false NOT NULL,
type character varying DEFAULT 'priority'::character varying NOT NULL,
is_active boolean DEFAULT true NOT NULL,
is_callerid boolean DEFAULT false NOT NULL,
friendly_name character varying(128) DEFAULT ''::character varying NOT NULL,
source character varying(256) DEFAULT ''::character varying NOT NULL,
channel character varying(256),
twilio_number_sid character varying(34) DEFAULT ''::character varying NOT NULL,
routings json DEFAULT '{}'::json NOT NULL,
notifications json DEFAULT '{}'::json NOT NULL,
provider character varying(10) NOT NULL,
deactivated_on timestamp without time zone,
is_deactivated boolean DEFAULT false NOT NULL
);
--
-- Name: phonenumbers_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE phonenumbers_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: phonenumbers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE phonenumbers_id_seq OWNED BY phonenumbers.id;
--
-- Name: report_user_tie; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE report_user_tie (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
report_id integer NOT NULL,
user_id integer NOT NULL,
partnership_accounts_id integer,
emails json DEFAULT '{}'::json NOT NULL
);
--
-- Name: reports; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE reports (
id integer NOT NULL,
name character varying(255) DEFAULT ''::character varying NOT NULL
);
--
-- Name: reports_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE reports_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE reports_id_seq OWNED BY reports.id;
--
-- Name: sip_domains; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE sip_domains (
created_on timestamp with time zone,
updated_on timestamp with time zone,
id integer NOT NULL,
domain_id character varying(32) NOT NULL,
name character varying(16) NOT NULL,
description character varying(128) NOT NULL,
provider character varying(32) NOT NULL,
partnership_id integer NOT NULL,
deactivated_on timestamp without time zone,
is_deactivated boolean DEFAULT false NOT NULL,
cloud_id character varying(32) DEFAULT ''::character varying NOT NULL
);
--
-- Name: sip_domains_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE sip_domains_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: sip_domains_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE sip_domains_id_seq OWNED BY sip_domains.id;
--
-- Name: sip_endpoints; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE sip_endpoints (
created_on timestamp with time zone,
updated_on timestamp with time zone,
id integer NOT NULL,
description character varying(128) NOT NULL,
provider character varying(32) NOT NULL,
provider_id character varying(128) NOT NULL,
sip_uri character varying(128) NOT NULL,
enabled boolean DEFAULT true NOT NULL,
inbound_id integer NOT NULL,
partnership_account_id integer NOT NULL,
domain_id integer NOT NULL,
deactivated_on timestamp without time zone,
is_deactivated boolean DEFAULT false NOT NULL,
agent_id integer,
sip_username character varying(64),
sip_password character varying(256),
device_token character varying(256) DEFAULT ''::character varying NOT NULL,
selector character varying(128) DEFAULT ''::character varying NOT NULL,
app_id character varying(64) DEFAULT ''::character varying NOT NULL,
install_id character varying(128) DEFAULT ''::character varying NOT NULL,
imei character varying(64) DEFAULT ''::character varying NOT NULL,
unique_id character varying(64) DEFAULT ''::character varying NOT NULL,
build character varying(64) DEFAULT ''::character varying NOT NULL,
platform character varying(32) DEFAULT ''::character varying NOT NULL,
platform_version character varying(32) DEFAULT ''::character varying NOT NULL,
version character varying(32) DEFAULT ''::character varying NOT NULL,
app_name character varying(32) DEFAULT ''::character varying NOT NULL,
locale character varying(32) DEFAULT ''::character varying NOT NULL,
cpu character varying(32) DEFAULT ''::character varying NOT NULL,
device character varying(32) DEFAULT ''::character varying NOT NULL,
production_build character varying(32) DEFAULT ''::character varying NOT NULL,
last_sms_received_id character varying(32) DEFAULT ''::character varying NOT NULL,
last_sms_sent_id character varying(32) DEFAULT ''::character varying NOT NULL,
qr_url character varying(256) DEFAULT ''::character varying NOT NULL
);
--
-- Name: sip_endpoints_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE sip_endpoints_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: sip_endpoints_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE sip_endpoints_id_seq OWNED BY sip_endpoints.id;
--
-- Name: subscriptions; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE subscriptions (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
credit_card_id integer,
plan character varying(128),
coupon character varying(32),
payment_id character varying(128),
cancelled_subscription_on timestamp with time zone,
usage_current_month integer DEFAULT 0 NOT NULL,
limit_warning_count integer DEFAULT 0 NOT NULL,
twilio_subaccount_sid character varying(128),
status subscription_status DEFAULT 'inactive'::subscription_status NOT NULL
);
--
-- Name: subscriptions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE subscriptions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: subscriptions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE subscriptions_id_seq OWNED BY subscriptions.id;
--
-- Name: users; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE users (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
partnership_id integer,
partnership_account_id integer,
role role_types DEFAULT 'member'::role_types NOT NULL,
is_active boolean DEFAULT true NOT NULL,
username character varying(24),
email character varying(255) DEFAULT ''::character varying NOT NULL,
password character varying(128) DEFAULT ''::character varying NOT NULL,
is_tos_agreed boolean DEFAULT false NOT NULL,
full_feature_access boolean DEFAULT true NOT NULL,
inbound_routing_access boolean DEFAULT true NOT NULL,
outbound_routing_access boolean DEFAULT true NOT NULL,
forms_access boolean DEFAULT true NOT NULL,
external_api_access boolean DEFAULT false NOT NULL,
sign_in_count integer NOT NULL,
current_sign_in_on timestamp with time zone,
current_sign_in_ip character varying(45),
last_sign_in_on timestamp with time zone,
last_sign_in_ip character varying(45),
firstname character varying(128) DEFAULT ''::character varying,
lastname character varying(128) DEFAULT ''::character varying,
phonenumber character varying(20) DEFAULT ''::character varying,
company character varying(256) DEFAULT ''::character varying,
extension integer,
title character varying(128),
department character varying(128),
leads_onboard boolean DEFAULT false NOT NULL,
agents_onboard boolean DEFAULT false NOT NULL,
outbound_onboard boolean DEFAULT false NOT NULL,
inbound_onboard boolean DEFAULT false NOT NULL,
locale character varying(5) DEFAULT 'en'::character varying NOT NULL,
two_factor_auth boolean DEFAULT false NOT NULL,
partnership_account_group_id integer,
two_factor_auth_onboard boolean DEFAULT false NOT NULL
);
--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE users_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE users_id_seq OWNED BY users.id;
--
-- Name: webhooks; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE webhooks (
id integer NOT NULL,
created_on timestamp with time zone,
updated_on timestamp with time zone,
webhook_url character varying(64) NOT NULL,
partnership_id integer NOT NULL,
is_deactivated boolean DEFAULT false NOT NULL,
deactivated_on timestamp without time zone
);
--
-- Name: webhooks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE webhooks_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: webhooks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE webhooks_id_seq OWNED BY webhooks.id;
--
-- Name: widget_agents; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE widget_agents (
widget_id integer NOT NULL,
agent_id integer NOT NULL,
contact_using character varying(10) DEFAULT 'phone'::character varying NOT NULL,
"order" integer
);
--
-- Name: widget_files; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE widget_files (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
guid character varying(36) NOT NULL,
partnership_account_id integer NOT NULL
);
--
-- Name: widgets; Type: TABLE; Schema: public; Owner: -; Tablespace:
--
CREATE TABLE widgets (
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
id integer NOT NULL,
guid character varying NOT NULL,
partnership_account_id integer NOT NULL,
name character varying(128) NOT NULL,
type character varying(50) NOT NULL,
phone_number_id integer,
options json DEFAULT '{}'::json NOT NULL,
email character varying(255),
enabled boolean DEFAULT true NOT NULL
);
--
-- Name: widgets_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE widgets_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: widgets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE widgets_id_seq OWNED BY widgets.id;
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY agent_schedules ALTER COLUMN id SET DEFAULT nextval('agent_schedules_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY agents ALTER COLUMN id SET DEFAULT nextval('agents_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY api_tokens ALTER COLUMN id SET DEFAULT nextval('api_tokens_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY audio_urls ALTER COLUMN id SET DEFAULT nextval('audio_urls_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY block_numbers ALTER COLUMN id SET DEFAULT nextval('block_numbers_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY contact_notes ALTER COLUMN id SET DEFAULT nextval('contact_notes_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY contacts ALTER COLUMN id SET DEFAULT nextval('contacts_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY coupons ALTER COLUMN id SET DEFAULT nextval('coupons_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY credit_cards ALTER COLUMN id SET DEFAULT nextval('credit_cards_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY external_api_service_providers ALTER COLUMN id SET DEFAULT nextval('external_api_service_providers_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY external_forms ALTER COLUMN id SET DEFAULT nextval('external_forms_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY form_leads ALTER COLUMN id SET DEFAULT nextval('form_leads_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY form_logs ALTER COLUMN id SET DEFAULT nextval('form_logs_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY holdmusic ALTER COLUMN id SET DEFAULT nextval('holdmusic_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY invoices ALTER COLUMN id SET DEFAULT nextval('invoices_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY issues ALTER COLUMN id SET DEFAULT nextval('issues_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY lead_notes ALTER COLUMN id SET DEFAULT nextval('lead_notes_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY leads ALTER COLUMN id SET DEFAULT nextval('leads_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY messages ALTER COLUMN id SET DEFAULT nextval('messages_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY partnership_account_groups ALTER COLUMN id SET DEFAULT nextval('partnership_account_groups_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY partnership_accounts ALTER COLUMN id SET DEFAULT nextval('partnership_accounts_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY partnerships ALTER COLUMN id SET DEFAULT nextval('partnerships_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY phonenumbers ALTER COLUMN id SET DEFAULT nextval('phonenumbers_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY reports ALTER COLUMN id SET DEFAULT nextval('reports_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY sip_domains ALTER COLUMN id SET DEFAULT nextval('sip_domains_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY sip_endpoints ALTER COLUMN id SET DEFAULT nextval('sip_endpoints_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY subscriptions ALTER COLUMN id SET DEFAULT nextval('subscriptions_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY webhooks ALTER COLUMN id SET DEFAULT nextval('webhooks_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY widgets ALTER COLUMN id SET DEFAULT nextval('widgets_id_seq'::regclass);
--
-- Data for Name: agent_groups; Type: TABLE DATA; Schema: public; Owner: -
--
COPY agent_groups (group_id, agent_id) FROM stdin;
7 1
7 2
\.
--
-- Data for Name: agent_schedules; Type: TABLE DATA; Schema: public; Owner: -
--
COPY agent_schedules (created_on, updated_on, id, agent_id, is_active, day, available_from, available_to, partnership_account_id) FROM stdin;
2019-01-16 21:58:30.991701+00 2019-01-16 21:58:30.991712+00 9 3 f 0 08:00 AM 17:00 PM 1
2019-01-16 21:58:30.998922+00 2019-01-16 21:58:30.998942+00 15 3 f 6 08:00 AM 17:00 PM 1
2019-04-05 00:09:32.381187+00 2019-08-01 20:45:31.542022+00 57 11 f 6 08:00 AM 17:00 PM 1
2019-01-16 21:53:08.164157+00 2019-09-23 16:38:11.717197+00 8 2 t 6 10:00 AM 22:00 PM 1
2019-01-16 21:53:08.155879+00 2019-09-23 16:39:47.526767+00 4 2 f 2 13:00 PM 16:00 PM 1
2019-03-05 00:31:30.027959+00 2019-03-24 03:02:55.594753+00 16 5 f 0 08:00 AM 17:00 PM 1
2019-03-05 00:31:30.030555+00 2019-03-24 03:02:55.599996+00 17 5 t 1 08:00 AM 17:00 PM 1
2019-03-05 00:31:30.032524+00 2019-03-24 03:02:55.608338+00 18 5 t 2 08:00 AM 17:00 PM 1
2019-03-05 00:31:30.034049+00 2019-03-24 03:02:55.616669+00 19 5 t 3 08:00 AM 17:00 PM 1
2019-03-05 00:31:30.035556+00 2019-03-24 03:02:55.621741+00 20 5 t 4 08:00 AM 17:00 PM 1
2019-03-05 00:31:30.037019+00 2019-03-24 03:02:55.627341+00 21 5 t 5 08:00 AM 17:00 PM 1
2019-03-05 00:31:30.039094+00 2019-03-24 03:02:55.632049+00 22 5 f 6 08:00 AM 17:00 PM 1
2019-03-14 14:38:51.292489+00 2019-03-14 14:38:51.2925+00 30 8 f 0 08:00 AM 17:00 PM 1
2019-03-14 14:38:51.296468+00 2019-03-14 14:38:51.296478+00 36 8 f 6 08:00 AM 17:00 PM 1
2019-03-14 14:38:51.293988+00 2019-03-14 15:42:03.033384+00 31 8 f 1 08:00 AM 17:00 PM 1
2019-03-14 14:38:51.294447+00 2019-03-14 15:42:03.033394+00 32 8 f 2 08:00 AM 17:00 PM 1
2019-03-14 14:38:51.294899+00 2019-03-14 15:42:03.033397+00 33 8 f 3 07:00 AM 20:00 PM 1
2019-03-14 14:38:51.29531+00 2019-03-14 15:42:03.033399+00 34 8 f 4 08:00 AM 17:00 PM 1
2019-03-14 14:38:51.295739+00 2019-03-14 15:42:03.033402+00 35 8 f 5 08:00 AM 17:00 PM 1
2019-03-15 23:35:35.338888+00 2019-03-15 23:35:35.338907+00 50 10 f 6 08:00 AM 17:00 PM 1
2019-03-15 23:35:35.32634+00 2019-03-15 23:36:13.884809+00 45 10 f 1 08:00 AM 17:00 PM 1
2019-03-15 23:35:35.327317+00 2019-03-15 23:36:13.884823+00 46 10 f 2 08:00 AM 17:00 PM 1
2019-03-15 23:35:35.329753+00 2019-03-15 23:36:13.884827+00 47 10 f 3 08:00 AM 17:00 PM 1
2019-03-15 23:35:35.332961+00 2019-03-15 23:36:13.88483+00 48 10 f 4 08:00 AM 17:00 PM 1
2019-03-15 23:35:35.334676+00 2019-03-15 23:36:13.884832+00 49 10 f 5 08:00 AM 17:00 PM 1
2019-03-10 21:01:37.972398+00 2019-03-16 00:04:53.033582+00 23 6 f 0 08:00 AM 17:00 PM 1
2019-03-10 21:01:37.97493+00 2019-03-16 00:04:53.040637+00 24 6 f 1 08:00 AM 17:00 PM 1
2019-03-10 21:01:37.975746+00 2019-03-16 00:04:53.049071+00 25 6 f 2 08:00 AM 17:00 PM 1
2019-03-10 21:01:37.976426+00 2019-03-16 00:04:53.055953+00 26 6 f 3 08:00 AM 17:00 PM 1
2019-03-10 21:01:37.977254+00 2019-03-16 00:04:53.062608+00 27 6 f 4 08:00 AM 17:00 PM 1
2019-03-10 21:01:37.977943+00 2019-03-16 00:04:53.067333+00 28 6 f 5 08:00 AM 17:00 PM 1
2019-03-10 21:01:37.978622+00 2019-03-16 00:04:53.07304+00 29 6 f 6 08:00 AM 17:00 PM 1
2019-03-15 23:35:35.321794+00 2019-03-18 20:51:51.092926+00 44 10 f 0 08:00 AM 17:00 PM 1
2019-04-05 14:58:05.567336+00 2019-04-05 14:58:05.56736+00 58 12 f 0 08:00 AM 17:00 PM 6
2019-04-05 14:58:05.570714+00 2019-04-05 14:58:05.570735+00 59 12 t 1 08:00 AM 17:00 PM 6
2019-04-05 14:58:05.572837+00 2019-04-05 14:58:05.572889+00 60 12 t 2 08:00 AM 17:00 PM 6
2019-04-05 14:58:05.575977+00 2019-04-05 14:58:05.575997+00 61 12 t 3 08:00 AM 17:00 PM 6
2019-04-05 14:58:05.581825+00 2019-04-05 14:58:05.581848+00 62 12 t 4 08:00 AM 17:00 PM 6
2019-04-05 14:58:05.584328+00 2019-04-05 14:58:05.584365+00 63 12 t 5 08:00 AM 17:00 PM 6
2019-04-05 14:58:05.586576+00 2019-04-05 14:58:05.586609+00 64 12 f 6 08:00 AM 17:00 PM 6
2019-01-16 21:58:30.992964+00 2019-04-13 19:51:59.458319+00 10 3 f 1 08:00 AM 17:00 PM 1
2019-01-16 21:58:30.993697+00 2019-04-13 19:51:59.458347+00 11 3 f 2 08:00 AM 17:00 PM 1
2019-01-16 21:58:30.994334+00 2019-04-13 19:51:59.458352+00 12 3 f 3 08:00 AM 17:00 PM 1
2019-01-16 21:58:30.995018+00 2019-04-13 19:51:59.458356+00 13 3 f 4 08:00 AM 17:00 PM 1
2019-01-16 21:58:30.996971+00 2019-04-13 19:51:59.458359+00 14 3 f 5 08:00 AM 17:00 PM 1
2019-01-16 21:53:08.152024+00 2019-09-23 16:26:20.847873+00 2 2 t 0 05:00 AM 15:00 PM 1
2019-04-05 00:09:32.366976+00 2019-08-01 20:45:31.523474+00 51 11 f 0 08:00 AM 17:00 PM 1
2019-04-05 00:09:32.369718+00 2019-08-01 20:45:31.527488+00 52 11 t 1 08:00 AM 17:00 PM 1
2019-03-14 14:40:51.895408+00 2019-07-17 00:04:10.474958+00 37 9 f 0 08:00 AM 17:00 PM 1
2019-03-14 14:40:51.89597+00 2019-07-17 00:04:10.489091+00 38 9 t 1 08:00 AM 17:00 PM 1
2019-03-14 14:40:51.896376+00 2019-07-17 00:04:10.498799+00 39 9 t 2 08:00 AM 17:00 PM 1
2019-03-14 14:40:51.896844+00 2019-07-17 00:04:10.506158+00 40 9 t 3 08:00 AM 17:00 PM 1
2019-03-14 14:40:51.897245+00 2019-07-17 00:04:10.514686+00 41 9 t 4 08:00 AM 17:00 PM 1
2019-03-14 14:40:51.8977+00 2019-07-17 00:04:10.522048+00 42 9 t 5 08:00 AM 17:00 PM 1
2019-03-14 14:40:51.898414+00 2019-07-17 00:04:10.528236+00 43 9 f 6 08:00 AM 17:00 PM 1
2019-01-16 21:53:08.158077+00 2019-09-23 16:26:20.860018+00 6 2 t 4 08:00 AM 17:00 PM 1
2019-01-16 21:53:08.161903+00 2019-09-23 16:26:20.862341+00 7 2 f 5 08:00 AM 17:00 PM 1
2019-04-05 00:09:32.371356+00 2019-08-01 20:45:31.529624+00 53 11 t 2 08:00 AM 17:00 PM 1
2019-04-05 00:09:32.374686+00 2019-08-01 20:45:31.532236+00 54 11 t 3 08:00 AM 17:00 PM 1
2019-04-05 00:09:32.376762+00 2019-08-01 20:45:31.534567+00 55 11 f 4 08:00 AM 17:00 PM 1
2019-04-05 00:09:32.378583+00 2019-08-01 20:45:31.538488+00 56 11 t 5 08:00 AM 17:00 PM 1
2019-01-16 21:53:08.154794+00 2019-09-23 16:32:05.703995+00 3 2 t 1 06:00 AM 18:00 PM 1
2019-01-16 21:53:08.157001+00 2019-09-23 16:34:21.004074+00 5 2 f 3 04:00 AM 16:00 PM 1
\.
--
-- Name: agent_schedules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('agent_schedules_id_seq', 64, true);
--
-- Data for Name: agents; Type: TABLE DATA; Schema: public; Owner: -
--
COPY agents (created_on, updated_on, id, user_id, partnership_account_id, firstname, lastname, title, email, phonenumber, mobile, extension, department, description, is_group, timezone, all_hours, deactivated_on, is_deactivated) FROM stdin;
2019-02-11 21:51:02.056181+00 2019-02-11 21:51:02.056196+00 4 4 2 Mort Thomas billing@buyercall.com 7732909650 \N f US/Central \N \N f
2019-03-14 14:38:51.278225+00 2019-03-14 15:50:44.017734+00 8 \N 1 Tom Jones tom@jones.com \N Service f US/Eastern t \N f
2018-10-25 22:47:21.621534+00 2019-03-15 23:28:45.575412+00 1 3 1 Harry Vermaak harry@buyercall.com 7732909650 \N f US/Central f 2019-03-15 16:28:45.569304 t
2019-03-10 21:01:37.955107+00 2019-03-16 00:04:53.024004+00 6 \N 1 Boo Number harry@buyercall.com 7732909650 \N none US/Central f f \N f
2019-03-15 23:35:35.311223+00 2019-03-20 00:45:45.270726+00 10 \N 1 Tony Malik manager malik@bu.co 7732909650 \N none f f 2019-03-19 17:45:45.269153 t
2019-03-05 00:31:30.017229+00 2019-03-24 03:02:55.584146+00 5 \N 1 Mark Jones Manager mark@buyercall.com 7739699892 7732909650 \N none f t \N f
2019-04-05 14:58:05.534858+00 2019-04-05 14:58:05.534877+00 12 \N 6 Todd Sweeney Manager user@company.com 3445054312 3363004312 \N Internet Sales front desk agent f US/Eastern t \N f
2019-03-11 18:18:07.824201+00 2019-04-13 19:51:51.72142+00 7 \N 1 Sales Team \N \N \N Used to forward calls to the sales team t US/Central f 2019-04-13 12:51:51.716074 t
2019-03-14 14:40:51.891351+00 2019-07-17 00:03:25.236372+00 9 \N 1 Harry Conway Owner harry@conway.co 8722217507 7739699892 \N none f US/Pacific t \N f
2019-04-05 00:09:32.353024+00 2019-08-01 20:45:31.502414+00 11 6 1 Morne Kit hjvermaak@gmail.com 7732909650 \N none f America/Los_Angeles f \N f
2019-01-16 21:53:08.134048+00 2019-09-23 16:26:20.831675+00 2 \N 1 Sue Matthews bullgull@buyercall.com 2064327364 \N none f America/Los_Angeles f \N f
2019-01-16 21:58:30.984341+00 2019-04-13 19:51:59.441611+00 3 \N 1 Brad Thomas bigbrad@buyercall.com 7732909650 \N none f t \N f
\.
--
-- Name: agents_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('agents_id_seq', 12, true);
--
-- Data for Name: alembic_version; Type: TABLE DATA; Schema: public; Owner: -
--
COPY alembic_version (version_num) FROM stdin;
1f72bff3ce1
\.
--
-- Data for Name: api_tokens; Type: TABLE DATA; Schema: public; Owner: -
--
COPY api_tokens (created_on, updated_on, id, is_active, api_token_hash) FROM stdin;
2019-03-10 20:15:56.178798+00 2019-03-10 20:15:56.179036+00 4 f $2b$12$ix3KhoX1JGP9JR5T3PwpGOkz3iZEXYavMRLWr5SEbAafTzDpJHOAC
2019-03-10 20:18:30.871861+00 2019-03-10 20:18:30.871874+00 5 f $2b$12$ZzSdDIOn8Iu/iUnO9nEsO.Uno/4LSraloGP3cCswwJVvvyv647WSW
2019-03-10 20:24:02.543133+00 2019-03-10 20:28:06.646687+00 6 t $2b$12$oygD9W1RIgUXxnVaF7NhcOgJquMmTqfb/lnNzr/3PsG82CQYYTKu.
2019-04-05 14:49:14.251388+00 2019-04-05 14:49:14.251401+00 7 f $2b$12$X9v6nxitcynB3ZrZghu9we0RyDiU86Sbp25WVCFmgKj2GZXHf6MfC
2019-02-08 00:57:11.216557+00 2019-07-01 22:15:46.455861+00 2 t 1f8ba5ef31e4b853d0a8c89d48c4e12c1eb56de6431a3c04d824f1f0c5396414
2019-03-10 05:49:30.987317+00 2019-07-05 17:36:00.826811+00 3 t d9e6ac0d4990a1486f143c99a64a726f67192291046e3c94feb693397da19039
2019-10-28 10:11:25.51766+00 2019-10-28 10:11:25.517674+00 8 f 7abf3538eada46823b3ae557d13e27e422f47d6ba05cbc28db84dd1cfd6d6d49
2019-10-28 10:11:53.950022+00 2019-10-28 10:11:53.950034+00 9 f 26e7ae59925837ce9a91dd832f69072a5f3da1151e4e3f3aa60679740983b0e4
2019-10-28 10:20:48.108396+00 2019-10-28 10:20:48.108409+00 10 f f111584bccd40bf9ec6c1ad2cc33e9ec3d3e72fd5b51b442c118b8f2d674965e
\.
--
-- Name: api_tokens_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('api_tokens_id_seq', 10, true);
--
-- Data for Name: audio_urls; Type: TABLE DATA; Schema: public; Owner: -
--
COPY audio_urls (created_on, updated_on, id, inbound_id, widget_guid, whisper_message_type, audio_url, is_enabled) FROM stdin;
2019-03-18 14:41:54.023586+00 2019-03-18 14:41:54.023586+00 3 \N cd80950f-9d0b-49ec-b5f0-8ceaa7cb9d31 whisperMessage https://buyercall-prod-whispers.s3.amazonaws.com/15/9_this_is_harry.mp3 t
2019-03-18 14:41:54.023586+00 2019-03-18 21:13:33.139415+00 2 58 \N whisperMessage https://buyercall-prod-whispers.s3.amazonaws.com/15/9_this_is_harry.mp3 t
2019-03-18 14:41:54.023586+00 2019-03-18 21:17:14.024563+00 4 50 cd80950f-9d0b-49ec-b5f0-8ceaa7cb9d31 CallBackText https://buyercall-prod-whispers.s3.amazonaws.com/15/9_this_is_harry.avi f
2019-04-04 19:30:25.284997+00 2019-04-04 19:45:33.652277+00 6 5 11ba6af7-b6f1-47dc-a561-1b7e3e0e037b whisperMessage http://url.com/song.mp3 f
2019-07-02 20:25:46.288964+00 2019-07-02 20:25:46.288976+00 7 191 \N whisperMessage https://buyercall-audio-whispers.s3-us-west-2.amazonaws.com/MazadaMesquite/welcome-04.mp3 t
2019-07-05 23:09:12.14407+00 2019-07-05 23:09:12.144082+00 8 193 \N voicemailMessage https://buyercall-prod-whispers.s3.amazonaws.com/15/9_this_is_harry.mp3 t
\.
--
-- Name: audio_urls_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('audio_urls_id_seq', 8, true);
--
-- Data for Name: block_numbers; Type: TABLE DATA; Schema: public; Owner: -
--
COPY block_numbers (created_on, updated_on, id, partnership_accounts_id, status, phonenumber, is_global_exclusion) FROM stdin;
2019-03-14 16:53:58.521559+00 2019-03-14 16:53:58.521572+00 2 1 blocked 8083423344 f
2019-03-14 16:54:30.330925+00 2019-03-14 16:54:30.330939+00 3 1 blocked 6064345565 f
2019-03-18 18:57:44.990969+00 2019-03-18 18:57:44.990984+00 5 1 blocked 8008008001 f
2019-03-18 18:59:57.466255+00 2019-03-18 18:59:57.466266+00 6 1 blocked 6006006001 f
2019-04-04 19:46:37.524917+00 2019-04-04 19:49:35.063396+00 7 1 blocked 7075543212 f
2019-08-23 23:19:23.922663+00 2019-10-10 02:15:50.22732+00 9 1 unblocked (773) 290-9650 f
\.
--
-- Name: block_numbers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('block_numbers_id_seq', 10, true);
--
-- Data for Name: contact_notes; Type: TABLE DATA; Schema: public; Owner: -
--
COPY contact_notes (id, created_on, updated_on, contact_id, is_enabled, text, user_id, partnership_account_id) FROM stdin;
1 2019-03-01 09:54:51.345769 2019-03-01 09:54:51.345802 9 t Does this work? 3 1
2 2019-03-01 09:55:12.951744 2019-03-01 09:55:12.951781 9 t And now? 3 1
\.
--
-- Name: contact_notes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('contact_notes_id_seq', 2, true);
--
-- Data for Name: contacts; Type: TABLE DATA; Schema: public; Owner: -
--
COPY contacts (created_on, updated_on, id, firstname, lastname, caller_id, phonenumber_1, phonenumber_2, email, address_1, address_2, city, state, zip, country, ip, partnership_account_id, is_do_not_call, is_unsubscribe, agent_assigned, status, agent_id, birthday, avatar, large_avatar, api_source, api_token_id, is_deactivated, deactivated_on) FROM stdin;
2019-05-24 00:37:40.484856+00 2019-07-29 19:05:47.924457+00 11 John +13367394103 1 f f Sue Matthews new lead \N f \N f \N
2019-05-26 00:39:34.573688+00 2019-08-26 23:47:17.683938+00 9 Shaum-bully Mcgill CUTLER,NORMAN +18473123318 1 f f Harry Vermaak no status \N f \N f \N
2019-07-17 01:01:43.384102+00 2019-07-17 01:01:43.384113+00 16 +266696687 1 f f \N no status \N f \N f \N
2019-07-17 01:04:32.649231+00 2019-07-17 01:04:32.649251+00 17 +17378742833 1 f f \N no status \N f \N f \N
2019-05-15 00:39:34.573688+00 2019-03-01 18:03:40.890971+00 8 Frank-May Solderbee Frankie S 1 f f Sue Matthews no status \N f \N f \N
2019-05-12 00:39:34.573688+00 2019-06-07 16:24:02.227974+00 12 John-May Mcgill CHICAGO, IL +18722217507 hvermaak@gmail.c 1 f t Harry Vermaak no status \N f \N f \N
2019-05-16 22:25:35.027772+00 2019-08-01 21:26:00.883816+00 10 Bobby Jones CHICAGO, IL +17739699892 harry@buyercall.com 12 East Rd IA 98107 1 f f Morne Kit new lead \N f \N f \N
2019-05-13 00:39:34.573688+00 2019-03-01 18:35:07.200472+00 6 fsdfsdf-Moy Thomas +1 go@f.com 1 f f no status \N f \N f \N
2018-05-16 02:42:21.698292+00 2019-03-01 18:26:50.881076+00 2 Bobby-Please Mars +18476539981 hv13@hotmail.com 12 East Rd Chicago IL 60640 1 f f Brad Thomas previous customer \N f \N f \N
2019-05-15 16:13:24.575201+00 2019-03-01 18:33:54.487937+00 1 Mike-Peanut Barns +16645436600 mbarnes@gmiaal.com 1 West St Seattle WA 98109 USA 1.1.1.1 1 f f no status \N f \N f \N
2019-05-24 00:39:34.573688+00 2018-10-29 22:52:33.671877+00 4 Mike Philips +18478084432 hv13@hotmail.com 12 East Rd WA 98109 1 f f new lead \N f \N f \N
2019-05-26 02:46:34.214027+00 2019-03-01 18:31:04.83162+00 3 Peter-pan Smith +12245439954 psmith@gmaiil.com 4 Main Rd Seattle WA 98103 2 f f Sue Matthews no status \N f \N f \N
2019-05-26 23:08:47.762811+00 2019-03-01 18:22:17.590488+00 7 Shaum-boom Veldsman +18479094242 1 f f Harry Vermaak previous customer \N f \N f \N
2019-06-06 19:11:14.67823+00 2019-07-11 18:35:33.448675+00 13 Restricted 1 f f \N no status \N f \N f \N
2019-06-07 15:37:24.867941+00 2019-06-07 16:52:00+00 14 GIFFORD,DAVID +13307660833 1 f f \N no status \N f \N f \N
2019-07-11 19:24:24.912411+00 2019-07-16 01:00:18.481218+00 15 HENAK,RYAN +12064327364 1 f f \N no status \N f \N f \N
2019-09-09 21:18:17.369256+00 2019-09-09 21:18:45.359452+00 21 French Jollop +16643344901 user@company.com 10 Apple Street Mount Pleasant New York New York 10001 USA 127.0.6.1 1 f f \N general interest 2 1977-07-20 https://buyercall-logo.s3-us-west-2.amazonaws.com/BuyerCall_Logo.png https://buyercall-logo.s3-us-west-2.amazonaws.com/BuyerCall_Logo.png t 3 t 2019-09-09 14:18:45.35884
2019-09-09 21:11:10.956864+00 2019-09-09 21:11:10.956881+00 20 Michelle Connor +16643305644 user@company.com 10 Beach Road Mount Pleasant Seattle WA 98101 USA 127.2.0.1 1 f f \N no status 3 1977-07-20 https://buyercall-logo.s3-us-west-2.amazonaws.com/BuyerCall_Logo.png https://buyercall-logo.s3-us-west-2.amazonaws.com/BuyerCall_Logo.png t 3 f \N
2019-09-09 21:01:54.541517+00 2019-09-09 21:16:58.920085+00 18 Perry Smith +16643309099 user@company.com 10 Apple Street Mount Pleasant New York New York 10001 USA 127.0.0.1 1 f f \N general interest 2 1977-07-20 https://buyercall-logo.s3-us-west-2.amazonaws.com/BuyerCall_Logo.png https://buyercall-logo.s3-us-west-2.amazonaws.com/BuyerCall_Logo.png t 3 f \N
2019-09-09 21:11:10.943936+00 2019-09-09 21:13:03.371317+00 19 Sue Pearson M Pearson +17732909657 harry@buyercall.com 10 Main St Apt 2 Chicago IL 60613 USA 127.0.4.1 1 f f \N new lead 2 1977-07-20 https://buyercall-logo.s3-us-west-2.amazonaws.com/BuyerCall_Logo.png https://buyercall-logo.s3-us-west-2.amazonaws.com/BuyerCall_Logo.png t 3 f \N
2019-09-23 21:10:41.768752+00 2019-09-23 21:10:41.776732+00 22 Burt Renolds +17732909660 hv13@hotmail.com 14 Mian ST Chicago IL 60613 1 f f Mark Twain no status \N f \N f \N
2019-09-25 15:49:05.898925+00 2019-09-25 15:52:14.664408+00 23 Gerald Miller +17732909633 gbutler@buyercall.com 123 Harlem Road Chicago IL 60640 1 f f Mark Twain no status \N f \N f \N
2019-05-15 21:34:14.102648+00 2019-10-11 00:15:09+00 5 Bobby May +17732909650 hv13@hotmail.com 12 East Rd Atlanta KY 60640 1 f f Harry Vermaak no status \N f \N f \N
2019-10-21 19:21:22.813426+00 2019-10-21 19:21:22.813438+00 26 Don Tromp +17739699862 hv13@hotmail.com 123 Harlem Road Chicago HI 60613 1 f f no status \N f \N f \N
2019-10-01 00:18:09.125396+00 2019-10-01 00:18:09.140732+00 25 Gary Stewart +17734569984 summy@buyercall.com 123 Road Side Chicago IL 60640 1 f f Mark Twain no status \N f \N f \N
2019-09-25 17:33:24.169136+00 2019-10-01 18:29:10.428235+00 24 Patrick Jones +17732905500 patty@buyercall.com 123 Harlem Road Chicago IL 60640 1 f f Mark Twain no status \N f \N f \N
\.
--
-- Name: contacts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('contacts_id_seq', 26, true);
--
-- Data for Name: coupons; Type: TABLE DATA; Schema: public; Owner: -
--
COPY coupons (created_on, updated_on, id, code, duration, amount_off, percent_off, currency, duration_in_months, max_redemptions, redeem_by, times_redeemed, valid) FROM stdin;
\.
--
-- Name: coupons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('coupons_id_seq', 1, true);
--
-- Data for Name: credit_cards; Type: TABLE DATA; Schema: public; Owner: -
--
COPY credit_cards (created_on, updated_on, id, brand, last4, exp_date, is_expiring, cc_name, is_deleted) FROM stdin;
2018-10-25 22:48:24.667477+00 2019-04-19 22:42:00.235557+00 1 Visa 4242 2025-05-01 f Harry Vermaak f
\.
--
-- Name: credit_cards_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('credit_cards_id_seq', 1, true);
--
-- Data for Name: external_api_service_providers; Type: TABLE DATA; Schema: public; Owner: -
--
COPY external_api_service_providers (created_on, updated_on, id, name) FROM stdin;
2019-09-21 16:35:26.156409+00 2019-09-21 16:35:26.156409+00 1 Auto Master Systems
\.
--
-- Name: external_api_service_providers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('external_api_service_providers_id_seq', 1, true);
--
-- Data for Name: external_api_service_providers_partnership_account_tie; Type: TABLE DATA; Schema: public; Owner: -
--
COPY external_api_service_providers_partnership_account_tie (created_on, updated_on, external_api_service_provider_id, partnership_account_id, username, password, secret, url, token_url, client_id, source, app_source) FROM stdin;
2019-09-23 17:31:31.63159+00 2019-09-23 17:31:31.631605+00 1 1 laKrVK6JKoptzqMRfqJQpWteBAksNkKMJoTem2I6ghQ= ptHTCvRIeAnxlREk31pkqt2+/s4GmWcABnkXoiJ1iZxMLSE1+hkxRt/jUw8I7QDw Xoem45P4mOJcIArNMAEdhnhxBQfz2kWCxu2rItMwdr7wB81VMfS5Cn6ai+KFWhzKiWb5S5dpbCV8atVPtsnMPw== https://ams.getcavenderapproved.com/api/applications/create https://ams.getcavenderapproved.com/token DigMark
\.
--
-- Data for Name: external_form_fields; Type: TABLE DATA; Schema: public; Owner: -
--
COPY external_form_fields (form_id, "position", field_id, display_name, show_in_table) FROM stdin;
1 1 firstnamefield firstname t
1 2 lastnamefield lastname t
1 3 emailfield email t
1 4 phonefield phone t
1 5 datepicker datepicker f
1 6 streetfield street f
1 7 cityfield city f
1 8 statefield state f
1 9 zipfield zip f
1 10 cumemberfield ssnumber f
1 11 incomefield income f
1 12 privacypolicyfield Completed TOS t
2 1 vehiclefield Vehicle t
2 2 stockfield Stock Number t
2 3 locationfield Location f
2 4 applicationtypefield Application Type f
2 5 firstnamefield First Name t
2 6 middlenamefield Middle Name f
2 7 lastnamefield Last Name t
2 8 phonefield Phone Number t
2 9 emailfield Email f
2 10 datepicker Date of Birth f
2 11 ssnfield SS Number f
2 12 driverlicensefield Driver License Number f
2 13 driverlicensestatefield Driver License State f
2 14 streetfield Street f
2 15 citytfield City f
2 16 statefield State f
2 17 zipfield Zip Code / Postal Code f
2 18 rentorownfield Residence Status f
2 19 monthlypaymentfield Monthly Rent /Mortgage f
2 20 addressyearstotalfield Time at Residence f
2 21 previousstreetfield Previous Street f
2 22 previouscitytfield Previous City f
2 23 previousstatefield Previous State f
2 24 previouszipfield Previous Zip / Postal Code f
2 25 employerfield Employer f
2 26 employercitytfield Employer City f
2 27 employerstatefield Employer State f
2 28 titlefield Position f
2 29 employmentyearsfield Length of Employment f
2 30 workphonefield Work Phone f
2 31 incomefield Gross Monthly Income f
2 32 additionalincomefield Other Monthly Income f
2 33 additionalincomesourcefield Other Monthly Income Source f
2 34 formeremployerfield Previous Employer f
2 35 formeremployercityfield Previous Employer City f
2 36 formeremployerstatefield Previous Employer State f
2 37 formeremployerpositionfield Previous Position f
2 38 formeremployertimefield Previous Length of Employment f
2 39 formeremployerphonefield Previous Work Phone f
2 40 cosignerfirstnamefield Co-applicant First Name f
2 41 cosignermiddlenamefield Co-applicant Middle Name f
2 42 ccosignerlastnamefield Co-applicant Last Name f
2 43 cosignerphonefield Co-applicant Phone Number f
2 44 cosigneremailfield Co-applicant Email f
2 45 cosignerdateofbirthfield Co-applicant Date of Birth f
2 46 cosignerssnfield Co-applicant SS Number f
2 47 codriverlicensefield Co-applicant Driver License Number f
2 48 codriverlicensestatefield Co-applicant Driver License State f
2 49 cosignerstreetfield Co-applicant Street f
2 50 cosignercitytfield Co-applicant City f
2 51 cosignerstatefield Co-applicant State f
2 52 cosignerzipfield Co-applicant Zip / Postal Code f
2 53 cosignerrentorownfield Co-applicant Residence Status f
2 54 cosignermonthlypaymentfield Co-applicant Monthly Rent / Mortgage f
2 55 cosigneraddressyearstotalfield Co-applicant Time at Residence f
2 56 cosignerpreviousstreetfield Co-applicant Previous Street f
2 57 cosignerpreviouscitytfield Co-applicant Previous City f
2 58 cosignerpreviousstatefield Co-applicant Previous State f
2 59 cosignerpreviouszipfield Co-applicant Zip / Postal Code f
2 60 cosigneremployerfield Co-applicant Employer f
2 61 cosigneremployercityfield Co-applicant Employer City f
2 62 cosigneremployerstatefield Co-applicant Employer State f
2 63 cosignerpositionfield Co-applicant Employer Position f
2 64 cosigneremploymentlengthyearsfield Co-applicant Length of Employment f
2 65 cosigneremploymerphonefield Co-applicant Work Phone f
2 66 cosignermonthlyincomefield Co-applicant Gross Monthly Income f
2 67 cosigneradditionalincomefield Co-applicant Other Monthly Income f
2 68 cosigneradditionalincomesourcefield Co-applicant Other Monthly Income Source f
2 69 cosignerformeremployerfield Co-applicant Previous Employer f
2 70 cosignerformeremployercityfield Co-applicant Previous Employer City f
2 71 cosignerformeremployerstatefield Co-applicant Previous Employer State f
2 72 cosignerformeremployerpositionfield Co-applicant Previous Position f
2 73 cosignerformeremployertimefield Co-applicant Previous Length of Employment f
2 74 cosignerformeremployerphonefield Co-applicant Previous Work Phone f
2 75 additionalinformationfield Additional Comments f
2 76 privacypolicyfield Completed TOS t
2 77 statusnote Status Note t
2 78 repfield Sales Person t
2 79 employeraddressfield Employer Address f
3 1 firstnamefield firstname t
3 2 lastnamefield lastname t
3 3 emailfield email t
3 4 phonefield phone t
3 5 additionalinformationfield message f
1 13 repfield Representative t
5 1 applicationtypefield Application Type f
5 2 firstnamefield First Name t
5 3 middlenamefield Middle Name f
5 4 lastnamefield Last Name t
5 5 phonefield Home Phone t
5 7 mobilephonefield Cell Phone t
5 8 phonebillfield Name Phone is Billed To f
5 6 emailfield Email t
5 9 datepicker Date of Birth f
5 10 ssnfield SS Number f
5 11 driverlicensefield Driver License Number f
5 12 driverlicensestatefield Driver License State f
5 13 maritalstatusfield Marital Status f
5 14 dependentsfield Number of Dependents f
5 15 dependentagesfield Ages of Dependents f
5 16 streetfield Street f
5 17 citytfield City f
5 18 statefield State f
5 19 zipfield Zip Code / Postal Code f
5 20 countyfield County f
5 21 townshipfield Township f
5 22 rentorownfield Residence Status f
5 23 monthlypaymentfield Monthly Rent /Mortgage f
5 24 addressyearstotalfield Years at Address f
5 25 addressmonthstotalfield Months at Address f
5 26 landlordfield Mortgage Holder Or Landlord f
5 27 landlordphonefield Landlord Phone f
5 28 previousstreetfield Previous Street f
5 29 previouscitytfield Previous City f
5 30 previousstatefield Previous State f
5 31 previouszipfield Previous Zip / Postal Code f
5 32 previousaddressyearstotalfield Previous Years at Address f
5 33 previousaddressmonthstotalfield Previous Months at Address f
5 34 employerfield Employer f
5 35 employeraddressfield Employer Address f
5 36 employercitytfield Employer City f
5 37 employerstatefield Employer State f
5 38 employerzipfield Employer Zip f
5 39 titlefield Occupation f
5 40 employmentyearsfield Years Employed f
5 41 employmentmonthsfield Months Employed f
5 42 workphonefield Employer Phone f
5 43 incomefield Monthly Gross Income f
5 44 hourlypayfield Hourly Pay f
5 45 hoursworkedfield Hours Worked f
5 46 payperiodfield Pay Period f
5 47 additionalincomefield Other Monthly Income f
5 48 additionalincomesourcefield Other Monthly Income Source f
5 49 formeremployerfield Previous Employer f
5 50 formeremployerpositionfield Previous Occupation f
5 51 formeremployertimefield Previous Years Employed f
5 52 formeremployertimemonthsfield Previous Months Employed f
5 53 formeremployerphonefield Previous Employer Phone f
5 54 formeremployerleavereasonfield Reason For Leaving f
5 55 maintenancepaymentfield Obligated to make alimony, child support or separate maintenance payments? f
5 56 childsupportagesfield If Yes, youngests age f
5 57 bankruptcyfield Have you ever filed Bankruptcy? f
5 58 bankruptcydischargedatefield Discharged Date f
5 59 bankruptcychapterfield If yes, Chapter (select one) f
5 60 repossessionfield Have you ever had a vehicle or merchandise repossessed? f
5 61 repossessiondatefield If yes, when? f
5 62 repossessiontypefield Merchandise or Vehicle? f
5 63 priorvehiclecreditborrowedfield Prior Vehicle Credit Amount Borrowed? f
5 64 amountowedfield Amount Owed f
5 65 loanwithwhomfield With Whom? f
5 66 banknamefield Bank Name f
5 67 bankcityfield Bank City f
5 68 checkingbalancefield Checking Balance f
5 69 savingbalancefield Savings Balance f
5 70 utilitiespaymentfield Utilities Payment f
5 71 childcarepaymentfield Child Care Payment f
5 72 cabletvpaymentfield Cable TV Payment f
5 73 downpaymentfield Down Payment f
5 74 cosignerfirstnamefield Co-applicant First Name f
5 75 cosignermiddlenamefield Co-applicant Middle Name f
5 76 ccosignerlastnamefield Co-applicant Last Name f
5 77 cosignerphonefield Co-applicant Home Phone f
5 78 cosignermobilephonefield Co-applicant Cell Phone f
5 79 cosignerphonebillfield Name Phone is Billed To f
5 80 cosigneremailfield Co-applicant Email f
5 81 cosignerdateofbirthfield Co-applicant Date of Birth f
5 82 cosignerssnfield Co-applicant SS Number f
5 83 codriverlicensefield Co-applicant Driver License Number f
5 84 codriverlicensestatefield Co-applicant Driver License State f
5 85 cosignermaritalstatusfield Co-applicant Marital Status f
5 86 cosignerdependentsfield Co-applicant Number of Dependents f
5 87 cosignerdependentagesfield Co-applicant Ages of Dependents f
5 88 cosignerstreetfield Co-applicant Street f
5 89 cosignercitytfield Co-applicant City f
5 90 cosignerstatefield Co-applicant State f
5 91 cosignerzipfield Co-applicant Zip Code f
5 92 cosignercountyfield Co-applicant County f
5 93 cosignertownshipfield Co-applicant Township f
5 94 cosignerrentorownfield Co-applicant Residence Status f
5 95 cosignermonthlypaymentfield Co-applicant Monthly Rent / Mortgage f
5 96 cosigneraddressyearstotalfield Co-applicant Years at Residence f
5 97 cosigneraddressmonthstotalfield Co-applicant Months at Residence f
5 98 cosignerlandlordfield Co-applicant Mortgage Holder Or Landlord f
5 99 cosignerlandlordphonefield Co-applicant Landlords Phone f
5 100 cosignerpreviousstreetfield Co-applicant Previous Street f
5 101 cosignerpreviouscitytfield Co-applicant Previous City f
5 102 cosignerpreviousstatefield Co-applicant Previous State f
5 103 cosignerpreviouszipfield Co-applicant Previous Zip Code f
5 104 cosignerpreviousaddressyearstotalfield Co-applicant Years at Previous Address f
5 105 cosignerpreviousaddressmonthstotalfield Co-applicant Months at Previous Address f
5 106 cosigneremployerfield Co-applicant Employer f
5 107 cosigneremployeraddressfield Co-applicant Street Address f
5 108 cosigneremployercityfield Co-applicant Employer City f
5 109 cosigneremployerstatefield Co-applicant Employer State f
5 110 cosigneremployerzipfield Co-applicant Employer Zip Code f
5 111 cosignerpositionfield Co-applicant Employer Position f
5 112 cosigneremploymentlengthyearsfield Co-applicant Employment in Years f
5 113 cosigneremploymentmonthsfield Co-applicant Employment in Months f
5 114 cosigneremploymerphonefield Co-applicant Work Phone f
5 115 cosignerhourlypayfield Co-applicant Hourly pay f
5 116 cosignerhoursworkedfield Co-applicant Hours Worked f
5 117 cosignerpayperiodfield Co-applicant Pay Period f
5 118 cosigneradditionalincomefield Co-applicant Other Monthly Income f
5 119 cosigneradditionalincomesourcefield Co-applicant Other Monthly Income Source f
5 120 cosignerformeremployerfield Co-applicant Previous Employer f
5 121 cosignerformeremployerpositionfield Co-applicant Previous Occupation f
5 122 cosignerformeremployertimefield Co-applicant Previous Employment in Years f
5 123 cosignerformeremployertimemonthsfield Co-applicant Previous Employment in Months f
5 124 cosignerformeremployerphonefield Co-applicant Previous Work Phone f
5 125 cosignerformeremployerleavereasonfield Co-applicant Reason For Leaving f
5 126 cosignermaintenancepaymentfield is the co-applicant obligated to make alimony, child support or separate maintenance payments? f
5 127 cosignerchildsupportagesfield If Yes, youngests age f
5 128 cosignerbankruptcyfield Have the co-applicant ever filed Bankruptcy? f
5 129 cosignerbankruptcydischargedatefield Co-applicant Bankruptcy Discharged Date f
5 130 cosignerbankruptcychapterfield If yes, Chapter (select one) f
5 131 cosignerrepossessionfield Have the co-applicant ever had a vehicle or merchandise repossessed? f
5 132 cosignerrepossessiondatefield If yes, when? f
5 133 cosignerrepossessiontypefield Merchandise or Vehicle? f
5 134 cosignerpriorvehiclecreditborrowedfield Co-applicant Prior Vehicle Credit Amount Borrowed? f
5 135 cosigneramountowedfield Amount Owed by co-applicant f
5 136 cosignerloanwithwhomfield With Whom? f
5 137 cosignerbanknamefield Co-applicants Bank Name f
5 138 cosignerbankcityfield Co-applicant Banks City f
5 139 cosignercheckingbalancefield Co-applicant Checking Balance f
5 140 cosignersavingbalancefield Co-applicant Savings Balance f
5 141 cosignerutilitiespaymentfield Co-applicant Utilities Payment f
5 142 cosignerchildcarepaymentfield Co-applicant Child Care Payment f
5 143 cosignercabletvpaymentfield Co-applicant Cable TV Payment f
5 144 cosignerdownpaymentfield Co-applicant Down Payment f
5 145 additionalinformationfield Additional Comments f
5 146 privacypolicyfield Completed TOS t
5 147 statusnote Status Note f
5 148 repfield Sales Person f
5 149 dealerlotfield Lot Id f
6 1 applicationtypefield Application Type f
6 2 firstnamefield First Name t
6 3 middlenamefield Middle Name f
6 4 lastnamefield Last Name t
6 5 phonefield Home Phone t
6 7 mobilephonefield Cell Phone t
6 8 phonebillfield Name Phone is Billed To f
6 6 emailfield Email t
6 9 datepicker Date of Birth f
6 10 ssnfield SS Number f
6 11 driverlicensefield Driver License Number f
6 12 driverlicensestatefield Driver License State f
6 13 maritalstatusfield Marital Status f
6 14 dependentsfield Number of Dependents f
6 15 dependentagesfield Ages of Dependents f
6 16 streetfield Street f
6 17 citytfield City f
6 18 statefield State f
6 19 zipfield Zip Code / Postal Code f
6 20 countyfield County f
6 21 townshipfield Township f
6 22 rentorownfield Residence Status f
6 23 monthlypaymentfield Monthly Rent /Mortgage f
6 24 addressyearstotalfield Years at Address f
6 25 addressmonthstotalfield Months at Address f
6 26 landlordfield Mortgage Holder Or Landlord f
6 27 landlordphonefield Landlord Phone f
6 28 previousstreetfield Previous Street f
6 29 previouscitytfield Previous City f
6 30 previousstatefield Previous State f
6 31 previouszipfield Previous Zip / Postal Code f
6 32 previousaddressyearstotalfield Previous Years at Address f
6 33 previousaddressmonthstotalfield Previous Months at Address f
6 34 employerfield Employer f
6 35 employeraddressfield Employer Address f
6 36 employercitytfield Employer City f
6 37 employerstatefield Employer State f
6 38 employerzipfield Employer Zip f
6 39 titlefield Occupation f
6 40 employmentyearsfield Years Employed f
6 41 employmentmonthsfield Months Employed f
6 42 workphonefield Employer Phone f
6 43 incomefield Monthly Gross Income f
6 44 hourlypayfield Hourly Pay f
6 45 hoursworkedfield Hours Worked f
6 46 payperiodfield Pay Period f
6 47 additionalincomefield Other Monthly Income f
6 48 additionalincomesourcefield Other Monthly Income Source f
6 49 formeremployerfield Previous Employer f
6 50 formeremployerpositionfield Previous Occupation f
6 51 formeremployertimefield Previous Years Employed f
6 52 formeremployertimemonthsfield Previous Months Employed f
6 53 formeremployerphonefield Previous Employer Phone f
6 54 formeremployerleavereasonfield Reason For Leaving f
6 55 maintenancepaymentfield Obligated to make alimony, child support or separate maintenance payments? f
6 56 childsupportagesfield If Yes, youngests age f
6 57 bankruptcyfield Have you ever filed Bankruptcy? f
6 58 bankruptcydischargedatefield Discharged Date f
6 59 bankruptcychapterfield If yes, Chapter (select one) f
6 60 repossessionfield Have you ever had a vehicle or merchandise repossessed? f
6 61 repossessiondatefield If yes, when? f
6 62 repossessiontypefield Merchandise or Vehicle? f
6 63 priorvehiclecreditborrowedfield Prior Vehicle Credit Amount Borrowed? f
6 64 amountowedfield Amount Owed f
6 65 loanwithwhomfield With Whom? f
6 66 banknamefield Bank Name f
6 67 bankcityfield Bank City f
6 68 checkingbalancefield Checking Balance f
6 69 savingbalancefield Savings Balance f
6 70 utilitiespaymentfield Utilities Payment f
6 71 childcarepaymentfield Child Care Payment f
6 72 cabletvpaymentfield Cable TV Payment f
6 73 downpaymentfield Down Payment f
6 74 cosignerfirstnamefield Co-applicant First Name f
6 75 cosignermiddlenamefield Co-applicant Middle Name f
6 76 ccosignerlastnamefield Co-applicant Last Name f
6 77 cosignerphonefield Co-applicant Home Phone f
6 78 cosignermobilephonefield Co-applicant Cell Phone f
6 79 cosignerphonebillfield Name Phone is Billed To f
6 80 cosigneremailfield Co-applicant Email f
6 81 cosignerdateofbirthfield Co-applicant Date of Birth f
6 82 cosignerssnfield Co-applicant SS Number f
6 83 codriverlicensefield Co-applicant Driver License Number f
6 84 codriverlicensestatefield Co-applicant Driver License State f
6 85 cosignermaritalstatusfield Co-applicant Marital Status f
6 86 cosignerdependentsfield Co-applicant Number of Dependents f
6 87 cosignerdependentagesfield Co-applicant Ages of Dependents f
6 88 cosignerstreetfield Co-applicant Street f
6 89 cosignercitytfield Co-applicant City f
6 90 cosignerstatefield Co-applicant State f
6 91 cosignerzipfield Co-applicant Zip Code f
6 92 cosignercountyfield Co-applicant County f
6 93 cosignertownshipfield Co-applicant Township f
6 94 cosignerrentorownfield Co-applicant Residence Status f
6 95 cosignermonthlypaymentfield Co-applicant Monthly Rent / Mortgage f
6 96 cosigneraddressyearstotalfield Co-applicant Years at Residence f
6 97 cosigneraddressmonthstotalfield Co-applicant Months at Residence f
6 98 cosignerlandlordfield Co-applicant Mortgage Holder Or Landlord f
6 99 cosignerlandlordphonefield Co-applicant Landlords Phone f
6 100 cosignerpreviousstreetfield Co-applicant Previous Street f
6 101 cosignerpreviouscitytfield Co-applicant Previous City f
6 102 cosignerpreviousstatefield Co-applicant Previous State f
6 103 cosignerpreviouszipfield Co-applicant Previous Zip Code f
6 104 cosignerpreviousaddressyearstotalfield Co-applicant Years at Previous Address f
6 105 cosignerpreviousaddressmonthstotalfield Co-applicant Months at Previous Address f
6 106 cosigneremployerfield Co-applicant Employer f
6 107 cosigneremployeraddressfield Co-applicant Street Address f
6 108 cosigneremployercityfield Co-applicant Employer City f
6 109 cosigneremployerstatefield Co-applicant Employer State f
6 110 cosigneremployerzipfield Co-applicant Employer Zip Code f
6 111 cosignerpositionfield Co-applicant Employer Position f
6 112 cosigneremploymentlengthyearsfield Co-applicant Employment in Years f
6 113 cosigneremploymentmonthsfield Co-applicant Employment in Months f
6 114 cosigneremploymerphonefield Co-applicant Work Phone f
6 115 cosignerhourlypayfield Co-applicant Hourly pay f
6 116 cosignerhoursworkedfield Co-applicant Hours Worked f
6 117 cosignerpayperiodfield Co-applicant Pay Period f
6 118 cosigneradditionalincomefield Co-applicant Other Monthly Income f
6 119 cosigneradditionalincomesourcefield Co-applicant Other Monthly Income Source f
6 120 cosignerformeremployerfield Co-applicant Previous Employer f
6 121 cosignerformeremployerpositionfield Co-applicant Previous Occupation f
6 122 cosignerformeremployertimefield Co-applicant Previous Employment in Years f
6 123 cosignerformeremployertimemonthsfield Co-applicant Previous Employment in Months f
6 124 cosignerformeremployerphonefield Co-applicant Previous Work Phone f
6 125 cosignerformeremployerleavereasonfield Co-applicant Reason For Leaving f
6 126 cosignermaintenancepaymentfield is the co-applicant obligated to make alimony, child support or separate maintenance payments? f
6 127 cosignerchildsupportagesfield If Yes, youngests age f
6 128 cosignerbankruptcyfield Have the co-applicant ever filed Bankruptcy? f
6 129 cosignerbankruptcydischargedatefield Co-applicant Bankruptcy Discharged Date f
6 130 cosignerbankruptcychapterfield If yes, Chapter (select one) f
6 131 cosignerrepossessionfield Have the co-applicant ever had a vehicle or merchandise repossessed? f
6 132 cosignerrepossessiondatefield If yes, when? f
6 133 cosignerrepossessiontypefield Merchandise or Vehicle? f
6 134 cosignerpriorvehiclecreditborrowedfield Co-applicant Prior Vehicle Credit Amount Borrowed? f
6 135 cosigneramountowedfield Amount Owed by co-applicant f
6 136 cosignerloanwithwhomfield With Whom? f
6 137 cosignerbanknamefield Co-applicants Bank Name f
6 138 cosignerbankcityfield Co-applicant Banks City f
6 139 cosignercheckingbalancefield Co-applicant Checking Balance f
6 140 cosignersavingbalancefield Co-applicant Savings Balance f
6 141 cosignerutilitiespaymentfield Co-applicant Utilities Payment f
6 142 cosignerchildcarepaymentfield Co-applicant Child Care Payment f
6 143 cosignercabletvpaymentfield Co-applicant Cable TV Payment f
6 144 cosignerdownpaymentfield Co-applicant Down Payment f
6 145 additionalinformationfield Additional Comments f
6 146 privacypolicyfield Completed TOS t
6 147 statusnote Status Note f
6 148 repfield Sales Person f
7 1 vehiclefield Vehicle t
7 2 stockfield Stock Number t
7 3 locationfield Location f
7 4 applicationtypefield Application Type f
7 5 firstnamefield First Name t
7 6 middlenamefield Middle Name f
7 7 lastnamefield Last Name t
7 8 phonefield Phone Number t
7 9 emailfield Email f
7 10 datepicker Date of Birth f
7 11 ssnfield SS Number f
7 12 driverlicensefield Driver License Number f
7 13 driverlicensestatefield Driver License State f
7 14 streetfield Street f
7 15 citytfield City f
7 16 statefield State f
7 17 zipfield Zip Code / Postal Code f
7 18 rentorownfield Residence Status f
7 19 monthlypaymentfield Monthly Rent /Mortgage f
7 20 addressyearstotalfield Time at Residence f
7 21 previousstreetfield Previous Street f
7 22 previouscitytfield Previous City f
7 23 previousstatefield Previous State f
7 24 previouszipfield Previous Zip / Postal Code f
7 25 employerfield Employer f
7 26 employercitytfield Employer City f
7 27 employerstatefield Employer State f
7 28 titlefield Position f
7 29 employmentyearsfield Length of Employment f
7 30 workphonefield Work Phone f
7 31 incomefield Gross Monthly Income f
7 32 additionalincomefield Other Monthly Income f
7 33 additionalincomesourcefield Other Monthly Income Source f
7 34 formeremployerfield Previous Employer f
7 35 formeremployercityfield Previous Employer City f
7 36 formeremployerstatefield Previous Employer State f
7 37 formeremployerpositionfield Previous Position f
7 38 formeremployertimefield Previous Length of Employment f
7 39 formeremployerphonefield Previous Work Phone f
7 40 cosignerfirstnamefield Co-applicant First Name f
7 41 cosignermiddlenamefield Co-applicant Middle Name f
7 42 ccosignerlastnamefield Co-applicant Last Name f
7 43 cosignerphonefield Co-applicant Phone Number f
7 44 cosigneremailfield Co-applicant Email f
7 45 cosignerdateofbirthfield Co-applicant Date of Birth f
7 46 cosignerssnfield Co-applicant SS Number f
7 47 codriverlicensefield Co-applicant Driver License Number f
7 48 codriverlicensestatefield Co-applicant Driver License State f
7 49 cosignerstreetfield Co-applicant Street f
7 50 cosignercitytfield Co-applicant City f
7 51 cosignerstatefield Co-applicant State f
7 52 cosignerzipfield Co-applicant Zip / Postal Code f
7 53 cosignerrentorownfield Co-applicant Residence Status f
7 54 cosignermonthlypaymentfield Co-applicant Monthly Rent / Mortgage f
7 55 cosigneraddressyearstotalfield Co-applicant Time at Residence f
7 56 cosignerpreviousstreetfield Co-applicant Previous Street f
7 57 cosignerpreviouscitytfield Co-applicant Previous City f
7 58 cosignerpreviousstatefield Co-applicant Previous State f
7 59 cosignerpreviouszipfield Co-applicant Zip / Postal Code f
7 60 cosigneremployerfield Co-applicant Employer f
7 61 cosigneremployercityfield Co-applicant Employer City f
7 62 cosigneremployerstatefield Co-applicant Employer State f
7 63 cosignerpositionfield Co-applicant Employer Position f
7 64 cosigneremploymentlengthyearsfield Co-applicant Length of Employment f
7 65 cosigneremploymerphonefield Co-applicant Work Phone f
7 66 cosignermonthlyincomefield Co-applicant Gross Monthly Income f
7 67 cosigneradditionalincomefield Co-applicant Other Monthly Income f
7 68 cosigneradditionalincomesourcefield Co-applicant Other Monthly Income Source f
7 69 cosignerformeremployerfield Co-applicant Previous Employer f
7 70 cosignerformeremployercityfield Co-applicant Previous Employer City f
7 71 cosignerformeremployerstatefield Co-applicant Previous Employer State f
7 72 cosignerformeremployerpositionfield Co-applicant Previous Position f
7 73 cosignerformeremployertimefield Co-applicant Previous Length of Employment f
7 74 cosignerformeremployerphonefield Co-applicant Previous Work Phone f
7 75 additionalinformationfield Additional Comments f
7 76 privacypolicyfield Completed TOS t
7 77 statusnote Status Note t
7 78 repfield Sales Person t
7 79 employeraddressfield Employer Address f
7 80 downpaymentfield Down Payment f
7 81 tradeinvehiclefield Trade-in Vehicle f
7 82 cosignerdownpaymentfield Co-applicant Down Payment f
7 83 cosignertradeinvehiclefield Co-applicant Trade-in Vehicle f
\.
--
-- Data for Name: external_forms; Type: TABLE DATA; Schema: public; Owner: -
--
COPY external_forms (created_on, updated_on, id, public_id, display_name, partnership_account_id, routing_id, is_external_api_auto, email_addresses, adf_email_addresses, email_subject, partial_data_email, full_submit_email, send_auto_email, send_auto_email_subject, send_auto_email_msg, send_auto_sms, send_auto_sms_inbound_id, send_auto_sms_msg) FROM stdin;
2018-11-06 16:13:24.575201+00 2019-01-14 22:59:59.374346+00 3 BuyerCallContact 01 BuyerCall Contact Form 1 \N f {"emails": ""} {"emails": ""} Home Page Inquiry Notificion f t f f \N
2018-10-19 15:13:24.575201+00 2019-01-18 00:35:18.438959+00 2 DealerForm 01 Grande Yachts International - Stevensville Finance App 1 \N f {"emails": ""} {"emails": ""} Finance App Notification f t f f 10 Hi #NAME#, thanks for your form submission. We will review it and get back to you asap. #COMPANY# Juice Me.
2019-09-23 08:13:24.575201+00 2019-09-23 18:41:31.378881+00 5 AMSLongForm 01 AMS Long Form - Finance App 1 \N t {"emails": "harry@buyercall.com"} {"emails": "hjvermaak@gmail.com"} Finance App Notification f t f f \N
2019-09-23 08:13:24.575201+00 2019-09-23 08:13:24.575201+00 6 AMSTESTTEST 01 testing more - Finance App 1 \N f {"emails": ""} {"emails": ""} Finance App Notification f t f f \N
2019-10-21 08:13:24.575201+00 2019-10-21 08:13:24.575201+00 7 RVDealerForm 01 Northtown Motor Homes - Finance App 1 \N f {"emails": ""} {"emails": ""} Finance App Notification f t f f \N
2018-11-06 16:13:24.575201+00 2019-03-01 16:56:39.761618+00 4 PNTest 01 Toyota Form Application 1 \N f {"emails": ""} {"emails": ""} Toyota App Form f t f Boy Soldier t 10
2018-10-25 16:13:24.575201+00 2019-04-12 18:45:59.667343+00 1 DealerId 01 Grande Yachts International - Stevensville Finance App 1 \N f {"emails": "hjvermaak@gmail.com"} {"emails": ""} Development Form Notification t f f t 111 Hi #NAME#, thanks for your form submission. We will review it and get back to you asap. #COMPANY#
\.
--
-- Name: external_forms_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('external_forms_id_seq', 6, true);
--
-- Data for Name: form_lead_fields; Type: TABLE DATA; Schema: public; Owner: -
--
COPY form_lead_fields (lead_id, field_id, field_value) FROM stdin;
2 emailfield hv13@hotmail.com
2 lastnamefield Mars
2 phonefield 8476539981
2 firstnamefield Bobby
2 streetfield 12 East Rd
2 incomefield 50000
2 statefield IL
2 lead-id-field 2
2 privacypolicyfield yes
2 cellphonefield 7732909650
2 cityfield Chicago
2 zipfield 60640
3 emailfield psmith@gmaiil.com
3 lastnamefield Smith
3 phonefield 2245439954
3 firstnamefield Peter
3 streetfield 4 Main Rd
3 incomefield 3400
3 statefield WA
3 lead-id-field 3
3 privacypolicyfield yes
3 cellphonefield 6554043321
3 cityfield Seattle
3 zipfield 98103
4 statusnote
4 emailfield hv13@hotmail.com
4 middlenamefield Barry
4 stockfield AS00234
4 locationfield Ballard
4 phonefield 8478084432
4 vehiclefield Silver Bullet RV8
4 lastnamefield Philips
4 firstnamefield Mike
4 cosignermiddlenamefield
4 repfield
4 employeraddressfield
4 streetfield 12 East Rd
4 cosigneradditionalincomesourcefield Investments
4 addressyearstotalfield 0-1
4 cosignerphonefield 8476654231
4 cosignerfirstnamefield Marry
4 ccosignerlastnamefield Shuan
4 rentorownfield Own
4 codriverlicensestatefield AK
4 additionalincomesourcefield Rental Income
4 cosigneremailfield hjvermaak@gmail.com
4 previousstatefield IL
4 cosigneremployerstatefield WA
4 cosignermonthlyincomefield 4000
4 cosignermonthlypaymentfield 4000
4 cosignerpreviousstreetfield 20 Barry Ave
4 cosigneremployercityfield Seattle
4 cosigneremployerfield Nestle
4 cosignerformeremployertimefield 1-2
4 cosignerformeremployerphonefield 7732098543
4 driverlicensestatefield WA
4 cosigneradditionalincomefield 1000
4 cosignerssnfield yjKbedA8OzxmyvjjQ3l7ydQPE7913NNT6ANQXcwBy/I=
3 cumemberfield +55UE534VRWMqSeodlcyGd8IybR1DsbL4r9Wk828y8oik6XKmhjL8YDk+W0sp9V15ktHHW2gpCtaz6BOJSaVHA==
3 datepicker 8p1CQCzylOiU+ZUtjfTCxRR6m0jd2HFuLocH1pcFuw4HhnLP9ezbhz95lcIccmMVlw1VPH898SqDIjqmBVd0mA==
2 cumemberfield ZTLpJoaNw4RlCvHKL6sSKInO4rhhTqMykUZXXW4ublAS/NwGUdsJSBphLMwguVi658bB6/nOu0wF+gC6fsxQPA==
2 datepicker BrDAv/wxX2PxXbWJjQSjiD49jv69akvMY9YYiihDqQNtjpmLxqYCw9lkF1F+QmU2UhyjrvbCAraKCu9zhS3kpg==
4 titlefield Shift Manager
4 cosigneraddressyearstotalfield 0-1
4 codriverlicensefield W0043563233FG
4 cosignerrentorownfield Lease
4 workphonefield 2445654432
4 formeremployerphonefield 7738084456
4 citytfield Seattle
4 cosigneremploymentlengthyearsfield 1-2
4 ssnfield Z8F6k3Zg54rLV4EWCI6N4CdjER/vee18TnsOldO38s8=
4 cosignerformeremployerfield Cadbury
4 cosignerpreviouscitytfield Chicago
4 cosignercitytfield Seattle
4 cosignerstreetfield 67 Main St
4 datepicker UqVnIlmkdFUvC0HEEVK/H6kD27xGKW2yjbatOd4ZO9A=
4 cosignerpositionfield Accountant
4 additionalincomefield 2000
4 formeremployertimefield 3-4
4 employerfield International Truck
4 cosigneremploymerphonefield 7748085543
4 monthlypaymentfield 4000
4 cosignerstatefield WA
4 applicationtypefield Joint
4 formeremployerstatefield IL
4 previouscitytfield Chicago
4 cosignerdateofbirthfield gHiYaNsT6Irasv7V6DXwCxNXLbJ9iIEfVGenLQ35kSM=
4 cosignerzipfield 98109
4 cosignerformeremployercityfield Chicago
4 employmentyearsfield 0-1
4 statefield WA
4 previouszipfield 60613
4 zipfield 98109
4 employerstatefield WA
4 cosignerpreviouszipfield 60640
4 cosignerformeremployerpositionfield Accountant
4 incomefield 5000
4 lead-id-field 4
4 formeremployerfield Waste Management
4 cosignerpreviousstatefield IL
4 privacypolicyfield yes
4 driverlicensefield W0003423DFG
4 employercitytfield Seattle
4 cosignerformeremployerstatefield IL
4 formeremployercityfield Chicago
4 formeremployerpositionfield Shift Manager
4 previousstreetfield 34 Stewart Rd
4 additionalinformationfield I want financing through a third party please
5 emailfield hv13@hotmail.com
5 lastnamefield May
5 phonefield 7732909650
5 firstnamefield Brian
8 lead-id-field
5 streetfield 12 East Rd
5 incomefield 50000
5 statefield KY
5 lead-id-field 5
5 privacypolicyfield yes
5 cellphonefield 7732909650
8 lastnamefield
5 cityfield Chicaho
5 zipfield 60640
8 emailfield
8 phonefield
8 firstnamefield
8 additionalinformationfield
5 cumemberfield CIhPcZ4kYrn7CyvThhfhdbwEkeOtHm9hiWwu/PbwyZJz/6idRNE3adOMoW99DD84J8HuwAMuPvicPGW/+/qTGgHqU/ILLR3ccfo1RDL8e/ASM97EnxwZmnUpU0PKAQAQhy7KWFn7tqxZWnz1RXxjRgiMDvDsYjOqdonuqjPKXBW5tDqNnfXLf6wZ4S79bFV9DZamHCfY7j96EGSpTEDUgkTdRoOZwdAtZjZrQiUrfx4=
5 datepicker toTUUv7rmq4y1yK+M42W/FAMDzqW92tobbmo+QEJe61LFLc+E53+FLW/XvYxgMmbEnHREnosem1WsGgzfeRdpMy2NXS7y0vHWAOffgB0q6vvDW14fchPnZ1fF/Hlbbaa2a7ZpkqDcjJLn2Zu5a2+dv4u9eXXw+i+m5uR0GQFO/nKH335WZHup5Qqid5S67AluKTt9uauKV6MkLuEs0smfTD+oyWg5GzByq1BR37iuw4=
6 emailfield hv13@hotmail.com
6 lastnamefield Mallery
6 phonefield 7732909650
6 datepicker 1GZEFPG/stiVbA8BIIgNV6ikH1E4CEcBoBxaFqeMWPA=
6 streetfield 12 East Rd
6 incomefield 5000
6 statefield WA
6 lead-id-field 6
6 privacypolicyfield yes
6 cellphonefield 6554043321
6 cumemberfield ywHMAx71UokzAi0OImHiS0UaAvekQLcs+MmJqSMSZEs=
6 cityfield Seattle
6 zipfield 98107
6 firstnamefield Bob Dennis
7 lead-id-field
7 lastnamefield Doe
7 emailfield hv13@hotmail.com
7 phonefield 7732909650
7 firstnamefield John
7 additionalinformationfield This is the truth, learn it!
9 lead-id-field
9 lastnamefield
9 emailfield
9 phonefield
9 firstnamefield fsdfsdf
9 additionalinformationfield
10 lead-id-field
10 lastnamefield Stewart
10 emailfield mark@buyercall.com
10 phonefield +17732909650
10 firstnamefield Mark
10 additionalinformationfield This is the sun we grow up with!
11 lead-id-field
11 lastnamefield
11 emailfield
11 phonefield
11 firstnamefield
11 additionalinformationfield
12 lastnamefield Bottomcarter
12 emailfield harry@buyercall.com
12 lead-id-field
12 firstnamefield Mary
12 phonefield 7732909650
12 additionalinformationfield Hello to all this is Harry!
13 lastnamefield sdfsdf
13 emailfield hv13@hotmail.com
13 lead-id-field
13 firstnamefield fsdf
13 phonefield 7732909650
13 additionalinformationfield dsfsdfsdf
14 lastnamefield Doe
14 emailfield hv13@hotmail.com
14 lead-id-field
14 firstnamefield John
14 phonefield 7732909650
14 additionalinformationfield fgdfgdfgdfd dfgdfg df
15 lastnamefield Frump
15 emailfield rolnald@bold.com
15 lead-id-field
15 firstnamefield Donald
15 phonefield 7732909650
15 additionalinformationfield This is working right?
16 lastnamefield Doe
16 emailfield hv13@hotmail.com
16 lead-id-field
16 firstnamefield John
16 phonefield 7732909650
16 additionalinformationfield Hello world
17 lastnamefield Doe
17 emailfield hv13@hotmail.com
17 lead-id-field
17 firstnamefield John
17 phonefield 7732909650
17 additionalinformationfield Howzit
18 lastnamefield Doe
18 emailfield hv13@hotmail.com
18 lead-id-field
18 firstnamefield John
18 phonefield 7732909650
18 additionalinformationfield erqw wqe qw
19 lastnamefield Jones
19 emailfield hv13@hotmail.com
19 lead-id-field
19 firstnamefield John
19 phonefield 7732909650
19 additionalinformationfield sdfsd sdf sd
20 lastnamefield Doe
20 emailfield hv13@hotmail.com
20 lead-id-field
20 firstnamefield John
20 phonefield 7732909650
20 additionalinformationfield tollarow
21 lastnamefield Doe
21 emailfield hv13@hotmail.com
21 lead-id-field
21 firstnamefield John
21 phonefield 7732909650
21 additionalinformationfield hello
22 lastnamefield Doe
22 emailfield hv13@hotmail.com
22 lead-id-field
22 firstnamefield John
22 phonefield 7732909650
22 additionalinformationfield fdgfv dfgd
23 lastnamefield Doe
23 emailfield hv13@hotmail.com
23 lead-id-field
23 firstnamefield John
23 phonefield 7732909650
23 additionalinformationfield fsdf sdfsdf sdfsd
24 lastnamefield Doe
24 emailfield hv13@hotmail.com
24 lead-id-field
24 firstnamefield John
24 phonefield 7732909650
24 additionalinformationfield dfbg fd gg
25 lastnamefield Barry
25 emailfield hv13@hotmail.com
25 lead-id-field
25 firstnamefield Mike
25 phonefield 7732909650
25 additionalinformationfield Heelow word
26 lead-id-field
26 lastnamefield Jones
26 emailfield hv13@hotmail.com
26 phonefield 7732909650
26 firstnamefield Mike
26 additionalinformationfield hello
27 lead-id-field
27 lastnamefield Sual
27 emailfield hv13@hotmail.com
27 phonefield 7732909650
27 firstnamefield Gary
27 additionalinformationfield Hello world
28 lastnamefield Pardon
28 emailfield hv13@hotmail.com
28 lead-id-field
28 firstnamefield Sue
28 phonefield 7732909650
28 additionalinformationfield Hello World!
29 lastnamefield Jones
29 emailfield hv13@hotmail.com
29 lead-id-field
29 firstnamefield Frank
29 phonefield 7732909650
29 additionalinformationfield barry is coming
30 lastnamefield Jonas
30 emailfield hv13@hotmail.com
30 lead-id-field
30 firstnamefield Frank
30 phonefield 7732909650
30 additionalinformationfield hello herman
31 lastnamefield Jonas
31 emailfield hv13@hotmail.com
31 lead-id-field
31 firstnamefield Frank
31 phonefield 7732909650
31 additionalinformationfield Hello
32 lastnamefield Sual
32 emailfield hv13@hotmail.com
32 lead-id-field
32 firstnamefield Mike
32 phonefield 7732909650
32 additionalinformationfield hello
33 lastnamefield Sual
33 emailfield hv13@hotmail.com
33 lead-id-field
33 firstnamefield John
33 phonefield 7732909650
33 additionalinformationfield hello
34 lastnamefield Pardon
34 emailfield hv13@hotmail.com
34 lead-id-field
34 firstnamefield John
34 phonefield 7732909650
34 additionalinformationfield melon
35 lastnamefield Pardon
35 emailfield hv13@hotmail.com
35 lead-id-field
35 firstnamefield John
35 phonefield 7732909650
35 additionalinformationfield melon
36 lastnamefield Pardon
36 emailfield hv13@hotmail.com
36 lead-id-field
36 firstnamefield John
36 phonefield 7732909650
36 additionalinformationfield melon
37 lastnamefield Pardon
37 emailfield hv13@hotmail.com
37 lead-id-field
37 firstnamefield John
37 phonefield 7732909650
37 additionalinformationfield melon
38 lastnamefield Pardon
38 emailfield hv13@hotmail.com
38 lead-id-field
38 firstnamefield John
38 phonefield 7732909650
38 additionalinformationfield melon
39 lastnamefield Pardon
39 emailfield hv13@hotmail.com
39 lead-id-field
39 firstnamefield John
39 phonefield 7732909650
39 additionalinformationfield melon
40 lastnamefield Pardon
40 emailfield hv13@hotmail.com
40 lead-id-field
40 firstnamefield John
40 phonefield 7732909650
40 additionalinformationfield melon
41 lastnamefield Pardon
41 emailfield hv13@hotmail.com
41 lead-id-field
41 firstnamefield John
41 phonefield 7732909650
41 additionalinformationfield melon
42 lastnamefield Pardon
42 emailfield hv13@hotmail.com
42 lead-id-field
42 firstnamefield John
42 phonefield 7732909650
42 additionalinformationfield melon
43 lastnamefield Pardon
43 emailfield hv13@hotmail.com
43 lead-id-field
43 firstnamefield John
43 phonefield 7732909650
43 additionalinformationfield melon
44 lastnamefield Pardon
44 emailfield hv13@hotmail.com
44 lead-id-field
44 firstnamefield John
44 phonefield 7732909650
44 additionalinformationfield melon
45 lastnamefield Pardon
45 emailfield hv13@hotmail.com
45 lead-id-field
45 firstnamefield John
45 phonefield 7732909650
45 additionalinformationfield melon
46 lastnamefield Pardon
46 emailfield hv13@hotmail.com
46 lead-id-field
46 firstnamefield John
46 phonefield 7732909650
46 additionalinformationfield melon
47 lastnamefield Pardon
47 emailfield hv13@hotmail.com
47 lead-id-field
47 firstnamefield John
47 phonefield 7732909650
47 additionalinformationfield melon
48 lastnamefield Pardon
48 emailfield hv13@hotmail.com
48 lead-id-field
48 firstnamefield John
48 phonefield 7732909650
48 additionalinformationfield melon
49 lastnamefield Pardon
49 emailfield hv13@hotmail.com
49 lead-id-field
49 firstnamefield John
49 phonefield 7732909650
49 additionalinformationfield melon
50 lastnamefield Pardon
50 emailfield hv13@hotmail.com
50 lead-id-field
50 firstnamefield John
50 phonefield 7732909650
50 additionalinformationfield melon
51 lastnamefield Pardon
51 emailfield hv13@hotmail.com
51 lead-id-field
51 firstnamefield John
51 phonefield 7732909650
51 additionalinformationfield melon
52 lastnamefield Pardon
52 emailfield hv13@hotmail.com
52 lead-id-field
52 firstnamefield John
52 phonefield 7732909650
52 additionalinformationfield melon
53 lastnamefield Pardon
53 emailfield hv13@hotmail.com
53 lead-id-field
53 firstnamefield John
53 phonefield 7732909650
53 additionalinformationfield melon
54 lastnamefield Pardon
54 emailfield hv13@hotmail.com
54 lead-id-field
54 firstnamefield John
54 phonefield 7732909650
54 additionalinformationfield melon
55 lastnamefield Pardon
55 emailfield hv13@hotmail.com
55 lead-id-field
55 firstnamefield John
55 phonefield 7732909650
55 additionalinformationfield melon
56 lastnamefield Pardon
56 emailfield hv13@hotmail.com
56 lead-id-field
56 firstnamefield John
56 phonefield 7732909650
56 additionalinformationfield melon
57 lastnamefield Pardon
57 emailfield hv13@hotmail.com
57 lead-id-field
57 firstnamefield John
57 phonefield 7732909650
57 additionalinformationfield melon
58 lastnamefield Pardon
58 emailfield hv13@hotmail.com
58 lead-id-field
58 firstnamefield John
58 phonefield 7732909650
58 additionalinformationfield melon
59 lastnamefield Pardon
59 emailfield hv13@hotmail.com
59 lead-id-field
59 firstnamefield John
59 phonefield 7732909650
59 additionalinformationfield melon
60 lastnamefield Pardon
60 emailfield hv13@hotmail.com
60 lead-id-field
60 firstnamefield John
60 phonefield 7732909650
60 additionalinformationfield melon
61 lastnamefield Pardon
61 emailfield hv13@hotmail.com
61 lead-id-field
61 firstnamefield John
61 phonefield 7732909650
61 additionalinformationfield melon
62 lastnamefield Pardon
62 emailfield hv13@hotmail.com
62 lead-id-field
62 firstnamefield John
62 phonefield 7732909650
62 additionalinformationfield melon
63 lastnamefield Pardon
63 emailfield hv13@hotmail.com
63 lead-id-field
63 firstnamefield John
63 phonefield 7732909650
63 additionalinformationfield melon
64 lastnamefield Pardon
64 emailfield hv13@hotmail.com
64 lead-id-field
64 firstnamefield John
64 phonefield 7732909650
64 additionalinformationfield melon
65 lastnamefield Pardon
65 emailfield hv13@hotmail.com
65 lead-id-field
65 firstnamefield John
65 phonefield 7732909650
65 additionalinformationfield melon
66 lastnamefield Pardon
66 emailfield hv13@hotmail.com
66 lead-id-field
66 firstnamefield John
66 phonefield 7732909650
66 additionalinformationfield melon
67 lastnamefield Pardon
67 emailfield hv13@hotmail.com
67 lead-id-field
67 firstnamefield John
67 phonefield 7732909650
67 additionalinformationfield melon
68 lastnamefield Pardon
68 emailfield hv13@hotmail.com
68 lead-id-field
68 firstnamefield John
68 phonefield 7732909650
68 additionalinformationfield melon
69 lastnamefield Pardon
69 emailfield hv13@hotmail.com
69 lead-id-field
69 firstnamefield John
69 phonefield 7732909650
69 additionalinformationfield melon
70 lastnamefield Doe
70 emailfield hv13@hotmail.com
70 lead-id-field
70 firstnamefield John
70 phonefield 7732909650
70 additionalinformationfield dfgdfg fdg
71 lastnamefield Sally
71 emailfield hv13@hotmail.com
71 lead-id-field
71 firstnamefield Mike
71 phonefield 7732909650
71 additionalinformationfield hello
72 lastnamefield Jones
72 emailfield hv13@hotmail.com
72 lead-id-field
72 firstnamefield John
72 phonefield 7732909650
72 additionalinformationfield hello
73 lastnamefield Pardon
73 emailfield hv13@hotmail.com
73 lead-id-field
73 firstnamefield John
73 phonefield 7732909650
73 additionalinformationfield gollu
74 lastnamefield Carry
74 emailfield hv13@hotmail.com
74 lead-id-field
74 firstnamefield Mike
74 phonefield 7732909650
74 additionalinformationfield gpporyty
75 lastnamefield Jones
75 emailfield hv13@hotmail.com
75 lead-id-field
75 firstnamefield John
75 phonefield 7732909650
75 additionalinformationfield sdfsdfsdfsd df
76 lastnamefield Jones
76 emailfield hv13@hotmail.com
76 lead-id-field
76 firstnamefield Mike
76 phonefield 7732909650
76 additionalinformationfield rtre rt ertert
77 lastnamefield Doe
77 emailfield hv13@hotmail.com
77 lead-id-field
77 firstnamefield John
77 phonefield 7732909650
77 additionalinformationfield ghg gfhfg hf
78 lastnamefield Jones
78 emailfield hv13@hotmail.com
78 lead-id-field
78 firstnamefield John
78 phonefield 7732909650
78 additionalinformationfield gdfgdfg fdgdf
79 lastnamefield Doe
79 emailfield hv13@hotmail.com
79 lead-id-field
79 firstnamefield Mike
79 phonefield 7732909650
79 additionalinformationfield fgdfg dfgdfgdf
80 lastnamefield Doe
80 emailfield hv13@hotmail.com
80 lead-id-field
80 firstnamefield John
80 phonefield 7732909650
80 additionalinformationfield fgfdg
81 lastnamefield Brown
81 emailfield hv13@hotmail.com
81 lead-id-field
81 firstnamefield Felix
81 phonefield 7732909650
81 additionalinformationfield Hello Harry
82 lastnamefield Jonas
82 emailfield hv13@hotmail.com
82 lead-id-field
82 firstnamefield Mike
82 phonefield 7732909650
82 additionalinformationfield Great show!
83 lastnamefield Doe
83 emailfield hv13@hotmail.com
83 lead-id-field
83 firstnamefield John
83 phonefield 7732909650
83 additionalinformationfield hollo
84 lastnamefield Doe
84 emailfield hv13@hotmail.com
84 lead-id-field
84 firstnamefield John
84 phonefield 7732909650
84 additionalinformationfield hollo
85 lastnamefield Doe
85 emailfield hv13@hotmail.com
85 lead-id-field
85 firstnamefield John
85 phonefield 7732909650
85 additionalinformationfield fghf gfghfg
86 lastnamefield Pardon
86 emailfield hv13@hotmail.com
86 lead-id-field
86 firstnamefield Mike
86 phonefield 7732909650
86 additionalinformationfield fdgf dfgdfgd
87 lastnamefield Pardon
87 emailfield hv13@hotmail.com
87 lead-id-field
87 firstnamefield Mike
87 phonefield 7732909650
87 additionalinformationfield fdgf dfgdfgd
88 lastnamefield Pardon
88 emailfield hv13@hotmail.com
88 lead-id-field
88 firstnamefield Mike
88 phonefield 7732909650
88 additionalinformationfield fdgf dfgdfgd
89 lastnamefield Jones
89 emailfield hv13@hotmail.com
89 lead-id-field
89 firstnamefield John
89 phonefield 7732909650
89 additionalinformationfield boo hop
90 lastnamefield Veldsman
90 emailfield shaun@buyercall.com
90 lead-id-field
90 phonefield 8479094242
90 additionalinformationfield Hello world
91 emailfield harry@buyercall.com
91 lastnamefield Bart
91 phonefield 7732909650
91 firstnamefield Bob
91 datepicker 9/cF78EFePRi/vtIdPrE2OhVKlre9h9+MDqTL0mL8AY=
91 streetfield 12 East Rd
91 incomefield 50000
91 statefield KS
91 lead-id-field 91
91 privacypolicyfield yes
91 cellphonefield 6554043321
91 cumemberfield 7wSwvcN0rJcvFTgL30Z5Hb4ZYD7LaIXBT5gI+9HFaUY=
91 cityfield Chicaho
91 zipfield 60640
92 datepicker A86AcUNV4fB6ncYy+tUcm9Uy0ATnysZgRoDl8YwRfu8=
92 cellphonefield
92 cumemberfield C41109knfObLc/K2Cypza8dzLuupnhlHR7D+MBkcIy8=
92 incomefield
92 emailfield hv13@hotmail.com
92 statefield
92 lead-id-field
92 lastnamefield Board
92 cityfield
92 zipfield
92 streetfield
92 phonefield 7732909650
92 firstnamefield Saul
92 privacypolicyfield
93 datepicker A2MlrJ4LkGKSVbE+7DrilYdOMyNZr2jmuU3fnAAlEKw=
93 cellphonefield
93 cumemberfield w47Oxvazl1V3Kn8hEmyscYvkLO59RpRv3MczAKyzI94=
93 incomefield
93 emailfield hjvermaak@gmail.com
93 statefield
93 lead-id-field
93 lastnamefield Pardon
93 cityfield
93 zipfield
93 streetfield
93 phonefield 7732909650
93 firstnamefield Felix
93 privacypolicyfield
94 emailfield hv13@hotmail.com
94 lastnamefield Jonas
94 phonefield 7732909650
94 firstnamefield John
94 datepicker 2wY70ph33jVqL3H1dVs3x1RaoPOoJAUaGjw8Wy71zd8=
94 streetfield 12 East Rd
94 incomefield 5000
94 statefield IA
94 lead-id-field 94
94 privacypolicyfield yes
94 cellphonefield 6554043321
94 cumemberfield PnPp8hII8432WZY1wJgpgmWhnmcPLEd6Czk4He0+4Qw=
94 cityfield Seattle
94 zipfield 60640
95 datepicker nGxbUJyNnHLqICbx6AM6Wp63wvfx/w7sA8SmrK86xyU=
95 cellphonefield
95 cumemberfield WrCM/+P+Pq1cxixupr/nKnFr3x9spYJIWgNqZFFMTh8=
95 incomefield
95 emailfield harry@buyercall.com
95 statefield
95 lead-id-field
95 lastnamefield Brian
95 cityfield
95 zipfield
95 streetfield
95 phonefield 7732909650
95 firstnamefield Cody
95 privacypolicyfield
96 emailfield harry@buyercall.com
96 lastnamefield Doe
96 datepicker q0Ak6SRuRUQK4xcTbcPj2XuSPBOqK2l0u/yYC+0m36k=
96 streetfield 12 East Rd
96 incomefield 50000
96 statefield KS
96 lead-id-field 96
96 cellphonefield 7732909650
96 cumemberfield Wr6hy+4lHHCI0BK3jgl9fR844eM/H4ukq17FYMCgF44=
96 cityfield Seattle
96 zipfield 98107
90 firstnamefield Shaum-Cody
96 phonefield 7732909650
96 firstnamefield Mike
96 privacypolicyfield yes
97 emailfield harry@buyercall.com
97 lastnamefield Sweeney
97 phonefield 7732909650
97 firstnamefield Paul
97 datepicker aNRWdN05hnZ4GEs0TcbEEFKrnGUpdAtE0sp8ezCK5BQ=
97 streetfield 12 East Rd
97 incomefield 5000
97 statefield KS
97 lead-id-field 97
97 privacypolicyfield yes
97 cellphonefield 7732909650
97 cumemberfield tFKo77qySKRi7RAp3QO4pos474o+ebEWnrj9MDPXDmA=
97 cityfield Seattle
97 zipfield 60640
98 emailfield harry@buyercall.com
98 lastnamefield Jonas
98 phonefield 7732909650
98 firstnamefield Felix
101 cumemberfield 3ug0ZtlFAx/5S26zBbrlor0BRFl+OV2n3wFDRrS50cU=
98 streetfield 12 East Rd
98 incomefield 5000
98 statefield KY
98 lead-id-field 98
98 privacypolicyfield yes
98 cellphonefield 6554043321
101 cityfield Seattle
98 cityfield Seattle
98 zipfield 60640
98 datepicker WVc1L7H1fgaGklwOKZOuPJWeG9hOxMO7rIHjByVJ0qU=
98 cumemberfield dMhyN4eTcXK9f1yTh/27YWOzRCg9KuPX8EhTv3AHjOM=
99 emailfield hv13@hotmail.com
99 lastnamefield Sual
99 phonefield 7732909650
99 firstnamefield Mike
99 datepicker dFwMeDXZy0BkV7WKBccZTXVvPnM3wXtQzOeTEemRxKA=
99 streetfield 12 East Rd
99 incomefield 50000
99 statefield IA
99 lead-id-field 99
99 privacypolicyfield yes
99 cellphonefield 7732909650
99 cumemberfield B9N52iLtnGks7ceWer//go/yIJpeud+JjCEdAYtUs0Q=
99 cityfield Seattle
99 zipfield 98107
100 emailfield hv13@hotmail.com
100 lastnamefield Smoe
100 phonefield 7732909650
100 firstnamefield Joe
100 datepicker FdrcP9tMbzylK4eEDQYoVWJM7QmzwnwQsgMR+rAyImA=
100 streetfield 12 East Rd
100 incomefield 5000
100 statefield KS
100 lead-id-field 100
100 privacypolicyfield yes
100 cellphonefield 7732909650
100 cumemberfield NSzZAl7i6/Op7Q705aXM39p2LZdakfotP8/Ety108G4=
100 cityfield Seattle
100 zipfield 60640
101 emailfield hv13@hotmail.com
101 lastnamefield Jones
101 phonefield 7732909650
101 firstnamefield John
101 datepicker jzSdbj0Qi+sf4/8R+bMMw4mFUzpArKJ7Zc2Q6N/KmHU=
101 streetfield 12 East Rd
101 incomefield 50000
101 statefield IA
101 lead-id-field 101
101 privacypolicyfield yes
101 cellphonefield 6554043321
101 zipfield 98107
102 emailfield hv13@hotmail.com
102 lastnamefield Jones
102 phonefield 7732909650
102 firstnamefield Felix
102 datepicker W+JcT48fDOkQN8Em5XITU/nknLYitkxVRVjj9OsfM3U=
102 streetfield 12 East Rd
102 incomefield 5000
102 statefield IA
102 lead-id-field 102
102 privacypolicyfield yes
102 cellphonefield 6554043321
102 cumemberfield /5bM0secgl2acEZbvNJyGmzwKNehxPGWmUpIJxBhn9s=
102 cityfield Seattle
102 zipfield 98107
103 emailfield hv13@hotmail.com
103 lastnamefield Sual
103 phonefield 7732909650
103 firstnamefield John
103 datepicker Kw7kSVNLcHqnO7YNC1wA/fLl5upUz40nt2zX3/oouec=
103 streetfield 12 East Rd
103 incomefield 50000
103 statefield IA
103 lead-id-field 103
103 privacypolicyfield yes
103 cellphonefield 7732909650
103 cumemberfield WEsMFCpbGsE+Y04lv/fFHC5gyxwpG2vc8z0qV/HUEes=
103 cityfield Seattle
103 zipfield 98107
104 emailfield hv13@hotmail.com
104 lastnamefield Sual
104 phonefield 7732909650
104 firstnamefield werwe
104 datepicker BSTy4VfSic54XjV1brwyKu65eP+zqDOUvdnXSugrhIg=
104 streetfield 12 East Rd
104 incomefield 5000
104 statefield KY
104 lead-id-field 104
104 privacypolicyfield yes
104 cellphonefield 6554043321
104 cumemberfield Acg3LTYVPWBH7OZ8WaLECnMYTg3TQX4zMD9IGkN05Vw=
104 cityfield Seattle
104 zipfield 98107
105 emailfield hv13@hotmail.com
105 lastnamefield Doe
105 phonefield 7732909650
105 firstnamefield dasd
105 datepicker bn+Ej3xKK23WSMI5ju2mIFq6VgERXlVx2sJYYsQ1HCI=
105 streetfield 12 East Rd
105 incomefield 50000
105 statefield KS
105 lead-id-field 105
105 privacypolicyfield yes
105 cellphonefield 7732909650
105 cumemberfield Q8Rt2oUTiciUxfvbR1HI9W+dSAn9stly5lythJIaKMs=
105 cityfield Seattle
105 zipfield 60640
106 datepicker EHDUjhvYTof0Xqm5sueV/hxzslyU4YKWAvo0aiT/7XY=
106 cellphonefield
106 cumemberfield WjCgKGjry/TCRP72XKJmKpC1lDiSdHEiGhkKFGWk8T4=
106 incomefield
106 emailfield hv13@hotmail.com
106 statefield
106 lead-id-field
106 lastnamefield Jones
106 cityfield
106 zipfield
106 streetfield
106 phonefield 7732909650
106 firstnamefield Mike
106 privacypolicyfield
107 datepicker SzvvTGQaNj2cEXDLcrX3aBskLcQn71wAnmTqbpkSg8k=
107 cellphonefield
107 cumemberfield 8sFsanbw/d9k2P1DVBJWHeE8NsJK3WDNj8JYyXQs/oo=
107 incomefield
107 emailfield hv13@hotmail.com
107 statefield
107 lead-id-field
107 lastnamefield Jones
107 cityfield
107 zipfield
107 streetfield
107 phonefield 7732909650
107 firstnamefield Mike
107 privacypolicyfield
108 datepicker RqSJBxbCuDFepbBavR43WBpYW9It8BRjn7tBposv67w=
108 cellphonefield
108 cumemberfield LnyW1pOdlvhSpMsItFj22DjKdSEAF7XpyX2ccdxltMk=
108 incomefield
108 emailfield hv13@hotmail.com
108 statefield
108 lead-id-field
108 lastnamefield Doe
108 cityfield
108 zipfield
108 streetfield
108 phonefield 7732909650
108 firstnamefield John
108 privacypolicyfield
109 datepicker JQNGvEobHeZdT4Rb9+USe+ipX3ADOMArPuKwTilbXhI=
109 cellphonefield
109 cumemberfield peXJtqQsP39a3tMIFW4KGTnFqv7z3xsCJZws0/mi3VY=
109 incomefield
109 emailfield hv13@hotmail.com
109 statefield
109 lead-id-field
109 lastnamefield Hilton
109 cityfield
109 zipfield
109 streetfield
109 phonefield 7732909650
109 firstnamefield Barry
109 privacypolicyfield
110 emailfield harry@buyercall.com
110 lastnamefield Jonas
110 phonefield 7732909650
110 firstnamefield John
110 datepicker RzWOQo4JSbCA6jyJAnThJKAxGzrs0gDwiUOpA4wvhRM=
110 streetfield 12 East Rd
110 incomefield 5000
110 statefield KS
110 lead-id-field 110
110 privacypolicyfield yes
110 cellphonefield 7732909650
110 cumemberfield UPbfAkyTaheCYQn88fGbo00/SCpNrhFefBoC5lTDqr4=
110 cityfield Seattle
110 zipfield 98107
111 emailfield harry@buyercall.com
111 lastnamefield Jones
111 phonefield 7732909650
111 firstnamefield Felix
111 datepicker 6ApZvxA3KCAQyOKfjvNk0ILUror6y/Vl44dKhgL3YI4=
111 streetfield 12 East Rd
111 incomefield 50000
111 statefield KS
111 lead-id-field 111
111 privacypolicyfield yes
111 cellphonefield 7732909650
111 cumemberfield UWBnV+FsHOymKVZsUD0x46zjCJIG2svkQUZ3XviEadg=
111 cityfield Seattle
111 zipfield 98107
112 emailfield harry@buyercall.com
112 lastnamefield Sual
112 phonefield 7732909650
112 firstnamefield Felix
112 datepicker 3c4WsU6CbIY934UhyLf5Ste1s4Lk5G6qlwtB1S/4sFw=
112 streetfield 12 East Rd
112 incomefield 5000
112 statefield KS
112 lead-id-field 112
112 privacypolicyfield yes
112 cellphonefield 6554043321
112 cumemberfield kwZ4pmX9z4+1bHwlb/q5cKW+6o45mtPj3h5ThE306io=
112 cityfield Seattle
112 zipfield 98107
113 emailfield hv13@hotmail.com
113 lastnamefield Pardon
113 phonefield 7732909650
113 firstnamefield John
113 datepicker G5t1p0OU83nKCW4cRyM1Vbdh7BuK99lGTpaKLNG9JYc=
113 streetfield 12 East Rd
113 incomefield 50000
113 statefield KY
113 lead-id-field 113
113 privacypolicyfield yes
113 cellphonefield 6554043321
113 cumemberfield /stdzngRJD7nZ3ZJ992UBmtfaxkUxqO7MzAPv1XvUtQ=
113 cityfield Seattle
113 zipfield 98107
114 datepicker ORFwmJFLiGnkTBhCvniprwdqfMtOdRICpAdDnFYTims=
114 cellphonefield 7732909650
114 emailfield shaun@buyercall.com
114 lastnamefield Jonas
114 phonefield 7732909650
114 firstnamefield dasd
114 streetfield 12 East Rd
114 incomefield 50000
114 statefield KS
114 lead-id-field 114
114 privacypolicyfield yes
114 cumemberfield CSFRrNc9IB8m+B8JGsdY+U/Mu/8zl4mUDJbz5Y4EkV8=
114 cityfield Seattle
114 zipfield 60640
115 emailfield hv13@hotmail.com
115 lastnamefield Jonas
115 phonefield 7732909650
115 firstnamefield Felix
115 datepicker bsOoXgalmh8xKf33tnfwkbFNsrxImWTm0kabJQmhV+A=
115 streetfield 12 East Rd
115 incomefield 50000
115 statefield KY
115 lead-id-field 115
115 privacypolicyfield yes
115 cellphonefield 6554043321
115 cumemberfield 1B430zhdNXkR6AJ+mvPFwbA3/w21leK1Dzm0RmKKBYw=
115 cityfield Seattle
115 zipfield 98107
116 emailfield hv13@hotmail.com
116 lastnamefield Pardon
116 phonefield 7732909650
116 firstnamefield John
116 datepicker 6CHyPNY+RFqps93rWxJfY/1b03yI9PXe9AhxG4XJ3AQ=
116 streetfield 12 East Rd
116 incomefield 50000
116 statefield KS
116 lead-id-field 116
116 privacypolicyfield yes
116 cellphonefield 6554043321
116 cumemberfield WW7fQ24T5yJFOxx7B0WpKS9XWnZQWsqIn+0sb1hcoLQ=
116 cityfield Seattle
116 zipfield 60640
117 emailfield shaun@buyercall.com
117 lastnamefield Pardon
117 phonefield 7732909650
117 firstnamefield Mike
117 datepicker 4YLIPmAVCjSQgmPl3BpeFkQ3Xpj/xgncpfDNPqHnfj0=
117 streetfield 12 East Rd
117 incomefield 50000
117 statefield KY
117 lead-id-field 117
117 privacypolicyfield yes
117 cellphonefield 6554043321
117 cumemberfield DS7/zDH2+06AfF3MPQObahMTfyMZlIQaRxepTQ/Aduo=
117 cityfield Seattle
117 zipfield 98107
118 emailfield hv13@hotmail.com
118 lastnamefield Pardon
118 phonefield 7732909650
118 firstnamefield dasd
118 datepicker IclY7dIPWoxQEZUzHq4PqwAZruayeIOR3wc4UZb5/Gs=
118 streetfield 12 East Rd
118 incomefield 50000
118 statefield KS
118 lead-id-field 118
118 privacypolicyfield yes
118 cellphonefield 7732909650
118 cumemberfield Ros4As5Psd42TwdhaoGYEpYSXh/aMeHpQSTBe12U0nU=
118 cityfield Seattle
118 zipfield 60640
119 emailfield hv13@hotmail.com
119 lastnamefield Sual
119 phonefield 7732909650
119 firstnamefield Mike
119 datepicker x1lWVNgAPO5RnrdCvTXh3b3MtImybw9lXQfSIssJxmA=
119 streetfield 12 East Rd
119 incomefield 5000
119 statefield KY
119 lead-id-field 119
119 privacypolicyfield yes
119 cellphonefield 7732909650
119 cumemberfield T93l52SRRlT2sYH7AkY+E55WIgZP/GGuzEwzSZSWDyE=
119 cityfield Seattle
119 zipfield 98107
120 emailfield hv13@hotmail.com
120 lastnamefield Jonas
120 phonefield 7732909650
120 firstnamefield John
120 datepicker pfHBygtTNDyPEKR/I74gTkty22tjL2HFH1PwJLhLmdA=
120 streetfield 12 East Rd
120 incomefield 50000
120 statefield KY
120 lead-id-field 120
120 privacypolicyfield yes
120 cellphonefield 6554043321
120 cumemberfield PEvd7hxICSBBGuO8oxpidyTFs3z54wrSKXWXAEitfCM=
120 cityfield Seattle
120 zipfield 60640
121 emailfield hv13@hotmail.com
121 lastnamefield Jonas
121 phonefield 7732909650
121 firstnamefield John
121 datepicker 2Q4zFqHIRAi+jt3sctWCgMbSQKPJsbFF4jkEXhyhwVg=
121 streetfield 12 East Rd
121 incomefield 50000
121 statefield KS
121 lead-id-field 121
121 privacypolicyfield yes
121 cellphonefield 6554043321
121 cumemberfield T8KbHcqCkAHC1UtDSrt9m9m6m70xMyiw1CbIDdYMikw=
121 cityfield Seattle
121 zipfield 98107
122 emailfield hv13@hotmail.com
122 lastnamefield Pardon
122 datepicker qKt6851ORQ8rXN+AKVBSfyTDpY57mZJTWFRcfANMhPA=
122 incomefield 50000
122 statefield KS
122 lead-id-field 122
122 cellphonefield 6554043321
122 cumemberfield bXBAlJsftr3IR0QKSZ+Yr3f+hCOPRLJSRSyfkQ24yzU=
122 cityfield Seattle
122 zipfield 60640
122 phonefield 7732909650
122 firstnamefield John
122 streetfield 12 East Rd
122 privacypolicyfield yes
123 emailfield shaun@buyercall.com
123 lastnamefield Jonas
123 phonefield 7732909650
123 firstnamefield fsdfsdf
123 datepicker /pmIbcg+0MB8CH3ATlAUMrrx3zYw0g3MBTRHIWKSN4E=
123 streetfield 12 East Rd
123 incomefield 50000
123 statefield IA
123 lead-id-field 123
123 privacypolicyfield yes
123 cellphonefield 6554043321
123 cumemberfield zItTyESlhnuZxUNcWbJB1mNtMAKsPAU44D4LWIXdyWA=
123 cityfield Seattle
123 zipfield 98107
124 emailfield hv13@hotmail.com
124 lastnamefield Sual
124 phonefield 7732909650
124 firstnamefield Felix
124 datepicker pfpdH2xFhu6ilYCAPqM2+cCsAoCcjXkBTXLS/Okjd0s=
124 streetfield 12 East Rd
124 incomefield 50000
124 statefield KY
124 lead-id-field 124
124 privacypolicyfield yes
124 cellphonefield 6554043321
124 cumemberfield /sqS8ZvktPTzb+UjftEasz9Ej9FjStQw1zTROpAhJEs=
124 cityfield Seattle
124 zipfield 60640
125 emailfield shaun@buyercall.com
125 lastnamefield Pardon
125 phonefield 7732909650
125 firstnamefield John
125 datepicker uaaiD4lAPUReM7B8mphEsge48NlPFnzyhoda5IN2nY4=
125 streetfield 12 East Rd
125 incomefield 50000
125 statefield CA
125 lead-id-field 125
125 privacypolicyfield yes
125 cellphonefield 6554043321
125 cumemberfield 3wZsaDsE85eXFfAfGJTnxyKAJKj5/lrOqj/R5pr0y68=
125 cityfield Seattle
125 zipfield 98107
126 emailfield harry@buyercall.com
126 lastnamefield Pool
126 phonefield 7732909650
126 firstnamefield Felix
126 datepicker IJr0iUA2GsIDvOP9QpK+2OTC4uyPwcMbuU0AN82mTY0=
126 streetfield 12 East Rd
126 incomefield 50000
126 statefield IL
126 lead-id-field 126
126 privacypolicyfield yes
126 cellphonefield 6554043321
126 cumemberfield /iFES7if7MWAdCZJrzTXz8QCsp841rb+6LEte/P/u/g=
126 cityfield Seattle
126 zipfield 60640
127 emailfield harry@buyercall.com
127 lastnamefield Jones
127 phonefield 7732909650
127 firstnamefield Born
127 datepicker srjLQUI7DHT1TZ8I5sxtlXpjBdgpLK2XAoJKOI/iRGs=
127 streetfield 12 East Rd
127 incomefield 50000
127 statefield CA
127 lead-id-field 127
127 privacypolicyfield yes
127 cellphonefield 6554043321
127 cumemberfield Opey3188S4GAAT9ky8IZJz9xvGmIW1D5cIGkdHM3FVw=
127 cityfield Seattle
127 zipfield 98107
128 emailfield harry@buyercall.com
128 lastnamefield Jonas
128 phonefield 7732909650
128 firstnamefield John
128 datepicker DDauRb1VrcVypZ8kmD1nDX0X28B90pCfjmg5t3yINz0=
128 streetfield 12 East Rd
128 incomefield 50000
128 statefield AK
128 lead-id-field 128
128 privacypolicyfield yes
128 cellphonefield 6554043321
128 cumemberfield 0P8ucCWtd9fc5BCTpIcFOLnPYnLOaGeDEpsAYveNAUg=
128 cityfield Seattle
128 zipfield 98107
129 emailfield hv13@hotmail.com
129 lastnamefield Moore
129 phonefield 7732909650
129 firstnamefield Cody
129 datepicker 5JTcmgBlYzZYEPIILX/yQ7+i0QAF8zd3q/5yXuWKxww=
129 streetfield 12 East Rd
129 incomefield 50000
129 statefield KS
129 lead-id-field 129
129 privacypolicyfield yes
129 cellphonefield 7732909650
129 cumemberfield XKitGdhh+Xmc+YtGAbOsqOT76tvSn5U4ZD8s1We1n4c=
129 cityfield Seattle
129 zipfield 98107
130 emailfield hv13@hotmail.com
130 lastnamefield Jonas
130 phonefield 7732909650
130 firstnamefield John
130 datepicker S38BQGFPEKqkQQOQyCrgT/wfCE7I3/zbq2MnwORvBg0=
130 streetfield 12 East Rd
130 incomefield 5000
130 statefield IN
130 lead-id-field 130
130 privacypolicyfield yes
130 cellphonefield 7732909650
130 cumemberfield q0qJ9m6qYmpOxxDXzGsDYY4Daq8cydyKkX7Hd8bOtkc=
130 cityfield Seattle
130 zipfield 60640
131 emailfield hv13@hotmail.com
131 lastnamefield Jones
131 phonefield 7739699892
131 incomefield 50000
131 firstnamefield Bobby
131 datepicker BgPzap40bYgcUbZJLLBmyIPu1ea8lWjGuGKzljY/gco=
131 streetfield 12 East Rd
131 statefield IA
131 lead-id-field 131
131 privacypolicyfield yes
131 cellphonefield 7732909650
131 cumemberfield kSyEEJHkw3QDl0CbhQdeZCZwzan1x8BzZljcFbmHx/o=
131 cityfield Seattle
131 zipfield 98107
131 cosignerbankruptcyfield Yes
4 cosignerbankruptcyfield Yes
132 streetfield 123 West Hollywood St
132 addressyearstotalfield 5
132 dependentsfield 4
132 rentorownfield Rent
132 employmentmonthsfield 8
132 hoursworkedfield 160
131 repfield Morne Kit
132 bankruptcydischargedatefield
132 cosignerpreviousaddressyearstotalfield
132 cosignerrepossessionfield
132 cosigneremailfield
132 cosignerphonefield
132 cosignermonthlyincomefield
132 cosignerdownpaymentfield
132 cosignerdependentsfield
132 cosignerbankruptcychapterfield
132 cosignerformeremployertimefield
132 cosigneradditionalincomefield
132 cosigneraddressyearstotalfield
132 emailfield hv13@hotmail.com
132 codriverlicensefield
132 cosignerrentorownfield
132 cosigneremploymentmonthsfield
132 phonefield 7732909650
132 cosignerphonebillfield
132 cosigneremploymentlengthyearsfield
132 cosignerpayperiodfield
132 cosignerformeremployerfield
132 cosignercitytfield
132 cosigneradditionalincomesourcefield
132 previousaddressmonthstotalfield
132 cosignerhourlypayfield
132 cosignerpositionfield
132 cosignerstatefield
132 cosignerlandlordfield
132 previouscitytfield
132 repossessiontypefield
132 cosignerzipfield
132 cosignermaritalstatusfield
132 cosignertownshipfield
132 cosignerbankcityfield
132 cosigneraddressmonthstotalfield
132 cosignerpreviouszipfield
132 cosignerformeremployerpositionfield
132 cosignerrepossessiontypefield
132 cosigneramountowedfield
132 previouszipfield
132 repossessiondatefield
132 formeremployerfield
132 cosignerpreviousstatefield
132 cosignerdependentagesfield
132 cosignercountyfield
132 cosignerpreviousaddressmonthstotalfield
132 cosignerstreetfield
132 cosignerpriorvehiclecreditborrowedfield
132 lastnamefield Muller
132 cosignerbanknamefield
132 previousstreetfield
132 cosignerrepossessiondatefield
132 bankruptcychapterfield
132 cosignerchildsupportagesfield
132 cosignerfirstnamefield
132 cosignercheckingbalancefield
132 cosignerutilitiespaymentfield
132 codriverlicensestatefield
132 cosignerloanwithwhomfield
132 previousstatefield
132 cosigneremployerstatefield
132 cosignerpreviousstreetfield
132 cosigneremployerfield
132 statusnote
132 cosignerlandlordphonefield
132 cosignermonthlypaymentfield
132 cosignerformeremployerleavereasonfield
132 ccosignerlastnamefield
132 cosigneremployercityfield
132 cosignermaintenancepaymentfield
132 cosigneremployeraddressfield
132 middlenamefield Frank
132 childsupportagesfield
132 formeremployerleavereasonfield
132 formeremployertimemonthsfield
132 cosignerpreviouscitytfield
132 cosignerchildcarepaymentfield
132 cosignerbankruptcydischargedatefield
132 mobilephonefield 6542322233
132 cosignerhoursworkedfield
132 cosignersavingbalancefield
132 formeremployertimefield
132 cosigneremploymerphonefield
132 cosigneremployerzipfield
132 cosignerformeremployerphonefield
132 formeremployerphonefield
132 cosignermobilephonefield
132 cosignercabletvpaymentfield
132 previousaddressyearstotalfield
132 formeremployerpositionfield
132 cosignerformeremployertimemonthsfield
132 cosignermiddlenamefield
132 cosignerbankruptcyfield
132 firstnamefield Bobby
132 repfield
132 hourlypayfield 230
132 cosignerssnfield bWkGl0cLuvjAU0wFD57TKVCSYbqhxoxfGSYz1iBclrI=
132 titlefield Tool man
132 citytfield Atlanta
132 cabletvpaymentfield 100
132 landlordfield N/A
132 maritalstatusfield Married
132 downpaymentfield 4000
132 employerfield Garys Garage
132 savingbalancefield 2300
132 incomefield 8000
132 cosignerdateofbirthfield 2KOLxQJ8ojvKT3SVNsvwgARH4hrXgQUEbgyPj4ojWcA=
132 employmentyearsfield 5
132 landlordphonefield 4453214433
132 applicationtypefield Individual
132 lead-id-field 132
132 banknamefield Chase Bank
132 countyfield George Town
132 townshipfield Wendies
132 payperiodfield monthly
132 employercitytfield Atlanta
132 loanwithwhomfield FG Bank
132 additionalincomesourcefield Investing
132 employeraddressfield 43 East Main St
132 utilitiespaymentfield 2300
132 statefield GA
132 workphonefield 7732909986
132 ssnfield e6vTJVzyaTDtEsYgsW9wArDxpxvI10XE+PXgCOR3az8=
132 amountowedfield 2300
132 checkingbalancefield 5000
132 datepicker wj2EnWYdzEoPOdfiXTssjMLPl18OyNxecqvAnfUKRcY=
132 bankruptcyfield No
132 dependentagesfield 12
132 monthlypaymentfield 4000
132 additionalincomefield 230
132 driverlicensestatefield IA
132 childcarepaymentfield 0
132 maintenancepaymentfield No
132 priorvehiclecreditborrowedfield 45000
132 zipfield 56094
132 employerstatefield GA
132 repossessionfield No
132 addressmonthstotalfield 4
132 bankcityfield Atlanta
132 privacypolicyfield yes
132 driverlicensefield FG00345DFF
132 phonebillfield Mark Jones
132 employerzipfield 56098
132 additionalinformationfield I want it now
133 cosignerpreviousaddressyearstotalfield
133 cosignerrepossessionfield
133 cosigneremailfield
133 cosignerphonefield
133 cosignermonthlyincomefield
133 cosignerdownpaymentfield
133 cosignerdependentsfield
133 cosignerbankruptcychapterfield
133 repfield Mark Twain
133 cosignerformeremployertimefield
133 cosigneradditionalincomefield
133 cosigneraddressyearstotalfield
133 emailfield hv13@hotmail.com
133 codriverlicensefield
133 cosignerrentorownfield
133 cosigneremploymentmonthsfield
133 phonefield 7732909650
133 cosignerphonebillfield
133 cosigneremploymentlengthyearsfield
133 cosignerpayperiodfield
133 cosignerformeremployerfield
133 cosignercitytfield
133 cosigneradditionalincomesourcefield
133 previousaddressmonthstotalfield
133 cosignerhourlypayfield
133 cosignerpositionfield
133 cosignerstatefield
133 cosignerlandlordfield
133 previouscitytfield
133 streetfield 45 Main St
133 addressyearstotalfield 5
133 bankruptcydischargedatefield 08-03-2014
133 dependentsfield 0
133 rentorownfield Other
133 employmentmonthsfield 11
133 hoursworkedfield 4
133 mobilephonefield 7732909650
133 hourlypayfield 45
133 cosignerssnfield qR3bZQ9VblgxgAnD0jaKkt7Ec3O1VoWoS+heI7X3/Xo=
133 titlefield Engineer
133 citytfield Atlanta
133 cabletvpaymentfield 1000
133 landlordfield Mike Doe
133 maritalstatusfield Unmarried
133 downpaymentfield 0
133 employerfield Mac Truck
133 savingbalancefield 100000
133 repossessiontypefield
133 cosignerzipfield
133 cosignermaritalstatusfield
133 cosignertownshipfield
133 cosignerbankcityfield
133 cosigneraddressmonthstotalfield
133 cosignerpreviouszipfield
133 cosignerformeremployerpositionfield
133 cosignerrepossessiontypefield
133 cosigneramountowedfield
133 previouszipfield
133 repossessiondatefield
133 formeremployerfield
133 cosignerpreviousstatefield
133 cosignerdependentagesfield
133 cosignercountyfield
133 cosignerpreviousaddressmonthstotalfield
133 cosignerstreetfield
133 cosignerpriorvehiclecreditborrowedfield
133 lastnamefield Jones
133 cosignerbanknamefield
133 previousstreetfield
133 cosignerrepossessiondatefield
133 cosignerchildsupportagesfield
133 cosignerfirstnamefield
133 cosignercheckingbalancefield
133 cosignerutilitiespaymentfield
133 codriverlicensestatefield
133 cosignerloanwithwhomfield
133 previousstatefield
133 dealerlotfield L1
133 cosigneremployerstatefield
133 cosignerpreviousstreetfield
133 cosigneremployerfield
133 statusnote
133 cosignerlandlordphonefield
133 cosignermonthlypaymentfield
133 cosignerformeremployerleavereasonfield
133 ccosignerlastnamefield
133 cosigneremployercityfield
133 cosignermaintenancepaymentfield
133 cosigneremployeraddressfield
133 middlenamefield Middle
133 formeremployerleavereasonfield
133 formeremployertimemonthsfield
133 cosignerpreviouscitytfield
133 cosignerchildcarepaymentfield
133 cosignerbankruptcydischargedatefield
133 cosignerhoursworkedfield
133 cosignersavingbalancefield
133 formeremployertimefield
133 cosigneremploymerphonefield
133 cosigneremployerzipfield
133 cosignerformeremployerphonefield
133 formeremployerphonefield
133 cosignermobilephonefield
133 cosignercabletvpaymentfield
133 previousaddressyearstotalfield
133 formeremployerpositionfield
133 cosignerformeremployertimemonthsfield
133 cosignermiddlenamefield
133 cosignerbankruptcyfield
133 firstnamefield Fred
133 incomefield 3000
133 cosignerdateofbirthfield uJqX/CxhZxBjfnp4rqTaMuDi2vsw8lamAAYkrvmcoYo=
133 loanwithwhomfield FG Bank
133 landlordphonefield 7732909540
133 applicationtypefield Individual
133 lead-id-field 133
133 banknamefield Chase Bank
133 countyfield Cook
133 townshipfield Cook
133 payperiodfield Bi-weekly
133 employercitytfield Atlanta
133 bankruptcychapterfield Chapter 13
133 additionalincomesourcefield Investments
133 employeraddressfield 34 Noth Ave
133 utilitiespaymentfield 4000
133 statefield GA
133 workphonefield 7743239983
133 ssnfield +3iq5YlCsad3V0COQSZaRPNhInhTvWSjevxoxv5DQ1U=
133 childsupportagesfield 5
133 amountowedfield 5666
133 checkingbalancefield 50000
133 datepicker wXE2X1bmeBOI5tVSxGSlh3BX6TdC/665lHjgYyqhAv0=
133 bankruptcyfield Yes
133 dependentagesfield 0
133 monthlypaymentfield 3000
133 additionalincomefield 2300
133 employmentyearsfield 5
133 driverlicensestatefield KY
133 childcarepaymentfield 0
133 maintenancepaymentfield Yes
133 priorvehiclecreditborrowedfield 5000
133 zipfield 65093
133 employerstatefield KS
133 repossessionfield No
133 addressmonthstotalfield 4
133 bankcityfield Atlanta
133 privacypolicyfield yes
133 driverlicensefield FG00345DFF
133 phonebillfield John Doe
133 employerzipfield 47965
133 additionalinformationfield No message
134 bankruptcydischargedatefield
134 cosignerpreviousaddressyearstotalfield
134 cosignerrepossessionfield
134 cosigneremailfield
134 cosignerphonefield
134 cosignermonthlyincomefield
134 cosignerdownpaymentfield
134 cosignerdependentsfield
134 cosignerbankruptcychapterfield
134 repfield Mark Twain
134 cosignerformeremployertimefield
134 cosigneradditionalincomefield
134 cosigneraddressyearstotalfield
134 emailfield hv13@hotmail.com
134 codriverlicensefield
134 cosignerrentorownfield
134 cosigneremploymentmonthsfield
134 phonefield 7732909660
134 cosignerphonebillfield
134 cosigneremploymentlengthyearsfield
134 cosignerpayperiodfield
134 cosignerformeremployerfield
134 cosignercitytfield
134 cosigneradditionalincomesourcefield
134 previousaddressmonthstotalfield
134 cosignerhourlypayfield
134 cosignerpositionfield
134 cosignerstatefield
134 cosignerlandlordfield
134 previouscitytfield
134 repossessiontypefield
134 cosignerzipfield
134 cosignermaritalstatusfield
134 cosignertownshipfield
134 cosignerbankcityfield
134 cosigneraddressmonthstotalfield
134 cosignerpreviouszipfield
134 cosignerformeremployerpositionfield
134 cosignerrepossessiontypefield
134 cosigneramountowedfield
134 previouszipfield
134 repossessiondatefield
134 formeremployerfield
134 cosignerpreviousstatefield
134 cosignerdependentagesfield
134 cosignercountyfield
134 cosignerpreviousaddressmonthstotalfield
134 cosignerstreetfield
134 cosignerpriorvehiclecreditborrowedfield
134 lastnamefield Renolds
134 cosignerbanknamefield
134 previousstreetfield
134 cosignerrepossessiondatefield
134 bankruptcychapterfield
134 cosignerchildsupportagesfield
134 cosignerfirstnamefield
134 cosignercheckingbalancefield
134 cosignerutilitiespaymentfield
134 codriverlicensestatefield
134 cosignerloanwithwhomfield
134 previousstatefield
134 dealerlotfield L1
134 cosigneremployerstatefield
134 cosignerpreviousstreetfield
134 cosigneremployerfield
134 statusnote
134 cosignerlandlordphonefield
134 cosignermonthlypaymentfield
134 cosignerformeremployerleavereasonfield
134 ccosignerlastnamefield
134 cosigneremployercityfield
134 cosignermaintenancepaymentfield
134 cosigneremployeraddressfield
134 middlenamefield John
134 childsupportagesfield
134 formeremployerleavereasonfield
134 formeremployertimemonthsfield
134 cosignerpreviouscitytfield
134 cosignerchildcarepaymentfield
134 cosignerbankruptcydischargedatefield
134 cosignerhoursworkedfield
134 cosignersavingbalancefield
134 formeremployertimefield
134 cosigneremploymerphonefield
134 cosigneremployerzipfield
134 cosignerformeremployerphonefield
134 formeremployerphonefield
134 cosignermobilephonefield
134 cosignercabletvpaymentfield
134 previousaddressyearstotalfield
134 formeremployerpositionfield
134 cosignerformeremployertimemonthsfield
134 cosignermiddlenamefield
134 cosignerbankruptcyfield
134 firstnamefield Burt
134 streetfield 14 Mian ST
134 addressyearstotalfield 5
134 dependentsfield 0
134 rentorownfield Rent
134 employmentmonthsfield 10
134 hoursworkedfield 40
134 mobilephonefield 7732909650
134 hourlypayfield 40
134 cosignerssnfield keR/r2wXUk/A3LQlNddzpIVndz7meI55Tr19ptLGvfU=
134 titlefield Macanic
134 citytfield Chicago
134 cabletvpaymentfield 0
134 landlordfield J Doe
134 maritalstatusfield Unmarried
134 downpaymentfield 0
134 employerfield Roll Royce
134 savingbalancefield 345345
134 incomefield 5000
134 cosignerdateofbirthfield UowKdSzhXQozYvIrQid1KWtA8GC8qbpXF89TFipulYg=
134 loanwithwhomfield FG Bank
134 landlordphonefield 7732889854
134 applicationtypefield Individual
134 lead-id-field 134
134 banknamefield Chase Bank
134 countyfield Cook
134 townshipfield Cook
134 payperiodfield weekly
134 employercitytfield Atlanta
134 additionalincomesourcefield Investments
134 employeraddressfield 45 TallBoy Road
134 utilitiespaymentfield 500
134 statefield IL
134 workphonefield 7785422134
134 ssnfield cHnRyI1/bXFuSVyzWgYdP2WLdjv5WH6by8zJYjDRjic=
134 amountowedfield 200
134 checkingbalancefield 45344
134 datepicker GW6/HNvrNmsl0+oaJFuYogTnsx/ArYU+cqbny2dO26s=
134 bankruptcyfield No
134 dependentagesfield 0
134 monthlypaymentfield 500
134 additionalincomefield 34534534
134 employmentyearsfield 5
134 driverlicensestatefield FL
134 childcarepaymentfield 446634
134 maintenancepaymentfield No
134 priorvehiclecreditborrowedfield 500
134 zipfield 60613
134 employerstatefield GA
134 repossessionfield No
134 addressmonthstotalfield 3
134 bankcityfield Atlantqa
134 privacypolicyfield yes
134 driverlicensefield DL3423423DF
134 phonebillfield John Doe
134 employerzipfield 56093
134 additionalinformationfield No comment
135 streetfield 123 Harlem Road
135 addressyearstotalfield 5
135 bankruptcydischargedatefield
135 cosignerpreviousaddressyearstotalfield
135 dependentsfield 0
135 cosignerrepossessionfield
135 rentorownfield Rent
135 employmentmonthsfield 3
135 cosigneremailfield
135 cosignerphonefield
135 hoursworkedfield 40
135 mobilephonefield 6548793322
135 cosignermonthlyincomefield
135 cosignerdownpaymentfield
135 cosignerdependentsfield
135 hourlypayfield 400
135 cosignerbankruptcychapterfield
135 repfield Mark Twain
135 cosignerformeremployertimefield
135 cosigneradditionalincomefield
135 cosignerssnfield X8+Lf45bhzPRws1WcuSHC7ruhWIuzaZCjTmATP9ZBM4=
135 titlefield Engineer
135 cosigneraddressyearstotalfield
135 citytfield Chicago
135 emailfield gbutler@buyercall.com
135 codriverlicensefield
135 cosignerrentorownfield
135 cosigneremploymentmonthsfield
135 phonefield 7732909633
135 cabletvpaymentfield 100
135 cosignerphonebillfield
135 landlordfield H Vermaak
135 maritalstatusfield Unmarried
135 cosigneremploymentlengthyearsfield
135 cosignerpayperiodfield
135 cosignerformeremployerfield
135 cosignercitytfield
135 cosigneradditionalincomesourcefield
135 previousaddressmonthstotalfield
135 downpaymentfield 4000
135 cosignerhourlypayfield
135 cosignerpositionfield
135 employerfield Tekock
135 savingbalancefield 1000000
135 cosignerstatefield
135 incomefield 40000
135 cosignerlandlordfield
135 previouscitytfield
135 cosignerdateofbirthfield QnYBLuhH3sEfpDSL91CZ2BTZ/e6Betjpk/qO5sYgbaQ=
135 repossessiontypefield
135 cosignerzipfield
135 loanwithwhomfield FG Bank
135 cosignermaritalstatusfield
135 cosignertownshipfield
135 cosignerbankcityfield
135 cosigneraddressmonthstotalfield
135 landlordphonefield 7732909650
135 applicationtypefield Individual
135 cosignerpreviouszipfield
135 cosignerformeremployerpositionfield
135 cosignerrepossessiontypefield
135 cosigneramountowedfield
135 previouszipfield
135 lead-id-field
135 repossessiondatefield
135 formeremployerfield
135 cosignerpreviousstatefield
135 cosignerdependentagesfield
135 cosignercountyfield
135 banknamefield Chase Bank
135 countyfield Cook
135 townshipfield Cook
135 cosignerpreviousaddressmonthstotalfield
135 cosignerstreetfield
135 payperiodfield weekly
135 cosignerpriorvehiclecreditborrowedfield
135 employercitytfield Chicago
135 lastnamefield Miller
135 cosignerbanknamefield
135 previousstreetfield
135 cosignerrepossessiondatefield
135 bankruptcychapterfield
135 cosignerchildsupportagesfield
135 cosignerfirstnamefield
135 cosignercheckingbalancefield
135 cosignerutilitiespaymentfield
135 codriverlicensestatefield
135 cosignerloanwithwhomfield
135 additionalincomesourcefield Investments
135 previousstatefield
135 dealerlotfield L1
135 cosigneremployerstatefield
135 employeraddressfield 54 Mian St
135 utilitiespaymentfield 400
135 cosignerpreviousstreetfield
135 cosigneremployerfield
135 statusnote
135 cosignerlandlordphonefield
135 cosignermonthlypaymentfield
135 statefield IL
135 cosignerformeremployerleavereasonfield
135 ccosignerlastnamefield
135 workphonefield 7765633221
135 cosigneremployercityfield
135 cosignermaintenancepaymentfield
135 cosigneremployeraddressfield
135 middlenamefield Butler
135 ssnfield Pa+xjwGIkYBi4R9Mpn+YRdhNP5gYtftkXAAvHOr/gc8=
135 childsupportagesfield
135 formeremployerleavereasonfield
135 formeremployertimemonthsfield
135 cosignerpreviouscitytfield
135 cosignerchildcarepaymentfield
135 cosignerbankruptcydischargedatefield
135 amountowedfield 4000
135 checkingbalancefield 200000
135 datepicker ZTu9A6+V9Pkb78qPocAPJiWYeibmy+uPKG+Zgsfk1ns=
135 bankruptcyfield No
135 cosignerhoursworkedfield
135 cosignersavingbalancefield
135 formeremployertimefield
135 dependentagesfield 0
135 cosigneremploymerphonefield
135 monthlypaymentfield 5000
135 additionalincomefield 4000
135 cosigneremployerzipfield
135 employmentyearsfield 5
135 cosignerformeremployerphonefield
135 driverlicensestatefield AR
135 formeremployerphonefield
135 cosignermobilephonefield
135 childcarepaymentfield 2000
135 maintenancepaymentfield No
135 priorvehiclecreditborrowedfield 5000
135 zipfield 60640
135 employerstatefield IL
135 repossessionfield No
135 addressmonthstotalfield 1
135 cosignercabletvpaymentfield
135 bankcityfield Chicago
135 privacypolicyfield yes
135 driverlicensefield F000534FGH
135 previousaddressyearstotalfield
135 phonebillfield Hilda Brown
135 formeremployerpositionfield
135 cosignerformeremployertimemonthsfield
135 cosignermiddlenamefield
135 cosignerbankruptcyfield
135 employerzipfield 60640
135 firstnamefield Gerald
135 additionalinformationfield There is no comment
136 employmentmonthsfield 3
136 hoursworkedfield 40
136 hourlypayfield 400
136 repfield Mark Twain
136 citytfield Chicago
136 emailfield patty@buyercall.com
136 streetfield 123 Road Side
136 cabletvpaymentfield 100
136 downpaymentfield 4000
136 savingbalancefield 1000000
136 loanwithwhomfield FG Bank
136 banknamefield Chase Bank
136 countyfield Cook
136 townshipfield Cook
136 payperiodfield weekly
136 employercitytfield Chicago
136 additionalincomesourcefield Investments
136 dealerlotfield L1
136 utilitiespaymentfield 400
136 statusnote
136 statefield IL
136 workphonefield 7765633221
136 amountowedfield 4000
136 checkingbalancefield 200000
136 additionalincomefield 4000
136 childcarepaymentfield 2000
136 priorvehiclecreditborrowedfield 5000
136 zipfield 60640
136 employerstatefield IL
136 bankcityfield Chicago
136 privacypolicyfield yes
136 cosignerssnfield aexetdMRZkT/Qw4Vm+6Klqnk+KyQJ3SgqVmUEVZeqN0=
136 lead-id-field 136
136 phonefield 7732905500
136 lastnamefield Jones
136 cosignerrentorownfield Lease
136 cosigneremploymentmonthsfield 7
136 cosignerphonebillfield Hilda Jones
136 landlordfield Billy Jones
136 maritalstatusfield Married
136 incomefield 400
136 middlenamefield Sammy
137 streetfield 123 Road Side
137 addressyearstotalfield 2
136 firstnamefield Patrick
136 addressyearstotalfield 2
136 bankruptcydischargedatefield 05-05-2012
136 cosignerpreviousaddressyearstotalfield 3
136 dependentsfield 3
136 cosignerrepossessionfield Yes
136 rentorownfield Own
136 cosigneremailfield mh@buyercall.com
136 cosignerphonefield 7732809545
136 mobilephonefield 6548793456
136 cosignermonthlyincomefield 4000
136 cosignerdownpaymentfield 3000
136 cosignerdependentsfield 3
136 cosignerbankruptcychapterfield Chapter 11
136 cosignerformeremployertimefield 2
136 cosigneradditionalincomefield 1302
136 titlefield Baker
136 cosigneraddressyearstotalfield 2
136 codriverlicensefield GH0045-GH
136 cosigneremploymentlengthyearsfield 3
136 cosignerpayperiodfield Weekly
136 cosignerformeremployerfield Mary Tools
136 cosignercitytfield Chicago
136 cosigneradditionalincomesourcefield Investments
136 previousaddressmonthstotalfield 7
136 cosignerhourlypayfield 40
136 cosignerpositionfield Camera man
136 employerfield Garage Pie
136 cosignerstatefield AZ
136 cosignerlandlordfield Pat Jones
136 previouscitytfield Atlanta
136 cosignerdateofbirthfield 4N7utrito1MaQtSvteK6AM16q1Orkho0cxBnjGSGj3k=
136 repossessiontypefield Merchandise
136 cosignerzipfield 65095
136 cosignermaritalstatusfield Married
136 cosignertownshipfield Cook
136 cosignerbankcityfield Chicago
136 cosigneraddressmonthstotalfield 9
136 landlordphonefield 7732909544
136 applicationtypefield Joint
136 cosignerpreviouszipfield 65095
136 cosignerformeremployerpositionfield Manager
136 cosignerrepossessiontypefield Vehicle
136 cosigneramountowedfield 1000
136 previouszipfield 98107
136 repossessiondatefield 05-06-2016
136 formeremployerfield Gold Hotel
136 cosignerpreviousstatefield IL
136 cosignerdependentagesfield 6
136 cosignercountyfield Sterling
136 cosignerpreviousaddressmonthstotalfield 4
136 cosignerstreetfield 45 Foster
136 cosignerpriorvehiclecreditborrowedfield 4500
136 cosignerbanknamefield Chase Bank
136 previousstreetfield 45 Sterling Rd
136 cosignerrepossessiondatefield 09-16-2004
136 bankruptcychapterfield Chapter 11
136 cosignerchildsupportagesfield 3
136 cosignerfirstnamefield Mary
136 cosignercheckingbalancefield 432000
136 cosignerutilitiespaymentfield 400
136 codriverlicensestatefield IA
136 cosignerloanwithwhomfield Chelsey Bank
136 previousstatefield WA
136 cosigneremployerstatefield IL
136 employeraddressfield 54 Stream St
136 cosignerpreviousstreetfield 54 Charlie Lane
136 cosigneremployerfield Storage Wars
136 cosignerlandlordphonefield 7732904455
136 cosignermonthlypaymentfield 4000
136 cosignerformeremployerleavereasonfield Became a chef
136 ccosignerlastnamefield Jones
136 cosigneremployercityfield Chicago
136 cosignermaintenancepaymentfield Yes
136 cosigneremployeraddressfield 45 St Plain Road
136 ssnfield V6WHHyoY7S4u+Riqb6dWDuTa2G2fxI5xJqpRFrYRj/g=
136 childsupportagesfield 5
136 formeremployerleavereasonfield Better job
136 formeremployertimemonthsfield 2
136 cosignerpreviouscitytfield Barlington
136 cosignerchildcarepaymentfield 20
136 cosignerbankruptcydischargedatefield 06-13-2005
136 datepicker CL0JKR7P8RHAHqTWMNe4fCLT6k2PFXrqY7YaOvbQmbk=
136 bankruptcyfield Yes
136 cosignerhoursworkedfield 100
136 cosignersavingbalancefield 12000
136 formeremployertimefield 2
136 dependentagesfield 6
136 cosigneremploymerphonefield 7732095456
136 monthlypaymentfield 350
136 cosigneremployerzipfield 60643
136 employmentyearsfield 3
136 cosignerformeremployerphonefield 7732909543
136 driverlicensestatefield HI
136 formeremployerphonefield 7732909546
136 cosignermobilephonefield 7732309532
136 maintenancepaymentfield Yes
136 repossessionfield Yes
136 addressmonthstotalfield 9
136 cosignercabletvpaymentfield 100
136 driverlicensefield F000534DFH
136 previousaddressyearstotalfield 2
136 phonebillfield Shaun Veldsman
136 formeremployerpositionfield Chef
136 cosignerformeremployertimemonthsfield 2
136 cosignermiddlenamefield Hilda
136 cosignerbankruptcyfield Yes
136 employerzipfield 60645
136 additionalinformationfield No Comment from us
137 bankruptcydischargedatefield
137 cosignerpreviousaddressyearstotalfield 3
137 dependentsfield 3
137 cosignerrepossessionfield Yes
137 rentorownfield Own
137 cosigneremailfield mh@buyercall.com
137 cosignerphonefield 7732809545
137 mobilephonefield 6548793456
137 cosignermonthlyincomefield 4000
137 cosignerdownpaymentfield 3000
137 cosignerdependentsfield 3
137 cosignerbankruptcychapterfield Chapter 11
137 repfield Mark Twain
137 cosignerformeremployertimefield 2
137 cosigneradditionalincomefield 1302
137 titlefield Baker
137 cosigneraddressyearstotalfield 2
137 emailfield patty@buyercall.com
137 codriverlicensefield GH0045-GH
137 cosignerrentorownfield Lease
137 cosigneremploymentmonthsfield 7
137 phonefield 7732905500
137 cosignerphonebillfield Hilda Jones
137 landlordfield Billy Jones
137 maritalstatusfield Married
137 cosigneremploymentlengthyearsfield 3
137 cosignerpayperiodfield Weekly
137 cosignerformeremployerfield Mary Tools
137 cosignercitytfield Chicago
137 cosigneradditionalincomesourcefield Investments
137 previousaddressmonthstotalfield 7
137 cosignerhourlypayfield 40
137 cosignerpositionfield Camera man
137 employerfield Garage Pie
137 cosignerstatefield AZ
137 incomefield 400
137 cosignerlandlordfield Pat Jones
137 previouscitytfield Atlanta
137 repossessiontypefield Merchandise
137 cosignerzipfield 65095
137 cosignermaritalstatusfield Married
137 cosignertownshipfield Cook
137 cosignerbankcityfield Chicago
137 cosigneraddressmonthstotalfield 9
137 landlordphonefield 7732909544
137 applicationtypefield Joint
137 cosignerpreviouszipfield 65095
137 cosignerformeremployerpositionfield Manager
137 cosignerrepossessiontypefield Vehicle
137 cosigneramountowedfield 1000
137 previouszipfield 98107
137 formeremployerfield Gold Hotel
137 cosignerpreviousstatefield IL
137 cosignerdependentagesfield 6
137 cosignercountyfield Sterling
137 cosignerpreviousaddressmonthstotalfield 4
137 cosignerstreetfield 45 Foster
137 cosignerpriorvehiclecreditborrowedfield 4500
137 lastnamefield Jones
137 cosignerbanknamefield Chase Bank
137 previousstreetfield 45 Sterling Rd
137 cosignerrepossessiondatefield
137 bankruptcychapterfield Chapter 11
137 cosignerchildsupportagesfield 3
137 cosignerfirstnamefield Mary
137 cosignercheckingbalancefield 432000
137 cosignerutilitiespaymentfield 400
137 codriverlicensestatefield IA
137 cosignerloanwithwhomfield Chelsey Bank
137 previousstatefield WA
137 dealerlotfield L1
137 employeraddressfield 54 Stream St
137 cosignerpreviousstreetfield 54 Charlie Lane
137 cosigneremployerfield Storage Wars
137 statusnote
137 cosignerlandlordphonefield 7732904455
137 cosignermonthlypaymentfield 4000
137 cosignerformeremployerleavereasonfield Became a chef
137 ccosignerlastnamefield Jones
137 cosigneremployercityfield Chicago
137 cosignermaintenancepaymentfield Yes
137 cosigneremployeraddressfield 45 St Plain Road
137 middlenamefield Sammy
137 childsupportagesfield 5
137 formeremployerleavereasonfield Better job
137 formeremployertimemonthsfield 2
137 cosignerpreviouscitytfield Barlington
137 cosignerchildcarepaymentfield 20
137 cosignerbankruptcydischargedatefield
137 bankruptcyfield Yes
137 cosignerhoursworkedfield 100
137 cosignersavingbalancefield 12000
137 formeremployertimefield 2
137 dependentagesfield 6
137 cosigneremploymerphonefield 7732095456
137 monthlypaymentfield 350
137 cosigneremployerzipfield 60643
137 employmentyearsfield 3
137 cosignerformeremployerphonefield 7732909543
137 driverlicensestatefield HI
137 formeremployerphonefield 7732909546
137 cosignermobilephonefield 7732309532
137 maintenancepaymentfield Yes
137 repossessionfield Yes
137 addressmonthstotalfield 9
137 cosignercabletvpaymentfield 100
137 driverlicensefield F000534DFH
137 previousaddressyearstotalfield 2
137 phonebillfield Shaun Veldsman
137 formeremployerpositionfield Chef
137 cosignerformeremployertimemonthsfield 2
137 cosignermiddlenamefield Hilda
137 cosignerbankruptcyfield Yes
137 employerzipfield 60645
137 firstnamefield Patrick
137 additionalinformationfield No Comment from us
137 employmentmonthsfield 3
137 hoursworkedfield 5
137 hourlypayfield 5
137 cosignerssnfield EA68dohfbEsaaXIir9bj5Mv1ucuKPjGapo7c6s1Ezfk=
137 citytfield Chicago
137 cabletvpaymentfield 500
137 downpaymentfield 40000
137 savingbalancefield 500
137 cosignerdateofbirthfield QmcQqbaq/BU4aiuKksazWk8gLL4BFubQxFO5fLCegkA=
137 loanwithwhomfield FG Bank
137 lead-id-field 137
137 repossessiondatefield 07-06-2013
137 banknamefield Chase Bank
137 countyfield Cook
137 townshipfield Cook
137 payperiodfield Weekly
137 employercitytfield Chicago
137 additionalincomesourcefield Investments
137 cosigneremployerstatefield IA
137 utilitiespaymentfield 500
137 statefield AR
137 workphonefield 7732909650
137 ssnfield zOXA//LgivOOKSdLzHILWajkYGQZf/hSms/Q/1A9UxI=
137 amountowedfield 5666
137 checkingbalancefield 5000
137 datepicker wc0h5IC7Cl1YUNTSUI8ZJMaEeeQfd9LzPe6QLMtZAYo=
137 additionalincomefield 500
137 childcarepaymentfield 400
137 priorvehiclecreditborrowedfield 45000
137 zipfield 66014
137 employerstatefield CA
137 bankcityfield Chicago
137 privacypolicyfield yes
138 streetfield 123 Road Side
138 addressyearstotalfield 2
138 bankruptcydischargedatefield
138 cosignerpreviousaddressyearstotalfield 3
138 dependentsfield 3
138 cosignerrepossessionfield Yes
138 rentorownfield Own
138 cosigneremailfield mh@buyercall.com
138 cosignerphonefield 7732809545
138 mobilephonefield 6548793456
138 cosignermonthlyincomefield 4000
138 cosignerdownpaymentfield 3000
138 cosignerdependentsfield 3
138 cosignerbankruptcychapterfield Chapter 11
138 repfield Mark Twain
138 cosignerformeremployertimefield 2
138 cosigneradditionalincomefield 1302
138 titlefield Baker
138 cosigneraddressyearstotalfield 2
138 emailfield patty@buyercall.com
138 codriverlicensefield GH0045-GH
138 cosignerrentorownfield Lease
138 cosigneremploymentmonthsfield 7
138 phonefield 7732905500
138 cosignerphonebillfield Hilda Jones
138 landlordfield Billy Jones
138 maritalstatusfield Married
138 cosigneremploymentlengthyearsfield 3
138 cosignerpayperiodfield Weekly
138 cosignerformeremployerfield Mary Tools
138 cosignercitytfield Chicago
138 cosigneradditionalincomesourcefield Investments
138 previousaddressmonthstotalfield 7
138 cosignerhourlypayfield 40
138 cosignerpositionfield Camera man
138 employerfield Garage Pie
138 cosignerstatefield AZ
138 incomefield 400
138 cosignerlandlordfield Pat Jones
138 previouscitytfield Atlanta
138 repossessiontypefield Merchandise
138 cosignerzipfield 65095
138 cosignermaritalstatusfield Married
138 cosignertownshipfield Cook
138 cosignerbankcityfield Chicago
138 cosigneraddressmonthstotalfield 9
138 landlordphonefield 7732909544
138 applicationtypefield Joint
138 cosignerpreviouszipfield 65095
138 cosignerformeremployerpositionfield Manager
138 cosignerrepossessiontypefield Vehicle
138 cosigneramountowedfield 1000
138 previouszipfield 98107
138 repossessiondatefield
138 formeremployerfield Gold Hotel
138 cosignerdependentagesfield 6
138 cosignercountyfield Sterling
138 cosignerpreviousaddressmonthstotalfield 4
138 cosignerstreetfield 45 Foster
138 cosignerpriorvehiclecreditborrowedfield 4500
138 lastnamefield Jones
138 employmentmonthsfield 7
138 hoursworkedfield 5
138 cosignerbanknamefield Chase Bank
138 previousstreetfield 45 Sterling Rd
138 cosignerrepossessiondatefield
138 bankruptcychapterfield Chapter 11
138 cosignerchildsupportagesfield 3
138 cosignerfirstnamefield Mary
138 cosignercheckingbalancefield 432000
138 cosignerutilitiespaymentfield 400
138 codriverlicensestatefield IA
138 cosignerloanwithwhomfield Chelsey Bank
138 previousstatefield WA
138 dealerlotfield L1
138 cosigneremployerstatefield IL
138 employeraddressfield 54 Stream St
138 cosignerpreviousstreetfield 54 Charlie Lane
138 cosigneremployerfield Storage Wars
138 statusnote
138 cosignerlandlordphonefield 7732904455
138 cosignermonthlypaymentfield 4000
138 cosignerformeremployerleavereasonfield Became a chef
138 ccosignerlastnamefield Jones
138 cosigneremployercityfield Chicago
138 cosignermaintenancepaymentfield Yes
138 cosigneremployeraddressfield 45 St Plain Road
138 middlenamefield Sammy
138 childsupportagesfield 5
138 formeremployerleavereasonfield Better job
138 formeremployertimemonthsfield 2
138 cosignerpreviouscitytfield Barlington
138 cosignerchildcarepaymentfield 20
138 cosignerbankruptcydischargedatefield
138 bankruptcyfield Yes
138 cosignerhoursworkedfield 100
138 cosignersavingbalancefield 12000
138 formeremployertimefield 2
138 dependentagesfield 6
138 cosigneremploymerphonefield 7732095456
138 monthlypaymentfield 350
138 cosigneremployerzipfield 60643
138 employmentyearsfield 3
138 cosignerformeremployerphonefield 7732909543
138 driverlicensestatefield HI
138 formeremployerphonefield 7732909546
138 cosignermobilephonefield 7732309532
138 maintenancepaymentfield Yes
138 repossessionfield Yes
138 addressmonthstotalfield 9
138 cosignercabletvpaymentfield 100
138 driverlicensefield F000534DFH
138 previousaddressyearstotalfield 2
138 phonebillfield Shaun Veldsman
138 formeremployerpositionfield Chef
138 cosignerformeremployertimemonthsfield 2
138 cosignermiddlenamefield Hilda
138 cosignerbankruptcyfield Yes
138 employerzipfield 60645
138 firstnamefield Patrick
138 additionalinformationfield No Comment from us
138 hourlypayfield 5
138 cosignerssnfield z65G2QVFy05mFpBQjxuY1nLXWvbGqrLUmxT4fWoxGkc=
138 citytfield Chicago
138 cabletvpaymentfield 5000
138 downpaymentfield 5000
138 savingbalancefield 5555
138 cosignerdateofbirthfield SSkJnoebtwLl7R+E5V2Vy+eAhiOiSnD0p8Z4Pu38MVU=
138 loanwithwhomfield FG Bank
138 lead-id-field 138
138 cosignerpreviousstatefield IA
138 banknamefield Chase Bank
138 countyfield Cook
138 townshipfield Cook
138 payperiodfield Weekly
138 employercitytfield Chicago
138 additionalincomesourcefield Investments
138 utilitiespaymentfield 500
138 statefield CA
138 workphonefield 7732934332
138 ssnfield ieHPuZllOiGTq0EvEq3DL6IO6EzB1iWuOCC6ByA1esI=
138 amountowedfield 555
138 checkingbalancefield 555
138 datepicker JuKGSfn1umSGbxcHrOCwozXujcYfjSZTrYldTYYVyoE=
138 additionalincomefield 5000
138 childcarepaymentfield 500
138 priorvehiclecreditborrowedfield 5555
138 zipfield 60640
138 employerstatefield CO
138 bankcityfield Chicago
138 privacypolicyfield yes
139 streetfield 123 Road Side
139 addressyearstotalfield 2
139 bankruptcydischargedatefield
139 cosignerpreviousaddressyearstotalfield 3
139 dependentsfield 3
139 cosignerrepossessionfield Yes
139 rentorownfield Own
139 employmentmonthsfield 3
139 cosigneremailfield mh@buyercall.com
139 cosignerphonefield 7732809545
139 hoursworkedfield 40
139 mobilephonefield 6548793456
139 cosignermonthlyincomefield 4000
139 cosignerdownpaymentfield 3000
139 cosignerdependentsfield 3
139 hourlypayfield 400
139 cosignerbankruptcychapterfield Chapter 11
139 repfield Mark Twain
139 cosignerformeremployertimefield 2
139 cosigneradditionalincomefield 1302
139 titlefield Baker
139 cosignerssnfield l3l+5efwIg51LskxL5n20qF2upT9XnUEw5rVrwVH+aQ=
139 cosigneraddressyearstotalfield 2
139 citytfield Chicago
139 emailfield patty@buyercall.com
139 codriverlicensefield GH0045-GH
139 cosignerrentorownfield Lease
139 cosigneremploymentmonthsfield 7
139 phonefield 7732905500
139 cabletvpaymentfield 100
139 cosignerphonebillfield Hilda Jones
139 landlordfield Billy Jones
139 maritalstatusfield Married
139 cosigneremploymentlengthyearsfield 3
139 cosignerpayperiodfield Weekly
139 cosignerformeremployerfield Mary Tools
139 cosignercitytfield Chicago
139 cosigneradditionalincomesourcefield Investments
139 previousaddressmonthstotalfield 7
139 downpaymentfield 4000
139 cosignerhourlypayfield 40
139 cosignerpositionfield Camera man
139 employerfield Garage Pie
139 savingbalancefield 1000000
139 cosignerstatefield AZ
139 incomefield 400
139 cosignerlandlordfield Pat Jones
139 previouscitytfield Atlanta
139 repossessiontypefield Merchandise
139 cosignerzipfield 65095
139 loanwithwhomfield FG Bank
139 cosignermaritalstatusfield Married
139 cosignertownshipfield Cook
139 cosignerbankcityfield Chicago
139 cosigneraddressmonthstotalfield 9
139 landlordphonefield 7732909544
139 cosignerpreviouszipfield 65095
139 cosignerformeremployerpositionfield Manager
139 cosignerrepossessiontypefield Vehicle
139 cosigneramountowedfield 1000
139 previouszipfield 98107
139 repossessiondatefield
139 formeremployerfield Gold Hotel
139 cosignerpreviousstatefield IL
139 cosignerdependentagesfield 6
139 cosignercountyfield Sterling
139 banknamefield Chase Bank
139 countyfield Cook
139 townshipfield Cook
139 cosignerpreviousaddressmonthstotalfield 4
139 cosignerstreetfield 45 Foster
139 payperiodfield weekly
139 cosignerpriorvehiclecreditborrowedfield 4500
139 employercitytfield Chicago
139 lastnamefield Jones
139 cosignerbanknamefield Chase Bank
139 previousstreetfield 45 Sterling Rd
139 cosignerrepossessiondatefield
139 bankruptcychapterfield Chapter 11
139 cosignerchildsupportagesfield 3
139 cosignerfirstnamefield Mary
139 cosignercheckingbalancefield 432000
139 cosignerutilitiespaymentfield 400
139 codriverlicensestatefield IA
139 cosignerloanwithwhomfield Chelsey Bank
139 additionalincomesourcefield Investments
139 previousstatefield WA
139 dealerlotfield L1
139 cosigneremployerstatefield IL
139 employeraddressfield 54 Stream St
139 utilitiespaymentfield 400
139 cosignerpreviousstreetfield 54 Charlie Lane
139 cosigneremployerfield Storage Wars
139 statusnote
139 cosignerlandlordphonefield 7732904455
139 cosignermonthlypaymentfield 4000
139 statefield IL
139 cosignerformeremployerleavereasonfield Became a chef
139 ccosignerlastnamefield Jones
139 workphonefield 7765633221
139 cosigneremployercityfield Chicago
139 cosignermaintenancepaymentfield Yes
139 cosigneremployeraddressfield 45 St Plain Road
139 middlenamefield Sammy
139 childsupportagesfield 5
139 formeremployerleavereasonfield Better job
139 formeremployertimemonthsfield 2
139 cosignerpreviouscitytfield Barlington
139 cosignerchildcarepaymentfield 20
139 cosignerbankruptcydischargedatefield
139 amountowedfield 4000
139 checkingbalancefield 200000
139 bankruptcyfield Yes
139 cosignerhoursworkedfield 100
139 cosignersavingbalancefield 12000
139 formeremployertimefield 2
139 dependentagesfield 6
139 cosigneremploymerphonefield 7732095456
139 monthlypaymentfield 350
139 additionalincomefield 4000
139 cosigneremployerzipfield 60643
139 employmentyearsfield 3
139 cosignerformeremployerphonefield 7732909543
139 driverlicensestatefield HI
139 formeremployerphonefield 7732909546
139 cosignermobilephonefield 7732309532
139 childcarepaymentfield 2000
139 maintenancepaymentfield Yes
139 priorvehiclecreditborrowedfield 5000
139 zipfield 60640
139 employerstatefield IL
139 repossessionfield Yes
139 addressmonthstotalfield 9
139 cosignercabletvpaymentfield 100
139 bankcityfield Chicago
139 privacypolicyfield yes
139 driverlicensefield F000534DFH
139 previousaddressyearstotalfield 2
139 phonebillfield Shaun Veldsman
139 formeremployerpositionfield Chef
139 cosignerformeremployertimemonthsfield 2
139 cosignermiddlenamefield Hilda
139 cosignerbankruptcyfield Yes
139 employerzipfield 60645
139 firstnamefield Patrick
139 additionalinformationfield There is no comment
139 cosignerdateofbirthfield 3rF7Xt/zbojy8O50BlVVRu1qHPtnVvu2guv7txuy6YI=
139 applicationtypefield Individual
139 lead-id-field 139
139 ssnfield LcLUTOOCySUVqlyx/fufdaw0PmL8Wz+p0MdaeENU1BQ=
139 datepicker 7comm6/N1mUzy2McuaIy/03dLHOQFOuDfHCLpwtCZUQ=
140 streetfield 123 Road Side
140 addressyearstotalfield 2
140 bankruptcydischargedatefield
140 cosignerpreviousaddressyearstotalfield 3
140 dependentsfield 3
140 cosignerrepossessionfield Yes
140 rentorownfield Own
140 employmentmonthsfield 3
140 cosigneremailfield mh@buyercall.com
140 cosignerphonefield 7732809545
140 hoursworkedfield 40
140 mobilephonefield 6548793456
140 cosignermonthlyincomefield 4000
140 cosignerdownpaymentfield 3000
140 cosignerdependentsfield 3
140 hourlypayfield 400
140 cosignerbankruptcychapterfield Chapter 11
140 repfield Mark Twain
140 cosignerformeremployertimefield 2
140 cosigneradditionalincomefield 1302
140 titlefield Baker
140 cosigneraddressyearstotalfield 2
140 citytfield Chicago
140 emailfield patty@buyercall.com
140 codriverlicensefield GH0045-GH
140 cosignerrentorownfield Lease
140 cosigneremploymentmonthsfield 7
140 phonefield 7732905500
140 cabletvpaymentfield 100
140 cosignerphonebillfield Hilda Jones
140 landlordfield Billy Jones
140 maritalstatusfield Married
140 cosigneremploymentlengthyearsfield 3
140 cosignerpayperiodfield Weekly
140 cosignerformeremployerfield Mary Tools
140 cosignercitytfield Chicago
140 cosigneradditionalincomesourcefield Investments
140 previousaddressmonthstotalfield 7
140 downpaymentfield 4000
140 cosignerhourlypayfield 40
140 cosignerpositionfield Camera man
140 employerfield Garage Pie
140 savingbalancefield 1000000
140 cosignerstatefield AZ
140 incomefield 400
140 cosignerlandlordfield Pat Jones
140 previouscitytfield Atlanta
140 repossessiontypefield Merchandise
140 cosignerzipfield 65095
140 loanwithwhomfield FG Bank
140 cosignermaritalstatusfield Married
140 cosignertownshipfield Cook
140 cosignerbankcityfield Chicago
140 cosigneraddressmonthstotalfield 9
140 landlordphonefield 7732909544
140 cosignerpreviouszipfield 65095
140 cosignerformeremployerpositionfield Manager
140 cosignerrepossessiontypefield Vehicle
140 cosigneramountowedfield 1000
140 previouszipfield 98107
140 repossessiondatefield
140 formeremployerfield Gold Hotel
140 cosignerpreviousstatefield IL
140 cosignerdependentagesfield 6
140 cosignercountyfield Sterling
140 banknamefield Chase Bank
140 countyfield Cook
140 townshipfield Cook
140 cosignerpreviousaddressmonthstotalfield 4
140 cosignerstreetfield 45 Foster
140 payperiodfield weekly
140 cosignerpriorvehiclecreditborrowedfield 4500
140 employercitytfield Chicago
140 lastnamefield Jones
140 cosignerbanknamefield Chase Bank
140 previousstreetfield 45 Sterling Rd
140 cosignerrepossessiondatefield
140 bankruptcychapterfield Chapter 11
140 cosignerchildsupportagesfield 3
140 cosignerfirstnamefield Mary
140 cosignercheckingbalancefield 432000
140 cosignerutilitiespaymentfield 400
140 codriverlicensestatefield IA
140 cosignerloanwithwhomfield Chelsey Bank
140 additionalincomesourcefield Investments
140 previousstatefield WA
140 dealerlotfield L1
140 cosigneremployerstatefield IL
140 employeraddressfield 54 Stream St
140 utilitiespaymentfield 400
140 cosignerpreviousstreetfield 54 Charlie Lane
140 cosigneremployerfield Storage Wars
140 statusnote
140 cosignerlandlordphonefield 7732904455
140 cosignermonthlypaymentfield 4000
140 statefield IL
140 cosignerformeremployerleavereasonfield Became a chef
140 ccosignerlastnamefield Jones
140 workphonefield 7765633221
140 cosigneremployercityfield Chicago
140 cosignermaintenancepaymentfield Yes
140 cosigneremployeraddressfield 45 St Plain Road
140 middlenamefield Sammy
140 childsupportagesfield 5
140 formeremployerleavereasonfield Better job
140 formeremployertimemonthsfield 2
140 cosignerpreviouscitytfield Barlington
140 cosignerchildcarepaymentfield 20
140 cosignerbankruptcydischargedatefield
140 amountowedfield 4000
140 checkingbalancefield 200000
140 bankruptcyfield Yes
140 cosignerhoursworkedfield 100
140 cosignersavingbalancefield 12000
140 formeremployertimefield 2
140 dependentagesfield 6
140 cosigneremploymerphonefield 7732095456
140 monthlypaymentfield 350
140 additionalincomefield 4000
140 cosigneremployerzipfield 60643
140 employmentyearsfield 3
140 cosignerformeremployerphonefield 7732909543
140 driverlicensestatefield HI
140 formeremployerphonefield 7732909546
140 cosignermobilephonefield 7732309532
140 childcarepaymentfield 2000
140 maintenancepaymentfield Yes
140 priorvehiclecreditborrowedfield 5000
140 zipfield 60640
140 employerstatefield IL
140 repossessionfield Yes
140 addressmonthstotalfield 9
140 cosignercabletvpaymentfield 100
140 bankcityfield Chicago
140 privacypolicyfield yes
140 driverlicensefield F000534DFH
140 previousaddressyearstotalfield 2
140 phonebillfield Shaun Veldsman
140 formeremployerpositionfield Chef
140 cosignerformeremployertimemonthsfield 2
140 cosignermiddlenamefield Hilda
140 cosignerbankruptcyfield Yes
140 employerzipfield 60645
140 firstnamefield Patrick
140 additionalinformationfield There is no comment
140 cosignerssnfield dZuikHcqjUuFOkLjhKeokmFiXl0LRw/fISbfajme8Vk=
140 cosignerdateofbirthfield d97xVAff9dm7DREbHwf7riNuMW8y1gjG9XD1qR+AceY=
140 applicationtypefield Individual
140 lead-id-field 140
140 ssnfield JAXQ7ZyklVZrYvBNcx4J1Nj4NTNj1bd758DxClozmlQ=
140 datepicker 5c4OUPBv29IItiSUg0mjCa+ez/FgXiW+0mIDWeCvB5Q=
141 streetfield 123 Road Side
141 addressyearstotalfield 2
141 bankruptcydischargedatefield
141 cosignerpreviousaddressyearstotalfield 3
141 dependentsfield 3
141 cosignerrepossessionfield Yes
141 rentorownfield Own
141 employmentmonthsfield 3
141 cosigneremailfield mh@buyercall.com
141 cosignerphonefield 7732809545
141 hoursworkedfield 40
141 mobilephonefield 6548793456
141 cosignermonthlyincomefield 4000
141 cosignerdownpaymentfield 3000
141 cosignerdependentsfield 3
141 hourlypayfield 400
141 cosignerbankruptcychapterfield Chapter 11
141 cosignerformeremployertimefield 2
141 cosigneradditionalincomefield 1302
141 titlefield Baker
141 cosigneraddressyearstotalfield 2
141 citytfield Chicago
141 emailfield patty@buyercall.com
141 codriverlicensefield GH0045-GH
141 cosignerrentorownfield Lease
141 cosigneremploymentmonthsfield 7
141 phonefield 7732905500
141 cabletvpaymentfield 100
141 cosignerphonebillfield Hilda Jones
141 landlordfield Billy Jones
141 maritalstatusfield Married
141 cosigneremploymentlengthyearsfield 3
141 cosignerpayperiodfield Weekly
141 cosignerformeremployerfield Mary Tools
141 cosignercitytfield Chicago
141 cosigneradditionalincomesourcefield Investments
141 previousaddressmonthstotalfield 7
141 downpaymentfield 4000
141 cosignerhourlypayfield 40
141 cosignerpositionfield Camera man
141 employerfield Garage Pie
141 savingbalancefield 1000000
141 cosignerstatefield AZ
141 incomefield 400
141 cosignerlandlordfield Pat Jones
141 previouscitytfield Atlanta
141 repossessiontypefield Merchandise
141 cosignerzipfield 65095
141 loanwithwhomfield FG Bank
141 cosignermaritalstatusfield Married
141 cosignertownshipfield Cook
141 cosignerbankcityfield Chicago
141 cosigneraddressmonthstotalfield 9
141 landlordphonefield 7732909544
141 cosignerpreviouszipfield 65095
141 cosignerformeremployerpositionfield Manager
141 cosignerrepossessiontypefield Vehicle
141 cosigneramountowedfield 1000
141 previouszipfield 98107
141 repossessiondatefield
141 formeremployerfield Gold Hotel
141 cosignerpreviousstatefield IL
141 cosignerdependentagesfield 6
141 cosignercountyfield Sterling
141 banknamefield Chase Bank
141 countyfield Cook
141 townshipfield Cook
141 cosignerpreviousaddressmonthstotalfield 4
141 cosignerstreetfield 45 Foster
141 payperiodfield weekly
141 cosignerpriorvehiclecreditborrowedfield 4500
141 employercitytfield Chicago
141 applicationtypefield Individual
141 repfield Harry Conway
141 lastnamefield Jones
141 cosignerbanknamefield Chase Bank
141 previousstreetfield 45 Sterling Rd
141 cosignerrepossessiondatefield
141 bankruptcychapterfield Chapter 11
141 cosignerchildsupportagesfield 3
141 cosignerfirstnamefield Mary
141 cosignercheckingbalancefield 432000
141 cosignerutilitiespaymentfield 400
141 codriverlicensestatefield IA
141 cosignerloanwithwhomfield Chelsey Bank
141 additionalincomesourcefield Investments
141 previousstatefield WA
141 dealerlotfield L1
141 cosigneremployerstatefield IL
141 employeraddressfield 54 Stream St
141 utilitiespaymentfield 400
141 cosignerpreviousstreetfield 54 Charlie Lane
141 cosigneremployerfield Storage Wars
141 statusnote
141 cosignerlandlordphonefield 7732904455
141 cosignermonthlypaymentfield 4000
141 statefield IL
141 cosignerformeremployerleavereasonfield Became a chef
141 ccosignerlastnamefield Jones
141 workphonefield 7765633221
141 cosigneremployercityfield Chicago
141 cosignermaintenancepaymentfield Yes
141 cosigneremployeraddressfield 45 St Plain Road
141 middlenamefield Sammy
141 childsupportagesfield 5
141 formeremployerleavereasonfield Better job
141 formeremployertimemonthsfield 2
141 cosignerpreviouscitytfield Barlington
141 cosignerchildcarepaymentfield 20
141 cosignerbankruptcydischargedatefield
141 amountowedfield 4000
141 checkingbalancefield 200000
141 bankruptcyfield Yes
141 cosignerhoursworkedfield 100
141 cosignersavingbalancefield 12000
141 formeremployertimefield 2
141 dependentagesfield 6
141 cosigneremploymerphonefield 7732095456
141 monthlypaymentfield 350
141 additionalincomefield 4000
141 cosigneremployerzipfield 60643
141 employmentyearsfield 3
141 cosignerformeremployerphonefield 7732909543
141 driverlicensestatefield HI
141 formeremployerphonefield 7732909546
141 cosignermobilephonefield 7732309532
141 childcarepaymentfield 2000
141 maintenancepaymentfield Yes
141 priorvehiclecreditborrowedfield 5000
141 zipfield 60640
141 employerstatefield IL
141 repossessionfield Yes
141 addressmonthstotalfield 9
141 cosignercabletvpaymentfield 100
141 bankcityfield Chicago
141 privacypolicyfield yes
141 driverlicensefield F000534DFH
141 previousaddressyearstotalfield 2
141 phonebillfield Shaun Veldsman
141 formeremployerpositionfield Chef
141 cosignerformeremployertimemonthsfield 2
141 cosignermiddlenamefield Hilda
141 cosignerbankruptcyfield Yes
141 employerzipfield 60645
141 firstnamefield Patrick
141 additionalinformationfield There is no comment
141 cosignerssnfield CJdxYybEjeVivtgoIZWHIQW/aEC3cPGNv+oYWKj6vdE=
141 cosignerdateofbirthfield Ve8fw1dhrEfC15ZRyFhg4ZyCiMOGPZvCJBfqbwJO5QY=
141 lead-id-field 141
141 ssnfield MgUC97ViCTDityd2GlypT7acHGm0ppDQ1VuxDamBHCk=
141 datepicker WIwryGclKQlK3lbKYJ/S6NT8LfZKWYwWu7tM8Hm3Mu8=
142 streetfield 123 Road Side
142 addressyearstotalfield 2
142 bankruptcydischargedatefield
142 cosignerpreviousaddressyearstotalfield 3
142 dependentsfield 3
142 cosignerrepossessionfield Yes
142 rentorownfield Own
142 employmentmonthsfield 3
142 cosigneremailfield mh@buyercall.com
142 cosignerphonefield 7732809545
142 hoursworkedfield 40
142 mobilephonefield 6548793456
142 cosignermonthlyincomefield 4000
142 cosignerdownpaymentfield 3000
142 cosignerdependentsfield 3
142 hourlypayfield 400
142 cosignerbankruptcychapterfield Chapter 11
142 repfield Mark Twain
142 cosignerformeremployertimefield 2
142 cosigneradditionalincomefield 1302
142 titlefield Baker
142 cosigneraddressyearstotalfield 2
142 citytfield Chicago
142 codriverlicensefield GH0045-GH
142 cosignerrentorownfield Lease
142 cosigneremploymentmonthsfield 7
142 cabletvpaymentfield 100
142 cosignerphonebillfield Hilda Jones
142 landlordfield Billy Jones
142 maritalstatusfield Married
142 cosigneremploymentlengthyearsfield 3
142 cosignerpayperiodfield Weekly
142 cosignerformeremployerfield Mary Tools
142 cosignercitytfield Chicago
142 cosigneradditionalincomesourcefield Investments
142 previousaddressmonthstotalfield 7
142 downpaymentfield 4000
142 cosignerhourlypayfield 40
142 cosignerpositionfield Camera man
142 employerfield Garage Pie
142 cosignerssnfield yNtUC94fJxB5WJU5FxUiSiez+nLQVb2tXxgmG+kjBO8=
142 emailfield patty@buyercall.com
142 savingbalancefield 1000000
142 cosignerstatefield AZ
142 incomefield 400
142 cosignerlandlordfield Pat Jones
142 previouscitytfield Atlanta
142 repossessiontypefield Merchandise
142 cosignerzipfield 65095
142 loanwithwhomfield FG Bank
142 cosignermaritalstatusfield Married
142 cosignertownshipfield Cook
142 cosignerbankcityfield Chicago
142 cosigneraddressmonthstotalfield 9
142 landlordphonefield 7732909544
142 applicationtypefield Joint
142 cosignerpreviouszipfield 65095
142 cosignerformeremployerpositionfield Manager
142 cosignerrepossessiontypefield Vehicle
142 cosigneramountowedfield 1000
142 previouszipfield 98107
142 repossessiondatefield
142 formeremployerfield Gold Hotel
142 cosignerpreviousstatefield IL
142 cosignerdependentagesfield 6
142 cosignercountyfield Sterling
142 banknamefield Chase Bank
142 countyfield Cook
142 townshipfield Cook
142 cosignerpreviousaddressmonthstotalfield 4
142 cosignerstreetfield 45 Foster
142 payperiodfield weekly
142 cosignerpriorvehiclecreditborrowedfield 4500
142 employercitytfield Chicago
142 cosignerbanknamefield Chase Bank
142 previousstreetfield 45 Sterling Rd
142 cosignerrepossessiondatefield
142 bankruptcychapterfield Chapter 11
142 cosignerchildsupportagesfield 3
142 cosignerfirstnamefield Mary
142 cosignercheckingbalancefield 432000
142 cosignerutilitiespaymentfield 400
142 codriverlicensestatefield IA
142 cosignerloanwithwhomfield Chelsey Bank
142 additionalincomesourcefield Investments
142 previousstatefield WA
142 dealerlotfield L1
142 cosigneremployerstatefield IL
142 employeraddressfield 54 Stream St
142 utilitiespaymentfield 400
142 cosignerpreviousstreetfield 54 Charlie Lane
142 cosigneremployerfield Storage Wars
142 statusnote
142 cosignerlandlordphonefield 7732904455
142 cosignermonthlypaymentfield 4000
142 statefield IL
142 cosignerformeremployerleavereasonfield Became a chef
142 ccosignerlastnamefield Jones
142 workphonefield 7765633221
142 cosigneremployercityfield Chicago
142 cosignermaintenancepaymentfield Yes
142 cosigneremployeraddressfield 45 St Plain Road
142 childsupportagesfield 5
142 formeremployerleavereasonfield Better job
142 formeremployertimemonthsfield 2
142 cosignerpreviouscitytfield Barlington
142 cosignerchildcarepaymentfield 20
142 cosignerbankruptcydischargedatefield
142 amountowedfield 4000
142 checkingbalancefield 200000
142 bankruptcyfield Yes
142 cosignerhoursworkedfield 100
142 cosignersavingbalancefield 12000
142 formeremployertimefield 2
142 dependentagesfield 6
142 cosigneremploymerphonefield 7732095456
142 monthlypaymentfield 350
142 additionalincomefield 4000
142 cosigneremployerzipfield 60643
142 employmentyearsfield 3
142 cosignerformeremployerphonefield 7732909543
142 driverlicensestatefield HI
142 formeremployerphonefield 7732909546
142 cosignermobilephonefield 7732309532
142 childcarepaymentfield 2000
142 maintenancepaymentfield Yes
142 priorvehiclecreditborrowedfield 5000
142 zipfield 60640
142 employerstatefield IL
142 repossessionfield Yes
142 addressmonthstotalfield 9
142 cosignercabletvpaymentfield 100
142 bankcityfield Chicago
142 privacypolicyfield yes
142 driverlicensefield F000534DFH
142 previousaddressyearstotalfield 2
142 phonebillfield Shaun Veldsman
142 formeremployerpositionfield Chef
142 cosignerformeremployertimemonthsfield 2
142 cosignermiddlenamefield Hilda
142 cosignerbankruptcyfield Yes
142 employerzipfield 60645
142 firstnamefield Patrick o Hare
142 lead-id-field 142
143 streetfield 123 Harlem Road
143 cosigneradditionalincomesourcefield Investments
142 phonefield 7732905500
142 cosignerdateofbirthfield XER5JeNC+BHLpxQhej3pZLTcgkqksXEMLd+XuxZb+sk=
142 lastnamefield Jones
142 middlenamefield Sammy
142 ssnfield rH5yf/GqI8O44Jl8VCkOdktZuXk9MogUyctU639yuVY=
142 datepicker MJJip1mGmnD0DWOt8mZj6v63RbHM9iUA+59nO/rmqwc=
142 additionalinformationfield No Comment from us
143 addressyearstotalfield 5
143 cosignerphonefield 7732909654
143 cosignerfirstnamefield Mary
143 ccosignerlastnamefield Jones
143 rentorownfield Rent
143 codriverlicensestatefield CA
143 employmentyearsfield 5
143 cosigneremailfield hv13@hotmail.com
143 previousstatefield IL
143 cosigneremployerstatefield AR
143 cosignermonthlyincomefield 5000
143 cosignermonthlypaymentfield 5000
143 cosignerpreviousstreetfield
143 cosigneremployercityfield Atlanta
143 cosigneremployerfield True Car
143 statusnote
143 cosignerformeremployertimefield
143 cosignerformeremployerphonefield
143 cosignerdownpaymentfield 34000
143 cosigneradditionalincomefield 3000
143 cosignerssnfield YC+HWbsa4REaFV0jokK5b4QB/c5g397K3+IJGzzMLV4=
143 titlefield programmer
143 cosigneraddressyearstotalfield 5
143 emailfield hv13@hotmail.com
143 codriverlicensefield ert3423423dfdf
143 cosignerrentorownfield Lease
143 workphonefield 7732906545
143 formeremployerphonefield
143 citytfield Chicago
143 cosigneremploymentlengthyearsfield 5
143 ssnfield uFdVpqSAcp+Zc6ov0WLGEZZAL5kH8PUXnUbr5LoE1Lk=
143 cosignerformeremployerfield
143 cosignerpreviouscitytfield
143 cosignercitytfield Atlanta
143 cosignerstreetfield 45 Sterling Rd
143 previouszipfield
143 datepicker OAyiK1Z9JJEAlNFkGPEdyM7vtiQMbJM7kBtIs00RMlE=
143 downpaymentfield 5000
143 stockfield
143 cosignerpositionfield Sales Person
143 additionalincomefield 4000
143 formeremployertimefield
143 employerfield Mann truck
143 cosigneremploymerphonefield 5644344444
143 monthlypaymentfield 5000
143 cosignerstatefield ID
143 applicationtypefield Joint
143 formeremployerstatefield
143 driverlicensestatefield CA
143 previouscitytfield Chicago
143 cosignerdateofbirthfield 5Wh+Bx1dM8/KQW8yo2OG2tlylwN9tJZWWtPKLE/1gFE=
143 cosignerzipfield 60623
143 cosignerformeremployercityfield
143 additionalincomesourcefield Investments
143 statefield HI
143 locationfield
143 vehiclefield
143 zipfield 60613
143 employerstatefield AK
143 phonefield 7739699862
143 cosignerpreviouszipfield
143 cosignerformeremployerpositionfield
143 incomefield 5000
143 cosignertradeinvehiclefield Van Tran
143 lead-id-field
143 formeremployerfield
143 cosignerpreviousstatefield
143 privacypolicyfield yes
143 driverlicensefield GGD5403453FGH
143 tradeinvehiclefield Toyota
143 employercitytfield Chicago
143 cosignerformeremployerstatefield
143 lastnamefield Tromp
143 formeremployercityfield
143 firstnamefield Don
143 formeremployerpositionfield
143 previousstreetfield 123 Road Side
143 additionalinformationfield Nnoe
143 cosignermiddlenamefield
143 employeraddressfield
143 middlenamefield
143 repfield
\.
--
-- Data for Name: form_leads; Type: TABLE DATA; Schema: public; Owner: -
--
COPY form_leads (created_on, updated_on, id, form_id, partnership_account_id, external_api_lead_id, email_sent, contact_id) FROM stdin;
2018-10-26 02:42:21.11319+00 2018-10-26 02:43:15.764882+00 2 1 1 \N t 2
2018-11-06 21:47:57.330392+00 2018-11-06 21:47:57.467814+00 27 3 1 \N t 5
2018-11-06 21:52:35.287674+00 2018-11-06 21:52:35.362039+00 28 3 1 \N t 5
2018-10-29 22:52:32.838079+00 2018-10-29 22:58:07.905965+00 4 2 1 \N t 4
2018-11-06 22:18:20.261185+00 2018-11-06 22:18:20.393228+00 70 3 1 \N t 5
2018-11-05 21:34:13.010236+00 2018-11-05 21:34:56.488137+00 5 1 1 \N t 5
2018-11-06 21:53:26.882289+00 2018-11-06 21:53:27.422157+00 29 3 1 \N t 5
2019-05-14 02:46:33.594176+00 2018-10-26 02:48:07.963481+00 3 1 1 \N t 3
2018-11-05 22:18:45.571886+00 2018-11-05 22:19:31.14685+00 6 1 1 \N t 5
2018-11-06 18:19:42.769753+00 2018-11-06 18:19:43.849962+00 7 3 1 \N t 5
2018-11-06 21:58:35.853114+00 2018-11-06 21:58:36.414452+00 30 3 1 \N t 5
2018-11-06 18:26:17.996517+00 2018-11-06 18:26:18.092936+00 8 3 1 \N t 6
2018-11-06 18:31:44.740601+00 2018-11-06 18:31:44.807265+00 9 3 1 \N t 6
2018-11-06 18:42:09.872615+00 2018-11-06 18:42:09.949463+00 10 3 1 \N t 5
2018-11-06 22:02:30.486687+00 2018-11-06 22:02:31.10285+00 31 3 1 \N t 5
2018-11-06 19:05:21.087323+00 2018-11-06 19:05:21.169277+00 11 3 1 \N t 6
2018-11-06 22:21:48.000372+00 2018-11-06 22:21:48.091079+00 71 3 1 \N t 5
2018-11-06 19:17:43.689996+00 2018-11-06 19:17:43.757059+00 12 3 1 \N t 5
2018-11-06 19:20:27.758686+00 2018-11-06 19:20:27.837274+00 13 3 1 \N t 5
2018-11-06 22:05:08.097305+00 2018-11-06 22:05:08.172589+00 32 3 1 \N t 5
2018-11-06 19:22:28.522356+00 2018-11-06 19:22:28.619626+00 14 3 1 \N t 5
2018-11-06 19:25:22.243171+00 2018-11-06 19:25:22.36285+00 15 3 1 \N t 5
2018-11-06 19:30:59.348193+00 2018-11-06 19:30:59.459403+00 16 3 1 \N t 5
2018-11-06 22:09:33.193281+00 2018-11-06 22:09:33.853593+00 33 3 1 \N t 5
2018-11-06 19:32:38.689784+00 2018-11-06 19:32:38.775347+00 17 3 1 \N t 5
2018-11-06 19:34:47.564789+00 2018-11-06 19:34:47.632452+00 18 3 1 \N t 5
2018-11-06 19:39:10.044976+00 2018-11-06 19:39:10.124236+00 19 3 1 \N t 5
2018-11-06 22:16:38.806578+00 2018-11-06 22:16:39.696544+00 34 3 1 \N t 5
2018-11-06 20:42:55.87191+00 2018-11-06 20:42:56.670896+00 20 3 1 \N t 5
2018-11-06 22:22:53.720746+00 2018-11-06 22:22:53.795102+00 72 3 1 \N t 5
2018-11-06 20:48:29.34479+00 2018-11-06 20:48:30.049677+00 21 3 1 \N t 5
2018-11-06 21:00:43.604261+00 2018-11-06 21:00:43.713957+00 22 3 1 \N t 5
2018-11-06 22:16:39.729585+00 2018-11-06 22:16:39.821061+00 35 3 1 \N t 5
2018-11-06 21:01:52.747657+00 2018-11-06 21:01:53.477304+00 23 3 1 \N t 5
2018-11-06 21:07:51.403928+00 2018-11-06 21:07:51.525797+00 24 3 1 \N t 5
2018-11-06 21:39:48.973524+00 2018-11-06 21:39:49.564292+00 25 3 1 \N t 5
2018-11-06 22:16:39.870813+00 2018-11-06 22:16:39.953976+00 36 3 1 \N t 5
2018-11-06 21:45:42.178717+00 2018-11-06 21:45:42.249636+00 26 3 1 \N t 5
2018-11-06 22:16:39.999243+00 2018-11-06 22:16:40.143647+00 37 3 1 \N t 5
2018-11-06 22:23:51.154863+00 2018-11-06 22:23:51.80662+00 73 3 1 \N t 5
2018-11-06 22:16:40.172781+00 2018-11-06 22:16:40.293704+00 38 3 1 \N t 5
2018-11-06 22:16:40.35261+00 2018-11-06 22:16:40.474081+00 39 3 1 \N t 5
2018-11-06 22:16:40.508876+00 2018-11-06 22:16:40.620559+00 40 3 1 \N t 5
2018-11-06 22:26:01.898741+00 2018-11-06 22:26:01.980503+00 74 3 1 \N t 5
2018-11-06 22:16:40.689168+00 2018-11-06 22:16:41.021422+00 41 3 1 \N t 5
2018-11-06 22:16:41.071722+00 2018-11-06 22:16:41.154718+00 42 3 1 \N t 5
2018-11-06 22:16:41.192697+00 2018-11-06 22:16:41.236938+00 43 3 1 \N t 5
2018-11-06 22:27:55.80363+00 2018-11-06 22:27:55.888215+00 75 3 1 \N t 5
2018-11-06 22:16:41.261866+00 2018-11-06 22:16:41.290032+00 44 3 1 \N t 5
2018-11-06 22:16:41.301021+00 2018-11-06 22:16:41.333284+00 45 3 1 \N t 5
2018-11-06 22:16:41.345824+00 2018-11-06 22:16:41.367862+00 46 3 1 \N t 5
2018-11-06 22:30:27.99907+00 2018-11-06 22:30:28.084687+00 76 3 1 \N t 5
2018-11-06 22:16:41.380006+00 2018-11-06 22:16:41.40347+00 47 3 1 \N t 5
2018-11-06 22:16:41.415313+00 2018-11-06 22:16:41.442113+00 48 3 1 \N t 5
2018-11-06 22:16:41.457295+00 2018-11-06 22:16:41.488632+00 49 3 1 \N t 5
2018-11-06 22:40:50.158186+00 2018-11-06 22:40:50.250698+00 77 3 1 \N t 5
2018-11-06 22:16:41.519202+00 2018-11-06 22:16:41.554973+00 50 3 1 \N t 5
2018-11-06 22:16:41.567375+00 2018-11-06 22:16:41.594047+00 51 3 1 \N t 5
2018-11-06 22:16:41.606157+00 2018-11-06 22:16:41.629291+00 52 3 1 \N t 5
2018-11-06 22:43:50.093841+00 2018-11-06 22:43:50.760731+00 78 3 1 \N t 5
2018-11-06 22:16:41.639998+00 2018-11-06 22:16:41.670922+00 53 3 1 \N t 5
2018-11-06 22:16:41.693191+00 2018-11-06 22:16:41.735112+00 54 3 1 \N t 5
2018-11-06 22:16:41.753913+00 2018-11-06 22:16:41.781799+00 55 3 1 \N t 5
2018-11-06 22:47:05.945548+00 2018-11-06 22:47:06.030851+00 79 3 1 \N t 5
2018-11-06 22:16:41.802173+00 2018-11-06 22:16:41.858389+00 56 3 1 \N t 5
2018-11-06 22:16:41.902524+00 2018-11-06 22:16:41.953776+00 57 3 1 \N t 5
2018-11-06 22:16:41.97474+00 2018-11-06 22:16:42.014221+00 58 3 1 \N t 5
2018-11-06 22:49:02.973549+00 2018-11-06 22:49:03.099759+00 80 3 1 \N t 5
2018-11-06 22:16:42.026089+00 2018-11-06 22:16:42.050582+00 59 3 1 \N t 5
2018-11-06 22:16:42.063806+00 2018-11-06 22:16:42.090915+00 60 3 1 \N t 5
2018-11-06 22:16:42.102465+00 2018-11-06 22:16:42.131774+00 61 3 1 \N t 5
2018-11-06 22:53:52.104536+00 2018-11-06 22:53:52.716704+00 81 3 1 \N t 5
2018-11-06 22:16:42.14622+00 2018-11-06 22:16:42.184595+00 62 3 1 \N t 5
2018-11-06 22:16:42.195574+00 2018-11-06 22:16:42.217186+00 63 3 1 \N t 5
2018-11-06 22:16:42.234247+00 2018-11-06 22:16:42.262524+00 64 3 1 \N t 5
2018-11-06 22:56:29.907003+00 2018-11-06 22:56:29.977354+00 82 3 1 \N t 5
2018-11-06 22:16:42.275544+00 2018-11-06 22:16:42.300027+00 65 3 1 \N t 5
2018-11-06 22:16:42.311235+00 2018-11-06 22:16:42.336503+00 66 3 1 \N t 5
2018-11-06 22:16:42.354775+00 2018-11-06 22:16:42.380037+00 67 3 1 \N t 5
2018-11-06 22:57:07.221747+00 2018-11-06 22:57:07.300954+00 83 3 1 \N t 5
2018-11-06 22:16:42.390972+00 2018-11-06 22:16:42.4115+00 68 3 1 \N t 5
2018-11-06 22:16:42.42313+00 2018-11-06 22:16:42.44483+00 69 3 1 \N t 5
2018-11-06 22:58:07.442906+00 2018-11-06 22:58:07.551898+00 84 3 1 \N t 5
2018-11-06 23:00:44.428992+00 2018-11-06 23:00:44.535967+00 85 3 1 \N t 5
2018-11-06 23:03:09.818332+00 2018-11-06 23:03:09.98755+00 86 3 1 \N t 5
2018-11-06 23:03:19.882107+00 2018-11-06 23:03:19.956013+00 87 3 1 \N t 5
2018-11-06 23:04:09.296+00 2018-11-06 23:04:09.407363+00 88 3 1 \N t 5
2018-11-06 23:05:52.644246+00 2018-11-06 23:05:52.729836+00 89 3 1 \N t 5
2018-11-06 23:08:47.112411+00 2018-11-06 23:08:47.784066+00 90 3 1 \N t 7
2019-01-14 23:43:48.462247+00 2019-01-14 23:44:36.619798+00 91 1 1 \N t 5
2019-01-14 23:54:40.1599+00 2019-01-14 23:55:10.635071+00 92 1 1 \N t 5
2019-01-15 00:16:56.409368+00 2019-01-15 00:17:27.113004+00 93 1 1 \N t 5
2019-01-15 00:21:58.502839+00 2019-01-15 00:22:51.854892+00 94 1 1 \N t 5
2019-01-15 00:26:44.313618+00 2019-01-15 00:26:44.708975+00 95 1 1 \N f 5
2019-01-15 00:34:51.068833+00 2019-01-15 00:35:28.92133+00 97 1 1 \N f 5
2019-01-15 00:31:55.534898+00 2019-01-15 00:33:08.170683+00 96 1 1 \N t 5
2019-01-15 00:40:05.570137+00 2019-01-15 00:40:59.061891+00 98 1 1 \N f 5
2019-01-15 00:42:18.889068+00 2019-01-15 00:43:13.673807+00 99 1 1 \N t 5
2019-01-15 19:03:39.062738+00 2019-01-15 19:04:29.406618+00 100 1 1 \N t 5
2019-01-15 19:11:40.26343+00 2019-01-15 19:12:31.482567+00 101 1 1 \N t 5
2019-01-15 19:21:27.659693+00 2019-01-15 19:22:16.893004+00 102 1 1 \N t 5
2019-01-15 19:27:29.137104+00 2019-01-15 19:28:18.200684+00 103 1 1 \N t 5
2019-01-15 19:30:04.173035+00 2019-01-15 19:30:53.722195+00 104 1 1 \N t 5
2019-01-15 19:32:06.232037+00 2019-01-15 19:32:34.547181+00 105 1 1 \N t 5
2019-01-15 19:47:18.255913+00 2019-01-15 19:47:48.536708+00 106 1 1 \N t 5
2019-01-15 19:49:14.142027+00 2019-01-15 19:49:44.194004+00 107 1 1 \N t 5
2019-01-15 20:25:27.066378+00 2019-01-15 20:25:57.424712+00 108 1 1 \N t 5
2019-01-15 23:36:10.706767+00 2019-01-15 23:36:41.241059+00 109 1 1 \N t 5
2019-01-15 23:39:54.38561+00 2019-01-15 23:41:24.045892+00 110 1 1 \N t 5
2019-01-15 23:48:01.564182+00 2019-01-15 23:48:29.404217+00 111 1 1 \N f 5
2019-01-15 23:51:06.004703+00 2019-01-15 23:51:28.923379+00 112 1 1 \N f 5
2019-01-16 00:21:45.595918+00 2019-01-16 00:22:09.765866+00 113 1 1 \N f 5
2019-01-16 17:37:14.713795+00 2019-01-16 17:37:38.937806+00 128 1 1 \N f 5
2019-01-16 00:24:22.053828+00 2019-01-16 00:24:52.03557+00 114 1 1 \N f 5
2019-01-16 00:26:34.565156+00 2019-01-16 00:26:53.660869+00 115 1 1 \N f 5
2019-01-16 00:29:58.763364+00 2019-01-16 00:30:16.970378+00 116 1 1 \N f 5
2019-01-18 00:44:56.510617+00 2019-01-18 00:45:17.487696+00 129 1 1 \N f 5
2019-01-16 00:36:58.054656+00 2019-01-16 00:37:18.684852+00 117 1 1 \N f 5
2019-01-16 00:38:07.165738+00 2019-01-16 00:38:26.900563+00 118 1 1 \N f 5
2019-01-16 00:40:24.690076+00 2019-01-16 00:40:45.33387+00 119 1 1 \N f 5
2019-01-18 00:49:18.354288+00 2019-01-18 00:49:36.357682+00 130 1 1 \N f 5
2019-01-16 00:42:16.597536+00 2019-01-16 00:42:40.097131+00 120 1 1 \N f 5
2019-01-16 16:59:48.812463+00 2019-01-16 17:00:07.793411+00 121 1 1 \N f 5
2019-01-16 17:04:50.312052+00 2019-01-16 17:05:11.033184+00 122 1 1 \N f 5
2019-01-16 17:05:31.100815+00 2019-01-16 17:05:47.479709+00 123 1 1 \N f 5
2019-01-16 17:10:35.824696+00 2019-01-16 17:10:56.225036+00 124 1 1 \N f 5
2019-05-24 17:34:55.826109+00 2019-01-16 17:35:26.484235+00 127 1 1 \N t 5
2019-01-16 17:12:14.392117+00 2019-01-16 17:12:43.69998+00 125 1 1 \N f 5
2019-04-12 18:47:09.681469+00 2019-04-12 18:48:25.211878+00 131 1 1 000453234 t 10
2019-01-16 17:32:23.594794+00 2019-01-16 17:32:54.030247+00 126 1 1 \N t 5
2019-09-23 18:44:59.11189+00 2019-09-23 18:51:03.343239+00 132 5 1 \N t 5
2019-09-23 20:24:34.257909+00 2019-09-23 20:29:19.71662+00 133 5 1 \N t 5
2019-09-23 21:10:41.279684+00 2019-09-23 21:13:53.527934+00 134 5 1 \N t 22
2019-09-25 15:49:05.37643+00 2019-09-25 15:49:10.862839+00 135 5 1 \N t 23
2019-09-25 15:52:14.1817+00 2019-09-25 19:00:20.223372+00 136 5 1 \N t 24
2019-09-30 22:11:12.870729+00 2019-09-30 22:13:37.874419+00 137 5 1 \N t 24
2019-09-30 22:43:45.569728+00 2019-09-30 22:52:16.370461+00 138 5 1 \N t 24
2019-09-30 23:43:16.017352+00 2019-09-30 23:43:41.08358+00 139 5 1 \N t 24
2019-09-30 23:48:30.625583+00 2019-09-30 23:48:58.039593+00 140 5 1 \N t 24
2019-10-01 00:09:34.631732+00 2019-10-01 00:09:57.201493+00 141 5 1 19100100095625 t 24
2019-10-01 00:18:09.063232+00 2019-10-01 18:29:25.858416+00 142 5 1 19100118292376 t 24
2019-10-21 19:21:22.761421+00 2019-10-21 19:21:22.846101+00 143 7 1 \N t 26
\.
--
-- Name: form_leads_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('form_leads_id_seq', 143, true);
--
-- Data for Name: form_logs; Type: TABLE DATA; Schema: public; Owner: -
--
COPY form_logs (posted_on, id, form_id, form_lead_id, status, description) FROM stdin;
2019-09-23 18:51:05.565286+00 1 5 132 failed Lot ID not provided. Co-applicant SSN not provided.
2019-09-23 20:29:23.831429+00 2 5 133 failed Lot ID not provided. Co-applicant SSN not provided.
2019-09-23 21:13:55.03418+00 3 5 134 failed Co-applicant SSN not provided.
2019-09-30 23:48:58.999175+00 4 5 140 failed Error posting form data.
2019-10-01 00:09:57.207953+00 5 5 141 success The form lead has been sent successfully to Auto Master Systems
2019-10-01 00:18:52.276653+00 6 5 142 success The form lead has been sent successfully to Auto Master Systems
2019-10-01 18:29:25.864911+00 7 5 142 success The form lead has been sent successfully to Auto Master Systems
\.
--
-- Name: form_logs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('form_logs_id_seq', 7, true);
--
-- Data for Name: holdmusic; Type: TABLE DATA; Schema: public; Owner: -
--
COPY holdmusic (created_on, updated_on, id, partnership_account_id, uuid, filename, url) FROM stdin;
\.
--
-- Name: holdmusic_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('holdmusic_id_seq', 1, true);
--
-- Data for Name: invoices; Type: TABLE DATA; Schema: public; Owner: -
--
COPY invoices (created_on, updated_on, id, partnership_id, partnership_account_id, credit_card_id, plan, receipt_number, description, period_start_on, period_end_on, currency, tax, tax_percent, total) FROM stdin;
\.
--
-- Name: invoices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('invoices_id_seq', 1, true);
--
-- Data for Name: issues; Type: TABLE DATA; Schema: public; Owner: -
--
COPY issues (created_on, updated_on, id, status, label, email, question, partnership_id, partnership_account_id) FROM stdin;
2019-04-12 22:19:40.07119+00 2019-04-12 22:19:40.071209+00 3 unread billing billing@buyercall.com This is a test billing issue 1 2
2018-12-07 18:44:02.99732+00 2019-04-13 18:44:33.24322+00 2 contacted other harry@buyercall.com hello is this working? 1 1
\.
--
-- Name: issues_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('issues_id_seq', 3, true);
--
-- Data for Name: lead_notes; Type: TABLE DATA; Schema: public; Owner: -
--
COPY lead_notes (id, lead_id, created_on, updated_on, is_enabled, text, user_id) FROM stdin;
\.
--
-- Name: lead_notes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('lead_notes_id_seq', 1, true);
--
-- Data for Name: leads; Type: TABLE DATA; Schema: public; Owner: -
--
COPY leads (created_on, updated_on, id, partnership_account_id, call_source, status, progress_status, firstname, caller_id, lastname, email, phonenumber, my_phone, question, duration, starttime, endtime, call_type, call_sid, recording_url, widget_guid, inbound_id, agent_id, contact_id, agent_assigned_id, notes, call_count, response_time_seconds, additional_info, transcription_text, recording_id) FROM stdin;
2018-12-12 21:24:27.313813+00 2018-12-12 21:24:27.313825+00 8 1 Beef Stew Inc ringing new lead +17732909650 +18722217507 \N 2018-12-12 21:24:27.31274 \N inbound c-ftotajha4flem4a54foz2ja \N 2 \N \N \N 0 \N \N
2018-12-12 21:24:31.717392+00 2018-12-12 21:24:31.717407+00 9 1 Beef Stew Inc ringing new lead +17732909650 +18722217507 \N 2018-12-12 21:24:31.716696 \N inbound c-ftotajha4flem4a54foz2ja \N 2 \N \N \N 0 \N \N
2018-12-12 21:25:47.099106+00 2018-12-12 21:25:47.908392+00 10 1 Beef Stew Inc ringing new lead +17732909650 +18722217507 \N 2018-12-12 21:25:47.097839 \N inbound c-6rggyiwfda2amar6xrjwa4i \N 2 \N 5 \N 0 \N \N
2018-12-12 21:25:53.594136+00 2018-12-12 21:25:53.594148+00 11 1 Beef Stew Inc ringing new lead +17732909650 +18722217507 \N 2018-12-12 21:25:53.593545 \N inbound c-6rggyiwfda2amar6xrjwa4i \N 2 \N 5 \N 0 \N \N
2018-12-12 23:08:34.269402+00 2018-12-12 23:08:34.269415+00 12 1 Beef Stew Inc ringing new lead +17732909650 +18722217507 \N 2018-12-12 23:08:34.268099 \N inbound c-ykpskt5appons4fqyor6sda \N 2 \N 5 \N 0 \N \N
2018-12-12 23:08:38.408596+00 2018-12-12 23:08:38.408647+00 13 1 Beef Stew Inc ringing new lead +17732909650 +18722217507 \N 2018-12-12 23:08:38.407851 \N inbound c-ykpskt5appons4fqyor6sda \N 2 \N 5 \N 0 \N \N
2018-12-12 23:09:31.930412+00 2018-12-12 23:09:31.930425+00 14 1 Beef Stew Inc ringing new lead +17732909650 +18722217507 \N 2018-12-12 23:09:31.929118 \N inbound c-whxln4nqixhrhax74re7sea \N 2 \N 5 \N 0 \N \N
2018-12-12 23:09:36.343969+00 2018-12-12 23:09:36.343985+00 15 1 Beef Stew Inc ringing new lead +17732909650 +18722217507 \N 2018-12-12 23:09:36.342997 \N inbound c-whxln4nqixhrhax74re7sea \N 2 \N 5 \N 0 \N \N
2018-12-12 23:10:38.074844+00 2018-12-12 23:10:38.074856+00 16 1 Beef Stew Inc ringing new lead +17732909650 +18722217507 \N 2018-12-12 23:10:38.073592 \N inbound c-wasil6pwcieghcz4puk4z4y \N 2 \N 5 \N 0 \N \N
2018-12-12 23:10:41.728869+00 2018-12-12 23:10:41.728881+00 17 1 Beef Stew Inc ringing new lead +17732909650 +18722217507 \N 2018-12-12 23:10:41.728203 \N inbound c-wasil6pwcieghcz4puk4z4y \N 2 \N 5 \N 0 \N \N
2018-12-12 23:12:05.259749+00 2018-12-12 23:12:05.259761+00 18 1 Beef Stew Inc ringing new lead +17732909650 +18722217507 \N 2018-12-12 23:12:05.258542 \N inbound c-pjwoaidxkm3hs5743nrggwi \N 2 \N 5 \N 0 \N \N
2018-12-12 23:12:23.06436+00 2018-12-12 23:12:23.064378+00 19 1 Beef Stew Inc ringing new lead +17732909650 +18722217507 \N 2018-12-12 23:12:23.063397 \N inbound c-pjwoaidxkm3hs5743nrggwi \N 2 \N 5 \N 0 \N \N
2018-12-13 19:18:39.278203+00 2018-12-13 19:18:39.278213+00 20 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 19:18:39.277005 \N inbound c-2shplm2dnjyk2xpnkbwafmy \N 3 \N 5 \N 0 \N \N
2018-12-13 19:19:12.361459+00 2018-12-13 19:19:12.361471+00 21 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 19:19:12.360872 \N inbound c-2shplm2dnjyk2xpnkbwafmy \N 3 \N 5 \N 0 \N \N
2018-12-13 19:25:38.191872+00 2018-12-13 19:25:38.191883+00 22 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 19:25:38.190718 \N inbound c-wm3djosugrbp632j7vxv6iq \N 3 \N 5 \N 0 \N \N
2018-12-13 19:25:47.617916+00 2018-12-13 19:25:47.617927+00 23 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 19:25:47.617337 \N inbound c-wm3djosugrbp632j7vxv6iq \N 3 \N 5 \N 0 \N \N
2018-12-13 19:28:48.777644+00 2018-12-13 19:28:48.777656+00 24 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 19:28:48.77649 \N inbound c-czewj45xxbzeoelvhwr7khy \N 3 \N 5 \N 0 \N \N
2018-12-13 19:28:50.484957+00 2018-12-13 19:28:50.484973+00 25 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 19:28:50.484057 \N inbound c-czewj45xxbzeoelvhwr7khy \N 3 \N 5 \N 0 \N \N
2018-12-13 19:28:52.67932+00 2018-12-13 19:28:52.679337+00 26 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 19:28:52.678537 \N inbound c-mg3fwktkiqluvfiy3mki3ci \N 3 \N 5 \N 0 \N \N
2018-12-13 19:28:58.754877+00 2018-12-13 19:28:58.754889+00 27 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 19:28:58.754269 \N inbound c-mg3fwktkiqluvfiy3mki3ci \N 3 \N 5 \N 0 \N \N
2018-12-13 19:40:02.665244+00 2018-12-13 19:40:04.165845+00 28 1 Mobile Business App ringing new lead VERMAAK,HERMANU +17732909650 +18722217507 \N 2018-12-13 19:40:02.663615 \N inbound c-nbjhexjfanashl2buai2bbi \N 3 \N 5 \N 0 \N \N
2018-12-13 19:40:22.449314+00 2018-12-13 19:40:23.168045+00 29 1 Mobile Business App ringing new lead VERMAAK,HERMANU +17732909650 +18722217507 \N 2018-12-13 19:40:22.448486 \N inbound c-nbjhexjfanashl2buai2bbi \N 3 \N 5 \N 0 \N \N
2018-12-13 19:46:32.740509+00 2018-12-13 19:46:33.67973+00 30 1 Mobile Business App ringing new lead VERMAAK,HERMANU +17732909650 +18722217507 \N 2018-12-13 19:46:32.739415 \N inbound c-pqkgepvbytz4wvvribj4oba \N 3 \N 5 \N 0 \N \N
2018-12-13 19:46:45.923476+00 2018-12-13 19:46:46.669974+00 31 1 Mobile Business App ringing new lead VERMAAK,HERMANU +17732909650 +18722217507 \N 2018-12-13 19:46:45.92292 \N inbound c-pqkgepvbytz4wvvribj4oba \N 3 \N 5 \N 0 \N \N
2018-12-13 19:49:45.782858+00 2018-12-13 19:49:45.78287+00 32 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 19:49:45.781688 \N inbound c-hysyct2ssltgmumuvvd5sky \N 3 \N 5 \N 0 \N \N
2018-12-13 19:49:54.173839+00 2018-12-13 19:49:54.173857+00 33 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 19:49:54.172713 \N inbound c-hysyct2ssltgmumuvvd5sky \N 3 \N 5 \N 0 \N \N
2018-12-13 19:52:43.918431+00 2018-12-13 19:52:43.918442+00 34 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 19:52:43.917295 \N inbound c-gsoe6dpy2wop4mlsgkc4yci \N 3 \N 5 \N 0 \N \N
2018-12-13 19:52:51.977479+00 2018-12-13 19:52:51.977497+00 35 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 19:52:51.976578 \N inbound c-gsoe6dpy2wop4mlsgkc4yci \N 3 \N 5 \N 0 \N \N
2018-12-13 19:53:30.240698+00 2018-12-13 19:53:30.240709+00 36 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 19:53:30.239614 \N inbound c-ipcpx5dvdje7akuss5d5ihy \N 3 \N 5 \N 0 \N \N
2018-12-13 19:53:42.323368+00 2018-12-13 19:53:42.323378+00 37 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 19:53:42.322883 \N inbound c-ipcpx5dvdje7akuss5d5ihy \N 3 \N 5 \N 0 \N \N
2018-12-13 19:55:38.587498+00 2018-12-13 19:55:38.587508+00 38 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 19:55:38.586382 \N inbound c-gm3ayro7yrml7vohp5g2tja \N 3 \N 5 \N 0 \N \N
2018-12-13 19:55:52.682783+00 2018-12-13 19:55:52.682805+00 39 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 19:55:52.681834 \N inbound c-gm3ayro7yrml7vohp5g2tja \N 3 \N 5 \N 0 \N \N
2018-12-13 20:01:30.402253+00 2018-12-13 20:01:30.402265+00 40 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 20:01:30.401083 \N inbound c-753o3ybilkhnzvtfwtepxei \N 3 \N 5 \N 0 \N \N
2018-12-13 20:01:46.155292+00 2018-12-13 20:01:46.155307+00 41 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 20:01:46.15443 \N inbound c-753o3ybilkhnzvtfwtepxei \N 3 \N 5 \N 0 \N \N
2018-12-13 20:29:05.613177+00 2018-12-13 20:29:05.613188+00 42 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 20:29:05.612092 \N inbound c-k7ihparuzubrulw53r24ovi \N 3 \N 5 \N 0 \N \N
2018-12-13 20:29:11.222145+00 2018-12-13 20:29:11.222161+00 43 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 20:29:11.221292 \N inbound c-k7ihparuzubrulw53r24ovi \N 3 \N 5 \N 0 \N \N
2018-12-13 20:30:20.471885+00 2018-12-13 20:30:20.471897+00 44 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 20:30:20.470108 \N inbound c-dav4slob5oeqj27cncxiy3q \N 3 \N 5 \N 0 \N \N
2018-12-13 20:31:50.21221+00 2018-12-13 20:31:50.212222+00 45 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 20:31:50.21101 \N inbound c-dav4slob5oeqj27cncxiy3q \N 3 \N 5 \N 0 \N \N
2018-12-13 20:31:56.82035+00 2018-12-13 20:31:56.820372+00 46 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 20:31:56.819139 \N inbound c-akqt3dca4faznmv6ytqkrli \N 3 \N 5 \N 0 \N \N
2018-12-13 20:32:08.606057+00 2018-12-13 20:32:08.606073+00 47 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 20:32:08.605186 \N inbound c-akqt3dca4faznmv6ytqkrli \N 3 \N 5 \N 0 \N \N
2018-12-13 20:34:46.841707+00 2018-12-13 20:34:46.841719+00 48 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 20:34:46.840547 \N inbound c-b75cbpwzhv2qqrclfl6foua \N 3 \N 5 \N 0 \N \N
2018-12-13 20:35:05.403097+00 2018-12-13 20:35:05.403115+00 49 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 20:35:05.402124 \N inbound c-b75cbpwzhv2qqrclfl6foua \N 3 \N 5 \N 0 \N \N
2018-12-13 20:37:50.605599+00 2018-12-13 20:37:50.605611+00 50 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 20:37:50.604396 \N inbound c-heyycbtonkd2uccfp4b6kxa \N 3 \N 5 \N 0 \N \N
2018-12-13 20:38:07.694226+00 2018-12-13 20:38:07.694242+00 51 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 20:38:07.693371 \N inbound c-heyycbtonkd2uccfp4b6kxa \N 3 \N 5 \N 0 \N \N
2018-12-13 20:39:01.531517+00 2018-12-13 20:39:01.531527+00 52 1 Mobile Business App ringing new lead +18473123318 +18722217507 \N 2018-12-13 20:39:01.530978 \N inbound c-pmrq2cpvmezegfss65gdvwy \N 3 \N \N \N 0 \N \N
2018-12-13 20:39:56.835969+00 2018-12-13 20:39:57.436206+00 53 1 Mobile Business App ringing new lead +18473123318 +18722217507 \N 2018-12-13 20:39:56.835346 \N inbound c-pmrq2cpvmezegfss65gdvwy \N 3 \N 9 \N 0 \N \N
2018-12-13 20:46:56.332924+00 2018-12-13 20:46:56.332937+00 54 1 Mobile Business App ringing new lead +18473123318 +18722217507 \N 2018-12-13 20:46:56.332185 \N inbound c-wllqq6ut5okfbo72ipw2gcy \N 3 \N 9 \N 0 \N \N
2018-12-13 20:47:58.000167+00 2018-12-13 20:47:58.000254+00 55 1 Mobile Business App ringing new lead +18473123318 +18722217507 \N 2018-12-13 20:47:57.999305 \N inbound c-wllqq6ut5okfbo72ipw2gcy \N 3 \N 9 \N 0 \N \N
2018-12-13 20:50:59.06981+00 2018-12-13 20:50:59.069821+00 56 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 20:50:59.068544 \N inbound c-hvmxh7vtzh4bus3yxd2gwpa \N 3 \N 5 \N 0 \N \N
2018-12-13 20:52:39.308435+00 2018-12-13 20:52:39.308452+00 57 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 20:52:39.307542 \N inbound c-hvmxh7vtzh4bus3yxd2gwpa \N 3 \N 5 \N 0 \N \N
2018-12-13 20:52:51.305117+00 2018-12-13 20:52:51.305134+00 58 1 Mobile Business App ringing new lead +18473123318 +18722217507 \N 2018-12-13 20:52:51.304229 \N inbound c-iyfcaazbym5qrlcuo4qk6sy \N 3 \N 9 \N 0 \N \N
2018-12-13 20:53:34.138924+00 2018-12-13 20:53:34.138936+00 59 1 Mobile Business App ringing new lead +18473123318 +18722217507 \N 2018-12-13 20:53:34.138295 \N inbound c-iyfcaazbym5qrlcuo4qk6sy \N 3 \N 9 \N 0 \N \N
2018-12-13 20:55:25.95212+00 2018-12-13 20:55:25.952131+00 60 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 20:55:25.950894 \N inbound c-tix37txaxpkyqdjyzhh3lfq \N 3 \N 5 \N 0 \N \N
2018-12-13 20:55:45.185087+00 2018-12-13 20:55:45.185102+00 61 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 20:55:45.184489 \N inbound c-tix37txaxpkyqdjyzhh3lfq \N 3 \N 5 \N 0 \N \N
2018-12-13 21:09:11.910063+00 2018-12-13 21:09:11.910078+00 62 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 21:09:11.908891 \N inbound c-wavfmqhmkiuvcebmg67jzwy \N 3 \N 5 \N 0 \N \N
2018-12-13 21:09:30.874486+00 2018-12-13 21:09:30.874503+00 63 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 21:09:30.873517 \N inbound c-wavfmqhmkiuvcebmg67jzwy \N 3 \N 5 \N 0 \N \N
2018-12-13 21:10:36.024809+00 2018-12-13 21:10:36.02482+00 64 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 21:10:36.02355 \N inbound c-cfjx47bhvp3j5z3costzufa \N 3 \N 5 \N 0 \N \N
2018-12-13 21:10:47.92732+00 2018-12-13 21:10:47.927338+00 65 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 21:10:47.926392 \N inbound c-cfjx47bhvp3j5z3costzufa \N 3 \N 5 \N 0 \N \N
2018-12-13 21:14:06.699725+00 2018-12-13 21:14:06.699737+00 66 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 21:14:06.698537 \N inbound c-atkjxz2yzpq6tzoecmhka3a \N 3 \N 5 \N 0 \N \N
2018-12-13 21:14:22.904097+00 2018-12-13 21:14:22.904111+00 67 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 21:14:22.903301 \N inbound c-atkjxz2yzpq6tzoecmhka3a \N 3 \N 5 \N 0 \N \N
2018-12-13 21:17:52.240813+00 2018-12-13 21:17:52.240825+00 68 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 21:17:52.239533 \N inbound c-ybj5s2jncw5ozmqrwlig7ri \N 3 \N 5 \N 0 \N \N
2018-12-13 21:18:16.60232+00 2018-12-13 21:18:16.602338+00 69 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 21:18:16.601403 \N inbound c-ybj5s2jncw5ozmqrwlig7ri \N 3 \N 5 \N 0 \N \N
2018-12-13 21:19:51.106994+00 2018-12-13 21:19:51.107011+00 70 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 21:19:51.104578 \N inbound c-z6rd4w27ejv2zniojnoucma \N 3 \N 5 \N 0 \N \N
2018-12-13 21:20:19.836861+00 2018-12-13 21:20:19.836872+00 71 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 21:20:19.836301 \N inbound c-z6rd4w27ejv2zniojnoucma \N 3 \N 5 \N 0 \N \N
2018-12-13 21:20:30.322189+00 2018-12-13 21:20:30.322207+00 72 1 Mobile Business App ringing new lead +18473123318 +18722217507 \N 2018-12-13 21:20:30.320351 \N inbound c-fhgiqou3xbv4d37msgiy7di \N 3 \N 9 \N 0 \N \N
2018-12-13 21:21:04.520036+00 2018-12-13 21:21:04.520049+00 73 1 Mobile Business App ringing new lead +18473123318 +18722217507 \N 2018-12-13 21:21:04.519164 \N inbound c-fhgiqou3xbv4d37msgiy7di \N 3 \N 9 \N 0 \N \N
2018-12-13 21:42:28.640195+00 2018-12-13 21:42:28.640206+00 74 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 21:42:28.638842 \N inbound c-kginkvkv7o4maxerqryu7va \N 3 \N 5 \N 0 \N \N
2018-12-13 21:42:46.676101+00 2018-12-13 21:42:46.676125+00 75 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 21:42:46.674376 \N inbound c-kginkvkv7o4maxerqryu7va \N 3 \N 5 \N 0 \N \N
2018-12-13 21:57:12.121899+00 2018-12-13 21:57:12.121911+00 76 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 21:57:12.12064 \N inbound c-uo4vzvjz7zarqwqwxkvoabi \N 3 \N 5 \N 0 \N \N
2018-12-13 21:57:24.785672+00 2018-12-13 21:57:24.785707+00 77 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 21:57:24.784494 \N inbound c-uo4vzvjz7zarqwqwxkvoabi \N 3 \N 5 \N 0 \N \N
2018-12-13 22:00:24.053482+00 2018-12-13 22:00:24.053498+00 78 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 22:00:24.05258 \N inbound c-l33bhh6qcfe6daauj7br2iy \N 3 \N 5 \N 0 \N \N
2018-12-13 22:00:25.587775+00 2018-12-13 22:00:25.587788+00 79 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 22:00:25.587114 \N inbound c-l33bhh6qcfe6daauj7br2iy \N 3 \N 5 \N 0 \N \N
2018-12-13 22:01:12.896132+00 2018-12-13 22:01:12.896152+00 80 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 22:01:12.895166 \N inbound c-l33bhh6qcfe6daauj7br2iy \N 3 \N 5 \N 0 \N \N
2018-12-13 22:03:51.988246+00 2018-12-13 22:03:51.988258+00 81 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 22:03:51.986979 \N inbound c-ny6ojbadhpbapludphjkdiy \N 3 \N 5 \N 0 \N \N
2018-12-13 22:03:53.695384+00 2018-12-13 22:03:53.695395+00 82 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 22:03:53.694705 \N inbound c-ny6ojbadhpbapludphjkdiy \N 3 \N 5 \N 0 \N \N
2018-12-13 22:04:07.351414+00 2018-12-13 22:04:07.351427+00 83 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 22:04:07.350769 \N inbound c-ny6ojbadhpbapludphjkdiy \N 3 \N 5 \N 0 \N \N
2018-12-13 22:05:56.730424+00 2018-12-13 22:05:56.730442+00 84 1 Mobile Business App ringing new lead +18473123318 +18722217507 \N 2018-12-13 22:05:56.729501 \N inbound c-m422trb5wey2o56jueiyzkq \N 3 \N 9 \N 0 \N \N
2018-12-13 22:05:58.316937+00 2018-12-13 22:05:58.316954+00 85 1 Mobile Business App ringing new lead +18473123318 +18722217507 \N 2018-12-13 22:05:58.315991 \N inbound c-m422trb5wey2o56jueiyzkq \N 3 \N 9 \N 0 \N \N
2018-12-13 22:06:14.324994+00 2018-12-13 22:06:14.325012+00 86 1 Mobile Business App ringing new lead +18473123318 +18722217507 \N 2018-12-13 22:06:14.324105 \N inbound c-m422trb5wey2o56jueiyzkq \N 3 \N 9 \N 0 \N \N
2018-12-13 22:06:28.74275+00 2018-12-13 22:06:28.742767+00 87 1 Mobile Business App ringing new lead +18473123318 +18722217507 \N 2018-12-13 22:06:28.741925 \N inbound c-fegpuzqic2hzi3t2545lwaa \N 3 \N 9 \N 0 \N \N
2018-12-13 22:06:39.658611+00 2018-12-13 22:06:39.658623+00 88 1 Mobile Business App ringing new lead +18473123318 +18722217507 \N 2018-12-13 22:06:39.657989 \N inbound c-fegpuzqic2hzi3t2545lwaa \N 3 \N 9 \N 0 \N \N
2018-12-13 22:19:43.594927+00 2018-12-13 22:19:43.594938+00 89 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 22:19:43.593437 \N inbound c-7naszvhut622tffb7vnj2pi \N 3 \N 5 \N 0 \N \N
2018-12-13 22:20:15.039834+00 2018-12-13 22:20:15.039846+00 90 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 22:20:15.038774 \N inbound c-7naszvhut622tffb7vnj2pi \N 3 \N 5 \N 0 \N \N
2018-12-13 22:20:22.359547+00 2018-12-13 22:20:22.359558+00 91 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 22:20:22.358421 \N inbound c-7fwylpgwdylfxekcbhbkqmq \N 3 \N 5 \N 0 \N \N
2018-12-13 22:20:30.185753+00 2018-12-13 22:20:30.185768+00 92 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 22:20:30.184968 \N inbound c-7fwylpgwdylfxekcbhbkqmq \N 3 \N 5 \N 0 \N \N
2018-12-13 22:21:05.133468+00 2018-12-13 22:21:05.133483+00 93 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 22:21:05.132672 \N inbound c-7fwylpgwdylfxekcbhbkqmq \N 3 \N 5 \N 0 \N \N
2018-12-13 22:21:10.272751+00 2018-12-13 22:21:10.272769+00 94 1 Mobile Business App ringing new lead +18473123318 +18722217507 \N 2018-12-13 22:21:10.271602 \N inbound c-shwgk3xsfrz4xfbonqppraa \N 3 \N 9 \N 0 \N \N
2018-12-13 22:21:36.158445+00 2018-12-13 22:21:36.15846+00 95 1 Mobile Business App ringing new lead +18473123318 +18722217507 \N 2018-12-13 22:21:36.157499 \N inbound c-shwgk3xsfrz4xfbonqppraa \N 3 \N 9 \N 0 \N \N
2018-12-13 22:25:34.230527+00 2018-12-13 22:25:35.037907+00 96 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 22:25:34.229394 \N inbound c-lgddphhn3xumjyxgfklklsi \N 3 \N 10 \N 0 \N \N
2018-12-13 22:25:50.599804+00 2018-12-13 22:25:50.599818+00 97 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 22:25:50.599007 \N inbound c-lgddphhn3xumjyxgfklklsi \N 3 \N 10 \N 0 \N \N
2018-12-13 22:26:00.927546+00 2018-12-13 22:26:00.927557+00 98 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 22:26:00.927018 \N inbound c-lgddphhn3xumjyxgfklklsi \N 3 \N 10 \N 0 \N \N
2018-12-13 23:27:09.539005+00 2018-12-13 23:27:09.539018+00 99 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:27:09.537626 \N inbound c-wlxtf25b5lsgfwclekoc6xa \N 3 \N 10 \N 0 \N \N
2018-12-13 23:27:26.875471+00 2018-12-13 23:27:26.875486+00 100 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:27:26.874656 \N inbound c-wlxtf25b5lsgfwclekoc6xa \N 3 \N 10 \N 0 \N \N
2018-12-13 23:27:56.701177+00 2018-12-13 23:27:56.701192+00 101 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:27:56.700389 \N inbound c-wlxtf25b5lsgfwclekoc6xa \N 3 \N 10 \N 0 \N \N
2018-12-13 23:28:23.157766+00 2018-12-13 23:28:23.157799+00 102 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:28:23.155024 \N inbound c-e5wfe3bdkk2iyilzaxuiszq \N 3 \N 10 \N 0 \N \N
2018-12-13 23:28:35.674948+00 2018-12-13 23:28:35.67496+00 103 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:28:35.674258 \N inbound c-e5wfe3bdkk2iyilzaxuiszq \N 3 \N 10 \N 0 \N \N
2018-12-13 23:28:49.032133+00 2018-12-13 23:28:49.032143+00 104 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:28:49.031634 \N inbound c-e5wfe3bdkk2iyilzaxuiszq \N 3 \N 10 \N 0 \N \N
2018-12-13 23:40:47.294904+00 2018-12-13 23:40:47.294917+00 105 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:40:47.293743 \N inbound c-564s3s7z2ycxbcj4r2tot4a \N 3 \N 10 \N 0 \N \N
2018-12-13 23:40:59.136565+00 2018-12-13 23:40:59.136575+00 106 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:40:59.136055 \N inbound c-564s3s7z2ycxbcj4r2tot4a \N 3 \N 10 \N 0 \N \N
2018-12-13 23:41:17.096882+00 2018-12-13 23:41:17.096894+00 107 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:41:17.096261 \N inbound c-564s3s7z2ycxbcj4r2tot4a \N 3 \N 10 \N 0 \N \N
2018-12-13 23:42:23.409137+00 2018-12-13 23:42:23.409153+00 108 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:42:23.408272 \N inbound c-urlkjssum5cunbwogyhxtly \N 3 \N 10 \N 0 \N \N
2018-12-13 23:42:34.356633+00 2018-12-13 23:42:34.356649+00 109 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:42:34.355846 \N inbound c-urlkjssum5cunbwogyhxtly \N 3 \N 10 \N 0 \N \N
2018-12-13 23:42:37.308742+00 2018-12-13 23:42:37.308753+00 110 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:42:37.30818 \N inbound c-urlkjssum5cunbwogyhxtly \N 3 \N 10 \N 0 \N \N
2018-12-13 23:44:23.276792+00 2018-12-13 23:44:23.276805+00 111 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:44:23.275311 \N inbound c-noebhudardanspjfcal3rui \N 3 \N 10 \N 0 \N \N
2018-12-13 23:44:34.811943+00 2018-12-13 23:44:34.811974+00 112 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:44:34.809882 \N inbound c-noebhudardanspjfcal3rui \N 3 \N 10 \N 0 \N \N
2018-12-13 23:44:42.715435+00 2018-12-13 23:44:42.71545+00 113 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:44:42.714624 \N inbound c-noebhudardanspjfcal3rui \N 3 \N 10 \N 0 \N \N
2018-12-13 23:52:26.25414+00 2018-12-13 23:52:26.254152+00 114 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:52:26.25294 \N inbound c-54dz7c675e5d3b5arjsx5jq \N 3 \N 10 \N 0 \N \N
2018-12-13 23:52:37.889281+00 2018-12-13 23:52:37.889294+00 115 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:52:37.8887 \N inbound c-54dz7c675e5d3b5arjsx5jq \N 3 \N 10 \N 0 \N \N
2018-12-13 23:53:04.787306+00 2018-12-13 23:53:04.787317+00 116 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:53:04.786198 \N inbound c-54dz7c675e5d3b5arjsx5jq \N 3 \N 10 \N 0 \N \N
2018-12-13 23:53:05.819425+00 2018-12-13 23:53:05.819441+00 117 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 23:53:05.818453 \N inbound c-bkn6vdt6zqjhw47yoshep6a \N 3 \N 5 \N 0 \N \N
2018-12-13 23:53:09.812038+00 2018-12-13 23:53:09.81209+00 118 1 Mobile Business App ringing new lead +17732909650 +18722217507 \N 2018-12-13 23:53:09.809625 \N inbound c-bkn6vdt6zqjhw47yoshep6a \N 3 \N 5 \N 0 \N \N
2018-12-13 23:53:26.459326+00 2018-12-13 23:53:26.459354+00 119 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:53:26.45804 \N inbound c-erwqev25i7lysvl3lin4rby \N 3 \N 10 \N 0 \N \N
2018-12-13 23:53:37.992957+00 2018-12-13 23:53:37.992972+00 120 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:53:37.992206 \N inbound c-erwqev25i7lysvl3lin4rby \N 3 \N 10 \N 0 \N \N
2018-12-13 23:53:47.383046+00 2018-12-13 23:53:47.38306+00 121 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:53:47.382182 \N inbound c-erwqev25i7lysvl3lin4rby \N 3 \N 10 \N 0 \N \N
2018-12-13 23:57:07.848756+00 2018-12-13 23:57:07.848777+00 122 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:57:07.847692 \N inbound c-czsswmbpu7s7e3lxnaxryua \N 3 \N 10 \N 0 \N \N
2018-12-13 23:57:19.990976+00 2018-12-13 23:57:19.990991+00 123 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:57:19.990141 \N inbound c-czsswmbpu7s7e3lxnaxryua \N 3 \N 10 \N 0 \N \N
2018-12-13 23:57:27.140791+00 2018-12-13 23:57:27.140807+00 124 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-13 23:57:27.140044 \N inbound c-czsswmbpu7s7e3lxnaxryua \N 3 \N 10 \N 0 \N \N
2018-12-14 00:01:27.40149+00 2018-12-14 00:01:27.401501+00 125 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:01:27.400416 \N inbound c-rwmc3j7pcmxdx63fjarv7ea \N 3 \N 10 \N 0 \N \N
2018-12-14 00:01:38.119208+00 2018-12-14 00:01:38.119221+00 126 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:01:38.11846 \N inbound c-rwmc3j7pcmxdx63fjarv7ea \N 3 \N 10 \N 0 \N \N
2018-12-14 00:01:45.783831+00 2018-12-14 00:01:45.783843+00 127 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:01:45.783172 \N inbound c-rwmc3j7pcmxdx63fjarv7ea \N 3 \N 10 \N 0 \N \N
2018-12-14 00:03:04.049825+00 2018-12-14 00:03:04.049837+00 128 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:03:04.048521 \N inbound c-cgr7fk6aiu3khl4m4gijl2y \N 3 \N 10 \N 0 \N \N
2018-12-14 00:03:16.568758+00 2018-12-14 00:03:16.568773+00 129 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:03:16.568014 \N inbound c-cgr7fk6aiu3khl4m4gijl2y \N 3 \N 10 \N 0 \N \N
2018-12-14 00:03:24.777458+00 2018-12-14 00:03:24.777475+00 130 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:03:24.776095 \N inbound c-cgr7fk6aiu3khl4m4gijl2y \N 3 \N 10 \N 0 \N \N
2018-12-14 00:05:05.320925+00 2018-12-14 00:05:05.320944+00 131 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:05:05.319931 \N inbound c-g6luyowebgxhkpb6ebsm6fi \N 3 \N 10 \N 0 \N \N
2018-12-14 00:05:17.257248+00 2018-12-14 00:05:17.257263+00 132 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:05:17.256442 \N inbound c-g6luyowebgxhkpb6ebsm6fi \N 3 \N 10 \N 0 \N \N
2018-12-14 00:05:31.94674+00 2018-12-14 00:05:31.946759+00 133 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:05:31.94569 \N inbound c-g6luyowebgxhkpb6ebsm6fi \N 3 \N 10 \N 0 \N \N
2018-12-14 00:12:20.991974+00 2018-12-14 00:12:20.991986+00 134 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:12:20.990765 \N inbound c-452oyfsrhve3qh6i3u25y2a \N 3 \N 10 \N 0 \N \N
2018-12-14 00:12:36.100827+00 2018-12-14 00:12:36.100843+00 135 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:12:36.099977 \N inbound c-452oyfsrhve3qh6i3u25y2a \N 3 \N 10 \N 0 \N \N
2018-12-14 00:16:29.418073+00 2018-12-14 00:16:29.418085+00 136 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:16:29.416908 \N inbound c-s52ccfay5iklqnu6tigbuwa \N 3 \N 10 \N 0 \N \N
2018-12-14 00:16:39.725759+00 2018-12-14 00:16:39.725775+00 137 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:16:39.724924 \N inbound c-s52ccfay5iklqnu6tigbuwa \N 3 \N 10 \N 0 \N \N
2018-12-14 00:16:42.605195+00 2018-12-14 00:16:42.605212+00 138 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:16:42.604332 \N inbound c-s52ccfay5iklqnu6tigbuwa \N 3 \N 10 \N 0 \N \N
2018-12-14 00:17:58.453579+00 2018-12-14 00:17:58.453593+00 139 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:17:58.452476 \N inbound c-3zzdcx6csk3xmpxzmwaquri \N 3 \N 10 \N 0 \N \N
2018-12-14 00:18:10.520795+00 2018-12-14 00:18:10.520813+00 140 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:18:10.519837 \N inbound c-3zzdcx6csk3xmpxzmwaquri \N 3 \N 10 \N 0 \N \N
2018-12-14 00:18:12.633941+00 2018-12-14 00:18:12.633954+00 141 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:18:12.633303 \N inbound c-3zzdcx6csk3xmpxzmwaquri \N 3 \N 10 \N 0 \N \N
2018-12-14 00:26:57.818694+00 2018-12-14 00:26:57.818706+00 142 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:26:57.81763 \N inbound c-cbd23lae4kxn3dy7jz3ysiq \N 3 \N 10 \N 0 \N \N
2018-12-14 00:28:36.992498+00 2018-12-14 00:28:36.99251+00 143 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:28:36.991473 \N inbound c-azqfw7jgd2kvfijfjgz2izi \N 3 \N 10 \N 0 \N \N
2018-12-14 00:28:48.579106+00 2018-12-14 00:28:48.579122+00 144 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:28:48.578236 \N inbound c-azqfw7jgd2kvfijfjgz2izi \N 3 \N 10 \N 0 \N \N
2018-12-14 00:28:50.683667+00 2018-12-14 00:28:50.683682+00 145 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:28:50.682929 \N inbound c-azqfw7jgd2kvfijfjgz2izi \N 3 \N 10 \N 0 \N \N
2018-12-14 00:29:02.23771+00 2018-12-14 00:29:02.237726+00 146 1 Mobile Business App ringing new lead +18473123318 +18722217507 \N 2018-12-14 00:29:02.236936 \N inbound c-xliikht5ghudbz24j4uxyva \N 3 \N 9 \N 0 \N \N
2018-12-14 00:29:16.236678+00 2018-12-14 00:29:16.236693+00 147 1 Mobile Business App ringing new lead +18473123318 +18722217507 \N 2018-12-14 00:29:16.235907 \N inbound c-xliikht5ghudbz24j4uxyva \N 3 \N 9 \N 0 \N \N
2018-12-14 00:30:04.88218+00 2018-12-14 00:30:04.882201+00 148 1 Mobile Business App ringing new lead +18473123318 +18722217507 \N 2018-12-14 00:30:04.881058 \N inbound c-xliikht5ghudbz24j4uxyva \N 3 \N 9 \N 0 \N \N
2018-12-14 00:31:41.610402+00 2018-12-14 00:31:41.610422+00 149 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:31:41.609468 \N inbound c-7yxllopsknudhhwizmpsw2q \N 3 \N 10 \N 0 \N \N
2018-12-14 00:31:52.088909+00 2018-12-14 00:31:52.088924+00 150 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:31:52.088138 \N inbound c-7yxllopsknudhhwizmpsw2q \N 3 \N 10 \N 0 \N \N
2018-12-14 00:32:02.130199+00 2018-12-14 00:32:02.130213+00 151 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:32:02.129486 \N inbound c-7yxllopsknudhhwizmpsw2q \N 3 \N 10 \N 0 \N \N
2018-12-14 00:34:44.103668+00 2018-12-14 00:34:44.10368+00 152 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:34:44.10247 \N inbound c-4vkxs34sghoim5bxt54axgq \N 3 \N 10 \N 0 \N \N
2018-12-14 00:34:54.615683+00 2018-12-14 00:34:54.615698+00 153 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:34:54.614929 \N inbound c-4vkxs34sghoim5bxt54axgq \N 3 \N 10 \N 0 \N \N
2018-12-14 00:35:06.538626+00 2018-12-14 00:35:06.538638+00 154 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:35:06.537923 \N inbound c-4vkxs34sghoim5bxt54axgq \N 3 \N 10 \N 0 \N \N
2018-12-14 00:38:13.03579+00 2018-12-14 00:38:13.035802+00 155 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:38:13.034547 \N inbound c-ejd4qmpz5fm2pzcf6ftkqfq \N 3 \N 10 \N 0 \N \N
2018-12-14 00:38:23.75784+00 2018-12-14 00:38:23.757852+00 156 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:38:23.757093 \N inbound c-ejd4qmpz5fm2pzcf6ftkqfq \N 3 \N 10 \N 0 \N \N
2018-12-14 00:38:24.961655+00 2018-12-14 00:38:24.961667+00 157 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:38:24.961021 \N inbound c-ejd4qmpz5fm2pzcf6ftkqfq \N 3 \N 10 \N 0 \N \N
2018-12-14 00:39:48.670098+00 2018-12-14 00:39:48.670109+00 158 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:39:48.668972 \N inbound c-xaahag67lzm4ztzs57qbyay \N 3 \N 10 \N 0 \N \N
2018-12-14 00:40:07.118509+00 2018-12-14 00:40:07.118522+00 159 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:40:07.117683 \N inbound c-xaahag67lzm4ztzs57qbyay \N 3 \N 10 \N 0 \N \N
2018-12-14 00:40:12.840323+00 2018-12-14 00:40:12.840336+00 160 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:40:12.8397 \N inbound c-xaahag67lzm4ztzs57qbyay \N 3 \N 10 \N 0 \N \N
2018-12-14 00:42:02.387764+00 2018-12-14 00:42:02.387778+00 161 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:42:02.38653 \N inbound c-4bmkhfc436h7jmccyhshvwy \N 3 \N 10 \N 0 \N \N
2018-12-14 00:42:12.707032+00 2018-12-14 00:42:12.707048+00 162 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:42:12.706144 \N inbound c-4bmkhfc436h7jmccyhshvwy \N 3 \N 10 \N 0 \N \N
2018-12-14 00:42:15.367898+00 2018-12-14 00:42:15.367914+00 163 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:42:15.366994 \N inbound c-4bmkhfc436h7jmccyhshvwy \N 3 \N 10 \N 0 \N \N
2018-12-14 00:43:06.434824+00 2018-12-14 00:43:06.434839+00 164 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:43:06.433957 \N inbound c-ci4vv4ox3vvaj2iexngqsda \N 3 \N 10 \N 0 \N \N
2018-12-14 00:43:07.770312+00 2018-12-14 00:43:07.770328+00 165 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:43:07.769461 \N inbound c-ci4vv4ox3vvaj2iexngqsda \N 3 \N 10 \N 0 \N \N
2018-12-14 00:43:27.012157+00 2018-12-14 00:43:27.012169+00 166 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:43:27.011069 \N inbound c-fvyjcpmfu2ve2u6lgujsrny \N 3 \N 10 \N 0 \N \N
2018-12-14 00:43:38.463745+00 2018-12-14 00:43:38.463793+00 167 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:43:38.461088 \N inbound c-fvyjcpmfu2ve2u6lgujsrny \N 3 \N 10 \N 0 \N \N
2018-12-14 00:43:43.012447+00 2018-12-14 00:43:43.012466+00 168 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:43:43.011473 \N inbound c-fvyjcpmfu2ve2u6lgujsrny \N 3 \N 10 \N 0 \N \N
2018-12-14 00:45:58.91843+00 2018-12-14 00:45:58.918441+00 169 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:45:58.917295 \N inbound c-anv5qi775oo4blks4jcmmii \N 3 \N 10 \N 0 \N \N
2018-12-14 00:46:09.483731+00 2018-12-14 00:46:09.483745+00 170 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:46:09.482656 \N inbound c-anv5qi775oo4blks4jcmmii \N 3 \N 10 \N 0 \N \N
2018-12-14 00:46:11.850676+00 2018-12-14 00:46:11.850694+00 171 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:46:11.849726 \N inbound c-anv5qi775oo4blks4jcmmii \N 3 \N 10 \N 0 \N \N
2018-12-14 00:50:48.587802+00 2018-12-14 00:50:48.587814+00 172 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:50:48.586555 \N inbound c-ygajk6eicyhl2ro3b2zmg7a \N 3 \N 10 \N 0 \N \N
2018-12-14 00:51:01.106245+00 2018-12-14 00:51:01.106261+00 173 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:51:01.105314 \N inbound c-ygajk6eicyhl2ro3b2zmg7a \N 3 \N 10 \N 0 \N \N
2018-12-14 00:51:05.418679+00 2018-12-14 00:51:05.41869+00 174 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:51:05.418154 \N inbound c-ygajk6eicyhl2ro3b2zmg7a \N 3 \N 10 \N 0 \N \N
2018-12-14 00:53:01.193164+00 2018-12-14 00:53:01.193176+00 175 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:53:01.191875 \N inbound c-wee65zl5pfl46ixx3g2cdia \N 3 \N 10 \N 0 \N \N
2018-12-14 00:53:11.883406+00 2018-12-14 00:53:11.883421+00 176 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:53:11.882704 \N inbound c-wee65zl5pfl46ixx3g2cdia \N 3 \N 10 \N 0 \N \N
2018-12-14 00:53:13.346694+00 2018-12-14 00:53:13.346711+00 177 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:53:13.345727 \N inbound c-wee65zl5pfl46ixx3g2cdia \N 3 \N 10 \N 0 \N \N
2018-12-14 00:56:33.016259+00 2018-12-14 00:56:33.016273+00 178 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:56:33.014959 \N inbound c-tdedubjgssjqdy56arq44ry \N 3 \N 10 \N 0 \N \N
2018-12-14 00:56:45.813444+00 2018-12-14 00:56:45.813461+00 179 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:56:45.81264 \N inbound c-tdedubjgssjqdy56arq44ry \N 3 \N 10 \N 0 \N \N
2018-12-14 00:56:48.90068+00 2018-12-14 00:56:48.900698+00 180 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:56:48.89976 \N inbound c-tdedubjgssjqdy56arq44ry \N 3 \N 10 \N 0 \N \N
2018-12-14 00:59:57.405249+00 2018-12-14 00:59:57.405263+00 181 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 00:59:57.404117 \N inbound c-745ylel54k5owaglonqdjiy \N 3 \N 10 \N 0 \N \N
2018-12-14 01:13:41.500305+00 2018-12-14 01:13:41.500321+00 182 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 01:13:41.499287 \N inbound c-32yms5uf2yhteyxqwbczoai \N 3 \N 10 \N 0 \N \N
2018-12-14 01:18:28.833968+00 2018-12-14 01:18:28.833993+00 183 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 01:18:28.831811 \N inbound c-6dm26zp7rdstotqawmharka \N 3 \N 10 \N 0 \N \N
2018-12-14 01:33:51.047597+00 2018-12-14 01:33:51.047611+00 184 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 01:33:51.046463 \N inbound c-wu334zh2klxuj2v54nni4ti \N 3 \N 10 \N 0 \N \N
2018-12-14 01:57:44.038192+00 2018-12-14 01:57:44.038204+00 185 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 01:57:44.037014 \N inbound c-xgkre4gmiylz3xzyxi7eb5q \N 3 \N 10 \N 0 \N \N
2018-12-14 01:58:50.696024+00 2018-12-14 01:58:50.696035+00 186 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 01:58:50.694838 \N inbound c-tj4zx2jabwoe3w6dtegbxda \N 3 \N 10 \N 0 \N \N
2018-12-14 02:04:37.803793+00 2018-12-14 02:04:37.803804+00 187 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 02:04:37.802604 \N inbound c-6iyatpzruwmyf2vujoji3xy \N 3 \N 10 \N 0 \N \N
2018-12-14 02:06:40.136593+00 2018-12-14 02:06:40.136621+00 188 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 02:06:40.135403 \N inbound c-cwdf6xizsz7dgoodqee7ogi \N 3 \N 10 \N 0 \N \N
2018-12-14 02:14:05.482578+00 2018-12-14 02:14:05.482589+00 189 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 02:14:05.481498 \N inbound c-w5t7seuqsz4mwgcoreizy2a \N 3 \N 10 \N 0 \N \N
2018-12-14 02:15:30.329021+00 2018-12-14 02:15:30.329032+00 190 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 02:15:30.32784 \N inbound c-kyq2etcwcyd6p6xmrhtw7qq \N 3 \N 10 \N 0 \N \N
2018-12-14 02:16:43.202665+00 2018-12-14 02:16:43.202684+00 191 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 02:16:43.201615 \N inbound c-52a2kg4pykuyj5kfaurh7ja \N 3 \N 10 \N 0 \N \N
2018-12-14 02:19:25.959522+00 2018-12-14 02:19:25.959534+00 192 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 02:19:25.958341 \N inbound c-kdexccb6o6kif5y2ljv4pqa \N 3 \N 10 \N 0 \N \N
2018-12-14 02:20:09.66164+00 2018-12-14 02:20:09.661651+00 193 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 02:20:09.661132 \N inbound c-veesjpjcozwnboueopfkdda \N 3 \N 10 \N 0 \N \N
2018-12-14 02:21:04.153766+00 2018-12-14 02:21:04.15378+00 194 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 02:21:04.152591 \N inbound c-uqic75yiqan7s2rseij7drq \N 3 \N 10 \N 0 \N \N
2018-12-14 02:30:06.30218+00 2018-12-14 02:30:06.302191+00 195 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 02:30:06.301059 \N inbound c-wf57n2okf4h2c5s2uia2pay \N 3 \N 10 \N 0 \N \N
2018-12-14 02:31:28.20009+00 2018-12-14 02:31:28.200108+00 196 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 02:31:28.199135 \N inbound c-dm4jwpkx5gvcb2voaijxdri \N 3 \N 10 \N 0 \N \N
2018-12-14 02:40:12.666536+00 2018-12-14 02:40:12.666549+00 197 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 02:40:12.665327 \N inbound c-f6gn2tzxo2ntefv5s2ntsjq \N 3 \N 10 \N 0 \N \N
2018-12-14 02:43:59.584341+00 2018-12-14 02:43:59.584386+00 198 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 02:43:59.583317 \N inbound c-zt6snoupdsixsufhivmwlxq \N 3 \N 10 \N 0 \N \N
2018-12-14 02:48:52.135075+00 2018-12-14 02:48:52.135086+00 199 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 02:48:52.133912 \N inbound c-p2nmpzxqledbrdejalfprga \N 3 \N 10 \N 0 \N \N
2018-12-14 02:51:33.105406+00 2018-12-14 02:51:33.105417+00 200 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 02:51:33.104288 \N inbound c-4ggdi4oxly6tctfkcameaoq \N 3 \N 10 \N 0 \N \N
2018-12-14 03:06:41.396168+00 2018-12-14 03:06:41.396181+00 201 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 03:06:41.394827 \N inbound c-2keyxr5zyv5awqgnhkkndgy \N 3 \N 10 \N 0 \N \N
2018-12-14 03:08:19.364877+00 2018-12-14 03:08:19.364889+00 202 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 03:08:19.36356 \N inbound c-c2imfn5kuz4c7kcc7e3bxpa \N 3 \N 10 \N 0 \N \N
2018-12-14 03:29:30.596627+00 2018-12-14 03:29:30.596638+00 203 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 03:29:30.595469 \N inbound c-2rq27s3q4tnl5pwscmoahaq \N 3 \N 10 \N 0 \N \N
2018-12-14 03:31:41.120429+00 2018-12-14 03:31:41.120443+00 204 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 03:31:41.119327 \N inbound c-witapz7tuqyg4o2lktbitia \N 3 \N 10 \N 0 \N \N
2018-12-14 03:34:39.987533+00 2018-12-14 03:34:39.987549+00 205 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 03:34:39.986343 \N inbound c-7svxllw5jjujkm25igcpqwq \N 3 \N 10 \N 0 \N \N
2018-12-14 03:52:55.180164+00 2018-12-14 03:52:55.180176+00 206 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 03:52:55.17899 \N inbound c-jsfwi4pnrslllhmwavkvnay \N 3 \N 10 \N 0 \N \N
2018-12-14 04:02:10.997884+00 2018-12-14 04:02:10.997896+00 207 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 04:02:10.996661 \N inbound c-od2nwzn4gcikla3o7pwocly \N 3 \N 10 \N 0 \N \N
2018-12-14 18:12:23.213494+00 2018-12-14 18:12:23.213506+00 208 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 18:12:23.211941 \N inbound c-5fi6azchu5pcezb66projai \N 3 \N 10 \N 0 \N \N
2018-12-14 18:15:39.677143+00 2018-12-14 18:15:39.677173+00 209 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 18:15:39.675639 \N inbound c-bjjfvq4wiwjayzgpihaambq \N 3 \N 10 \N 0 \N \N
2018-12-14 18:17:35.477201+00 2018-12-14 18:17:35.477212+00 210 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 18:17:35.476017 \N inbound c-3nsui6shuad7mhpqbjdvlyi \N 3 \N 10 \N 0 \N \N
2018-12-14 18:18:01.671936+00 2018-12-14 18:18:01.671949+00 211 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 18:18:01.671216 \N inbound c-ucmdvpidqkomspuboz5fs5a \N 3 \N 10 \N 0 \N \N
2018-12-14 18:33:05.425712+00 2018-12-14 18:33:05.425724+00 212 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 18:33:05.424462 \N inbound c-weysp2nsyklid4w2f2obeiy \N 3 \N 10 \N 0 \N \N
2018-12-14 18:36:59.844815+00 2018-12-14 18:36:59.844827+00 213 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 18:36:59.84373 \N inbound c-mlh7ys24nu46otrkyobpwdq \N 3 \N 10 \N 0 \N \N
2018-12-14 18:42:16.190644+00 2018-12-14 18:42:16.190657+00 214 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 18:42:16.189494 \N inbound c-ow2xwjmq3uovimp4pmpkqya \N 3 \N 10 \N 0 \N \N
2018-12-14 18:48:03.155656+00 2018-12-14 18:48:03.155668+00 215 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 18:48:03.154316 \N inbound c-7h6fs6uutogo2i7la77pz2y \N 3 \N 10 \N 0 \N \N
2018-12-14 18:57:28.288115+00 2018-12-14 18:57:28.28813+00 216 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 18:57:28.286832 \N inbound c-vrfaamaufgtq7znc4ilohkq \N 3 \N 10 \N 0 \N \N
2018-12-14 19:16:18.162675+00 2018-12-14 19:16:18.162687+00 217 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 19:16:18.161552 \N inbound c-n7npw2l76mlsjw3uyxqu5qi \N 3 \N 10 \N 0 \N \N
2018-12-14 19:17:05.02112+00 2018-12-14 19:17:05.021134+00 218 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 19:17:05.019991 \N inbound c-htz3u46bcf2argnvbrsk6rq \N 3 \N 10 \N 0 \N \N
2018-12-14 19:19:30.60234+00 2018-12-14 19:19:30.602354+00 219 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 19:19:30.600945 \N inbound c-xcuuxix6aqpa6yjwukuehpq \N 3 \N 10 \N 0 \N \N
2018-12-14 19:24:54.04322+00 2018-12-14 19:24:54.043234+00 220 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 19:24:54.042107 \N inbound c-wnmgd7jkdcs27num7jltrna \N 3 \N 10 \N 0 \N \N
2018-12-14 19:28:37.804906+00 2018-12-14 19:28:37.804919+00 221 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 19:28:37.803778 \N inbound c-bbpxwngdz73z7a5xl5gpdfq \N 3 \N 10 \N 0 \N \N
2018-12-14 19:35:49.511077+00 2018-12-14 19:35:49.511089+00 222 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 19:35:49.509766 \N inbound c-ccgzsufga6kbd6e2p5xcssa \N 3 \N 10 \N 0 \N \N
2018-12-14 19:54:32.971156+00 2018-12-14 19:54:32.971169+00 223 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 19:54:32.969795 \N inbound c-fly67jcnixc26ngsci4mp3q \N 3 \N 10 \N 0 \N \N
2018-12-14 20:12:27.050041+00 2018-12-14 20:12:27.050052+00 224 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 20:12:27.048928 \N inbound c-fiukr5wqgp6pkq3zhcekwri \N 3 \N 10 \N 0 \N \N
2018-12-14 21:15:06.220288+00 2018-12-14 21:15:06.220299+00 225 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 21:15:06.219181 \N inbound c-xcvqeh6vua3kdcgyoucmx4y \N 3 \N 10 \N 0 \N \N
2018-12-14 21:18:43.576662+00 2018-12-14 21:18:43.576673+00 226 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 21:18:43.575392 \N inbound c-zuxle7zkhjqlgyvdzqgrx3a \N 3 \N 10 \N 0 \N \N
2018-12-14 21:48:12.108678+00 2018-12-14 21:48:12.10869+00 227 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 21:48:12.10744 \N inbound c-lxbjxjtqklk5twceixtg77a \N 3 \N 10 \N 0 \N \N
2018-12-14 22:20:29.699427+00 2018-12-14 22:20:29.699439+00 228 1 Mobile Business App ringing new lead +17739699892 +18722217507 \N 2018-12-14 22:20:29.69827 \N inbound c-elirngmnabkk7v6u7v744xy \N 3 \N 10 \N 0 \N \N
2018-12-14 23:41:56.019716+00 2018-12-14 23:41:56.799287+00 229 1 \N missed new lead +17739699892 +18722217507 \N 2018-12-14 23:41:56.018583 \N outbound \N 4 1 10 \N 0 \N \N
2018-12-14 23:42:14.24809+00 2018-12-14 23:42:14.848425+00 230 1 \N missed new lead +17739699892 +18722217507 \N 2018-12-14 23:42:14.246963 \N outbound \N 4 1 10 \N 0 \N \N
2018-12-14 23:42:45.796859+00 2018-12-14 23:42:46.603316+00 231 1 \N missed new lead +17739699892 +18722217507 \N 2018-12-14 23:42:45.79609 \N outbound \N 4 1 10 \N 0 \N \N
2018-12-14 23:48:21.397622+00 2018-12-14 23:48:58.149601+00 232 1 \N completed new lead +17739699892 +13367394103 37 2018-12-14 23:48:21.396735 2018-12-14 23:48:58.148229 outbound \N 5 1 10 \N 0 \N \N
2018-12-14 23:51:59.600492+00 2018-12-14 23:51:59.600506+00 233 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-14 23:51:59.599244 \N inbound c-w55iwqclm6lbyn3smctuncq \N 4 \N 10 \N 0 \N \N
2018-12-14 23:53:34.035784+00 2018-12-14 23:53:34.03584+00 234 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-14 23:53:34.034625 \N inbound c-q2spl7y2sgq46wloiw5b4wq \N 4 \N 10 \N 0 \N \N
2018-12-14 23:55:28.978934+00 2018-12-14 23:55:28.978945+00 235 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-14 23:55:28.977865 \N inbound c-so33mcm3m5becxapnaolnca \N 4 \N 10 \N 0 \N \N
2018-12-14 23:57:29.725185+00 2018-12-14 23:57:29.725197+00 236 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-14 23:57:29.724031 \N inbound c-ka3d3hxqva26oojpo2ygx3a \N 4 \N 10 \N 0 \N \N
2018-12-15 00:02:23.719292+00 2018-12-15 00:02:23.719304+00 237 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 00:02:23.718601 \N inbound c-d6agqw6l2ot7bxcbingrjia \N 4 \N 10 \N 0 \N \N
2018-12-15 00:03:56.501882+00 2018-12-15 00:03:56.501894+00 238 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 00:03:56.500663 \N inbound c-deznvtwwyheqqyywagekr5i \N 4 \N 10 \N 0 \N \N
2018-12-15 00:07:05.156357+00 2018-12-15 00:07:05.156368+00 239 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 00:07:05.155182 \N inbound c-k57qlf2pqugnfuyt7cet54a \N 4 \N 10 \N 0 \N \N
2018-12-15 00:08:58.256117+00 2018-12-15 00:08:58.25613+00 240 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 00:08:58.254887 \N inbound c-ogajifydud2esxp2p7ivdsi \N 4 \N 10 \N 0 \N \N
2018-12-15 00:09:32.67886+00 2018-12-15 00:09:32.678873+00 241 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 00:09:32.678113 \N inbound c-mh3ekzfqr4mlhh7mbjutlma \N 4 \N 10 \N 0 \N \N
2018-12-15 18:16:37.971213+00 2018-12-15 18:16:37.971225+00 242 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 18:16:37.970046 \N inbound c-ivwyjbmg6mcnnxwgrxgkrxq \N 4 \N 10 \N 0 \N \N
2018-12-15 19:25:41.579561+00 2018-12-15 19:25:41.579573+00 243 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 19:25:41.578389 \N inbound c-he473gnqdqa3nn7r4tbvpqa \N 4 \N 10 \N 0 \N \N
2018-12-15 19:26:26.817346+00 2018-12-15 19:26:26.817359+00 244 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 19:26:26.816679 \N inbound c-lbvqr4teq5r3wcbdgcl5eka \N 4 \N 10 \N 0 \N \N
2018-12-15 19:26:50.446642+00 2018-12-15 19:26:50.446653+00 245 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 19:26:50.445479 \N inbound c-jtmoq2z66zo7skdbdb4w54a \N 4 \N 10 \N 0 \N \N
2018-12-15 19:36:54.730137+00 2018-12-15 19:36:54.730148+00 246 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 19:36:54.729012 \N inbound c-xlryy7cuozbzufcr42gv5ha \N 4 \N 10 \N 0 \N \N
2018-12-15 19:40:53.390045+00 2018-12-15 19:40:53.39006+00 247 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 19:40:53.388944 \N inbound c-o5xslsrs6lalffzye5vbasa \N 4 \N 10 \N 0 \N \N
2018-12-15 19:42:03.45051+00 2018-12-15 19:42:03.450571+00 248 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 19:42:03.449933 \N inbound c-su2qiyluov7ofbimiro7o6a \N 4 \N 10 \N 0 \N \N
2018-12-15 19:43:47.060728+00 2018-12-15 19:43:47.060739+00 249 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 19:43:47.059529 \N inbound c-fylzpbkk44ar2hljzcfmkga \N 4 \N 10 \N 0 \N \N
2018-12-15 19:44:36.296747+00 2018-12-15 19:44:36.296763+00 250 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 19:44:36.295892 \N inbound c-2m4dmoedkyasaqn6r6j347q \N 4 \N 10 \N 0 \N \N
2018-12-15 19:45:54.300442+00 2018-12-15 19:45:54.300454+00 251 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 19:45:54.299302 \N inbound c-eopwcirsj5a3fh7vni5yicy \N 4 \N 10 \N 0 \N \N
2018-12-15 19:46:35.814562+00 2018-12-15 19:46:35.814574+00 252 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 19:46:35.813405 \N inbound c-s4uaxeg33g5klv4wl2c4uwy \N 4 \N 10 \N 0 \N \N
2018-12-15 19:47:05.728535+00 2018-12-15 19:47:05.728549+00 253 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 19:47:05.727666 \N inbound c-don76cbibbvahzp42ldn4ua \N 4 \N 10 \N 0 \N \N
2018-12-15 19:48:20.382798+00 2018-12-15 19:48:20.38281+00 254 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 19:48:20.381518 \N inbound c-5gwqzt57rdtjqipd6cjb7uq \N 4 \N 10 \N 0 \N \N
2018-12-15 19:50:22.367993+00 2018-12-15 19:50:22.368005+00 255 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-15 19:50:22.366936 \N inbound c-iq5h74o44uzafewclkpgady \N 4 \N 10 \N 0 \N \N
2018-12-16 08:35:52.803251+00 2018-12-16 08:35:52.803414+00 256 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-16 08:35:52.80078 \N inbound c-iz4emwg2sqidnei7xanhyai \N 4 \N 10 \N 0 \N \N
2018-12-16 21:24:40.469979+00 2018-12-16 21:24:40.469995+00 257 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-16 21:24:40.46821 \N inbound c-4gromb6zizryysfxs7ec26i \N 4 \N 10 \N 0 \N \N
2018-12-16 21:25:49.772407+00 2018-12-16 21:25:49.772418+00 258 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-16 21:25:49.771173 \N inbound c-gxuqragzzzgel6b5oi6fxhi \N 4 \N 10 \N 0 \N \N
2018-12-16 22:54:58.410589+00 2018-12-16 22:54:58.410601+00 259 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-16 22:54:58.409325 \N inbound c-mt7hup3m5km3ubksvkfp5gi \N 4 \N 10 \N 0 \N \N
2018-12-16 22:55:50.42897+00 2018-12-16 22:55:50.428985+00 260 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-16 22:55:50.428141 \N inbound c-3djcw66adqqv5tuqg72tdwi \N 4 \N 10 \N 0 \N \N
2018-12-16 23:09:05.160394+00 2018-12-16 23:09:05.160408+00 261 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-16 23:09:05.159174 \N inbound c-umfhmbgujlnwwmu5pb73qby \N 4 \N 10 \N 0 \N \N
2018-12-16 23:10:27.343349+00 2018-12-16 23:10:27.343361+00 262 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-16 23:10:27.342092 \N inbound c-cpzbk3pphpfwhcdfhciwp7y \N 4 \N 10 \N 0 \N \N
2018-12-16 23:10:29.549632+00 2018-12-16 23:10:29.549645+00 263 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-16 23:10:29.54885 \N inbound c-4p6yodqxymrygglf7jgcztq \N 4 \N 10 \N 0 \N \N
2018-12-16 23:14:19.437942+00 2018-12-16 23:14:19.437957+00 264 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-16 23:14:19.436206 \N inbound c-gto5p4nk55k2hxq45wbmuaa \N 4 \N 10 \N 0 \N \N
2018-12-17 03:49:00.154726+00 2018-12-17 03:49:00.154738+00 265 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-17 03:49:00.153523 \N inbound c-6mzd5k5vpkin4dhabukkrti \N 4 \N 10 \N 0 \N \N
2018-12-18 00:33:31.610777+00 2018-12-18 00:33:31.610846+00 266 1 Normal Number ringing new lead +17732909650 +18722217507 \N 2018-12-18 00:33:31.605599 \N inbound c-4b3xxli2vook7bu4f2pc57q \N 4 \N 5 \N 0 \N \N
2018-12-18 00:34:33.545816+00 2018-12-18 00:34:33.545826+00 267 1 Normal Number ringing new lead +17732909650 +18722217507 \N 2018-12-18 00:34:33.545253 \N inbound c-ppwrd5dgzapzk2wltahygei \N 4 \N 5 \N 0 \N \N
2018-12-18 00:37:39.675822+00 2018-12-18 00:37:40.498382+00 268 1 Normal Number ringing new lead +13367394103 +18722217507 \N 2018-12-18 00:37:39.675126 \N inbound c-a275rmfaw75lkpciwockaca \N 4 \N 11 \N 0 \N \N
2018-12-19 21:06:54.415959+00 2018-12-19 21:06:54.415973+00 290 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 21:06:54.413941 \N inbound c-ebm2cp3awkn2kxg6g4y4z2y \N 4 \N 10 \N 0 \N \N
2018-12-18 00:37:42.179431+00 2018-12-18 00:38:00.743862+00 269 1 twilio PN completed new lead +18722217507 +13367394103 19 2018-12-18 00:37:42.178546 2018-12-18 00:38:00.741925 inbound CAb91a472a1c1cfb384d02153dcad2f1e6 \N 5 1 12 \N 0 9.39766812324523926 \N
2018-12-18 00:39:31.351871+00 2018-12-18 00:39:31.351882+00 270 1 Normal Number ringing new lead +18722217507 +18722217507 \N 2018-12-18 00:39:31.350793 \N inbound c-iqxgvltvskhoulnqjgrulda \N 4 \N 12 \N 0 \N \N
2018-12-18 00:39:33.07718+00 2018-12-18 00:39:33.077191+00 271 1 Normal Number ringing new lead +18722217507 +18722217507 \N 2018-12-18 00:39:33.076556 \N inbound c-huohrc3rqnvc3m6wama4bxq \N 4 \N 12 \N 0 \N \N
2018-12-19 00:50:43.150149+00 2018-12-19 00:50:43.150688+00 272 1 Normal Number ringing new lead +17732909650 +18722217507 \N 2018-12-19 00:50:43.142059 \N inbound c-d4fmjpit432whgvcaniuiuy \N 4 \N 5 \N 0 \N \N
2018-12-19 19:44:07.481617+00 2018-12-19 19:44:07.481634+00 273 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 19:44:07.479912 \N inbound c-ys5vzce4shdy5bqdyodbaui \N 4 \N 10 \N 0 \N \N
2018-12-19 20:26:10.686676+00 2018-12-19 20:26:10.68669+00 274 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 20:26:10.685503 \N inbound c-clytn5lmzzi5bjio6qp5eqq \N 4 \N 10 \N 0 \N \N
2018-12-19 20:28:46.48864+00 2018-12-19 20:28:46.488679+00 275 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 20:28:46.487467 \N inbound c-yxtzqgzhedt46vqnvgddpxy \N 4 \N 10 \N 0 \N \N
2018-12-19 20:33:45.000964+00 2018-12-19 20:33:45.000975+00 276 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 20:33:44.999791 \N inbound c-mrsnwssakeuuhlqwsu4f5iy \N 4 \N 10 \N 0 \N \N
2018-12-19 20:36:22.388582+00 2018-12-19 20:36:22.388595+00 277 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 20:36:22.387415 \N inbound c-ixfracl6d3qawehagyfgaji \N 4 \N 10 \N 0 \N \N
2018-12-19 20:37:09.229237+00 2018-12-19 20:37:09.229249+00 278 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 20:37:09.228546 \N inbound c-c7jhbcvstx4zuh7eyucqcyq \N 4 \N 10 \N 0 \N \N
2018-12-19 20:37:18.174023+00 2018-12-19 20:37:18.174035+00 279 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 20:37:18.172614 \N inbound c-ip2frhtkz2wpywfl3l4abya \N 4 \N 10 \N 0 \N \N
2018-12-19 20:39:07.588817+00 2018-12-19 20:39:07.588829+00 280 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 20:39:07.587628 \N inbound c-h2de45auyodsgticdc3fdwa \N 4 \N 10 \N 0 \N \N
2018-12-19 20:44:29.59139+00 2018-12-19 20:44:29.591402+00 281 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 20:44:29.590194 \N inbound c-bd65hssnn5x3pfd66bo4d3a \N 4 \N 10 \N 0 \N \N
2018-12-19 20:47:27.777646+00 2018-12-19 20:47:27.777704+00 282 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 20:47:27.776527 \N inbound c-sdef6rl5llxnhcueqqbyiva \N 4 \N 10 \N 0 \N \N
2018-12-19 20:47:34.641624+00 2018-12-19 20:47:34.641637+00 283 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 20:47:34.64102 \N inbound c-olan5edwuv4mllfdeoq6ryi \N 4 \N 10 \N 0 \N \N
2018-12-19 20:51:01.418614+00 2018-12-19 20:51:01.418628+00 284 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 20:51:01.41747 \N inbound c-o7t4gaye5dhqkqagd3apbey \N 4 \N 10 \N 0 \N \N
2018-12-19 20:52:15.138013+00 2018-12-19 20:52:15.138024+00 285 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 20:52:15.13688 \N inbound c-ftxrdptmhaql4ew74ybfkfq \N 4 \N 10 \N 0 \N \N
2018-12-19 20:55:49.996443+00 2018-12-19 20:55:49.996458+00 286 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 20:55:49.994807 \N inbound c-tharsa6n7wa3yvlx3ep2y6y \N 4 \N 10 \N 0 \N \N
2018-12-19 21:00:43.692944+00 2018-12-19 21:00:43.692956+00 287 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 21:00:43.691633 \N inbound c-45usajos4tvquowyn6pjdzq \N 4 \N 10 \N 0 \N \N
2018-12-19 21:03:01.952309+00 2018-12-19 21:03:01.952321+00 288 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 21:03:01.950941 \N inbound c-oicebqkt77td2u2pr7nlcbq \N 4 \N 10 \N 0 \N \N
2018-12-19 21:05:25.526649+00 2018-12-19 21:05:25.526675+00 289 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 21:05:25.521605 \N inbound c-nr2ka7nknjegxvpnfl5ch3a \N 4 \N 10 \N 0 \N \N
2018-12-19 21:07:02.571714+00 2018-12-19 21:07:02.571725+00 291 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 21:07:02.57102 \N inbound c-5sriuqbq7dudubg44qjz4vi \N 4 \N 10 \N 0 \N \N
2018-12-19 21:09:41.871963+00 2018-12-19 21:09:41.87199+00 292 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 21:09:41.869716 \N inbound c-olgvemunbxstsragif5cb7a \N 4 \N 10 \N 0 \N \N
2018-12-19 21:13:05.639139+00 2018-12-19 21:13:05.639152+00 293 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 21:13:05.637919 \N inbound c-fl6e4xukh627nyddlkvf6ey \N 4 \N 10 \N 0 \N \N
2018-12-19 21:15:40.850616+00 2018-12-19 21:15:40.850628+00 294 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 21:15:40.849052 \N inbound c-226233uwtjyx32jamz65fta \N 4 \N 10 \N 0 \N \N
2018-12-19 21:17:13.469446+00 2018-12-19 21:17:13.469458+00 295 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 21:17:13.468239 \N inbound c-nezq7nsi3dc4rj3jpstttja \N 4 \N 10 \N 0 \N \N
2018-12-19 21:25:23.832352+00 2018-12-19 21:25:23.832364+00 296 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 21:25:23.83108 \N inbound c-eaatvtdknp6akiy6yyjnkaa \N 4 \N 10 \N 0 \N \N
2018-12-19 21:26:43.406923+00 2018-12-19 21:26:43.40695+00 297 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 21:26:43.405709 \N inbound c-lgmen32k3zzcfsaurwks3aa \N 4 \N 10 \N 0 \N \N
2018-12-19 21:27:19.480372+00 2018-12-19 21:27:19.480383+00 298 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 21:27:19.479153 \N inbound c-o5vcdit2ughod64n2dptila \N 4 \N 10 \N 0 \N \N
2018-12-19 21:36:55.658801+00 2018-12-19 21:36:55.658814+00 299 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 21:36:55.657602 \N inbound c-c36nnhoxl6nbur3uapfjwmq \N 4 \N 10 \N 0 \N \N
2018-12-19 21:41:00.284725+00 2018-12-19 21:41:00.284736+00 300 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 21:41:00.283409 \N inbound c-bb2jxvktvly6rdczt5undea \N 4 \N 10 \N 0 \N \N
2018-12-19 21:54:57.979051+00 2018-12-19 21:54:57.979064+00 301 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 21:54:57.977627 \N inbound c-fnh33ohzhxgh4t36imdxqwq \N 4 \N 10 \N 0 \N \N
2018-12-19 21:56:39.572831+00 2018-12-19 21:56:39.572845+00 302 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 21:56:39.571521 \N inbound c-lqy4osoarnffnsqs6uw35oq \N 4 \N 10 \N 0 \N \N
2018-12-19 22:15:03.847621+00 2018-12-19 22:15:03.847633+00 303 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 22:15:03.846464 \N inbound c-apkzdlmzg6kkh7icsvdsabq \N 4 \N 10 \N 0 \N \N
2018-12-19 22:15:37.898416+00 2018-12-19 22:15:37.89843+00 304 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 22:15:37.897185 \N inbound c-xu2vvmor42xi2two5kywica \N 4 \N 10 \N 0 \N \N
2018-12-19 22:15:55.693334+00 2018-12-19 22:15:55.693349+00 305 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 22:15:55.692426 \N inbound c-5b47mgoncagj7b5rpjbbraa \N 4 \N 10 \N 0 \N \N
2018-12-19 22:16:18.338124+00 2018-12-19 22:16:18.338149+00 306 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 22:16:18.337285 \N inbound c-pppvqkdqk3f5qti7y6hvclq \N 4 \N 10 \N 0 \N \N
2018-12-19 22:20:13.283132+00 2018-12-19 22:20:13.283144+00 307 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 22:20:13.281972 \N inbound c-bnqxlg6y3jw7wzrlbdl5h3a \N 4 \N 10 \N 0 \N \N
2018-12-19 22:23:45.250347+00 2018-12-19 22:23:45.250401+00 308 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 22:23:45.249163 \N inbound c-eaauirkpihm2sl5mib3xqai \N 4 \N 10 \N 0 \N \N
2018-12-19 22:24:01.742104+00 2018-12-19 22:24:01.742117+00 309 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 22:24:01.741612 \N inbound c-i5bndcerj2r6pjgdhae6lda \N 4 \N 10 \N 0 \N \N
2018-12-19 22:28:35.014431+00 2018-12-19 22:28:35.014445+00 310 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 22:28:35.013246 \N inbound c-6j6y2fngaqa4z35zprexg2y \N 4 \N 10 \N 0 \N \N
2018-12-19 22:29:22.351274+00 2018-12-19 22:29:22.351286+00 311 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 22:29:22.350127 \N inbound c-2cooj5cb3vr4koa5z6badoy \N 4 \N 10 \N 0 \N \N
2018-12-19 22:32:16.486386+00 2018-12-19 22:32:16.486399+00 312 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 22:32:16.485158 \N inbound c-le6iaxssan6zn6onb6jh75q \N 4 \N 10 \N 0 \N \N
2018-12-19 22:47:14.460874+00 2018-12-19 22:47:14.460886+00 313 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 22:47:14.459555 \N inbound c-s52jt64yiiqfccurp2za25y \N 4 \N 10 \N 0 \N \N
2018-12-19 22:47:25.51977+00 2018-12-19 22:47:25.519782+00 314 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 22:47:25.51912 \N inbound c-rohqa7jdedorvv4t7zgyv3i \N 4 \N 10 \N 0 \N \N
2018-12-19 22:47:29.170702+00 2018-12-19 22:47:29.170723+00 315 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 22:47:29.169611 \N inbound c-k3a274pzkpknpwvrey4jsgi \N 4 \N 10 \N 0 \N \N
2018-12-19 22:49:52.377249+00 2018-12-19 22:49:52.377261+00 316 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 22:49:52.375906 \N inbound c-6gw73o3dztyvkzdokxja2dq \N 4 \N 10 \N 0 \N \N
2018-12-19 22:50:03.771336+00 2018-12-19 22:50:03.771352+00 317 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 22:50:03.770536 \N inbound c-lyiylydvrkbfpaddjklkznq \N 4 \N 10 \N 0 \N \N
2018-12-19 22:50:07.517966+00 2018-12-19 22:50:07.517979+00 318 1 Normal Number ringing new lead +18722217507 +18722217507 \N 2018-12-19 22:50:07.517246 \N inbound c-axsrm62djwv4lvfwyumsbwi \N 4 \N 12 \N 0 \N \N
2018-12-19 22:50:08.865831+00 2018-12-19 22:50:08.865845+00 319 1 Normal Number ringing new lead +18722217507 +18722217507 \N 2018-12-19 22:50:08.865055 \N inbound c-hpuwn4fyvuyq73zfk6mo3wi \N 4 \N 12 \N 0 \N \N
2018-12-19 23:01:25.992823+00 2018-12-19 23:01:25.992837+00 320 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 23:01:25.991344 \N inbound c-2e4x2mbazwilprmafjyjova \N 4 \N 10 \N 0 \N \N
2018-12-19 23:06:39.570806+00 2018-12-19 23:06:39.57087+00 321 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 23:06:39.569662 \N inbound c-skjcx2tyikzbs2vsjotzbky \N 4 \N 10 \N 0 \N \N
2018-12-19 23:07:32.168266+00 2018-12-19 23:07:32.168278+00 322 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 23:07:32.167114 \N inbound c-l2s3dymlmfmhr7gp3hcwmkq \N 4 \N 10 \N 0 \N \N
2018-12-19 23:20:14.738604+00 2018-12-19 23:20:14.738616+00 323 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 23:20:14.737522 \N inbound c-5hwfmpy2bmlwop6rupb22xy \N 4 \N 10 \N 0 \N \N
2018-12-19 23:22:11.14386+00 2018-12-19 23:22:11.143872+00 324 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 23:22:11.142639 \N inbound c-a3vdr77vurbozvr4lm3wdrq \N 4 \N 10 \N 0 \N \N
2018-12-19 23:47:15.101865+00 2018-12-19 23:47:15.101877+00 325 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 23:47:15.100558 \N inbound c-ydufauy4kn3ftlahwat55aq \N 4 \N 10 \N 0 \N \N
2018-12-19 23:49:59.633648+00 2018-12-19 23:49:59.633661+00 326 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 23:49:59.632499 \N inbound c-rmeoij6h2jfuy6yz2kucpdq \N 4 \N 10 \N 0 \N \N
2018-12-19 23:52:32.101532+00 2018-12-19 23:52:32.10168+00 327 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 23:52:32.100358 \N inbound c-v2dmif5lhw75hbcyc25hswi \N 4 \N 10 \N 0 \N \N
2018-12-19 23:53:40.160632+00 2018-12-19 23:53:40.160644+00 328 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 23:53:40.159167 \N inbound c-zyewdv2th3i6xr6onio56bi \N 4 \N 10 \N 0 \N \N
2018-12-19 23:55:15.073806+00 2018-12-19 23:55:15.073817+00 329 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 23:55:15.072666 \N inbound c-huttnok3p5lbbc5l2lf36fi \N 4 \N 10 \N 0 \N \N
2018-12-19 23:57:47.492812+00 2018-12-19 23:57:47.492828+00 330 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-19 23:57:47.491457 \N inbound c-ghu3mwgdlsf2wcjgmowigfi \N 4 \N 10 \N 0 \N \N
2018-12-20 00:00:14.727366+00 2018-12-20 00:00:14.727378+00 331 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 00:00:14.726162 \N inbound c-b7i3gxutmiynis643nefawq \N 4 \N 10 \N 0 \N \N
2018-12-20 00:02:22.455429+00 2018-12-20 00:02:22.455457+00 332 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 00:02:22.453096 \N inbound c-7jyomtpwa4v357pvb5fjfei \N 4 \N 10 \N 0 \N \N
2018-12-20 00:03:54.828228+00 2018-12-20 00:03:54.82824+00 333 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 00:03:54.827001 \N inbound c-q4jssgc7iy5ljakb2emkryy \N 4 \N 10 \N 0 \N \N
2018-12-20 00:04:03.737157+00 2018-12-20 00:04:03.737171+00 334 1 Normal Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 00:04:03.736464 \N inbound c-fyh53pvq5hmwo3aarv6pd5a \N 4 \N 10 \N 0 \N \N
2018-12-20 02:25:28.793272+00 2018-12-20 02:25:28.793283+00 335 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 02:25:28.792039 \N inbound c-2z4zzcwt7tj2zic7pxyosui \N 6 \N 10 \N 0 \N \N
2018-12-20 02:28:00.399556+00 2018-12-20 02:28:00.399568+00 336 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 02:28:00.39849 \N inbound c-xlygmhrstk6oqq2tinrh6zq \N 6 \N 10 \N 0 \N \N
2018-12-20 02:30:04.431107+00 2018-12-20 02:30:04.431119+00 337 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 02:30:04.429808 \N inbound c-4ive4ykdax2g4e27gx6w7fa \N 6 \N 10 \N 0 \N \N
2018-12-20 02:33:06.055504+00 2018-12-20 02:33:06.055516+00 338 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 02:33:06.054341 \N inbound c-6vzgcpodl3ugdmohm7behhi \N 6 \N 10 \N 0 \N \N
2018-12-20 02:36:39.484232+00 2018-12-20 02:36:39.484244+00 339 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 02:36:39.483141 \N inbound c-nmqqcw3hx45yeo447hacrky \N 6 \N 10 \N 0 \N \N
2018-12-20 02:45:35.443591+00 2018-12-20 02:45:35.443604+00 340 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 02:45:35.441998 \N inbound c-c376q7r62v42uukv3r7k6ta \N 6 \N 10 \N 0 \N \N
2018-12-20 02:54:11.026535+00 2018-12-20 02:54:11.026547+00 341 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 02:54:11.025314 \N inbound c-okd3ra3wjmkdwmtl35z4nvq \N 6 \N 10 \N 0 \N \N
2018-12-20 02:58:53.453466+00 2018-12-20 02:58:53.453478+00 342 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 02:58:53.452198 \N inbound c-q6pl6h3xklsqca53h4srq6q \N 6 \N 10 \N 0 \N \N
2018-12-20 03:04:01.293571+00 2018-12-20 03:04:01.293582+00 343 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 03:04:01.292411 \N inbound c-7lk6xhcszgnvd4fi2opb42q \N 6 \N 10 \N 0 \N \N
2018-12-20 03:11:06.656095+00 2018-12-20 03:11:06.656106+00 344 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 03:11:06.654843 \N inbound c-twumzwzt35ywlj27in5pmcy \N 6 \N 10 \N 0 \N \N
2018-12-20 03:11:55.081473+00 2018-12-20 03:11:55.081487+00 345 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 03:11:55.0803 \N inbound c-7b2tsi7aurgwcrhgkrw3eqa \N 6 \N 10 \N 0 \N \N
2018-12-20 03:14:05.91804+00 2018-12-20 03:14:05.918052+00 346 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 03:14:05.916728 \N inbound c-pk55e7jcbnj2u3wja7osojy \N 6 \N 10 \N 0 \N \N
2018-12-20 03:17:35.687146+00 2018-12-20 03:17:35.687157+00 347 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 03:17:35.685889 \N inbound c-2gqcybtgpjkglurl53uwj4a \N 6 \N 10 \N 0 \N \N
2018-12-20 03:20:39.751045+00 2018-12-20 03:20:39.751056+00 348 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 03:20:39.749863 \N inbound c-mw4b3h57eouybshs3jrfhtq \N 6 \N 10 \N 0 \N \N
2018-12-20 03:22:08.899325+00 2018-12-20 03:22:08.899335+00 349 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 03:22:08.898172 \N inbound c-p5t7skvtodjhmw6e63vdf4i \N 6 \N 10 \N 0 \N \N
2018-12-20 03:23:49.076001+00 2018-12-20 03:23:49.076013+00 350 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 03:23:49.074766 \N inbound c-w4yweosnrf6r7wlvvr456kq \N 6 \N 10 \N 0 \N \N
2018-12-20 03:39:52.24012+00 2018-12-20 03:39:52.240132+00 351 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 03:39:52.238864 \N inbound c-k3wjgx4tc6eqgqhlegikdry \N 6 \N 10 \N 0 \N \N
2018-12-20 03:41:15.08661+00 2018-12-20 03:41:15.086628+00 352 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 03:41:15.085615 \N inbound c-wacches7a2cynvwrnanfcxy \N 6 \N 10 \N 0 \N \N
2018-12-20 03:42:08.176688+00 2018-12-20 03:42:08.176712+00 353 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 03:42:08.175014 \N inbound c-ursik3fp43evgmc5ucznu2i \N 6 \N 10 \N 0 \N \N
2018-12-20 03:43:16.795311+00 2018-12-20 03:43:16.795322+00 354 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 03:43:16.79403 \N inbound c-l2fgfz5b5t2zoapwrrh34yy \N 6 \N 10 \N 0 \N \N
2018-12-20 03:44:21.762759+00 2018-12-20 03:44:21.762772+00 355 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 03:44:21.761087 \N inbound c-vahznfnwbfqdnoantiwklty \N 6 \N 10 \N 0 \N \N
2018-12-20 03:46:23.530104+00 2018-12-20 03:46:23.530116+00 356 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 03:46:23.528939 \N inbound c-2r4a5eqgja4lbguqnnyj6nq \N 6 \N 10 \N 0 \N \N
2018-12-20 03:47:33.27409+00 2018-12-20 03:47:33.274108+00 357 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 03:47:33.272887 \N inbound c-opxbyxzmuoqm6prmh6roivq \N 6 \N 10 \N 0 \N \N
2018-12-20 03:48:53.031044+00 2018-12-20 03:48:53.031057+00 358 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 03:48:53.02931 \N inbound c-pk3sxyt7jcxsyogn2d5qqeq \N 6 \N 10 \N 0 \N \N
2018-12-20 03:51:24.64614+00 2018-12-20 03:51:24.646152+00 359 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 03:51:24.64488 \N inbound c-wc2nowcx673hg3izrrf6umq \N 6 \N 10 \N 0 \N \N
2018-12-20 03:57:16.411554+00 2018-12-20 03:57:16.411567+00 360 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 03:57:16.410207 \N inbound c-tjk5eu5mr46gzlfmiesml7q \N 6 \N 10 \N 0 \N \N
2018-12-20 17:42:57.562048+00 2018-12-20 17:42:57.56206+00 361 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 17:42:57.560578 \N inbound c-wviw47l47fssrkfqrc2nyjq \N 6 \N 10 \N 0 \N \N
2018-12-20 17:43:19.663816+00 2018-12-20 17:43:19.663826+00 362 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 17:43:19.663169 \N inbound c-ydggfsrwzlokdkgntl7cuzi \N 6 \N 10 \N 0 \N \N
2018-12-20 17:45:32.207905+00 2018-12-20 17:45:32.207917+00 363 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 17:45:32.206618 \N inbound c-zxltrg2v3s6qr3hgsnz2fha \N 6 \N 10 \N 0 \N \N
2018-12-20 17:45:55.066474+00 2018-12-20 17:45:55.066486+00 364 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 17:45:55.065923 \N inbound c-cdhpx27nxpkimjxp2svtjra \N 6 \N 10 \N 0 \N \N
2018-12-20 17:46:12.107886+00 2018-12-20 17:46:12.107897+00 365 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 17:46:12.107363 \N inbound c-ympqoyhqwtfecqzqecqgsei \N 6 \N 10 \N 0 \N \N
2018-12-20 17:46:35.006775+00 2018-12-20 17:46:35.006785+00 366 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 17:46:35.006295 \N inbound c-bhc3y2dj5ok5pvr2c4mbgii \N 6 \N 10 \N 0 \N \N
2018-12-20 17:46:55.238462+00 2018-12-20 17:46:55.238476+00 367 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 17:46:55.237787 \N inbound c-rqbh6jkymfnn2f46gaiisoq \N 6 \N 10 \N 0 \N \N
2018-12-20 17:52:01.842183+00 2018-12-20 17:52:01.842194+00 368 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 17:52:01.841071 \N inbound c-4smi7zmgql2j3blewzbdcyi \N 6 \N 10 \N 0 \N \N
2018-12-20 18:05:31.448913+00 2018-12-20 18:05:31.448925+00 369 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 18:05:31.447651 \N inbound c-hsy7gjjt4s7yqaljhfdr2ia \N 6 \N 10 \N 0 \N \N
2018-12-20 18:41:43.460427+00 2018-12-20 18:41:43.460438+00 370 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 18:41:43.459318 \N inbound c-6rlrnkq4ouio4uhnhubjuwy \N 6 \N 10 \N 0 \N \N
2018-12-20 18:42:53.37327+00 2018-12-20 18:42:53.373284+00 371 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 18:42:53.372554 \N inbound c-xpcsqopobyzvofikirkpvbq \N 6 \N 10 \N 0 \N \N
2018-12-20 18:43:20.998526+00 2018-12-20 18:43:20.998586+00 372 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 18:43:20.994338 \N inbound c-2yfw2gf7zdhbaakjjypnchq \N 6 \N 10 \N 0 \N \N
2018-12-20 18:43:50.799858+00 2018-12-20 18:43:50.799869+00 373 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 18:43:50.799263 \N inbound c-ly5lat4czyd266wep2h55qa \N 6 \N 10 \N 0 \N \N
2018-12-20 18:47:19.434332+00 2018-12-20 18:47:19.434344+00 374 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 18:47:19.432991 \N inbound c-btf54kmna3jhrrgvj3cydli \N 6 \N 10 \N 0 \N \N
2018-12-20 18:50:16.574762+00 2018-12-20 18:50:16.574773+00 375 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 18:50:16.573551 \N inbound c-natktjzdmnl7ccedj5otgxq \N 6 \N 10 \N 0 \N \N
2018-12-20 18:52:59.804216+00 2018-12-20 18:52:59.804228+00 376 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 18:52:59.803002 \N inbound c-g6ifyyykmks3wkxgieqh4my \N 6 \N 10 \N 0 \N \N
2018-12-20 18:57:24.48258+00 2018-12-20 18:57:24.482592+00 377 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 18:57:24.481262 \N inbound c-wgn6ow23z6h2ny7ceuigsxi \N 6 \N 10 \N 0 \N \N
2018-12-20 18:57:53.218849+00 2018-12-20 18:57:53.218863+00 378 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 18:57:53.218158 \N inbound c-cwozffrs4tk5op47av6wc2q \N 6 \N 10 \N 0 \N \N
2018-12-20 18:58:21.823039+00 2018-12-20 18:58:21.82305+00 379 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 18:58:21.822472 \N inbound c-euqfopxp5pp7aa4vbgphrmy \N 6 \N 10 \N 0 \N \N
2018-12-20 18:58:56.441842+00 2018-12-20 18:58:56.441854+00 380 1 Mobile App Number ringing new lead +17739699892 +18722217507 \N 2018-12-20 18:58:56.440453 \N inbound c-pi2zvreuw5sloe7x5fuaoqa \N 6 \N 10 \N 0 \N \N
2018-12-20 19:03:06.121901+00 2018-12-20 19:03:06.121912+00 381 1 Mobile App Number ringing new lead Henry BoldEagle +17739699892 +18722217507 \N 2018-12-20 19:03:06.121135 \N inbound c-zwljxo5zp4bwqxh2q7tej4q \N 6 \N 10 \N 0 \N \N
2018-12-20 22:40:00.666629+00 2018-12-20 22:40:00.666679+00 382 1 Mobile App Number ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2018-12-20 22:40:00.664546 \N inbound c-bza6z3lujn52xlqo2tgxvqq \N 6 \N 10 \N 0 \N \N
2018-12-20 22:41:40.910486+00 2018-12-20 22:41:40.910506+00 383 1 Mobile App Number ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2018-12-20 22:41:40.908364 \N inbound c-zdxt7o32yyfubj3r2zjvi7a \N 6 \N 10 \N 0 \N \N
2018-12-20 22:44:44.817575+00 2018-12-20 22:44:44.817605+00 384 1 Mobile App Number ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2018-12-20 22:44:44.815616 \N outbound c-3zbn4lv4c4ogncrbbvy5j6i \N 6 \N 10 \N 0 \N \N
2018-12-20 23:28:43.819367+00 2018-12-20 23:28:43.8195+00 385 1 Mobile App Number ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2018-12-20 23:28:43.817023 \N outbound c-njvhqa4knrpjytnmjypo23y \N 6 \N 10 \N 0 \N \N
2018-12-20 23:59:22.374197+00 2018-12-20 23:59:37.326382+00 386 1 Mobile App Number completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2018-12-20 23:59:22.370737 2018-12-20 23:59:37.288872 inbound c-oem5qz26youh6f7gfragjqi \N 6 1 10 \N 1 \N \N
2018-12-21 00:00:21.483125+00 2018-12-21 00:00:25.709932+00 387 1 Mobile App Number completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2018-12-21 00:00:21.482157 2018-12-21 00:00:25.693138 inbound c-xbzjfchstcq7nnxpsht3bqi \N 6 1 10 \N 1 \N \N
2018-12-21 00:02:11.680742+00 2018-12-21 00:02:22.285612+00 388 1 Mobile App Number completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2018-12-21 00:02:11.679587 2018-12-21 00:02:22.28195 outbound c-qvblcyxhrnj4rwkayk7gxty \N 6 1 10 \N 1 \N \N
2018-12-21 00:05:48.166045+00 2018-12-21 00:06:17.571608+00 389 1 Mobile App Number completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2018-12-21 00:05:48.161579 2018-12-21 00:06:17.570856 outbound c-idl3nmxg77x4ywm2r4iehzq \N 6 1 10 \N 1 \N \N
2018-12-21 00:07:39.445029+00 2018-12-21 00:07:49.39994+00 390 1 Mobile App Number completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2018-12-21 00:07:39.442744 2018-12-21 00:07:49.399051 outbound c-ezezuyeiqz7yceaz73l6vhi \N 6 1 10 \N 1 \N \N
2018-12-21 00:17:03.608199+00 2018-12-21 00:17:12.811305+00 391 1 Mobile App Number missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2018-12-21 00:17:03.606944 2018-12-21 00:17:12.810369 outbound c-4kufyymd3azoohhhgrefxia \N 6 1 10 \N 1 \N \N
2018-12-21 00:21:02.357025+00 2018-12-21 00:21:28.690206+00 392 1 Mobile App Number completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2018-12-21 00:21:02.35578 2018-12-21 00:21:28.688509 outbound c-pifcljaddxjg4fwmd2ivv2i \N 6 1 10 \N 1 \N \N
2018-12-21 00:25:01.21862+00 2018-12-21 00:25:25.272251+00 393 1 Mobile App Number completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2018-12-21 00:25:01.215175 2018-12-21 00:25:25.271498 inbound c-mlfpmmsqv3t2nwydiwsurby \N 6 1 10 \N 1 \N \N
2018-12-21 00:26:42.025207+00 2018-12-21 00:27:00.056733+00 394 1 Mobile App Number completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2018-12-21 00:26:42.024348 2018-12-21 00:27:00.054243 outbound c-fo5fgtuydjwwx6kbrcumlsa \N 6 1 10 \N 1 \N \N
2018-12-21 00:28:25.156521+00 2018-12-21 00:28:47.049926+00 395 1 Mobile App Number completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2018-12-21 00:28:25.153327 2018-12-21 00:28:47.047604 outbound c-6k5jx52cql3lbvvucc4fnfq \N 6 1 10 \N 1 \N \N
2018-12-21 00:30:01.936912+00 2018-12-21 00:30:19.154277+00 396 1 Mobile App Number completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2018-12-21 00:30:01.933477 2018-12-21 00:30:19.15349 inbound c-oa2mgxdf6skhp5r56v3ttii \N 6 1 10 \N 1 \N \N
2018-12-21 00:31:55.376069+00 2018-12-21 00:32:10.048878+00 397 1 Mobile App Number completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2018-12-21 00:31:55.372821 2018-12-21 00:32:10.047429 inbound c-74whxpzmonyb27kwp4b3fhy \N 6 1 10 \N 1 \N \N
2018-12-21 00:32:50.081965+00 2018-12-21 00:33:00.13821+00 398 1 Mobile App Number completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2018-12-21 00:32:50.080563 2018-12-21 00:33:00.13743 inbound c-6fonesfvxa3s7vm4o3fytwi \N 6 1 10 \N 1 \N \N
2018-12-21 00:33:48.666682+00 2018-12-21 00:33:57.147528+00 399 1 Mobile App Number completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2018-12-21 00:33:48.664553 2018-12-21 00:33:57.146005 inbound c-ss66a6izt3cdzbgauagauiq \N 6 1 10 \N 1 \N \N
2018-12-21 00:40:34.55384+00 2018-12-21 00:40:43.932632+00 400 1 Mobile App Number missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2018-12-21 00:40:34.5517 2018-12-21 00:40:43.93136 outbound c-b45wohket7yepefj5semlpa \N 6 1 10 \N 1 \N \N
2018-12-21 00:41:21.195476+00 2018-12-21 00:41:37.726489+00 401 1 Mobile App Number completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2018-12-21 00:41:21.194098 2018-12-21 00:41:37.719221 outbound c-4zyecizeptpziniy3ikqtdq \N 6 1 10 \N 1 \N \N
2018-12-21 00:45:21.025552+00 2018-12-21 00:45:29.748369+00 402 1 Mobile App Number missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 0 2018-12-21 00:45:21.022758 2018-12-21 00:45:29.747326 outbound c-m3ok4ks2qmroxbzytt4upwa \N 6 1 10 \N 1 \N \N
2018-12-21 00:46:11.349314+00 2018-12-21 00:46:26.454377+00 403 1 Mobile App Number completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2018-12-21 00:46:11.348231 2018-12-21 00:46:26.453308 inbound c-zlj2vnmuuv7e5kxncvuf7vi \N 6 1 10 \N 1 \N \N
2018-12-21 00:46:47.646098+00 2018-12-21 00:46:52.683697+00 404 1 Mobile App Number missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2018-12-21 00:46:47.645039 2018-12-21 00:46:52.682741 inbound c-ld3zlwbkf2mj4h5jhxl6yii \N 6 1 10 \N 1 \N \N
2018-12-21 06:54:10.722084+00 2018-12-21 06:54:30.739964+00 405 1 Mobile App Number completed new lead VERMAAK,HERMANU +18473123318 +18722217507 60 2018-12-21 06:54:10.718285 2018-12-21 06:54:30.738133 inbound c-qqnfy7qb4pev5cqrx4qjwia \N 6 1 9 \N 1 \N \N
2018-12-21 06:54:44.111301+00 2018-12-21 06:54:57.549172+00 406 1 Mobile App Number completed new lead VERMAAK,HERMANU +18473123318 +18722217507 60 2018-12-21 06:54:44.11013 2018-12-21 06:54:57.548424 outbound c-4xny2bwa5ivry4bug3ggd7y \N 6 1 9 \N 1 \N \N
2018-12-27 23:37:47.38427+00 2018-12-27 23:37:47.38429+00 407 1 Mobile Phone App ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2018-12-27 23:37:47.381071 \N outbound c-yjpue4ymjmjxpqcbkfquu3i \N 7 \N 10 \N 0 \N \N
2018-12-27 23:51:14.081465+00 2018-12-27 23:51:14.08148+00 408 1 Mobile Phone App ringing new lead VERMAAK,HERMANU +17732909650 +18722217507 \N 2018-12-27 23:51:14.078345 \N inbound c-hjx54kpyhycvixblf4ymjii \N 7 \N 5 \N 0 \N \N
2019-01-03 22:52:25.525688+00 2019-01-03 22:52:25.525723+00 409 1 BW Mobile App ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-01-03 22:52:25.520574 \N inbound c-zuodk5p4tpqfp5rl4jwla5q \N 8 \N 10 \N 0 \N \N
2019-01-03 22:56:11.582553+00 2019-01-03 22:56:28.880718+00 410 1 BW Mobile App completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-01-03 22:56:11.578973 2019-01-03 22:56:28.877635 inbound c-ge5fjf2zhk4umehte5tlphq \N 8 1 10 \N 1 \N \N
2019-01-03 23:01:54.036013+00 2019-01-03 23:02:05.560613+00 412 1 BW Mobile App completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-01-03 23:01:54.034772 2019-01-03 23:02:05.560044 inbound c-o3ehjycytgwk42maxthqqty \N 8 1 10 \N 1 \N \N
2019-01-04 18:42:33.307941+00 2019-01-04 18:42:41.49793+00 413 1 BW Mobile App missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-01-04 18:42:33.306614 2019-01-04 18:42:41.496702 inbound c-jirn7d2qwt34iwpcsbeyzfq \N 8 1 10 \N 1 \N \N
2019-01-05 01:37:52.918753+00 2019-01-05 01:38:21.541591+00 414 1 BW Mobile App completed new lead VERMAAK,HERMANU +17732909650 +18722217507 60 2019-01-05 01:37:52.916709 2019-01-05 01:38:21.539404 inbound c-ps42tsbivx7di5ll7m3i7dq \N 8 1 5 \N 1 \N \N
2019-03-18 22:31:49.477061+00 2019-03-18 22:31:55.484065+00 415 1 missed new lead +13367394103 \N 2019-03-18 22:31:49.474808 \N outbound 11ba6af7-b6f1-47dc-a561-1b7e3e0e037b \N \N \N \N 0 \N {"number": "7732909650"}
2019-03-18 22:39:05.729834+00 2019-03-18 22:39:08.947894+00 416 1 missed new lead +13367394103 \N 2019-03-18 22:39:05.728698 \N outbound 11ba6af7-b6f1-47dc-a561-1b7e3e0e037b \N \N \N \N 0 \N {"number": "7732909650"}
2019-03-18 22:48:51.146867+00 2019-03-18 22:48:51.146881+00 417 1 ringing new lead +13367394103 \N 2019-03-18 22:48:51.145657 \N outbound 11ba6af7-b6f1-47dc-a561-1b7e3e0e037b \N \N \N \N 0 \N {"number": "7732909650"}
2019-03-18 22:55:44.285577+00 2019-03-18 22:55:44.285592+00 418 1 ringing new lead +13367394103 \N 2019-03-18 22:55:44.284094 \N outbound 11ba6af7-b6f1-47dc-a561-1b7e3e0e037b \N \N \N \N 0 \N {"number": "7732909650"}
2019-06-07 16:27:06.852052+00 2019-06-07 16:27:07.857329+00 540 1 Phone number for app user zeelo missed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-07 16:27:06.849435 2019-06-07 16:27:07.855113 inbound c-aklcjmh245qkplvconrbvhy \N 184 3 5 \N 1 \N \N
2019-03-18 23:11:04.937824+00 2019-03-18 23:11:11.037793+00 419 1 missed new lead +13367394103 \N 2019-03-18 23:11:04.9365 \N outbound 11ba6af7-b6f1-47dc-a561-1b7e3e0e037b \N \N \N \N 0 \N {"number": "7732909650"}
2019-03-18 23:45:08.634805+00 2019-03-18 23:45:12.545967+00 420 1 missed new lead +13367394103 \N 2019-03-18 23:45:08.632955 \N outbound 11ba6af7-b6f1-47dc-a561-1b7e3e0e037b \N \N \N \N 0 \N {"number": "7732909650"}
2019-03-20 17:41:27.793203+00 2019-03-20 17:41:28.848974+00 421 1 \N missed new lead harry@buyercall.com +17739699892 +13367394103 \N 2019-03-20 17:41:27.790827 \N outbound \N 60 2 10 \N 0 \N \N
2019-03-20 17:47:33.075258+00 2019-03-20 17:47:34.475343+00 422 1 missed new lead Henry BoldEagle +17739699892 +13367394103 \N 2019-03-20 17:47:33.065828 \N outbound 11ba6af7-b6f1-47dc-a561-1b7e3e0e037b \N \N \N \N 0 \N {}
2019-03-24 03:03:38.301574+00 2019-03-24 03:04:08.249181+00 423 1 Sweet Air Number missed new lead muhammad rasool +17732909650 +13367394103 30 2019-03-24 03:03:38.299825 2019-03-24 03:04:08.242176 inbound CA171a8f1a1e81c4d1f149e733d627c679 \N 63 \N 5 \N 0 \N \N
2019-03-24 06:30:16.706465+00 2019-03-24 06:30:32.514317+00 430 1 Bearer Number missed new lead muhammad rasool +17732909650 +13367394103 16 2019-03-24 06:30:16.705282 2019-03-24 06:30:32.50033 inbound CAbb874ead63912f295d99bdf3f8324ff5 \N 65 \N 5 \N 0 \N \N
2019-03-24 03:15:12.768113+00 2019-03-24 03:15:16.482109+00 424 1 Sales Phone Number in-progress new lead muhammad rasool +17732909650 +13367394103 \N 2019-03-24 03:15:12.767277 \N inbound CA53705107607200bb890de02722d5288d \N 64 2 5 \N 0 0.434628009796142578 \N
2019-03-24 03:15:51.495797+00 2019-03-24 03:16:10.447709+00 425 1 Sales Phone Number in-progress new lead Henry BoldEagle +17739699892 +13367394103 \N 2019-03-24 03:15:51.494735 \N inbound CA7996ce53d0a1b22f8b58b21164f87dca \N 64 2 10 \N 0 15.3704891204833984 \N
2019-03-24 03:32:29.438293+00 2019-03-24 03:32:54.678435+00 426 1 Bearer Number missed new lead muhammad rasool +17732909650 +13367394103 25 2019-03-24 03:32:29.43707 2019-03-24 03:32:54.671864 inbound CAebd6f68623736c93e9b9f5a4e2da3b6f \N 65 \N 5 \N 0 \N \N
2019-03-24 06:18:42.553806+00 2019-03-24 06:19:07.923068+00 427 1 Bearer Number missed new lead muhammad rasool +17732909650 +13367394103 25 2019-03-24 06:18:42.552401 2019-03-24 06:19:07.916743 inbound CA2f3a520f1c2d8f277490fd2d9afc58bb \N 65 \N 5 \N 0 \N \N
2019-03-24 06:21:16.196609+00 2019-03-24 06:22:01.402294+00 428 1 Bearer Number missed new lead muhammad rasool +17732909650 +13367394103 45 2019-03-24 06:21:16.196022 2019-03-24 06:22:01.398401 inbound CA0a4ed07ea8bc873c81298433b7148832 \N 65 \N 5 \N 0 \N \N
2019-03-24 06:23:16.197305+00 2019-03-24 06:23:32.133926+00 429 1 Bearer Number missed new lead muhammad rasool +17732909650 +13367394103 16 2019-03-24 06:23:16.196093 2019-03-24 06:23:32.123782 inbound CA8cf98aacfbf6b2f12821f2acd2a303e7 \N 65 \N 5 \N 0 \N \N
2019-04-04 19:51:21.713083+00 2019-04-04 19:51:28.01403+00 431 1 \N missed new lead Brian May hv13@hotmail.com +17732909650 +13367394103 \N 2019-04-04 19:51:21.699176 \N outbound \N 5 3 5 \N 0 \N \N
2019-04-08 19:45:21.003281+00 2019-04-08 19:45:22.851228+00 432 1 Bob Business Mobile Number missed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-04-08 19:45:21.000611 2019-04-08 19:45:22.849825 inbound c-c3sb36z6yszcmxopn2ge6yq \N 74 1 5 \N 1 \N \N
2019-04-08 19:47:08.859231+00 2019-04-08 19:47:20.996198+00 433 1 Bob Business Mobile Number completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-04-08 19:47:08.85845 2019-04-08 19:47:20.993225 outbound c-srpws5kzqhqc3ebrzpu6r3y \N 74 1 5 \N 1 \N \N
2019-04-08 19:47:46.35124+00 2019-04-08 19:47:58.480197+00 434 1 Bob Business Mobile Number completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-04-08 19:47:46.35026 2019-04-08 19:47:58.47946 inbound c-jsafd2omipojyjj4fsznnpa \N 74 1 5 \N 1 \N \N
2019-04-12 18:22:03.112002+00 2019-04-12 18:22:03.112012+00 435 1 \N ringing new lead harry@buyercall.com +17739699892 +13367394103 \N 2019-04-12 18:22:03.110757 \N outbound \N 5 3 10 \N 0 \N \N
2019-05-08 00:34:34.132974+00 2019-05-08 00:35:05.055612+00 439 1 Phone number for app user zzz missed new lead VERMAAK,HERMANU +18473123318 +18722217507 0 2019-05-08 00:34:34.123213 2019-05-08 00:35:05.054606 outbound c-mup6df2no54ku3yz33ghaiq \N 167 2 9 \N 1 \N \N
2019-04-12 18:39:26.344723+00 2019-04-12 18:39:39.778402+00 436 1 Solar Sun Number completed new lead Henry BoldEagle +17739699892 +13367394103 13 2019-04-12 18:39:26.343488 2019-04-12 18:39:39.775986 inbound CAdd81e3054c277127516c130d412472c5 \N 111 2 10 \N 0 3.32751798629760742 \N
2019-04-23 17:31:43.802932+00 2019-04-23 17:31:59.394625+00 437 1 Phone number for app user bn completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-04-23 17:31:43.800493 2019-04-23 17:31:59.392861 outbound c-eudubaqwopdfdgmo7nvh5nq \N 140 3 5 \N 1 \N \N
2019-05-08 00:34:05.484255+00 2019-05-08 00:34:33.595095+00 438 1 Phone number for app user zzz missed new lead VERMAAK,HERMANU +18473123318 +18722217507 0 2019-05-08 00:34:05.478539 2019-05-08 00:34:33.591799 outbound c-2lceciwo4obrxtdeqdokt2i \N 167 2 9 \N 1 \N \N
2019-05-08 00:38:47.66462+00 2019-05-08 00:38:49.487506+00 440 1 Phone number for app user zzz completed new lead VERMAAK,HERMANU +18473123318 +18722217507 60 2019-05-08 00:38:47.66336 2019-05-08 00:38:49.48324 inbound c-qikiuokxip2cmvjgfttnvjy \N 167 2 9 \N 1 \N \N
2019-05-08 00:39:34.57366+00 2019-05-08 00:39:37.20339+00 441 1 Phone number for app user zzz completed new lead VERMAAK,HERMANU +18473123318 +18722217507 60 2019-05-08 00:39:34.56687 2019-05-08 00:39:37.200866 inbound c-dwqdrh4wsboxvs32ankij7y \N 167 2 9 \N 1 \N \N
2019-05-08 17:33:20.656564+00 2019-05-08 17:33:38.255552+00 442 1 Phone number for app user vv completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-05-08 17:33:20.6545 2019-05-08 17:33:38.251408 outbound c-shthanyslh2t3nqutxm6fby \N 169 2 5 \N 1 \N \N
2019-05-08 17:33:56.191223+00 2019-05-08 17:34:01.412594+00 443 1 Phone number for app user vv completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-05-08 17:33:56.189033 2019-05-08 17:34:01.411239 inbound c-7bnrov7syzb3scwa4m5agca \N 169 2 5 \N 1 \N \N
2019-05-08 17:45:59.740492+00 2019-05-08 17:46:01.701539+00 444 1 Phone number for app user vv completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-05-08 17:45:59.738353 2019-05-08 17:46:01.698062 inbound c-t7ds22k7zp2knbvbpadrmuy \N 169 2 5 \N 1 \N \N
2019-05-08 17:46:09.209458+00 2019-05-08 17:46:11.073406+00 445 1 Phone number for app user vv completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-05-08 17:46:09.208922 2019-05-08 17:46:11.072662 inbound c-3j3uqke7alg4mi66vq2mwey \N 169 2 5 \N 1 \N \N
2019-05-08 17:47:11.162275+00 2019-05-08 17:47:13.122113+00 446 1 Phone number for app user vv completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-05-08 17:47:11.161595 2019-05-08 17:47:13.11922 inbound c-6gyirlytjvgob4rzc465uja \N 169 2 5 \N 1 \N \N
2019-05-08 17:47:19.627116+00 2019-05-08 17:47:24.327724+00 447 1 Phone number for app user vv missed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-05-08 17:47:19.625972 2019-05-08 17:47:24.327043 inbound c-4yela2crve6oycabjy554xq \N 169 2 5 \N 1 \N \N
2019-05-08 17:47:53.390309+00 2019-05-08 17:47:55.112966+00 448 1 Phone number for app user vv completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-05-08 17:47:53.389348 2019-05-08 17:47:55.110932 inbound c-vziwec43xregy6tcrvjwwiq \N 169 2 5 \N 1 \N \N
2019-05-08 17:52:42.201832+00 2019-05-08 17:52:44.740592+00 449 1 Phone number for app user vv missed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 0 2019-05-08 17:52:42.200622 2019-05-08 17:52:44.738558 outbound c-jvboy6wwqv2hwnydrlycp4a \N 169 2 5 \N 1 \N \N
2019-05-08 17:53:14.794325+00 2019-05-08 17:53:39.762116+00 450 1 Phone number for app user vv completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-05-08 17:53:14.79316 2019-05-08 17:53:39.760441 outbound c-r4si3pr2krvszcy224fdzca \N 169 2 10 \N 1 \N \N
2019-05-08 18:34:41.15817+00 2019-05-08 18:34:43.273947+00 451 1 Phone number for app user vv completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-05-08 18:34:41.156186 2019-05-08 18:34:43.268635 inbound c-ke5nwqx6i3cebnw4l5ezssi \N 169 2 5 \N 1 \N \N
2019-05-08 18:42:53.62825+00 2019-05-08 18:42:55.686238+00 452 1 Phone number for app user vv completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-05-08 18:42:53.62744 2019-05-08 18:42:55.685585 inbound c-unbi2c5tbw34evtki4ju7ai \N 169 2 10 \N 1 \N \N
2019-05-08 18:46:21.617678+00 2019-05-08 18:46:24.632166+00 453 1 Phone number for app user vv missed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 0 2019-05-08 18:46:21.616485 2019-05-08 18:46:24.63035 outbound c-s3xbuvuihyo6vwffaoxwgdq \N 169 2 5 \N 1 \N \N
2019-05-08 18:46:54.342015+00 2019-05-08 18:46:59.202365+00 454 1 Phone number for app user vv missed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 0 2019-05-08 18:46:54.341159 2019-05-08 18:46:59.201202 outbound c-xt3xcewkxx3ykr2qoqaqg2i \N 169 2 5 \N 1 \N \N
2019-05-08 18:47:57.672291+00 2019-05-08 18:48:52.635806+00 455 1 Phone number for app user vv completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-05-08 18:47:57.671101 2019-05-08 18:48:52.63261 outbound c-oy4ybzyisurlvca4ibupz3a \N 169 2 10 \N 1 \N \N
2019-05-08 18:49:44.714392+00 2019-05-08 18:50:48.515168+00 456 1 Phone number for app user vv completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-05-08 18:49:44.713454 2019-05-08 18:50:48.510673 outbound c-22qygi3grkitex3v5ybr4bq \N 169 2 10 \N 1 \N \N
2019-05-08 18:56:00.262028+00 2019-05-08 18:56:02.775685+00 457 1 Phone number for app user vv missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 0 2019-05-08 18:56:00.26086 2019-05-08 18:56:02.773534 outbound c-ocug6zbqxl6arz2msx3ejja \N 169 2 10 \N 1 \N \N
2019-05-08 19:10:11.25239+00 2019-05-08 19:10:13.014355+00 458 1 Phone number for app user vv completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-05-08 19:10:11.250941 2019-05-08 19:10:13.011979 inbound c-lpzf3izvudim7bwppsluxmy \N 169 2 10 \N 1 \N \N
2019-05-08 20:39:28.173401+00 2019-05-08 20:39:30.744167+00 459 1 Phone number for app user vv completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-05-08 20:39:28.167603 2019-05-08 20:39:30.734249 inbound c-ot53posz7mb6qk3z7pykw4q \N 169 2 5 \N 1 \N \N
2019-05-08 21:43:56.841329+00 2019-05-08 21:45:13.629683+00 460 1 Phone number for app user vv completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-05-08 21:43:56.838564 2019-05-08 21:45:13.626867 outbound c-23vggsiqb7lucefll7n2oqa \N 169 2 5 \N 1 \N \N
2019-05-15 00:36:54.342264+00 2019-05-14 00:37:13.582699+00 462 1 Phone number for app user dollop completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-05-14 00:36:54.338401 2019-05-14 00:37:13.581256 inbound c-raamvwmf2cspxl7st3n4ivy \N 175 3 5 2 1 \N \N
2019-05-31 19:05:33.424207+00 2019-05-31 19:05:35.977131+00 464 1 BeesKnees Numbers missed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 0 2019-05-31 19:05:33.421436 2019-05-31 19:05:35.975862 outbound c-k5vezjkbrn6cvtx347uei5i \N 177 1 5 \N 1 \N \N
2019-05-24 00:25:20.605462+00 2019-05-14 00:25:22.810184+00 461 1 Phone number for app user dollop missed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-05-14 00:25:20.602513 2019-05-14 00:25:22.807177 inbound c-e7uiskdpgjtcsr6rwjkronq \N 175 3 5 \N 1 \N \N
2019-05-24 23:01:23.608762+00 2019-01-03 23:01:35.622716+00 411 1 BW Mobile App completed new lead VERMAAK,HERMANU +18473123318 +18722217507 0 2019-01-03 23:01:23.607926 2019-01-03 23:01:35.622038 outbound c-nrj3pjj5dmycqgudoc6wmgi \N 8 1 9 \N 1 \N \N
2019-05-31 19:03:57.262523+00 2019-05-31 19:05:39.22741+00 463 1 BeesKnees Numbers completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 120 2019-05-31 19:03:57.256579 2019-05-31 19:05:39.22502 inbound c-ufcaxqheoaaaxq2pqsctluy \N 177 1 10 \N 1 \N \N
2019-05-31 19:44:49.765208+00 2019-05-31 19:45:01.022668+00 465 1 BeesKnees Numbers completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-05-31 19:44:49.763909 2019-05-31 19:45:01.021472 inbound c-oa3jeqz2q47cmgxho4acena \N 177 1 10 \N 1 \N \N
2019-06-02 17:55:13.327906+00 2019-06-02 17:55:36.688901+00 466 1 BeesKnees Numbers completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-02 17:55:13.326746 2019-06-02 17:55:36.687681 outbound c-5b5gilnrxnvraovljwnhkya \N 177 1 5 \N 1 \N \N
2019-06-03 00:33:07.519356+00 2019-06-03 00:34:25.175863+00 467 1 BeesKnees Numbers completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 120 2019-06-03 00:33:07.51827 2019-06-03 00:34:25.174671 inbound c-jxspejnplxvb2vwh3ltqizq \N 177 1 10 \N 1 \N \N
2019-06-03 16:42:04.428495+00 2019-06-03 16:42:14.335795+00 468 1 BeesKnees Numbers completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-03 16:42:04.427237 2019-06-03 16:42:14.334463 inbound c-lqdrjsdkopxo7jga4u7ycmy \N 177 1 10 \N 1 \N \N
2019-06-03 16:43:55.231802+00 2019-06-03 16:44:04.63982+00 469 1 BeesKnees Numbers completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-03 16:43:55.230594 2019-06-03 16:44:04.638473 inbound c-qjw2t3di6sqydx3qzqduliy \N 177 1 10 \N 1 \N \N
2019-06-03 16:44:58.764872+00 2019-06-03 16:45:07.069025+00 470 1 BeesKnees Numbers completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-03 16:44:58.763473 2019-06-03 16:45:07.067665 inbound c-4q55aw3m77qhwpqxscluhqq \N 177 1 10 \N 1 \N \N
2019-06-03 19:36:28.32756+00 2019-06-03 19:37:05.975313+00 471 1 BeesKnees Numbers completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-03 19:36:28.326184 2019-06-03 19:37:05.973686 inbound c-2v3auwtqaxbcmr3u6vwa5my \N 177 1 10 \N 1 \N \N
2019-06-03 19:37:32.597471+00 2019-06-03 19:37:33.616032+00 472 1 BeesKnees Numbers missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 0 2019-06-03 19:37:32.595543 2019-06-03 19:37:33.61534 inbound c-h2vidxd3tymyaagefxggrrq \N 177 1 10 \N 1 \N \N
2019-06-03 19:37:55.192541+00 2019-06-03 19:38:10.656593+00 473 1 BeesKnees Numbers completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-03 19:37:55.190906 2019-06-03 19:38:10.655169 inbound c-xflmklozjzoj6q5shffgfyy \N 177 1 10 \N 1 \N \N
2019-06-03 19:39:07.570967+00 2019-06-03 19:39:16.489074+00 474 1 BeesKnees Numbers completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-03 19:39:07.569847 2019-06-03 19:39:16.487222 inbound c-uwab45hpv3clq6sh6faa7wq \N 177 1 10 \N 1 \N \N
2019-06-03 19:56:47.224727+00 2019-06-03 19:57:01.921324+00 475 1 BeesKnees Numbers completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-03 19:56:47.223529 2019-06-03 19:57:01.920162 inbound c-jlw5b673rcdhdslonuqqhmq \N 177 1 10 \N 1 \N \N
2019-06-03 22:22:20.320458+00 2019-06-03 22:22:30.786704+00 476 1 BeesKnees Numbers missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 0 2019-06-03 22:22:20.319183 2019-06-03 22:22:30.785922 inbound c-dqi44zwvqt5as64ozp7dnca \N 177 1 10 \N 1 \N \N
2019-06-03 22:23:35.23791+00 2019-06-03 22:23:47.791431+00 477 1 BeesKnees Numbers completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-03 22:23:35.234937 2019-06-03 22:23:47.790044 inbound c-wgbjviukxjr2txnuprbzazi \N 177 1 10 \N 1 \N \N
2019-06-03 22:28:35.049147+00 2019-06-03 22:28:43.126835+00 478 1 BeesKnees Numbers completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-03 22:28:35.048534 2019-06-03 22:28:43.126284 inbound c-cohr6x3a2xbnumo4tkh5ayy \N 177 1 10 \N 1 \N \N
2019-06-03 22:28:54.566456+00 2019-06-03 22:29:06.76299+00 479 1 BeesKnees Numbers completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-03 22:28:54.565307 2019-06-03 22:29:06.761726 inbound c-fhntjx2qqdfr3aceqfiqika \N 177 1 10 \N 1 \N \N
2019-06-03 22:32:12.926019+00 2019-06-03 22:32:24.056244+00 480 1 BeesKnees Numbers completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-03 22:32:12.924373 2019-06-03 22:32:24.045996 inbound c-wo4yfesi5swng4rnnqqsbdi \N 177 1 10 \N 1 \N \N
2019-06-06 15:48:15.457638+00 2019-06-06 15:48:24.006518+00 481 1 Phone number for app user koono completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-06 15:48:15.455812 2019-06-06 15:48:24.004959 inbound c-cobo5jh2ervjmlwdgbwjvmy \N 178 3 5 \N 1 \N \N
2019-06-06 15:48:41.443138+00 2019-06-06 15:48:45.707133+00 482 1 Phone number for app user koono completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-06 15:48:41.442077 2019-06-06 15:48:45.705841 inbound c-6pwgane4paaxi7plvr2ydmi \N 178 3 5 \N 1 \N \N
2019-06-06 15:50:58.65851+00 2019-06-06 15:51:13.905433+00 483 1 Phone number for app user koono completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-06 15:50:58.657703 2019-06-06 15:51:13.903083 outbound c-wqd3drln2uzry7alsnvsy5q \N 178 3 5 \N 1 \N \N
2019-06-07 16:27:55.117275+00 2019-06-07 16:28:15.845709+00 541 1 Phone number for app user zeelo completed new lead GIFFORD,DAVID +13307660833 +18722217507 60 2019-06-07 16:27:55.11448 2019-06-07 16:28:15.843625 inbound c-4cs4npyn5oiwcgelz2uwsha \N 184 3 14 \N 1 \N \N
2019-06-06 16:04:31.67988+00 2019-06-06 16:04:39.042651+00 484 1 Phone number for app user koono completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-06 16:04:31.678503 2019-06-06 16:04:39.036584 inbound c-cjhzot646if2v4ysqp2dfqi \N 178 3 5 \N 1 \N \N
2019-06-06 16:08:45.81689+00 2019-06-06 16:08:56.527001+00 485 1 Phone number for app user koono completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-06 16:08:45.814959 2019-06-06 16:08:56.525554 inbound c-ldimxgo7r2mjdjofkicyydy \N 178 3 5 \N 1 \N \N
2019-06-06 16:14:55.030144+00 2019-06-06 16:14:55.030156+00 486 1 Phone number for app user koono ringing new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 \N 2019-06-06 16:14:55.029574 \N inbound c-foovg7l5shqwg4bathkqbva \N 178 \N 5 \N 0 \N \N
2019-06-06 16:15:11.463008+00 2019-06-06 16:15:24.560408+00 487 1 Phone number for app user koono completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-06 16:15:11.460932 2019-06-06 16:15:24.556537 inbound c-535jg5fcvod7soqqmlrmmpi \N 178 3 5 \N 1 \N \N
2019-06-06 16:18:27.380641+00 2019-06-06 16:18:34.397848+00 488 1 Phone number for app user koono completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-06 16:18:27.378657 2019-06-06 16:18:34.393583 inbound c-pmooosdkq3n5oy563y3es2i \N 178 3 5 \N 1 \N \N
2019-06-06 16:20:55.077968+00 2019-06-06 16:21:06.705902+00 489 1 Phone number for app user koono completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-06 16:20:55.07444 2019-06-06 16:21:06.703378 inbound c-zxtp5i4ngzoig5fxltoqv7a \N 178 3 5 \N 1 \N \N
2019-06-06 16:21:30.012122+00 2019-06-06 16:21:40.628375+00 490 1 Phone number for app user koono completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-06 16:21:30.010737 2019-06-06 16:21:40.626337 inbound c-gmgcyo3js5nz2eqpp3tysji \N 178 3 5 \N 1 \N \N
2019-06-06 17:30:20.465612+00 2019-06-06 17:30:20.465632+00 491 1 Phone number for app user koono ringing new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 \N 2019-06-06 17:30:20.463463 \N outbound c-64r5cr75ny76voeqgdazniy \N 178 \N 5 \N 0 \N \N
2019-06-06 17:36:46.917145+00 2019-06-06 17:36:46.917162+00 492 1 Phone number for app user koono ringing new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 \N 2019-06-06 17:36:46.915435 \N outbound c-tujq3lsmr2kctc7s45dtxqi \N 178 \N 5 \N 0 \N \N
2019-06-06 17:43:17.994178+00 2019-06-06 17:43:43.697158+00 493 1 Phone number for app user koono completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-06 17:43:17.992793 2019-06-06 17:43:43.692688 outbound c-oyzc3vkududtop3pit7atra \N 178 3 5 \N 1 \N \N
2019-06-06 17:46:00.099468+00 2019-06-06 17:46:06.387443+00 494 1 Phone number for app user koono completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-06 17:46:00.098362 2019-06-06 17:46:06.384784 outbound c-tmw4gm7whckvhr62cts6zfq \N 178 3 5 \N 1 \N \N
2019-06-06 19:11:14.690815+00 2019-06-06 19:11:14.690824+00 495 1 Phone number for app user feeto ringing new lead Restricted +18722217507 \N 2019-06-06 19:11:14.689607 \N inbound c-icphrcf6x3or3qqizvpb3dq \N 179 \N 13 \N 0 \N \N
2019-06-06 19:28:42.830303+00 2019-06-06 19:28:42.830428+00 496 1 Phone number for app user feeto ringing new lead CHICAGO, IL +18722217507 +18722217507 \N 2019-06-06 19:28:42.828573 \N outbound c-5dvfasfkafe76mpz3pfyeaa \N 179 \N 12 \N 0 \N \N
2019-06-06 19:28:58.405501+00 2019-06-06 19:28:58.405516+00 497 1 Phone number for app user feeto ringing new lead Restricted +18722217507 \N 2019-06-06 19:28:58.40478 \N inbound c-jcyqxzsw6pwipq7jmzia7t1 \N 179 \N 13 \N 0 \N \N
2019-06-06 19:30:35.762301+00 2019-06-06 19:30:35.762313+00 498 1 Phone number for app user feeto ringing new lead CHICAGO, IL +18722217507 +18722217507 \N 2019-06-06 19:30:35.761034 \N outbound c-4uic5ta7uptt2krznms2ijq \N 179 \N 12 \N 0 \N \N
2019-06-06 19:35:58.262056+00 2019-06-06 19:35:58.262067+00 499 1 Phone number for app user feeto ringing new lead CHICAGO, IL +18722217507 +18722217507 \N 2019-06-06 19:35:58.260963 \N outbound c-m76hu5d4ibusobikghybxei \N 179 \N 12 \N 0 \N \N
2019-06-06 23:31:51.390608+00 2019-06-06 23:31:51.390652+00 500 1 Phone number for app user noonop ringing new lead CHICAGO, IL +18722217507 +18722217507 \N 2019-06-06 23:31:51.386136 \N outbound c-zpydqambj6gkilbmussbzzq \N 180 \N 12 \N 0 \N \N
2019-06-06 23:37:48.418358+00 2019-06-06 23:37:48.418391+00 501 1 Phone number for app user noonop ringing new lead CHICAGO, IL +18722217507 +18722217507 \N 2019-06-06 23:37:48.415711 \N outbound c-r72ivotzhwg46alnqkq7wai \N 180 \N 12 \N 0 \N \N
2019-06-06 23:50:03.666385+00 2019-06-06 23:50:03.666419+00 502 1 Phone number for app user noonop ringing new lead CHICAGO, IL +18722217507 +18722217507 \N 2019-06-06 23:50:03.662779 \N outbound c-7n6z3nsqu7ujpdlslebamdi \N 180 \N 12 \N 0 \N \N
2019-06-06 23:53:02.405061+00 2019-06-06 23:53:02.405097+00 503 1 Phone number for app user noonop ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-06-06 23:53:02.400285 \N outbound c-qldamhiki2ebs7vnseprhii \N 180 \N 10 \N 0 \N \N
2019-06-06 23:54:38.147869+00 2019-06-06 23:54:38.147929+00 504 1 Phone number for app user noonop ringing new lead CHICAGO, IL +18722217507 +18722217507 \N 2019-06-06 23:54:38.142543 \N outbound c-i3oa3kc3nlob2pcdltovlty \N 180 \N 12 \N 0 \N \N
2019-06-06 23:55:04.956929+00 2019-06-06 23:55:04.956953+00 505 1 Phone number for app user noonop ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-06-06 23:55:04.955724 \N outbound c-pnnjliqh5vxoyqq5w5deo3y \N 180 \N 10 \N 0 \N \N
2019-06-06 23:55:55.864877+00 2019-06-06 23:55:55.864912+00 506 1 Phone number for app user noonop ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-06-06 23:55:55.861685 \N outbound c-xoczb7onwr3uitqpdwe6uwi \N 180 \N 10 \N 0 \N \N
2019-06-07 00:04:52.882065+00 2019-06-07 00:05:21.295095+00 507 1 Phone number for app user noonop completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-07 00:04:52.876636 2019-06-07 00:05:21.287761 outbound c-yblv7ugm5wb3woxpbeipakq \N 180 3 10 \N 1 \N \N
2019-06-07 00:12:04.767547+00 2019-06-07 00:12:37.719769+00 508 1 Phone number for app user noonop completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-07 00:12:04.763299 2019-06-07 00:12:37.713556 outbound c-bpfuuukixkkpvu2hufbcmyq \N 180 3 10 \N 1 \N \N
2019-06-07 00:14:44.704659+00 2019-06-07 00:15:05.888279+00 509 1 Phone number for app user noonop completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-07 00:14:44.700542 2019-06-07 00:15:05.882556 outbound c-sb7rfzwudi3n2uoyjaav3fq \N 180 3 10 \N 1 \N \N
2019-06-07 00:25:25.830031+00 2019-06-07 00:25:48.131472+00 510 1 Phone number for app user noonop completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-07 00:25:25.826989 2019-06-07 00:25:48.12462 outbound c-mtbvh6cg4wtop4ufk6jcbqq \N 180 3 10 \N 1 \N \N
2019-06-07 14:22:47.28793+00 2019-06-07 14:23:04.098871+00 511 1 Phone number for app user joesop completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-07 14:22:47.285064 2019-06-07 14:23:04.097463 outbound c-qtlfgbwdwkwhysxhpnohz3q \N 181 3 5 \N 1 \N \N
2019-06-07 14:25:18.486574+00 2019-06-07 14:25:28.906068+00 512 1 Phone number for app user joesop completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-07 14:25:18.485003 2019-06-07 14:25:28.903243 outbound c-cse7obldz6kmxsookjkk4zq \N 181 3 5 \N 1 \N \N
2019-06-07 14:49:29.742124+00 2019-06-07 14:49:44.331979+00 513 1 Phone number for app user joesop completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-07 14:49:29.740106 2019-06-07 14:49:44.330465 outbound c-qzqylzmpo5vw6yz4n4ffnjq \N 181 3 5 \N 1 \N \N
2019-06-07 15:02:18.711111+00 2019-06-07 15:02:50.432896+00 514 1 Phone number for app user joesop completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-07 15:02:18.708889 2019-06-07 15:02:50.427384 outbound c-l24kdppsteikmdhhffva22a \N 181 3 5 \N 1 \N \N
2019-06-07 15:24:41.83652+00 2019-06-07 15:24:53.804561+00 515 1 Phone number for app user joesop completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-07 15:24:41.831673 2019-06-07 15:24:53.802758 outbound c-ymh677q3khtmmlqppvq3vhy \N 181 3 5 \N 1 \N \N
2019-06-07 15:27:23.617762+00 2019-06-07 15:27:46.984989+00 516 1 Phone number for app user joesop completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-07 15:27:23.615811 2019-06-07 15:27:46.981757 outbound c-xffdydqhzqd7pkkwqivwvpq \N 181 3 5 \N 1 \N \N
2019-06-07 16:28:26.08297+00 2019-06-07 16:28:42.338822+00 542 1 Phone number for app user zeelo completed new lead GIFFORD,DAVID +13307660833 +18722217507 60 2019-06-07 16:28:26.081781 2019-06-07 16:28:42.337934 outbound c-jorsr7u45kt343a44zubnmq \N 184 3 14 \N 1 \N \N
2019-06-07 15:28:41.451588+00 2019-06-07 15:29:35.607587+00 517 1 Phone number for app user joesop completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-07 15:28:41.450888 2019-06-07 15:29:35.606863 outbound c-cyxcokplfs5t2bahbq324aq \N 181 3 10 \N 1 \N \N
2019-06-07 16:41:54.847791+00 2019-06-07 16:42:12.226097+00 543 1 Phone number for app user zeelo completed new lead GIFFORD,DAVID +13307660833 +18722217507 60 2019-06-07 16:41:54.846947 2019-06-07 16:42:12.221252 inbound c-ebkcmthj77fb324chicuphi \N 184 3 14 \N 1 \N \N
2019-06-07 15:37:24.885813+00 2019-06-07 15:37:40.950945+00 518 1 Phone number for app user joesop completed new lead WARREN, OH +13307660833 +18722217507 60 2019-06-07 15:37:24.885299 2019-06-07 15:37:40.95038 outbound c-quptoduyn3hcluqqvp7yioq \N 181 3 14 \N 1 \N \N
2019-06-07 16:42:28.13537+00 2019-06-07 16:42:49.225986+00 544 1 Phone number for app user zeelo completed new lead GIFFORD,DAVID +13307660833 +18722217507 60 2019-06-07 16:42:28.134392 2019-06-07 16:42:49.223177 inbound c-gu3gqeflodrlqkngg3b2kti \N 184 3 14 \N 1 \N \N
2019-06-07 15:40:12.846782+00 2019-06-07 15:40:38.217464+00 519 1 Phone number for app user joesop completed new lead GIFFORD,DAVID +13307660833 +18722217507 60 2019-06-07 15:40:12.844726 2019-06-07 15:40:38.215658 outbound c-t5r3gvtv6enbem5twzix4kq \N 181 3 14 \N 1 \N \N
2019-06-09 15:01:38.084813+00 2019-06-09 15:01:38.084826+00 545 1 Phone number for app user shoozes ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-06-09 15:01:38.083709 \N outbound c-safcantlxflcujqxdmpjjwa \N 185 \N 10 \N 0 \N \N
2019-06-09 15:01:45.435078+00 2019-06-09 15:01:45.435096+00 546 1 Phone number for app user shoozes ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-06-09 15:01:45.434125 \N outbound c-jll3dnr2w5gtpffbnrqb73i \N 185 \N 10 \N 0 \N \N
2019-06-09 15:08:41.258974+00 2019-06-09 15:08:41.258999+00 547 1 Phone number for app user shoozes ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-06-09 15:08:41.256509 \N outbound c-dx53l4k7qijqymcyxobfava \N 185 \N 10 \N 0 \N \N
2019-06-09 16:07:06.202101+00 2019-06-09 16:07:25.773729+00 548 1 Phone number for app user shoozes completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-09 16:07:06.200111 2019-06-09 16:07:25.77213 inbound c-7lb6uqyhmz6ds2ml5qkquuq \N 185 3 10 \N 1 \N \N
2019-06-09 16:09:46.980476+00 2019-06-09 16:09:49.976235+00 549 1 Phone number for app user shoozes completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-09 16:09:46.979437 2019-06-09 16:09:49.973232 inbound c-fgpbu6lh6ts2go24qomnf5i \N 185 3 10 \N 1 \N \N
2019-06-07 16:03:07.950716+00 2019-06-07 16:03:07.950736+00 524 1 Phone number for app user beefo ringing new lead CHICAGO, IL +18722217507 +18722217507 \N 2019-06-07 16:03:07.949701 \N outbound c-y7cyfmferqsiof2zhpsmwra \N 183 \N 12 \N 0 \N \N
2019-06-07 16:03:03.204357+00 2019-06-07 16:03:35.377657+00 520 1 Phone number for app user beefo completed new lead CHICAGO, IL +18722217507 +18722217507 60 2019-06-07 16:03:03.202814 2019-06-07 16:03:35.373799 outbound c-v5kkm5euimfsdn6y27ihrhi \N 183 3 12 \N 1 \N \N
2019-06-07 16:03:04.375859+00 2019-06-07 16:03:35.924496+00 521 1 Phone number for app user beefo completed new lead CHICAGO, IL +18722217507 +18722217507 60 2019-06-07 16:03:04.373314 2019-06-07 16:03:35.922483 outbound c-heqpzbdfknqfvevi2hfqtka \N 183 3 12 \N 1 \N \N
2019-06-07 16:03:05.566915+00 2019-06-07 16:03:36.498774+00 522 1 Phone number for app user beefo completed new lead CHICAGO, IL +18722217507 +18722217507 60 2019-06-07 16:03:05.565123 2019-06-07 16:03:36.496807 outbound c-35k5pcpjrw7ooanuvgsyxbi \N 183 3 12 \N 1 \N \N
2019-06-07 16:03:06.804094+00 2019-06-07 16:03:37.051954+00 523 1 Phone number for app user beefo completed new lead CHICAGO, IL +18722217507 +18722217507 60 2019-06-07 16:03:06.80211 2019-06-07 16:03:37.048353 outbound c-xynkbvcxslkkbdenrrmn3oi \N 183 3 12 \N 1 \N \N
2019-06-09 16:15:00.30928+00 2019-06-09 16:15:12.024839+00 550 1 Phone number for app user shoozes completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-09 16:15:00.306849 2019-06-09 16:15:12.02307 inbound c-vdcfx6lyj5qpx3h5k7lbbhq \N 185 3 10 \N 1 \N \N
2019-06-07 16:04:51.28046+00 2019-06-07 16:04:51.280485+00 529 1 Phone number for app user beefo ringing new lead CHICAGO, IL +18722217507 +18722217507 \N 2019-06-07 16:04:51.278934 \N outbound c-k6gwrgq5mzhdv4syxvv57ri \N 183 \N 12 \N 0 \N \N
2019-06-07 16:04:46.700679+00 2019-06-07 16:05:04.16096+00 525 1 Phone number for app user beefo completed new lead CHICAGO, IL +18722217507 +18722217507 60 2019-06-07 16:04:46.690011 2019-06-07 16:05:04.159495 outbound c-pvgn3eerawpe2fyej5hyshi \N 183 3 12 \N 1 \N \N
2019-06-07 16:04:47.687274+00 2019-06-07 16:05:04.616158+00 526 1 Phone number for app user beefo completed new lead CHICAGO, IL +18722217507 +18722217507 60 2019-06-07 16:04:47.686595 2019-06-07 16:05:04.615484 outbound c-ythhju5zbixrc7zgwu2ceea \N 183 3 12 \N 1 \N \N
2019-06-07 16:04:48.950849+00 2019-06-07 16:05:05.119671+00 527 1 Phone number for app user beefo completed new lead CHICAGO, IL +18722217507 +18722217507 60 2019-06-07 16:04:48.94779 2019-06-07 16:05:05.117252 outbound c-f7lrfhlmquqtd2hu2ciyf3y \N 183 3 12 \N 1 \N \N
2019-06-07 16:04:50.183069+00 2019-06-07 16:05:05.693535+00 528 1 Phone number for app user beefo completed new lead CHICAGO, IL +18722217507 +18722217507 60 2019-06-07 16:04:50.181653 2019-06-07 16:05:05.691083 outbound c-2zjiunypnqqwtgoqjawxyeq \N 183 3 12 \N 1 \N \N
2019-06-07 16:18:19.414925+00 2019-06-07 16:18:19.41494+00 534 1 Phone number for app user zeelo ringing new lead CHICAGO, IL +18722217507 +18722217507 \N 2019-06-07 16:18:19.414007 \N outbound c-2vkd7eskktmy6ve2viwivoi \N 184 \N 12 \N 0 \N \N
2019-06-07 16:18:14.475537+00 2019-06-07 16:18:24.870893+00 530 1 Phone number for app user zeelo completed new lead CHICAGO, IL +18722217507 +18722217507 60 2019-06-07 16:18:14.473891 2019-06-07 16:18:24.868861 outbound c-shlhirb5wqb6qegrs7z7cmi \N 184 3 12 \N 1 \N \N
2019-06-07 16:18:15.707794+00 2019-06-07 16:18:25.391736+00 531 1 Phone number for app user zeelo completed new lead CHICAGO, IL +18722217507 +18722217507 60 2019-06-07 16:18:15.706915 2019-06-07 16:18:25.389027 outbound c-nrxmknlvxvahpo6nhewcvby \N 184 3 12 \N 1 \N \N
2019-06-07 16:18:17.036991+00 2019-06-07 16:18:25.94106+00 532 1 Phone number for app user zeelo completed new lead CHICAGO, IL +18722217507 +18722217507 60 2019-06-07 16:18:17.036112 2019-06-07 16:18:25.93997 outbound c-uqwjcmatltntvszyg36z25i \N 184 3 12 \N 1 \N \N
2019-06-07 16:18:18.20302+00 2019-06-07 16:18:26.433822+00 533 1 Phone number for app user zeelo completed new lead CHICAGO, IL +18722217507 +18722217507 60 2019-06-07 16:18:18.202233 2019-06-07 16:18:26.431353 outbound c-64s3f5vn5qcnhtmf6pxe7qa \N 184 3 12 \N 1 \N \N
2019-06-07 16:24:02.227945+00 2019-06-07 16:24:02.227974+00 539 1 Phone number for app user zeelo ringing new lead CHICAGO, IL +18722217507 +18722217507 \N 2019-06-07 16:24:02.225588 \N outbound c-b6ztb5nnatmtrdtq675gnna \N 184 \N 12 \N 0 \N \N
2019-06-07 16:23:57.6255+00 2019-06-07 16:24:03.240901+00 535 1 Phone number for app user zeelo completed new lead CHICAGO, IL +18722217507 +18722217507 60 2019-06-07 16:23:57.623502 2019-06-07 16:24:03.238339 outbound c-akebwacno7ll6rjjwwp5vqa \N 184 3 12 \N 1 \N \N
2019-06-07 16:23:58.693763+00 2019-06-07 16:24:03.814234+00 536 1 Phone number for app user zeelo completed new lead CHICAGO, IL +18722217507 +18722217507 60 2019-06-07 16:23:58.692858 2019-06-07 16:24:03.81175 outbound c-xruoayzvkj7ffwf2tqrvuga \N 184 3 12 \N 1 \N \N
2019-06-07 16:23:59.869781+00 2019-06-07 16:24:04.369415+00 537 1 Phone number for app user zeelo completed new lead CHICAGO, IL +18722217507 +18722217507 60 2019-06-07 16:23:59.868846 2019-06-07 16:24:04.366469 outbound c-sfmohk2fqtir5ekehoguzma \N 184 3 12 \N 1 \N \N
2019-06-07 16:24:01.078718+00 2019-06-07 16:24:04.938866+00 538 1 Phone number for app user zeelo completed new lead CHICAGO, IL +18722217507 +18722217507 60 2019-06-07 16:24:01.077821 2019-06-07 16:24:04.938017 outbound c-iegbywcrcpnuodj6andkbqa \N 184 3 12 \N 1 \N \N
2019-06-09 16:18:11.204784+00 2019-06-09 16:18:23.043743+00 551 1 Phone number for app user shoozes completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-09 16:18:11.202448 2019-06-09 16:18:23.042278 inbound c-fxsqrtake55lkhqxdrpyqci \N 185 3 10 \N 1 \N \N
2019-07-11 22:45:44.088692+00 2019-07-11 22:46:30.235025+00 711 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-11 22:45:44.088195 2019-07-11 22:46:30.234463 outbound c-zllx6dwrwdiiqo2brcs57l1 \N 196 3 15 \N 1 \N \N
2019-06-10 15:34:06.211029+00 2019-06-10 15:34:14.07509+00 552 1 Phone number for app user shoozes completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-10 15:34:06.2086 2019-06-10 15:34:14.073018 outbound c-x6535tew4mcmeuba7ouy23y \N 185 3 10 \N 1 \N \N
2019-06-10 15:34:52.080097+00 2019-06-10 15:35:12.709549+00 553 1 Phone number for app user shoozes completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-10 15:34:52.07793 2019-06-10 15:35:12.706249 outbound c-rjqh6fmqrbwgpujsv2kyo6q \N 185 3 10 \N 1 \N \N
2019-06-10 15:44:50.412458+00 2019-06-10 15:45:06.756525+00 554 1 Phone number for app user shoozes completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-10 15:44:50.411852 2019-06-10 15:45:06.755446 outbound c-teet5a6lqdu5ihkxp72begy \N 185 3 10 \N 1 \N \N
2019-06-10 15:47:36.955628+00 2019-06-10 15:47:47.582114+00 555 1 Phone number for app user shoozes completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-10 15:47:36.953468 2019-06-10 15:47:47.579755 inbound c-gfpmseaj5jbk7odilyp4hhq \N 185 3 10 \N 1 \N \N
2019-06-19 17:10:50.339605+00 2019-06-19 17:10:52.147905+00 556 1 Phone number for app user cheezos missed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-19 17:10:50.33839 2019-06-19 17:10:52.143097 inbound c-b43tzsxhfvwip6oojzkpwsy \N 186 3 5 \N 1 \N \N
2019-06-19 19:29:01.636706+00 2019-06-19 19:29:03.763077+00 557 1 Phone number for app user aaha missed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-19 19:29:01.635393 2019-06-19 19:29:03.761778 inbound c-foabn4slbn7o3vl5ffed2wa \N 187 3 5 \N 1 \N \N
2019-06-19 19:31:39.844426+00 2019-06-19 19:31:41.005042+00 558 1 Phone number for app user aaha missed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-19 19:31:39.842216 2019-06-19 19:31:41.002257 inbound c-wure2eo7nfjxynsljpytxwa \N 187 3 5 \N 1 \N \N
2019-06-19 19:34:28.752521+00 2019-06-19 19:34:32.260248+00 559 1 Phone number for app user aaha missed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-19 19:34:28.750363 2019-06-19 19:34:32.258136 inbound c-in7z32ypip4pudsepxksury \N 187 3 5 \N 1 \N \N
2019-06-19 19:42:41.439243+00 2019-06-19 19:42:41.439274+00 560 1 Phone number for app user aaha ringing new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 \N 2019-06-19 19:42:41.436851 \N inbound c-midqeukvbfqylecdgxdd22y \N 187 \N 5 \N 0 \N \N
2019-06-19 19:47:41.198978+00 2019-06-19 19:47:46.333619+00 561 1 Phone number for app user aaha missed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-19 19:47:41.197729 2019-06-19 19:47:46.331069 inbound c-hhxizw3szhxin4p7lzp2s6y \N 187 3 5 \N 1 \N \N
2019-06-19 19:50:16.917376+00 2019-06-19 19:50:20.359063+00 562 1 Phone number for app user aaha missed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-19 19:50:16.915297 2019-06-19 19:50:20.356556 inbound c-x225dq6tbbeznwskijplija \N 187 3 5 \N 1 \N \N
2019-06-19 19:53:22.616254+00 2019-06-19 19:53:23.929258+00 563 1 Phone number for app user aaha missed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-06-19 19:53:22.615002 2019-06-19 19:53:23.924609 inbound c-52ea5aojtavaypeouol3qxy \N 187 3 5 \N 1 \N \N
2019-06-21 20:22:23.095907+00 2019-06-21 20:22:40.531062+00 564 1 Phone number for app user dopeno completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-21 20:22:23.094832 2019-06-21 20:22:40.529858 inbound c-e25fp2khast6umjghngz2gq \N 188 3 10 \N 1 \N \N
2019-06-21 20:24:48.863507+00 2019-06-21 20:25:04.629159+00 565 1 Phone number for app user dopeno completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-21 20:24:48.862308 2019-06-21 20:25:04.622072 outbound c-ibpdtrmdaf3gdjqzpvq4yca \N 188 3 10 \N 1 \N \N
2019-06-21 20:42:17.103946+00 2019-06-21 20:42:33.111475+00 566 1 Phone number for app user dopeno completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-21 20:42:17.102494 2019-06-21 20:42:33.11022 inbound c-oynretxmudgptx4gscmlfhi \N 188 3 10 \N 1 \N \N
2019-06-21 20:50:01.187232+00 2019-06-21 20:50:01.657476+00 567 1 Boo Too Nom ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-06-21 20:50:01.185549 \N inbound c-hxgvmhjd7pmk5mtlxdsdrsa \N 189 \N 10 \N 0 \N \N
2019-06-21 20:51:37.58879+00 2019-06-21 20:51:39.713465+00 568 1 Boo Too Nom ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-06-21 20:51:37.587447 \N inbound c-yfxclrabrizbkekjglj2ala \N 189 \N 10 \N 0 \N \N
2019-06-21 21:03:58.359537+00 2019-06-21 21:04:18.209812+00 569 1 Phone number for app user jollorop completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-21 21:03:58.35754 2019-06-21 21:04:18.203885 outbound c-bvdqixw43vbysh7yavselza \N 190 3 10 \N 1 \N \N
2019-06-21 21:11:10.37269+00 2019-06-21 21:11:27.435274+00 570 1 Phone number for app user jollorop completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-21 21:11:10.370542 2019-06-21 21:11:27.427051 outbound c-7233ohdp4c2njvypuur2doa \N 190 3 10 \N 1 \N \N
2019-06-27 17:10:42.876982+00 2019-06-27 17:10:54.73945+00 571 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-27 17:10:42.871597 2019-06-27 17:10:54.732582 inbound c-kgvxmdpoovf55t77bjslywa \N 191 3 10 \N 1 \N \N
2019-06-27 22:55:14.18378+00 2019-06-27 22:55:19.390124+00 572 1 Phone number for app user fleego missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-27 22:55:14.182633 2019-06-27 22:55:19.38899 inbound c-blkxbbr3venwyohmtthn5cq \N 191 3 10 \N 1 \N \N
2019-06-28 00:43:50.985967+00 2019-06-28 00:44:07.352658+00 573 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 00:43:50.984096 2019-06-28 00:44:07.351426 inbound c-h25v2457owis2oixt2bvq5y \N 191 3 10 \N 1 \N \N
2019-06-28 01:01:08.522891+00 2019-06-28 01:01:24.386542+00 574 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 01:01:08.52177 2019-06-28 01:01:24.383837 inbound c-6ewnpkmrv6n72shchedi5cq \N 191 3 10 \N 1 \N \N
2019-06-28 17:26:04.74029+00 2019-06-28 17:26:20.314324+00 575 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 17:26:04.739044 2019-06-28 17:26:20.311882 inbound c-f3ufu3t3e6shlo4mnzhsc3a \N 191 3 10 \N 1 \N \N
2019-06-28 17:54:42.991265+00 2019-06-28 17:55:04.053822+00 576 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 17:54:42.989868 2019-06-28 17:54:58.745304 inbound c-sokkowt2tjlpgznsddrccl1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/576_recording_4a6f4d4a5f124ef1a0248cc55bdef4fe \N 191 3 10 \N 1 \N \N
2019-06-28 18:03:44.529157+00 2019-06-28 18:04:05.639875+00 577 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 18:03:44.52789 2019-06-28 18:04:01.991868 outbound c-by2nm7oubhgrbsjjbhb53m1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/577_recording_8628bc0644824e99bf0e5fdb2a2714ae \N 191 3 10 \N 1 \N \N
2019-06-28 18:05:28.063256+00 2019-06-28 18:05:43.372817+00 578 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 18:05:28.060621 2019-06-28 18:05:43.151532 outbound c-4jjholzfrvtmtwd45maelm1 \N 191 3 10 \N 1 \N \N
2019-06-28 18:06:46.465565+00 2019-06-28 18:06:54.495487+00 579 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 18:06:46.464902 2019-06-28 18:06:54.291296 inbound c-5udv2odaf36x6kvqf3tlan1 \N 191 3 10 \N 1 \N \N
2019-07-03 23:45:46.554781+00 2019-07-03 23:45:50.956027+00 627 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-03 23:45:46.554163 2019-07-03 23:45:50.955508 inbound c-o74cuymkr4ew4kf74zcmaqy \N 192 3 10 \N 1 \N \N
2019-06-28 18:13:03.586827+00 2019-06-28 18:13:22.25284+00 580 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 18:13:03.585674 2019-06-28 18:13:19.203506 inbound c-gxxtsobvd7qgkgnn7475sp1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/580_recording_95cd28509e8a4be69a0e5f5ad0cafebd \N 191 3 10 \N 1 \N \N
2019-07-31 18:28:35.444965+00 2019-07-31 18:28:51.096227+00 812 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 16 2019-07-31 18:28:35.44352 2019-07-31 18:28:51.092101 inbound CAe480fdfec1825f376ba1122472d09061 \N 215 11 10 \N 0 3.11675596237182617 \N
2019-06-28 19:40:51.16061+00 2019-06-28 19:41:14.12635+00 581 1 Phone number for app user fleego ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-06-28 19:40:51.159459 \N inbound c-342jnvmkpax24cbg35nftn1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/581_recording_917cd40f8edb4b4ea750671ee3190c52 \N 191 \N 10 \N 0 \N \N
2019-06-28 19:46:24.4095+00 2019-06-28 19:46:39.992972+00 582 1 Phone number for app user fleego ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-06-28 19:46:24.408394 \N inbound c-ahpcnw3gf4jkikk4x2hk5j1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/582_recording_8d2d9fb686644d13863979e5e312c034 \N 191 \N 10 \N 0 \N \N
2019-06-28 21:04:37.240452+00 2019-06-28 21:04:53.623596+00 583 1 Phone number for app user fleego ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-06-28 21:04:37.239277 \N inbound c-hbdejucwfcajjc7fz4viog1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/583_recording_44dbf844abc24aa29c069338041415de \N 191 \N 10 \N 0 \N \N
2019-07-17 01:01:43.238535+00 2019-07-17 01:01:52.960227+00 751 1 Testing Phone Number missed new lead +266696687 +13367394103 10 2019-07-17 01:01:43.236015 2019-07-17 01:01:52.922838 inbound CAc10302e0a2df4121daf0508b18335f82 \N 205 \N 16 \N 0 \N \N
2019-06-28 21:07:26.590927+00 2019-06-28 21:07:41.847934+00 584 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 21:07:26.589772 2019-06-28 21:07:38.887268 inbound c-pz4zuqgpw3grqslgf7lcd31 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/584_recording_2b5d2434456e4161985e70280a0cab06 \N 191 3 10 \N 1 \N \N
2019-06-28 21:08:05.16346+00 2019-06-28 21:08:18.163773+00 585 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 21:08:05.162219 2019-06-28 21:08:16.200786 inbound c-mbetmokxthbmlggs6md5d71 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/585_recording_fb71ae89b4284691afd959a8f7c7d0cf \N 191 3 10 \N 1 \N \N
2019-06-28 21:08:42.916537+00 2019-06-28 21:08:52.366544+00 586 1 Phone number for app user fleego ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-06-28 21:08:42.915955 \N inbound c-4kloxjvsm56bdihez2efff1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/586_recording_c55bbf2af83040ddb360a75981556195 \N 191 \N 10 \N 0 \N \N
2019-06-28 21:13:09.013316+00 2019-06-28 21:13:17.402901+00 587 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 21:13:09.011016 2019-06-28 21:13:15.221888 inbound c-vso3tnnqm3rbjbhxweipfa1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/587_recording_cdf0361ce0364bd7ba251568f5c2d7c1 \N 191 3 10 \N 1 \N \N
2019-06-28 21:13:26.753716+00 2019-06-28 21:13:36.638885+00 588 1 Phone number for app user fleego ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-06-28 21:13:26.753113 \N inbound c-fwlnu7v5fo2rgq6tyioccs1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/588_recording_57c10bbd75df4123b0705ddd58f63602 \N 191 \N 10 \N 0 \N \N
2019-06-28 21:16:45.584217+00 2019-06-28 21:16:55.846235+00 589 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 21:16:45.582751 2019-06-28 21:16:53.555226 inbound c-qgb6s7ffy6ooayr7r4jvnb1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/589_recording_23c8286eb14e4fa8b3fcf546e3cb7216 \N 191 3 10 \N 1 \N \N
2019-06-28 21:18:02.112554+00 2019-06-28 21:18:18.453579+00 590 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 21:18:02.111953 2019-06-28 21:18:16.335565 inbound c-3tvvzdhyhvhnwuzolnfpgc1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/590_recording_46ba3275463b4c5a93c6c358515ec0cd \N 191 3 10 \N 1 \N \N
2019-06-28 21:18:51.472027+00 2019-06-28 21:18:55.880419+00 591 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 21:18:51.471525 2019-06-28 21:18:55.87991 inbound c-nnqsbeotwamuqxr2nmsfoeq \N 191 3 10 \N 1 \N \N
2019-06-28 21:20:04.854027+00 2019-06-28 21:20:09.287553+00 592 1 Phone number for app user fleego missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 21:20:04.851751 2019-06-28 21:20:09.286387 inbound c-xkpjvrzy5ldoxxgn34db2wq \N 191 3 10 \N 1 \N \N
2019-06-28 21:20:35.854429+00 2019-06-28 21:20:41.462556+00 593 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 21:20:35.844836 2019-06-28 21:20:41.462003 inbound c-gh7kl6yt6ytkin7i4udo5fa \N 191 3 10 \N 1 \N \N
2019-06-28 21:22:19.337809+00 2019-06-28 21:22:24.465747+00 594 1 Phone number for app user fleego missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 21:22:19.336532 2019-06-28 21:22:24.464532 inbound c-2jug6y5zqjnnucnxat4zqui \N 191 3 10 \N 1 \N \N
2019-06-28 21:22:55.883608+00 2019-06-28 21:23:05.546042+00 595 1 Phone number for app user fleego ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-06-28 21:22:55.881884 \N inbound c-t6xjdq2xteeo7sywz3z2hu1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/595_recording_6bf089b3bb0e4f7c8d0121b50e53adb7 \N 191 \N 10 \N 0 \N \N
2019-06-28 23:11:06.054727+00 2019-06-28 23:11:10.664799+00 596 1 Phone number for app user fleego missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 23:11:06.05253 2019-06-28 23:11:10.663666 inbound c-6pboee3u6obhy5xrrv72gwa \N 191 3 10 \N 1 \N \N
2019-06-28 23:15:52.92353+00 2019-06-28 23:16:13.918754+00 597 1 Phone number for app user fleego missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 23:15:52.92243 2019-06-28 23:16:06.992958 inbound c-s3ma755iawgf3vv2idmtus1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/597_recording_4cd8cf9d2bf14bd4b91691461045642e \N 191 3 10 \N 1 \N \N
2019-06-28 23:18:07.292874+00 2019-06-28 23:18:14.527294+00 598 1 Phone number for app user fleego missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 23:18:07.291751 2019-06-28 23:18:14.525045 inbound c-7fyovq6u7krvdyhpsas6i4q \N 191 3 10 \N 1 \N \N
2019-06-28 23:18:34.954397+00 2019-06-28 23:18:48.040067+00 599 1 Phone number for app user fleego missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 23:18:34.953677 2019-06-28 23:18:48.039483 inbound c-ho4yxwndlgidojhqwbvy5pq \N 191 3 10 \N 1 \N \N
2019-06-28 23:19:29.256618+00 2019-06-28 23:19:32.607772+00 600 1 Phone number for app user fleego missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 23:19:29.256064 2019-06-28 23:19:32.607015 inbound c-ntrkyq4vx4edx4cq5x6dmky \N 191 3 10 \N 1 \N \N
2019-06-28 23:21:21.570871+00 2019-06-28 23:21:25.97832+00 601 1 Phone number for app user fleego missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 23:21:21.570315 2019-06-28 23:21:25.977849 inbound c-3mh5igwi3wndicqdjtnyosi \N 191 3 10 \N 1 \N \N
2019-06-28 23:21:49.75815+00 2019-06-28 23:22:50.369727+00 602 1 Phone number for app user fleego missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 23:21:49.757097 2019-06-28 23:22:45.971963 inbound c-nfmp33ry7nvs4r376ebh2nq https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/602_recording_3bbbe567ceee4f5bab2114302c240fbd \N 191 3 10 \N 1 \N \N
2019-06-28 23:24:30.366524+00 2019-06-28 23:24:58.72779+00 603 1 Phone number for app user fleego missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 23:24:30.365465 2019-06-28 23:24:58.726831 inbound c-l663wxxvckkbk3bzmyvqu6a https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/603_recording_548bc771866b4b02babb5961e0879b6d \N 191 3 10 \N 1 \N \N
2019-06-28 23:43:56.568073+00 2019-06-28 23:44:19.854435+00 604 1 Phone number for app user fleego missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 23:43:56.567015 2019-06-28 23:44:19.853277 inbound c-prfbr4pzwq45omd7rp5itta https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/604_recording_cdde03da097840f588d94bd821e43e3a \N 191 3 10 \N 1 \N \N
2019-07-02 20:36:00.131646+00 2019-07-02 20:36:37.279489+00 608 1 Phone number for app user fleego missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-02 20:36:00.130322 2019-07-02 20:36:37.278504 inbound c-ytltllwphmxlp7tsyuep3uy https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/608_recording_152ed8c37b7d46fcbec3f3b52bd61729 \N 191 3 10 \N 1 \N \N
2019-07-02 20:38:14.565488+00 2019-07-02 20:38:35.304208+00 609 1 Phone number for app user fleego missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-02 20:38:14.562903 2019-07-02 20:38:33.263682 inbound c-n7ldpk2hmtwjlnv6ld5fjo1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/609_recording_b49cb29005794611b0457c1f07202f18 \N 191 3 10 \N 1 \N \N
2019-07-02 20:40:24.592143+00 2019-07-02 20:40:38.842541+00 610 1 Phone number for app user fleego missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-02 20:40:24.590936 2019-07-02 20:40:38.841397 inbound c-z5m4n2e4rvreisbc4ionuhi \N 191 3 10 \N 1 \N \N
2019-07-02 20:41:05.233205+00 2019-07-02 20:41:27.984611+00 611 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-02 20:41:05.232584 2019-07-02 20:41:25.744151 inbound c-h6cfgv3e22gcy2mukg3cs71 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/611_recording_825ae07120f54c51bdfc03d3be17bcdd \N 191 3 10 \N 1 \N \N
2019-07-02 20:41:59.586338+00 2019-07-02 20:42:22.3299+00 612 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-02 20:41:59.585643 2019-07-02 20:42:20.154005 inbound c-gmb2zxfsbmu4dbb3t2k35r1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/612_recording_aabf121269e14907a473ddd07540125f \N 191 3 10 \N 1 \N \N
2019-07-02 20:42:45.186314+00 2019-07-02 20:42:59.015528+00 613 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-02 20:42:45.185642 2019-07-02 20:42:59.014949 inbound c-elx772o5gwawwngcuzmx3la \N 191 3 10 \N 1 \N \N
2019-07-02 20:56:23.88474+00 2019-07-02 20:56:41.26336+00 614 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-02 20:56:23.884027 2019-07-02 20:56:41.262602 inbound c-kmes6bajatlqlzldpeua46i \N 191 3 10 \N 1 \N \N
2019-07-02 21:01:31.898808+00 2019-07-02 21:02:18.138825+00 615 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-02 21:01:31.897704 2019-07-02 21:02:18.137815 inbound c-3t6s2kmwnbzee4l35h3g6uq https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/615_recording_65a5808173134c7c96fc202d996634ef \N 191 3 10 \N 1 \N \N
2019-07-02 21:07:04.516249+00 2019-07-02 21:07:40.883227+00 616 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-02 21:07:04.515158 2019-07-02 21:07:38.627987 inbound c-7ilc36mi6q343juaeclyotq https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/616_recording_d7fbbb61867e4994b561fec79cace290 \N 191 3 10 \N 1 \N \N
2019-07-02 22:33:58.679645+00 2019-07-02 22:34:37.356743+00 617 1 Phone number for app user fleego completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-02 22:33:58.674092 2019-07-02 22:34:32.040365 inbound c-t5dqnpjyflxhafprhbexugq https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/617_recording_440938c3962e4c88a9fefc0ccbc2c95b \N 191 3 10 \N 1 \N \N
2019-07-03 21:52:23.60451+00 2019-07-03 21:52:34.41354+00 618 1 Phone number for app user koolscopa completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-03 21:52:23.603377 2019-07-03 21:52:34.412182 inbound c-tzc6d7nbgxnuseknoshwh7a \N 192 3 10 \N 1 \N \N
2019-07-03 21:54:00.500715+00 2019-07-03 21:54:06.208449+00 619 1 Phone number for app user koolscopa completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-03 21:54:00.499464 2019-07-03 21:54:06.20716 inbound c-3pht2bua6ttaaojqmf7fmki \N 192 3 10 \N 1 \N \N
2019-07-03 22:13:58.984829+00 2019-07-03 22:14:04.250404+00 620 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-03 22:13:58.983666 2019-07-03 22:14:04.249066 inbound c-uib3rgi54lgqswggwmjzheq \N 192 3 10 \N 1 \N \N
2019-07-03 22:15:46.375586+00 2019-07-03 22:15:56.596302+00 621 1 Phone number for app user koolscopa completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-03 22:15:46.374156 2019-07-03 22:15:56.594956 inbound c-q4v635ruruvkjaj7mcu5b6y \N 192 3 10 \N 1 \N \N
2019-07-03 22:17:22.703668+00 2019-07-03 22:17:29.838162+00 622 1 Phone number for app user koolscopa ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-07-03 22:17:22.702447 \N inbound c-2wgidvrtjpnwk5qjlcbkit1 \N 192 \N 10 \N 0 \N \N
2019-07-03 22:21:10.878436+00 2019-07-03 22:21:22.021008+00 623 1 Phone number for app user koolscopa ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-07-03 22:21:10.877268 \N inbound c-j6ywxlow4wb3bgey6tymes1 \N 192 \N 10 \N 0 \N \N
2019-07-03 22:21:58.704739+00 2019-07-03 22:22:07.085859+00 624 1 Phone number for app user koolscopa completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-03 22:21:58.703528 2019-07-03 22:22:06.833245 inbound c-doi5ogz3zj5fqr5pxq4w4w1 \N 192 3 10 \N 1 \N \N
2019-07-03 22:22:36.976575+00 2019-07-03 22:22:51.691685+00 625 1 Phone number for app user koolscopa ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-07-03 22:22:36.976053 \N inbound c-ednlp63xa5fmyabcs4pe3l1 \N 192 \N 10 \N 0 \N \N
2019-07-03 23:43:43.513799+00 2019-07-03 23:43:49.718674+00 626 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-03 23:43:43.512026 2019-07-03 23:43:49.715724 inbound c-rwrs5obttbkvyxnrbm4vhuy \N 192 3 10 \N 1 \N \N
2019-07-03 23:47:45.639355+00 2019-07-03 23:47:49.386992+00 628 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-03 23:47:45.638758 2019-07-03 23:47:49.386458 inbound c-gftoosm64ytq4m4vryvnroq \N 192 3 10 \N 1 \N \N
2019-07-11 22:46:04.189373+00 2019-07-11 22:46:31.644755+00 712 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:46:04.188842 2019-07-11 22:46:31.644283 outbound c-y5bqzq5rrutaesmpejzbv21 \N 196 3 10 \N 1 \N \N
2019-07-03 23:52:17.933599+00 2019-07-03 23:52:28.545043+00 629 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-03 23:52:17.932406 2019-07-03 23:52:28.543884 inbound c-llfslwwjbn7kkcmcg4dxdoa \N 192 3 10 \N 1 \N \N
2019-07-03 23:54:52.811008+00 2019-07-03 23:55:12.050633+00 630 1 Phone number for app user koolscopa completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 0 2019-07-03 23:54:52.8099 2019-07-03 23:55:00.734942 inbound c-6tmxcqjh6moa2dqnvokpz51 \N 192 3 10 \N 1 \N \N
2019-07-03 23:58:32.882101+00 2019-07-03 23:58:44.095318+00 631 1 Phone number for app user koolscopa ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-07-03 23:58:32.880966 \N inbound c-suz4odzbnoul5xda6em66a1 \N 192 \N 10 \N 0 \N \N
2019-07-04 00:01:26.852891+00 2019-07-04 00:01:41.078712+00 632 1 Phone number for app user koolscopa ringing new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 \N 2019-07-04 00:01:26.851747 \N inbound c-3czwgcw3krqynbe7qrvyo21 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/632_recording_71105b350ce1401787a5c3ae65e4497c \N 192 \N 10 \N 0 \N \N
2019-07-04 00:08:20.688528+00 2019-07-04 00:08:37.433862+00 633 1 Phone number for app user koolscopa completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-04 00:08:20.687423 2019-07-04 00:08:32.965994 inbound c-6llzzelrb73fwkauzcqyvg1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/633_recording_94f76959d1694099b294e99559bb92d9 \N 192 3 10 \N 1 \N \N
2019-07-04 00:09:15.967711+00 2019-07-04 00:09:29.178654+00 634 1 Phone number for app user koolscopa completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-04 00:09:15.96701 2019-07-04 00:09:27.184792 inbound c-ffko7p4d6j3elojq6ol4ej1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/634_recording_c973bbfa5c034e3a8dbe7507c1b545bb \N 192 3 10 \N 1 \N \N
2019-07-04 00:14:23.621499+00 2019-07-04 00:14:29.859202+00 635 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-04 00:14:23.620295 2019-07-04 00:14:29.857485 inbound c-nfykaitcvdqtk65a2kgn52y \N 192 3 10 \N 1 \N \N
2019-07-04 16:54:36.046614+00 2019-07-04 16:55:07.883091+00 636 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 0 2019-07-04 16:54:36.045505 2019-07-04 16:54:56.56338 inbound c-cyen6onak2ac4enrfoqnnwi https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/636_recording_42c96b32e0c241fe82be9009fe9e8892 \N 192 3 10 \N 1 \N \N
2019-07-04 16:57:05.564047+00 2019-07-04 16:57:26.890689+00 637 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 0 2019-07-04 16:57:05.563473 2019-07-04 16:57:17.570238 inbound c-5czgkn52fyi4xp53soaip4y https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/637_recording_eb1a76076b43445dbd9722bd14a37930 \N 192 3 10 \N 1 \N \N
2019-07-04 17:02:31.741622+00 2019-07-04 17:02:52.088023+00 638 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 0 2019-07-04 17:02:31.740498 2019-07-04 17:02:44.575813 inbound c-lmv2znocqluxarlnfho7cfi https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/638_recording_cdca8dc5823d43e4b566e46f38a78e56 \N 192 3 10 \N 1 \N \N
2019-07-04 17:07:36.272472+00 2019-07-04 17:07:42.544166+00 639 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-04 17:07:36.2697 2019-07-04 17:07:42.540354 inbound c-xglt5c7rmtlwwmpsob6iy4a \N 192 3 10 \N 1 \N \N
2019-07-04 17:15:23.157786+00 2019-07-04 17:15:52.924601+00 640 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 0 2019-07-04 17:15:23.151997 2019-07-04 17:15:37.651884 inbound c-sfeiphmtnpxq5huxeh34wly https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/640_recording_15252efab97e45e286dbf4a202962d01 \N 192 3 10 \N 1 \N \N
2019-07-04 17:20:15.622858+00 2019-07-04 17:20:39.934807+00 641 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 0 2019-07-04 17:20:15.621624 2019-07-04 17:20:28.589555 inbound c-w5eiivvevon3bbfx6u5tuqq https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/641_recording_2b8ae91d78484a5dbb2fe4f153112612 \N 192 3 10 \N 1 \N \N
2019-07-04 17:23:48.583848+00 2019-07-04 17:23:55.568062+00 642 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-04 17:23:48.582613 2019-07-04 17:23:55.56668 inbound c-z3dxrhh4x27dcanyyh6lpwq \N 192 3 10 \N 1 \N \N
2019-07-04 17:55:00.522049+00 2019-07-04 17:55:23.683489+00 647 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 0 2019-07-04 17:55:00.520904 2019-07-04 17:55:12.571032 inbound c-vlkk5ubp7godojglv4gwsrq https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/647_recording_af41963e41a4414794a3bc3534bf5814 \N 192 3 10 \N 1 \N \N
2019-07-04 17:57:03.679854+00 2019-07-04 17:57:45.11387+00 648 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 0 2019-07-04 17:57:03.678707 2019-07-04 17:57:16.56774 inbound c-4b27wmxbfn7s4v52cy2t7vq https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/648_recording_aee4476ad7054a649a4e9cebda51fcc4 \N 192 3 10 \N 1 \N \N
2019-07-04 18:00:02.938747+00 2019-07-04 18:00:28.54338+00 649 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-04 18:00:02.937488 2019-07-04 18:00:15.568246 inbound c-zkxq7ibkqiar7o4iskeg6dq https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/649_recording_3d7ed891598d48a795e4b9fe646c37e7 \N 192 3 10 \N 1 \N \N
2019-07-04 18:02:49.296456+00 2019-07-04 18:03:05.232201+00 650 1 Phone number for app user koolscopa completed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-04 18:02:49.29443 2019-07-04 18:03:03.118616 inbound c-egkxn727nu44eocp54k6y41 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/650_recording_b2b605a47a8b448f9b83b451e5ff47b4 \N 192 3 10 \N 1 \N \N
2019-07-05 19:08:29.513351+00 2019-07-05 19:08:55.874961+00 661 1 Phone number for app user kingkong missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 19:08:29.51193 2019-07-05 19:08:42.619677 inbound c-rcnb2kh73ibj4v3reikb7ma https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/661_recording_9af9deead98e490da3caa4cd946c35ed \N 193 3 10 \N 1 \N \N
2019-07-05 17:39:19.992018+00 2019-07-05 17:39:43.499221+00 651 1 Phone number for app user kingkong completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 17:39:19.990818 2019-07-05 17:39:41.459474 inbound c-ygc4lvmqqd3awmmjxbt2bj1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/651_recording_2318db953ed8490b80f5f690bdfd3f4f \N 193 3 10 \N 1 \N \N
2019-07-29 20:07:34.803133+00 2019-07-29 20:07:36.978657+00 778 1 \N missed new lead Brian May hv13@hotmail.com +17732909650 +13367394103 \N 2019-07-29 20:07:34.801079 \N outbound \N 212 5 5 \N 0 \N \N
2019-07-29 19:05:47.924442+00 2019-07-29 19:05:47.924457+00 770 1 WeBHook Tester ringing new lead +13367394103 +13367394103 \N 2019-07-29 19:05:47.922587 \N inbound CA1ede914fd807c23860fc3b651d13e7bf \N \N \N 11 \N 0 \N \N
2019-07-05 17:43:18.335903+00 2019-07-05 17:43:35.89917+00 652 1 Phone number for app user kingkong completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 17:43:18.33236 2019-07-05 17:43:31.818972 inbound c-dxxknyslzmztratdhzcs6w1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/652_recording_d76a826e924047d5be7a41ed532b180e \N 193 3 10 \N 1 \N \N
2019-07-04 17:28:23.136384+00 2019-07-04 17:28:45.895642+00 644 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 0 2019-07-04 17:28:23.135054 2019-07-04 17:28:35.550591 inbound c-b2fppvhj6ff3irml6ctabeq https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/644_recording_643e6219f6a441eaaf3efa448980c944 \N 227 3 10 \N 1 \N \N
2019-07-04 17:29:47.068812+00 2019-07-04 17:30:10.838628+00 645 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 0 2019-07-04 17:29:47.067621 2019-07-04 17:29:59.597732 inbound c-pys2kzgyyor6wbsxw2rmury https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/645_recording_ea37deb585e34ce69f085d76b34c65b7 \N 227 3 10 \N 1 \N \N
2019-07-04 17:51:35.664574+00 2019-07-04 17:52:01.459769+00 646 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 0 2019-07-04 17:51:35.663258 2019-07-04 17:51:50.668098 inbound c-v62hefrmsjnqwfiymsf2ifa https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/646_recording_ce36fa0ca8d14f25be3f1e7c8077f7e3 \N 227 3 10 \N 1 \N \N
2019-07-05 18:16:17.391532+00 2019-07-05 18:16:27.92093+00 656 1 Phone number for app user kingkong completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 18:16:17.390116 2019-07-05 18:16:27.919053 inbound c-u2ott756xpw6p7bsvnphp51 \N 193 3 10 \N 1 \N \N
2019-07-05 18:02:21.000655+00 2019-07-05 18:02:38.52494+00 653 1 Phone number for app user kingkong completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 18:02:20.998469 2019-07-05 18:02:34.416617 inbound c-ip3ircbdp63p3kzpgnynzn1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/653_recording_6ce1c6ee844b4afa9514a6ef99ec27b4 \N 193 3 10 \N 1 \N \N
2019-07-05 18:05:22.694743+00 2019-07-05 18:05:45.935621+00 654 1 Phone number for app user kingkong missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 18:05:22.693656 2019-07-05 18:05:35.561426 inbound c-5oovfbbah4obutfn422oe2q https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/654_recording_37777c6b375444ffa28d90634b236364 \N 193 3 10 \N 1 \N \N
2019-07-05 18:09:47.271148+00 2019-07-05 18:10:04.833932+00 655 1 Phone number for app user kingkong completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 18:09:47.269825 2019-07-05 18:10:04.831531 inbound c-fgwwjtagik7n7b7tcxa5ip1 \N 193 3 10 \N 1 \N \N
2019-07-05 18:51:39.111425+00 2019-07-05 18:51:58.003836+00 657 1 Phone number for app user kingkong completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 18:51:39.109283 2019-07-05 18:51:53.784429 inbound c-t743cdicpp7wl3dwqtmej31 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/657_recording_4476c394253f4037bfdf53cb4f78e27b \N 193 3 10 \N 1 \N \N
2019-07-05 18:54:13.23154+00 2019-07-05 18:54:26.034609+00 658 1 Phone number for app user kingkong missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 18:54:13.230381 2019-07-05 18:54:26.031622 inbound c-ydk3txwnolc56mzii3fgsey \N 193 3 10 \N 1 \N \N
2019-07-05 22:28:16.385579+00 2019-07-05 22:28:26.142008+00 662 1 Phone number for app user kingkong missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 22:28:16.384032 2019-07-05 22:28:26.140079 inbound c-xf3ca3c45evnsk36eleot5a \N 193 3 10 \N 1 \N \N
2019-07-05 19:02:11.104969+00 2019-07-05 19:02:24.004646+00 659 1 Phone number for app user kingkong missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 19:02:11.102874 2019-07-05 19:02:24.001983 inbound c-glrmnpvuumlyka25xz3d2di \N 193 3 10 \N 1 \N \N
2019-07-05 19:05:18.202192+00 2019-07-05 19:05:31.017345+00 660 1 Phone number for app user kingkong missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 19:05:18.20062 2019-07-05 19:05:31.01508 inbound c-kc4rvs43fkmxgraa72aqvia \N 193 3 10 \N 1 \N \N
2019-07-05 22:36:37.331238+00 2019-07-05 22:36:44.464156+00 666 1 Phone number for app user kingkong missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 22:36:37.328743 2019-07-05 22:36:44.462742 inbound c-qklhmi54xgzyw4vf6k76nsy \N 193 3 10 \N 1 \N \N
2019-07-05 22:32:55.557859+00 2019-07-05 22:33:03.167619+00 663 1 Phone number for app user kingkong missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 22:32:55.556548 2019-07-05 22:33:03.165605 inbound c-ll6kb5jtkmcn655zsj7hu6i \N 193 3 10 \N 1 \N \N
2019-07-05 22:34:41.813596+00 2019-07-05 22:34:48.521302+00 664 1 Phone number for app user kingkong missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 22:34:41.812875 2019-07-05 22:34:48.520107 inbound c-thpaywwbueokbn2fp65n2lq \N 193 3 10 \N 1 \N \N
2019-07-05 22:38:09.783094+00 2019-07-05 22:38:18.941706+00 667 1 Phone number for app user kingkong missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 22:38:09.781604 2019-07-05 22:38:18.940106 inbound c-psxcvpr7hamntc7qujfewmy \N 193 3 10 \N 1 \N \N
2019-07-05 22:35:48.873766+00 2019-07-05 22:36:13.474506+00 665 1 Phone number for app user kingkong missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 22:35:48.872526 2019-07-05 22:35:59.551337 inbound c-jtxy7bjckkv2u44hwaj2pzi https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/665_recording_c1eb5f7aafe14d2b9a63f14615c48784 \N 193 3 10 \N 1 \N \N
2019-07-05 22:50:02.00425+00 2019-07-05 22:50:16.33435+00 670 1 Phone number for app user kingkong completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 22:50:02.000505 2019-07-05 22:50:14.156759 inbound c-3bfrvdzt6gr36x5gdnzccy1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/670_recording_b6daf2f943e34cb3a052e547806c0ec5 \N 193 3 10 \N 1 \N \N
2019-07-05 22:39:17.874403+00 2019-07-05 22:39:40.328382+00 668 1 Phone number for app user kingkong missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 22:39:17.873033 2019-07-05 22:39:28.623954 inbound c-vkjwwqtwjgwggx6a6ufkuia https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/668_recording_66bdb9bdf41d4d1ca95297f6ff8a26b0 \N 193 3 10 \N 1 \N \N
2019-07-05 22:47:56.369784+00 2019-07-05 22:48:09.13671+00 669 1 Phone number for app user kingkong missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 22:47:56.367781 2019-07-05 22:48:09.134834 inbound c-oba3rafgdf7j47oqppb3f7i \N 193 3 10 \N 1 \N \N
2019-07-05 22:53:05.206778+00 2019-07-05 22:53:20.463125+00 671 1 Phone number for app user kingkong completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 22:53:05.204953 2019-07-05 22:53:17.048052 inbound c-zrqoyvrnhdejpdsz4htnvo1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/671_recording_bf1fff9474cf4da28830ad28179cd6c3 \N 193 3 10 \N 1 \N \N
2019-07-05 22:54:32.083322+00 2019-07-05 22:54:43.585905+00 672 1 Phone number for app user kingkong completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 22:54:32.081484 2019-07-05 22:54:41.633631 inbound c-i5dx456mviogysise4uhn71 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/672_recording_4608e7f59d51426ea991be637b08a173 \N 193 3 10 \N 1 \N \N
2019-07-05 22:56:19.504158+00 2019-07-05 22:56:34.805787+00 673 1 Phone number for app user kingkong completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 22:56:19.501618 2019-07-05 22:56:34.80318 inbound c-vvvs6wla6ulk4a5hlxw5o31 \N 193 3 10 \N 1 \N \N
2019-07-31 18:29:52.482996+00 2019-07-31 18:30:04.053391+00 813 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 12 2019-07-31 18:29:52.481674 2019-07-31 18:30:04.050577 inbound CAda3502d941c78d9c898ffb35a18fd8f4 \N 215 11 10 \N 0 3.26013588905334473 \N
2019-07-05 22:57:30.135736+00 2019-07-05 22:57:40.160526+00 674 1 Phone number for app user kingkong completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 22:57:30.135139 2019-07-05 22:57:40.160014 inbound c-sqleo7qlubefjai23s3x6h1 \N 193 3 10 \N 1 \N \N
2019-07-31 19:32:41.438687+00 2019-07-31 19:32:58.362652+00 820 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 17 2019-07-31 19:32:41.437505 2019-07-31 19:32:58.36087 inbound CA187d73d51f5ea198af7694037ee7ca60 \N 215 11 10 \N 0 3.4953160285949707 \N
2019-07-05 23:09:28.291566+00 2019-07-05 23:10:11.593734+00 675 1 Phone number for app user kingkong missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-05 23:09:28.290039 2019-07-05 23:09:56.640194 inbound c-qq5irvgku7egc3ulc6gfofy https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/675_recording_f700123527244a8e9b60323f2782a115 \N 193 3 10 \N 1 \N \N
2019-07-11 18:15:30.812413+00 2019-07-11 18:16:07.35879+00 676 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 0 2019-07-11 18:15:30.810698 2019-07-11 18:16:07.355936 inbound c-aw6veu6rfthudw2qpluizn1 \N 196 3 10 \N 1 \N \N
2019-07-11 18:37:42.261769+00 2019-07-11 18:38:34.696175+00 687 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 18:37:42.258872 2019-07-11 18:38:34.693772 inbound c-arrby5iq22rvnojp2rav671 \N 196 3 10 \N 1 \N \N
2019-07-11 18:18:03.799548+00 2019-07-11 18:18:55.742985+00 677 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 18:18:03.796914 2019-07-11 18:18:55.73795 inbound c-v6aj7i6in35cuv37wlkj6f1 \N 196 3 10 \N 1 \N \N
2019-07-11 18:18:24.444804+00 2019-07-11 18:18:56.830877+00 678 1 Phone number for app user BlueBull completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-07-11 18:18:24.441814 2019-07-11 18:18:56.828518 outbound c-dkp6rwidffl52jrgtlnc6a1 \N 196 3 5 \N 1 \N \N
2019-07-11 18:22:43.322919+00 2019-07-11 18:22:58.788117+00 680 1 Phone number for app user BlueBull completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-07-11 18:22:43.320362 2019-07-11 18:22:58.783799 outbound c-l57ofexkibsc2szfogwc6u1 \N 196 3 5 \N 1 \N \N
2019-07-11 18:28:56.500247+00 2019-07-11 18:29:05.718137+00 683 1 Phone number for app user BlueBull completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-07-11 18:28:56.498656 2019-07-11 18:29:05.715716 outbound c-kscr4b33t64b4rgdkhqs2k1 \N 196 3 5 \N 1 \N \N
2019-07-11 18:22:19.974304+00 2019-07-11 18:23:04.674458+00 679 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 18:22:19.973124 2019-07-11 18:23:04.672183 inbound c-zbiiruags5ilzjkbmrjlc21 \N 196 3 10 \N 1 \N \N
2019-07-11 18:25:14.540988+00 2019-07-11 18:25:43.403358+00 681 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 0 2019-07-11 18:25:14.538399 2019-07-11 18:25:43.39994 inbound c-xfjcgo7gyedyqwuukyc5ht1 \N 196 3 10 \N 1 \N \N
2019-07-11 18:28:35.265495+00 2019-07-11 18:29:29.93995+00 682 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 18:28:35.264027 2019-07-11 18:29:29.937194 inbound c-5bfp2t6ewssnrhs6quwrfs1 \N 196 3 10 \N 1 \N \N
2019-07-11 18:29:28.806195+00 2019-07-11 18:29:36.313126+00 684 1 Phone number for app user BlueBull ringing new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-07-11 18:29:28.80374 \N outbound c-6ppym5n3vtqzmwkkwimpozq \N 196 \N 5 \N 0 \N \N
2019-07-11 18:38:02.34717+00 2019-07-11 18:38:39.754292+00 688 1 Phone number for app user BlueBull completed new lead Brian VERMAAK,HERMANU May +17732909650 +18722217507 60 2019-07-11 18:38:02.344358 2019-07-11 18:38:39.75358 outbound c-o5wmecindqjro4mclwwzxm1 \N 196 3 5 \N 1 \N \N
2019-07-11 18:35:52.794157+00 2019-07-11 18:36:22.110951+00 686 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 18:35:52.793142 2019-07-11 18:36:22.110106 inbound c-7fzo2dtci5zob7ynpucu551 \N 196 3 10 \N 1 \N \N
2019-07-11 18:35:33.448636+00 2019-07-11 18:36:25.301485+00 685 1 Phone number for app user BlueBull completed new lead Restricted +18722217507 60 2019-07-11 18:35:33.447599 2019-07-11 18:36:25.30062 inbound c-ezcggtdzkybq3mduhkpvql1 \N 196 3 13 \N 1 \N \N
2019-07-11 19:21:22.738218+00 2019-07-11 19:21:31.573713+00 689 1 Phone number for app user BlueBull missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 19:21:22.737004 2019-07-11 19:21:31.572492 inbound c-ych76gi6fiu7stroqm7pg2y \N 196 3 10 \N 1 \N \N
2019-07-11 19:24:24.92183+00 2019-07-11 19:24:39.24075+00 690 1 Phone number for app user BlueBull completed new lead SEATTLE, WA +12064327364 +18722217507 60 2019-07-11 19:24:24.92134 2019-07-11 19:24:39.23985 inbound c-7wy7kmheoyasedkr6rwzkt1 \N 196 3 15 \N 1 \N \N
2019-07-11 22:16:35.720408+00 2019-07-11 22:17:01.607144+00 691 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 0 2019-07-11 22:16:35.719363 2019-07-11 22:17:01.606552 inbound c-tfs2biyimnstuyjydjojds1 \N 196 3 15 \N 1 \N \N
2019-07-11 22:22:13.679241+00 2019-07-11 22:22:47.065741+00 692 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-11 22:22:13.678073 2019-07-11 22:22:47.064544 outbound c-yshada4xqos3qfklalvfs41 \N 196 3 15 \N 1 \N \N
2019-07-11 22:29:15.485284+00 2019-07-11 22:29:45.373422+00 694 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:29:15.484718 2019-07-11 22:29:45.372981 inbound c-qybvmodzusepn3m6qswlyg1 \N 196 3 10 \N 1 \N \N
2019-07-11 22:28:31.854612+00 2019-07-11 22:28:54.186509+00 693 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:28:31.854028 2019-07-11 22:28:54.186022 inbound c-6coteyfd4wuju3idykuy2p1 \N 196 3 10 \N 1 \N \N
2019-07-11 22:29:34.481983+00 2019-07-11 22:29:55.898972+00 695 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:29:34.481428 2019-07-11 22:29:55.89854 outbound c-e5rfy23uyzeppeigroiui31 \N 196 3 10 \N 1 \N \N
2019-07-11 22:31:25.47602+00 2019-07-11 22:31:55.524981+00 696 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 0 2019-07-11 22:31:25.474651 2019-07-11 22:31:55.524377 inbound c-c3iw2tw7jiwesleswbewjv1 \N 196 3 15 \N 1 \N \N
2019-07-11 22:31:46.470026+00 2019-07-11 22:32:15.47826+00 697 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:31:46.469505 2019-07-11 22:32:15.477027 outbound c-hulvctmpiekksktzlsvrov1 \N 196 3 10 \N 1 \N \N
2019-07-11 22:33:24.474917+00 2019-07-11 22:34:00.530715+00 698 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 0 2019-07-11 22:33:24.473291 2019-07-11 22:34:00.53014 inbound c-bzgigwuxp77et4s4yjg6ex1 \N 196 3 15 \N 1 \N \N
2019-07-11 22:33:44.314012+00 2019-07-11 22:34:09.102244+00 699 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:33:44.313431 2019-07-11 22:34:09.100319 outbound c-3jmgc67i5s46hfnsuuj6kr1 \N 196 3 10 \N 1 \N \N
2019-07-11 22:36:42.395564+00 2019-07-11 22:37:34.908929+00 700 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-11 22:36:42.394505 2019-07-11 22:37:34.907935 inbound c-46nopxivlsvuhbvxude4lz1 \N 196 3 15 \N 1 \N \N
2019-07-11 22:37:49.738537+00 2019-07-11 22:37:59.235229+00 702 1 Phone number for app user BlueBull ringing new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:37:49.737944 \N outbound c-b7g2chr6bgrmvc3ui4cbpma \N 196 \N 10 \N 0 \N \N
2019-07-11 22:37:00.473628+00 2019-07-11 22:37:50.79907+00 701 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:37:00.472827 2019-07-11 22:37:50.79864 outbound c-w2a7baf3mfwfk3hqgk4hbp1 \N 196 3 10 \N 1 \N \N
2019-07-11 22:44:45.896502+00 2019-07-11 22:45:23.900856+00 710 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:44:45.896 2019-07-11 22:45:23.899373 outbound c-hw4qmnzbou4tu4yzyqhjwc1 \N 196 3 10 \N 1 \N \N
2019-07-11 22:46:48.786362+00 2019-07-11 22:47:35.651699+00 713 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:46:48.785603 2019-07-11 22:47:35.651202 outbound c-vbkst4eizlqwetzfnyqbxq1 \N 196 3 10 \N 1 \N \N
2019-07-11 22:38:52.098886+00 2019-07-11 22:39:43.866406+00 703 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-11 22:38:52.09799 2019-07-11 22:39:43.865323 inbound c-ibqbzendy7mrcaux523cnw1 \N 196 3 15 \N 1 \N \N
2019-07-11 22:47:05.881448+00 2019-07-11 22:47:46.292419+00 714 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-11 22:47:05.88057 2019-07-11 22:47:46.29189 outbound c-6r5vlcddh63b3j32t5d5ge1 \N 196 3 15 \N 1 \N \N
2019-07-31 18:30:32.867171+00 2019-07-31 18:30:45.379928+00 814 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 13 2019-07-31 18:30:32.864074 2019-07-31 18:30:45.378146 inbound CA6e832a4695b6067bc25c0433858c1fd9 \N 215 11 10 \N 0 3.27530789375305176 \N
2019-07-11 22:39:12.229774+00 2019-07-11 22:39:48.306352+00 704 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:39:12.229199 2019-07-11 22:39:48.305428 outbound c-3jln7yqpg6cn5mxvagfpyi1 \N 196 3 10 \N 1 \N \N
2019-07-11 22:50:25.115887+00 2019-07-11 22:51:10.729889+00 719 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-11 22:50:25.115319 2019-07-11 22:51:10.729471 outbound c-ik32djhvboinxtx3b725e21 \N 196 3 15 \N 1 \N \N
2019-07-11 22:48:16.295586+00 2019-07-11 22:49:05.810839+00 715 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-11 22:48:16.295019 2019-07-11 22:49:05.809666 outbound c-lwa5q3mnh5pxfoittf2i7g1 \N 196 3 15 \N 1 \N \N
2019-07-11 22:41:14.768459+00 2019-07-11 22:42:09.034829+00 705 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-11 22:41:14.767964 2019-07-11 22:42:09.034241 inbound c-ogceqzupojsomtqtxeupo31 \N 196 3 15 \N 1 \N \N
2019-07-11 22:41:30.377858+00 2019-07-11 22:42:19.827471+00 706 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:41:30.377291 2019-07-11 22:42:19.827026 outbound c-n2qhmh4valkp52ve6ulyti1 \N 196 3 10 \N 1 \N \N
2019-07-11 22:48:34.743946+00 2019-07-11 22:49:12.293878+00 716 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:48:34.743174 2019-07-11 22:49:12.293378 outbound c-hskukitjwnf4sj7xkcvep71 \N 196 3 10 \N 1 \N \N
2019-07-11 22:42:36.598749+00 2019-07-11 22:43:24.09553+00 707 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-11 22:42:36.598141 2019-07-11 22:43:24.095088 outbound c-ivthhofdadbxf5ddnckqis1 \N 196 3 15 \N 1 \N \N
2019-07-11 22:49:34.371004+00 2019-07-11 22:50:13.890716+00 717 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-11 22:49:34.370517 2019-07-11 22:50:13.890248 inbound c-w6j5xvvt5qwjam6y367wnd1 \N 196 3 15 \N 1 \N \N
2019-07-11 22:42:53.343579+00 2019-07-11 22:43:28.396905+00 708 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:42:53.342774 2019-07-11 22:43:28.396334 outbound c-fsrflxc3nadzepyb2qhvuz1 \N 196 3 10 \N 1 \N \N
2019-07-11 22:50:42.652005+00 2019-07-11 22:51:20.967045+00 720 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:50:42.651489 2019-07-11 22:51:20.966434 outbound c-sglwswnz7gujkosyh6z3761 \N 196 3 10 \N 1 \N \N
2019-07-11 22:49:47.216663+00 2019-07-11 22:50:14.912827+00 718 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:49:47.216102 2019-07-11 22:50:14.912391 outbound c-36rp5gqnzop3xieg5qebcd1 \N 196 3 10 \N 1 \N \N
2019-07-11 22:44:33.474982+00 2019-07-11 22:45:05.556804+00 709 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 0 2019-07-11 22:44:33.473654 2019-07-11 22:45:05.556235 inbound c-saangsd4qtgdvopmimgqci1 \N 196 3 15 \N 1 \N \N
2019-07-11 22:54:39.96509+00 2019-07-11 22:54:43.130325+00 726 1 Phone number for app user BlueBull ringing new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:54:39.964535 \N outbound c-atantp6f7guqyvdelagd3yy \N 196 \N 10 \N 0 \N \N
2019-07-11 22:52:04.672616+00 2019-07-11 22:52:23.47642+00 722 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-11 22:52:04.672125 2019-07-11 22:52:23.475834 outbound c-nrqzkweizs5yrha2nqjjah1 \N 196 3 15 \N 1 \N \N
2019-07-11 22:51:49.497527+00 2019-07-11 22:52:31.653904+00 721 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:51:49.496911 2019-07-11 22:52:31.653456 outbound c-a73h3pf4a5iv6ofxlt63hl1 \N 196 3 10 \N 1 \N \N
2019-07-11 22:53:16.241626+00 2019-07-11 22:54:03.747941+00 723 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:53:16.241015 2019-07-11 22:54:03.747487 outbound c-vy6rplangcrnm25cjlqgw41 \N 196 3 10 \N 1 \N \N
2019-07-11 22:53:33.726575+00 2019-07-11 22:54:08.930926+00 724 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-11 22:53:33.725987 2019-07-11 22:54:08.9305 outbound c-k3iyha45m6u3ncpi6wr6sq1 \N 196 3 15 \N 1 \N \N
2019-07-11 22:54:29.06592+00 2019-07-11 22:54:42.491595+00 725 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 0 2019-07-11 22:54:29.065371 2019-07-11 22:54:42.491089 inbound c-yknh6gbmiuzefpjfhkuro41 \N 196 3 15 \N 1 \N \N
2019-07-11 22:56:18.494084+00 2019-07-11 22:57:10.639858+00 729 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-11 22:56:18.492881 2019-07-11 22:57:10.638748 inbound c-sye3jgz6zse5ljkzfw33cs1 \N 196 3 15 \N 1 \N \N
2019-07-11 22:55:30.531866+00 2019-07-11 22:55:54.719376+00 728 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:55:30.531266 2019-07-11 22:55:54.71895 outbound c-4dno5ely6ioauvzbzl567v1 \N 196 3 10 \N 1 \N \N
2019-07-11 22:55:18.931577+00 2019-07-11 22:55:56.095621+00 727 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-11 22:55:18.93105 2019-07-11 22:55:56.095113 inbound c-kgkvfykf2bw6lpwnpqyqje1 \N 196 3 15 \N 1 \N \N
2019-07-11 22:56:29.176346+00 2019-07-11 22:57:15.286509+00 730 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:56:29.175851 2019-07-11 22:57:15.286086 outbound c-pubj5pko5uvbw675uwqdkj1 \N 196 3 10 \N 1 \N \N
2019-07-11 22:57:23.457329+00 2019-07-11 22:58:06.358213+00 731 1 Phone number for app user BlueBull completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-11 22:57:23.45682 2019-07-11 22:58:06.357732 inbound c-eoq5of6ytntbxpsxqbv3he1 \N 196 3 15 \N 1 \N \N
2019-07-11 22:57:33.402462+00 2019-07-11 22:58:07.825045+00 732 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-11 22:57:33.401923 2019-07-11 22:58:07.824408 outbound c-wlmobtpejc6qedr3m6ztx71 \N 196 3 10 \N 1 \N \N
2019-07-12 01:08:08.386037+00 2019-07-12 01:08:23.115863+00 733 1 Phone number for app user BlueBull completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-12 01:08:08.384122 2019-07-12 01:08:23.114854 inbound c-f7jixl7uvni5lp5i3y5mwg1 \N 196 3 10 \N 1 \N \N
2019-07-15 23:19:41.563585+00 2019-07-15 23:19:42.497295+00 734 1 Phone number for app user Soldol007 ringing new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-15 23:19:41.562172 \N inbound c-3vpsou5d5dh7rennosl5gey \N 202 \N 10 \N 0 \N \N
2019-07-15 23:20:40.034379+00 2019-07-15 23:21:27.88706+00 735 1 Phone number for app user Soldol007 completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-15 23:20:40.033872 2019-07-15 23:21:27.886139 inbound c-piybhjuxiztexrj7kywqig1 \N 202 3 15 \N 1 \N \N
2019-07-15 23:21:00.32514+00 2019-07-15 23:21:29.818037+00 736 1 Phone number for app user Soldol007 completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-15 23:21:00.32464 2019-07-15 23:21:29.817335 outbound c-ctqf7w6mhfjxoiphybi4sg1 \N 202 3 10 \N 1 \N \N
2019-07-31 18:31:27.344401+00 2019-07-31 18:31:40.001694+00 815 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 13 2019-07-31 18:31:27.343228 2019-07-31 18:31:40.000308 inbound CA50915212e2ee47932815b061acc62244 \N 215 11 10 \N 0 3.18902111053466797 \N
2019-07-16 00:32:11.744443+00 2019-07-16 00:32:22.270232+00 737 1 Phone number for app user Soldol007 completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-16 00:32:11.743268 2019-07-16 00:32:22.269306 inbound c-alvwn4qymzbc3s6i74asjt1 \N 202 3 10 \N 1 \N \N
2019-07-31 19:34:05.020038+00 2019-07-31 19:34:17.949828+00 821 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 13 2019-07-31 19:34:05.018595 2019-07-31 19:34:17.946858 inbound CAb2148c38caf73c5ea5c7fc885a431003 \N 215 11 10 \N 0 3.55906987190246582 \N
2019-07-16 00:53:05.973159+00 2019-07-16 00:53:32.22184+00 745 1 Phone number for app user Soldol007 completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-16 00:53:05.972627 2019-07-16 00:53:32.221331 outbound c-saqlef2w3cv27gf4wnezcd1 \N 202 3 15 \N 1 \N \N
2019-07-31 19:45:38.414135+00 2019-07-31 19:45:51.206152+00 825 1 Bong Ping missed new lead Henry BoldEagle +17739699892 +13367394103 13 2019-07-31 19:45:38.412918 2019-07-31 19:45:51.203449 inbound CAd4489e1be9036f0dd6725c67fd356212 \N 215 \N 10 \N 0 \N \N
2019-07-16 00:34:51.842981+00 2019-07-16 00:35:11.226164+00 738 1 Phone number for app user Soldol007 completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-16 00:34:51.84192 2019-07-16 00:35:11.22526 outbound c-fn5oke72kry77sqk3clj4m1 \N 202 3 10 \N 1 \N \N
2019-07-16 00:39:48.542588+00 2019-07-16 00:40:16.55155+00 739 1 Phone number for app user Soldol007 missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-16 00:39:48.541151 2019-07-16 00:40:16.55052 inbound c-n5skxi4kix5dchhkco7ea6a \N 202 3 10 \N 1 \N \N
2019-08-01 17:05:09.932217+00 2019-08-01 17:05:31.034566+00 833 1 Phone number for app user dockerPro ringing new lead Henry CHICAGO, IL BoldEagle +17739699892 +13127618003 60 2019-08-01 17:05:09.929925 \N inbound c-i2umdnnytl3svufadfrynkq \N 216 \N 10 \N 0 \N \N
2019-08-23 22:27:29.301889+00 2019-08-23 22:27:47.943315+00 845 1 Phone number for app user jsmorgan completed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-23 22:27:29.300745 2019-08-23 22:27:41.058561 outbound c-irre2zmmfmihchxzycnvk71 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/845_recording_004d1bd97e2548a5ba8061be3ed159ae \N 217 3 5 \N 1 \N \N
2019-07-16 00:41:24.768142+00 2019-07-16 00:42:12.628587+00 740 1 Phone number for app user Soldol007 completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-16 00:41:24.76762 2019-07-16 00:42:12.627921 outbound c-ne32lo2gj2evzjxyofvjwf1 \N 202 3 10 \N 1 \N \N
2019-08-01 19:24:13.693074+00 2019-08-01 19:24:22.833556+00 837 1 Phone number for app user dockerPro missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +13127618003 60 2019-08-01 19:24:13.691741 \N inbound c-skkpsygpeviknsecdmpn3wa https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/837_recording_f4f1201928a84cde96f8502bb857dfbe \N 216 \N 10 \N 0 \N \N
2019-07-16 00:44:42.607473+00 2019-07-16 00:44:49.186994+00 741 1 Phone number for app user Soldol007 missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-16 00:44:42.606176 2019-07-16 00:44:49.186069 inbound c-poiroivf7p257lr3dyyecvq \N 202 3 10 \N 1 \N \N
2019-08-23 22:26:04.362501+00 2019-08-23 22:26:05.656439+00 844 1 Phone number for app user jsmorgan missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-23 22:26:04.359843 \N inbound c-gcxq3ij7fjgn3yfrg6p7yby \N 217 \N 5 \N 0 \N \N
2019-07-16 00:46:08.520868+00 2019-07-16 00:46:14.239624+00 742 1 Phone number for app user Soldol007 missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-16 00:46:08.520348 2019-07-16 00:46:14.239033 inbound c-bnx7a53ln3w3djyeewbowhy \N 202 3 10 \N 1 \N \N
2019-07-16 00:47:12.088527+00 2019-07-16 00:47:25.779345+00 743 1 Phone number for app user Soldol007 ringing new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-16 00:47:12.086969 \N outbound c-megl2abovbjnv524p53xosa \N 202 \N 10 \N 0 \N \N
2019-07-16 00:52:02.290436+00 2019-07-16 00:52:30.601135+00 744 1 Phone number for app user Soldol007 completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-16 00:52:02.289889 2019-07-16 00:52:30.600243 outbound c-apia7466cncjmbheydqm5u1 \N 202 3 10 \N 1 \N \N
2019-07-16 00:56:18.801907+00 2019-07-16 00:56:40.205271+00 746 1 Phone number for app user Soldol007 completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-16 00:56:18.800796 2019-07-16 00:56:33.892525 inbound c-r4umys7f67ithohumfwgm71 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/746_recording_7054ad75ab604e0aa222af3e503c0731 \N 202 3 15 \N 1 \N \N
2019-07-16 00:58:29.970931+00 2019-07-16 00:58:52.861526+00 747 1 Phone number for app user Soldol007 completed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-16 00:58:29.970393 2019-07-16 00:58:50.15539 outbound c-2n7joj5htqe27hqxjumzvc1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/747_recording_f88a98afbda9416383fc55c544d69711 \N 202 3 15 \N 1 \N \N
2019-08-23 22:34:00.505681+00 2019-08-23 22:34:13.03036+00 847 1 Phone number for app user jsmorgan completed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-23 22:34:00.503461 2019-08-23 22:34:13.02927 inbound c-goesu6pn2etli7qetyahg41 \N 218 1 5 \N 1 \N \N
2019-07-16 19:09:23.223816+00 2019-07-16 19:09:37.218204+00 750 1 Phone number for app user CoCoButter completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-16 19:09:23.222573 2019-07-16 19:09:37.217311 outbound c-5fvrkpi2qfstdaucaruxa71 \N 204 3 10 \N 1 \N \N
2019-07-16 01:00:18.481188+00 2019-07-16 01:01:04.252028+00 748 1 Phone number for app user Soldol007 missed new lead HENAK,RYAN +12064327364 +18722217507 60 2019-07-16 01:00:18.48012 2019-07-16 01:00:44.591338 inbound c-3ttd2kqkbjdtvzengtze4ty https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/748_recording_ec8fff9ee5a34f0eaaeac000b575f9ef \N 202 3 15 \N 1 \N \N
2019-07-16 19:08:42.09195+00 2019-07-16 19:08:50.344981+00 749 1 Phone number for app user CoCoButter ringing new lead Henry CHICAGO, IL BoldEagle +17739699892 +18722217507 60 2019-07-16 19:08:42.090866 \N outbound c-cddolcdcwqfho5y6qrrjkoy \N 204 \N 10 \N 0 \N \N
2019-07-02 20:16:25.320824+00 2019-07-02 20:16:40.853802+00 606 1 Phone number for app user fleego missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-02 20:16:25.319617 2019-07-02 20:16:36.226161 inbound c-ek7z3ookprea34mvyqayc61 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/606_recording_c8d6f837d6da44b5a185fb53a92063b6 \N 224 3 10 \N 1 \N \N
2019-08-23 23:19:57.00438+00 2019-08-23 23:19:59.368477+00 883 1 Phone number for app user jsmorgan blocked new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-23 23:19:57.00301 \N inbound c-h2acu2am6snf5uloknwhp2a \N 218 \N 5 \N 0 \N \N
2019-08-23 23:21:36.535854+00 2019-08-23 23:21:37.818133+00 884 1 Phone number for app user jsmorgan blocked new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-23 23:21:36.535298 \N inbound c-5jqqignybsjpxc7jlryrbni \N 218 \N 5 \N 0 \N \N
2019-07-17 01:04:32.526633+00 2019-07-17 01:04:41.087118+00 752 1 Testing Phone Number missed new lead +17378742833 +13367394103 9 2019-07-17 01:04:32.525118 2019-07-17 01:04:41.051522 inbound CA13bff4260135d02c33e078848033959a \N 205 \N 17 \N 0 \N \N
2019-07-31 18:34:08.535214+00 2019-07-31 18:34:20.298474+00 816 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 12 2019-07-31 18:34:08.533867 2019-07-31 18:34:20.295223 inbound CAb775df44fe3c5afa7867ec81911de8da \N 215 11 10 \N 0 3.24728012084960938 \N
2019-07-18 16:19:44.837938+00 2019-07-18 16:20:04.121353+00 753 1 Testing Local Number completed new lead Brian muhammad rasool May +17732909650 +12063399096 19 2019-07-18 16:19:44.836393 2019-07-18 16:20:04.115718 inbound CA35a182330c2a51a286463c4ebb105783 \N 206 5 5 \N 0 5.24579906463623047 \N
2019-07-31 19:37:28.440883+00 2019-07-31 19:37:43.695866+00 822 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 15 2019-07-31 19:37:28.439657 2019-07-31 19:37:43.692388 inbound CA2940b13e13e46a984b77a98eac85dfb7 \N 215 11 10 \N 0 3.21423006057739258 \N
2019-08-01 16:34:53.195333+00 2019-08-01 16:34:54.389366+00 827 1 Phone number for app user dockerPro ringing new lead Henry CHICAGO, IL BoldEagle +17739699892 +13127618003 60 2019-08-01 16:34:53.194125 \N inbound c-jfpcvhhuycu7uvvjlrlzrvq \N 216 \N 10 \N 0 \N \N
2019-07-18 16:28:25.853901+00 2019-07-18 16:28:50.254793+00 754 1 Testing Local Number completed new lead Brian muhammad rasool May +17732909650 +12063399096 24 2019-07-18 16:28:25.853006 2019-07-18 16:28:50.248549 inbound CA0c8a6ff4201a0fcb9c71d21e2842cfbf \N 206 5 5 \N 0 5.48899698257446289 \N
2019-08-01 16:32:42.110972+00 2019-08-01 16:32:53.936169+00 826 1 Phone number for app user dockerPro completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +13127618003 60 2019-08-01 16:32:42.109845 2019-08-01 16:32:53.933472 inbound c-iqmvayfdrdyqc4qxs36z4z1 \N 216 11 10 \N 1 \N \N
2019-07-18 16:30:03.859883+00 2019-07-18 16:30:11.271004+00 755 1 Testing Local Number missed new lead Brian muhammad rasool May +17732909650 +12063399096 7 2019-07-18 16:30:03.858428 2019-07-18 16:30:11.242992 inbound CA247130d209b9b9f7ab68e4d013312866 \N 206 \N 5 \N 0 \N \N
2019-07-18 17:27:56.391384+00 2019-07-18 17:28:09.301197+00 756 1 Testing Local Number missed new lead Brian muhammad rasool May +17732909650 +12063399096 13 2019-07-18 17:27:56.390194 2019-07-18 17:28:09.280265 inbound CAd6a04722138d96bef8509f6ab84e3920 \N 206 \N 5 \N 0 \N \N
2019-08-01 17:10:58.521049+00 2019-08-01 17:11:16.427993+00 834 1 Phone number for app user dockerPro ringing new lead Henry CHICAGO, IL BoldEagle +17739699892 +13127618003 60 2019-08-01 17:10:58.519011 \N inbound c-upe4wbkt7wnjd4kgmtrg6hy https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/834_recording_70e8c05158dd44c082641eccc772011f \N 216 \N 10 \N 0 \N \N
2019-07-18 17:29:44.498455+00 2019-07-18 17:29:58.624751+00 757 1 Testing Local Number missed new lead Brian muhammad rasool May +17732909650 +12063399096 14 2019-07-18 17:29:44.496866 2019-07-18 17:29:58.583187 inbound CA8049a1ff5816f507cabdc1f2de74616f \N 206 \N 5 \N 0 \N \N
2019-08-01 19:27:33.610175+00 2019-08-01 19:27:35.007008+00 838 1 Phone number for app user dockerPro missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +13127618003 60 2019-08-01 19:27:33.608967 \N inbound c-ojj2nt45bnbwqjigmjjbiti \N 216 \N 10 \N 0 \N \N
2019-07-18 17:36:34.99119+00 2019-07-18 17:36:51.136988+00 758 1 Testing Local Number missed new lead Brian muhammad rasool May +17732909650 +12063399096 16 2019-07-18 17:36:34.989599 2019-07-18 17:36:51.119027 inbound CA9fb461367ec4bf1703ca0868bdcd3ac5 \N 206 \N 5 \N 0 \N \N
2019-07-18 17:42:01.971717+00 2019-07-18 17:42:08.98983+00 759 1 Testing Local Number missed new lead Brian muhammad rasool May +17732909650 +12063399096 7 2019-07-18 17:42:01.969758 2019-07-18 17:42:08.965194 inbound CA6cd0370fcfe8944c973d30f475b7fa64 \N 206 \N 5 \N 0 \N \N
2019-07-18 17:42:21.705465+00 2019-07-18 17:42:34.476251+00 760 1 Testing Local Number missed new lead Brian muhammad rasool May +17732909650 +12063399096 13 2019-07-18 17:42:21.704384 2019-07-18 17:42:34.473761 inbound CAa900c7b92d85428293970e64b9a95f22 \N 206 \N 5 \N 0 \N \N
2019-07-18 17:43:14.687419+00 2019-07-18 17:43:28.216098+00 761 1 Testing Local Number missed new lead Brian muhammad rasool May +17732909650 +12063399096 14 2019-07-18 17:43:14.686149 2019-07-18 17:43:28.199993 inbound CAd621325533c51b96ada23aba2fa730b3 \N 206 \N 5 \N 0 \N \N
2019-07-18 18:08:38.68091+00 2019-07-18 18:08:57.777401+00 762 1 Testing Local Number missed new lead Brian muhammad rasool May +17732909650 +12063399096 19 2019-07-18 18:08:38.679673 2019-07-18 18:08:57.758101 inbound CA061605f4345ba2d1edc82c97b19d0c78 \N 206 \N 5 \N 0 \N \N
2019-07-18 18:09:54.289915+00 2019-07-18 18:10:10.229207+00 763 1 Testing Local Number missed new lead Brian muhammad rasool May +17732909650 +12063399096 16 2019-07-18 18:09:54.288537 2019-07-18 18:10:10.207749 inbound CA506768b57638dfa56dc8f8d892326d21 \N 206 \N 5 \N 0 \N \N
2019-07-18 18:47:17.15382+00 2019-07-18 18:47:28.706001+00 764 1 Testing Local Number missed new lead Brian muhammad rasool May +17732909650 +12063399096 12 2019-07-18 18:47:17.152758 2019-07-18 18:47:28.690454 inbound CAa442659dff1acd7b00aa86965a4dbdbe \N 206 \N 5 \N 0 \N \N
2019-07-18 18:52:02.404424+00 2019-07-18 18:52:18.189938+00 765 1 Testing Local Number missed new lead Brian muhammad rasool May +17732909650 +12063399096 16 2019-07-18 18:52:02.403236 2019-07-18 18:52:18.174238 inbound CA3af9e1cd1e3b1eabd349c4c68186b95a \N 206 \N 5 \N 0 \N \N
2019-07-18 18:54:55.715259+00 2019-07-18 18:55:10.383208+00 766 1 Testing Local Number missed new lead Brian muhammad rasool May +17732909650 +12063399096 15 2019-07-18 18:54:55.714162 2019-07-18 18:55:10.365006 inbound CA52461092fc39c2f64d1a8673019429c9 \N 206 \N 5 \N 0 \N \N
2019-07-29 20:02:55.128722+00 2019-07-29 20:03:18.290436+00 777 1 WH Number completed new lead Brian muhammad rasool May +17732909650 +13367394103 23 2019-07-29 20:02:55.126804 2019-07-29 20:03:18.288859 inbound CA6268c089e7b9e2786e3b73c68bbb02df \N 212 5 5 \N 0 4.00469517707824707 \N
2019-07-29 19:37:28.703135+00 2019-07-29 19:37:54.650676+00 775 1 WH Number completed new lead Brian muhammad rasool May +17732909650 +13367394103 26 2019-07-29 19:37:28.70237 2019-07-29 19:37:54.648111 inbound CA9f00857b487b4777d9dc707079e13ae5 \N 212 5 5 \N 0 5.2980048656463623 \N
2019-07-29 19:53:12.863687+00 2019-07-29 19:53:37.225517+00 776 1 WH Number completed new lead Brian muhammad rasool May +17732909650 +13367394103 24 2019-07-29 19:53:12.863028 2019-07-29 19:53:37.224125 inbound CAaef7e6922c27a76131b690a4df8b8f9f \N 212 5 5 \N 0 6.5255739688873291 \N
2019-07-29 18:50:48.456562+00 2019-07-29 18:50:48.533346+00 769 1 WeBHook Tester ringing new lead Brian muhammad rasool May +17732909650 +13367394103 \N 2019-07-29 18:50:48.455453 \N inbound CA0eb4fcb202af2eb40ad619dce1b1d639 \N \N \N 5 \N 0 \N \N
2019-07-29 18:49:16.095523+00 2019-07-29 18:49:24.693604+00 768 1 WeBHook Tester missed new lead Brian muhammad rasool May +17732909650 +13367394103 9 2019-07-29 18:49:16.094205 2019-07-29 18:49:24.675984 inbound CAfd98a0175c75ea39260cfb4360b33e20 \N \N \N 5 \N 0 \N \N
2019-07-29 18:47:51.148861+00 2019-07-29 18:48:05.059914+00 767 1 WeBHook Tester missed new lead Brian muhammad rasool May +17732909650 +13367394103 14 2019-07-29 18:47:51.147303 2019-07-29 18:48:05.031198 inbound CA2407dc093edee25b0289d7db26b81846 \N \N \N 5 \N 0 \N \N
2019-07-29 19:36:06.780147+00 2019-07-29 19:36:10.623107+00 774 1 Webhooker Number missed new lead Brian muhammad rasool May +17732909650 +13367394103 4 2019-07-29 19:36:06.778915 2019-07-29 19:36:10.604383 inbound CA7c2ae5b9b04623ecd1d38a08250e300a \N \N \N 5 \N 0 \N \N
2019-07-29 19:32:37.923635+00 2019-07-29 19:32:45.974142+00 773 1 Webhooker Number missed new lead Brian muhammad rasool May +17732909650 +13367394103 8 2019-07-29 19:32:37.922286 2019-07-29 19:32:45.956006 inbound CA05a7a1f86032997a52bfdcdb7541d817 \N \N \N 5 \N 0 \N \N
2019-07-29 19:09:57.466396+00 2019-07-29 19:10:17.755154+00 772 1 Webhooker Number completed new lead Brian muhammad rasool May +17732909650 +13367394103 20 2019-07-29 19:09:57.465716 2019-07-29 19:10:17.754062 inbound CAa00fef613c7118b7b1c51d1b62160e9d \N \N 5 5 \N 0 3.75126099586486816 \N
2019-07-29 19:08:29.719438+00 2019-07-29 19:08:58.291607+00 771 1 Webhooker Number completed new lead Brian muhammad rasool May +17732909650 +13367394103 29 2019-07-29 19:08:29.717476 2019-07-29 19:08:58.289092 inbound CA1b97af246b39be4e320c1f3004cf7825 \N \N 5 5 \N 0 4.87918496131896973 \N
2019-07-29 20:09:07.613535+00 2019-07-29 20:09:09.749935+00 779 1 \N missed new lead Brian May hv13@hotmail.com +17732909650 +13367394103 \N 2019-07-29 20:09:07.612553 \N outbound \N 212 5 5 \N 0 \N \N
2019-07-31 18:36:22.856037+00 2019-07-31 18:36:38.312265+00 817 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 15 2019-07-31 18:36:22.854878 2019-07-31 18:36:38.308055 inbound CA20c3bb90865c351298a6e4077c0641b5 \N 215 11 10 \N 0 6.01774096488952637 \N
2019-08-23 22:38:30.943518+00 2019-08-23 22:38:32.186742+00 849 1 Phone number for app user jsmorgan missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-23 22:38:30.942433 \N inbound c-hykbnjubwpc77jwvsox5yaq \N 218 \N 5 \N 0 \N \N
2019-07-31 18:43:15.80864+00 2019-07-31 18:43:43.020053+00 818 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 27 2019-07-31 18:43:15.807943 2019-07-31 18:43:43.018683 inbound CA6d9027476b027ee1cf577947dabee76b \N 215 11 10 \N 0 4.20702600479125977 \N
2019-07-31 19:38:40.890722+00 2019-07-31 19:38:56.731999+00 823 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 16 2019-07-31 19:38:40.889524 2019-07-31 19:38:56.728032 inbound CA05592260ef9ad311b0a8568773a7821a \N 215 11 10 \N 0 3.22961616516113281 \N
2019-08-01 16:44:14.658144+00 2019-08-01 16:44:15.83654+00 828 1 Phone number for app user dockerPro ringing new lead Henry CHICAGO, IL BoldEagle +17739699892 +13127618003 60 2019-08-01 16:44:14.656748 \N inbound c-dfy6yw2v5dsamuwfprwifgy \N 216 \N 10 \N 0 \N \N
2019-08-01 18:52:50.564316+00 2019-08-01 18:53:05.788515+00 835 1 Phone number for app user dockerPro missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +13127618003 60 2019-08-01 18:52:50.562872 \N inbound c-j37lmp4bczsn6cpqywelssa https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/835_recording_d762ec808cde400dbcf0d34f293a8bd4 \N 216 \N 10 \N 0 \N \N
2019-08-01 19:39:38.208352+00 2019-08-01 19:39:42.562723+00 839 1 Phone number for app user dockerPro blocked new lead Henry CHICAGO, IL BoldEagle +17739699892 +13127618003 60 2019-08-01 19:39:38.206371 \N inbound c-4bfiszmfr7pnen52ntyc3cq \N 216 \N 10 \N 0 \N \N
2019-08-01 19:41:18.395588+00 2019-08-01 19:41:33.30544+00 840 1 Phone number for app user dockerPro missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +13127618003 60 2019-08-01 19:41:18.394493 \N inbound c-seem63vzurmuobny42r2juy https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/840_recording_69489970819244a19963b4302e8e8a59 \N 216 \N 10 \N 0 \N \N
2019-08-23 22:15:40.194063+00 2019-08-23 22:16:04.433778+00 841 1 Phone number for app user jsmorgan completed new lead Brian VERMAAK,HERMANU May +17732909650 +13127618003 60 2019-08-23 22:15:40.192684 2019-08-23 22:16:04.430695 inbound c-o2tnho3avyidpguedvz3ht1 \N 217 1 5 \N 1 \N \N
2019-08-23 22:37:43.734872+00 2019-08-23 22:37:45.127158+00 848 1 Phone number for app user jsmorgan missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-23 22:37:43.732575 \N inbound c-a3x6govvuhlh4gczc43vpwa \N 218 \N 5 \N 0 \N \N
2019-08-23 23:23:14.460023+00 2019-08-23 23:23:28.684929+00 885 1 Phone number for app user jsmorgan completed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-23 23:23:14.458448 2019-08-23 23:23:23.013571 inbound c-g7kmkswy5riziy7qyggmnt1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/885_recording_b8e84ad868af49948642bcd96b2f9806 \N 218 2 5 \N 1 \N \N
2019-07-29 20:15:13.214951+00 2019-07-29 20:15:15.476708+00 780 1 \N missed new lead Brian May hv13@hotmail.com +17732909650 +13367394103 \N 2019-07-29 20:15:13.212951 \N outbound \N 212 5 5 \N 0 \N \N
2019-07-29 20:32:39.881896+00 2019-07-29 20:36:11.544253+00 781 1 WH Number completed new lead Brian muhammad rasool May +17732909650 +13367394103 25 2019-07-29 20:32:39.880558 2019-07-29 20:33:05.172745 inbound CA88b1c39b0b3d8c3f66e2e1878011aaef https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/781_recording_cb99b323e86c46bdaab1113a2138ddcf \N 212 5 5 \N 0 3.88868093490600586 \N
2019-07-29 21:50:17.660284+00 2019-07-29 21:50:17.730666+00 786 1 WH Number ringing new lead Brian muhammad rasool May +17732909650 +13367394103 \N 2019-07-29 21:50:17.658081 \N inbound CAe112f8fdbf5ef6944f90b177fbc2a80e \N 212 \N 5 \N 0 \N \N
2019-07-29 20:46:01.099357+00 2019-07-29 20:49:29.898447+00 782 1 WH Number completed new lead Brian muhammad rasool May +17732909650 +13367394103 26 2019-07-29 20:46:01.098196 2019-07-29 20:46:26.893358 inbound CAeaaef46dfcdc04c48e3ead206415f12c https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/782_recording_decebf87f03348249da512269b0ba228 \N 212 5 5 \N 0 5.43072390556335449 \N
2019-07-29 20:47:16.680614+00 2019-07-29 20:50:48.229422+00 783 1 WH Number completed new lead Brian muhammad rasool May +17732909650 +13367394103 28 2019-07-29 20:47:16.680048 2019-07-29 20:47:45.16513 inbound CAeec33201b12b013c31639bbe686649f8 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/783_recording_9fbde051de584226a89a614868a968e1 \N 212 5 5 \N 0 5.88744091987609863 \N
2019-07-29 21:39:07.334818+00 2019-07-29 21:42:40.796507+00 784 1 WH Number completed new lead Brian muhammad rasool May +17732909650 +13367394103 28 2019-07-29 21:39:07.333456 2019-07-29 21:39:35.205197 inbound CAeef115c2a12dd84466ffb880ddd056ed https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/784_recording_0ac91dc3fa9d4cb08993c05af1886a6c \N 212 5 5 \N 0 5.09487605094909668 \N
2019-07-29 21:50:47.871092+00 2019-07-29 21:50:53.270253+00 787 1 WH Number missed new lead Brian muhammad rasool May +17732909650 +13367394103 5 2019-07-29 21:50:47.869395 2019-07-29 21:50:53.253435 inbound CA54f8f582dfac08b6d665f20ad336970d \N 212 \N 5 \N 0 \N \N
2019-07-29 21:46:04.588662+00 2019-07-29 21:46:28.143705+00 785 1 WH Number completed new lead Brian muhammad rasool May +17732909650 +13367394103 24 2019-07-29 21:46:04.587504 2019-07-29 21:46:28.141945 inbound CAd90d94fab5938fb8c45777e2608194a1 \N 212 5 5 \N 0 6.64901304244995117 \N
2019-07-29 21:57:19.612496+00 2019-07-29 21:57:44.729344+00 788 1 BigBoy Number missed new lead Brian muhammad rasool May +17732909650 +13367394103 25 2019-07-29 21:57:19.611267 2019-07-29 21:57:44.709027 inbound CAbe8733a1bf161cea0a06468a27d33928 \N 213 \N 5 \N 0 \N \N
2019-07-29 21:58:23.936419+00 2019-07-29 21:58:48.107464+00 789 1 BigBoy Number missed new lead Brian muhammad rasool May +17732909650 +13367394103 24 2019-07-29 21:58:23.935194 2019-07-29 21:58:48.085417 inbound CAb7fa3884d8a53a74b4cb23180c166b1f \N 213 \N 5 \N 0 \N \N
2019-07-29 22:35:16.961429+00 2019-07-29 22:39:06.764867+00 790 1 BigBoy Number missed new lead Brian muhammad rasool May +17732909650 +13367394103 45 2019-07-29 22:35:16.960618 2019-07-29 22:36:01.554625 inbound CA2587301f0f45c690d4eff5976d775b8c https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/790_recording_8d96d3361ac34ea0a95856cc29c49ae6 \N 213 \N 5 \N 0 \N \N
2019-07-29 22:45:55.8771+00 2019-07-29 22:49:39.320206+00 791 1 BigBoy Number missed new lead Brian muhammad rasool May +17732909650 +13367394103 41 2019-07-29 22:45:55.875855 2019-07-29 22:46:36.710087 inbound CAda305f5bc0f67ed1154b184b15a4bc16 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/791_recording_e08da16e7052425596f654a3547eed92 \N 213 \N 5 \N 0 \N \N
2019-07-29 22:47:21.032262+00 2019-07-29 22:51:06.748421+00 792 1 BigBoy Number missed new lead Brian muhammad rasool May +17732909650 +13367394103 39 2019-07-29 22:47:21.03113 2019-07-29 22:47:59.900718 inbound CA400dc86b672517e5787fee30266388a0 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/792_recording_b92b348ca6324a489e9007049e735d82 \N 213 \N 5 \N 0 \N \N
2019-07-29 22:53:16.864385+00 2019-07-29 22:53:30.836256+00 793 1 BigBoy Number completed new lead Brian muhammad rasool May +17732909650 +13367394103 14 2019-07-29 22:53:16.863178 2019-07-29 22:53:30.834922 inbound CA19f876b4fd6650bff765544d3448d8f4 \N 213 5 5 \N 0 4.86993908882141113 \N
2019-07-30 17:43:29.938996+00 2019-07-30 17:43:38.406787+00 797 1 BigBoy Number missed new lead Henry BoldEagle +17739699892 +13367394103 8 2019-07-30 17:43:29.938294 2019-07-30 17:43:38.379601 inbound CAd7053802d451e7422940673dc7178926 \N 213 \N 10 \N 0 \N \N
2019-07-29 22:57:43.504985+00 2019-07-29 22:58:07.915889+00 794 1 BigBoy Number completed new lead Henry BoldEagle +17739699892 +13367394103 24 2019-07-29 22:57:43.503767 2019-07-29 22:58:07.912911 inbound CA8e3223e887a640eb13052828528aaea8 \N 213 11 10 \N 0 8.80320501327514648 \N
2019-07-29 23:17:53.350172+00 2019-07-29 23:18:07.171805+00 795 1 BigBoy Number missed new lead Henry BoldEagle +17739699892 +13367394103 14 2019-07-29 23:17:53.347516 2019-07-29 23:18:07.151833 inbound CA3b526afffd43a7ffe61e2becb2689c00 \N 213 \N 10 \N 0 \N \N
2019-07-30 17:38:50.990126+00 2019-07-30 17:39:27.279506+00 796 1 BigBoy Number completed new lead Henry BoldEagle +17739699892 +13367394103 36 2019-07-30 17:38:50.988673 2019-07-30 17:39:27.276861 inbound CA68b0414a1cb5da4095d928515c6d755e \N 213 11 10 \N 0 9.55282402038574219 \N
2019-07-30 19:59:43.829046+00 2019-07-30 19:59:50.562062+00 798 1 Sunside Up missed new lead Henry BoldEagle +17739699892 +13367394103 7 2019-07-30 19:59:43.827164 2019-07-30 19:59:50.522569 inbound CA949141363f0b1c18b3bd9c8471124677 \N 214 \N 10 \N 0 \N \N
2019-07-30 20:00:14.105819+00 2019-07-30 20:04:03.131304+00 799 1 Sunside Up missed new lead Henry BoldEagle +17739699892 +13367394103 40 2019-07-30 20:00:14.104184 2019-07-30 20:00:54.05333 inbound CAb2a3fbc6e4bcd2e3104aa45bf77135bb https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/799_recording_295574d9fc024375b99e8a98c5e1a5d8 \N 214 \N 10 \N 0 9.7769930362701416 \N
2019-07-31 17:44:17.886332+00 2019-07-31 17:45:01.622305+00 800 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 44 2019-07-31 17:44:17.885081 2019-07-31 17:45:01.619231 inbound CA55cd3cba20bf005a68287e5bbc6efd95 \N 215 11 10 \N 0 12.7508687973022461 \N
2019-07-31 17:48:06.316057+00 2019-07-31 17:48:29.961783+00 801 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 24 2019-07-31 17:48:06.314585 2019-07-31 17:48:29.960328 inbound CAf0fb76f99c179834297a059065458b57 \N 215 11 10 \N 0 4.69436883926391602 \N
2019-07-31 17:54:23.657237+00 2019-07-31 17:54:42.109675+00 802 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 18 2019-07-31 17:54:23.656072 2019-07-31 17:54:42.107224 inbound CA8942ab58c085745bbd5218dddb431267 \N 215 11 10 \N 0 4.69480109214782715 \N
2019-07-31 18:05:12.790859+00 2019-07-31 18:05:30.184437+00 804 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 17 2019-07-31 18:05:12.789671 2019-07-31 18:05:30.182386 inbound CA70d763482d30f20abda948b4da101a9a \N 215 11 10 \N 0 3.5790247917175293 \N
2019-07-31 18:02:49.02086+00 2019-07-31 18:03:09.069882+00 803 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 20 2019-07-31 18:02:49.019608 2019-07-31 18:03:09.067987 inbound CA66f0bbcbaaa6b79339c3d37d08038c07 \N 215 11 10 \N 0 4.81523990631103516 \N
2019-07-31 18:07:24.112758+00 2019-07-31 18:07:41.762648+00 805 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 18 2019-07-31 18:07:24.111657 2019-07-31 18:07:41.759304 inbound CA7cccd6ba946dcfb4d3d6f393fa04b6eb \N 215 11 10 \N 0 5.14902997016906738 \N
2019-07-31 18:09:17.096658+00 2019-07-31 18:09:27.8435+00 806 1 Bong Ping in-progress new lead Henry BoldEagle +17739699892 +13367394103 \N 2019-07-31 18:09:17.095317 \N inbound CA9c6ad32e324418e9c4eb64b2f7faa60d \N 215 11 10 \N 0 5.14054298400878906 \N
2019-07-31 18:11:14.117697+00 2019-07-31 18:11:29.340911+00 807 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 15 2019-07-31 18:11:14.116474 \N inbound CA842224890c22506e58032722915b4f39 \N 215 11 10 \N 0 3.60996508598327637 \N
2019-07-31 18:13:29.552158+00 2019-07-31 18:13:45.259285+00 808 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 16 2019-07-31 18:13:29.550947 2019-07-31 18:13:45.257591 inbound CA4bc56c78acdcf18834c78dc5b2b893b7 \N 215 11 10 \N 0 3.44650816917419434 \N
2019-07-31 18:15:44.612798+00 2019-07-31 18:15:59.727946+00 809 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 15 2019-07-31 18:15:44.611625 2019-07-31 18:15:59.72632 inbound CA05b864c63df1beaa4b7c5d8f89b4f334 \N 215 11 10 \N 0 \N \N
2019-07-31 19:28:00.253154+00 2019-07-31 19:28:25.096275+00 819 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 25 2019-07-31 19:28:00.250431 2019-07-31 19:28:25.093049 inbound CAed89ea0c8da4f15e2045d5cafaa128dc \N 215 11 10 \N 0 5.99627089500427246 \N
2019-07-31 18:17:31.454001+00 2019-07-31 18:17:44.799552+00 810 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 13 2019-07-31 18:17:31.452867 2019-07-31 18:17:44.791503 inbound CA89c2d15722e12657baaf42c57c97b205 \N 215 11 10 \N 0 3.39149212837219238 \N
2019-07-31 19:41:50.021302+00 2019-07-31 19:42:19.777277+00 824 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 30 2019-07-31 19:41:50.019984 2019-07-31 19:42:19.773985 inbound CAcc7fc7b2d0cf945bc0c7abdade0cae32 \N 215 11 10 \N 0 8.69700908660888672 \N
2019-07-31 18:24:57.212377+00 2019-07-31 18:25:16.52297+00 811 1 Bong Ping completed new lead Henry BoldEagle +17739699892 +13367394103 19 2019-07-31 18:24:57.211189 2019-07-31 18:25:16.521315 inbound CAc6a83eabd9e8afc946ac3086d8f177fb \N 215 11 10 \N 0 3.22201180458068848 \N
2019-08-23 22:30:37.934459+00 2019-08-23 22:30:39.13881+00 846 1 Phone number for app user jsmorgan missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-23 22:30:37.933219 \N inbound c-563zjhq2xtbkvbya2acyv7q \N 217 \N 5 \N 0 \N \N
2019-08-01 16:54:14.329589+00 2019-08-01 16:54:15.522444+00 829 1 Phone number for app user dockerPro missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +13127618003 60 2019-08-01 16:54:14.327733 \N inbound c-4konnhp2xfl3c62mkkdniqi \N 216 \N 10 \N 0 \N \N
2019-08-01 16:56:47.54463+00 2019-08-01 16:56:58.599623+00 830 1 Phone number for app user dockerPro missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +13127618003 60 2019-08-01 16:56:47.542854 2019-08-01 16:56:58.597163 inbound c-mryfgh7ohasl6ycsmdipahi \N 216 11 10 \N 1 \N \N
2019-08-01 16:57:19.087047+00 2019-08-01 16:57:32.172855+00 831 1 Phone number for app user dockerPro completed new lead Henry CHICAGO, IL BoldEagle +17739699892 +13127618003 60 2019-08-01 16:57:19.086445 2019-08-01 16:57:32.170827 inbound c-nhqwko53a52lv77n2peydo1 \N 216 11 10 \N 1 \N \N
2019-08-01 16:59:45.226609+00 2019-08-01 17:00:01.601627+00 832 1 Phone number for app user dockerPro ringing new lead Henry CHICAGO, IL BoldEagle +17739699892 +13127618003 60 2019-08-01 16:59:45.225623 \N inbound c-bgfnwhubz3cnx7tq4po6l5i \N 216 \N 10 \N 0 \N \N
2019-08-26 23:39:16.826939+00 2019-08-26 23:39:48.398982+00 887 1 Phone number for app user jsmorgan completed new lead CUTLER,NORMAN +18473123318 +14123246220 60 2019-08-26 23:39:16.825281 2019-08-26 23:39:43.236525 inbound c-n5rxmnatfjukdcnetsbzja1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/887_recording_9db0f1e1176841fbb8dd09fe3f692146 \N 218 2 9 \N 1 \N \N
2019-08-01 19:22:12.109519+00 2019-08-01 19:22:29.005512+00 836 1 Phone number for app user dockerPro missed new lead Henry CHICAGO, IL BoldEagle +17739699892 +13127618003 60 2019-08-01 19:22:12.108469 \N inbound c-ewd4edfni7p7bgb5hdxov4q https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/836_recording_23edd3cd17f2488696af3424e251364f \N 216 \N 10 \N 0 \N \N
2019-08-23 22:41:52.578104+00 2019-08-23 22:41:53.723893+00 881 1 Phone number for app user jsmorgan missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-23 22:41:52.576838 \N inbound c-tjce33llbbcdcyvsakbp5ny \N 218 \N 5 \N 0 \N \N
2019-08-23 22:23:58.318191+00 2019-08-23 22:24:01.136377+00 842 1 Phone number for app user jsmorgan missed new lead Brian VERMAAK,HERMANU May +17732909650 +13127618003 60 2019-08-23 22:23:58.315556 \N inbound c-hmoz7spgq2p655jirmlyboq \N 217 \N 5 \N 0 \N \N
2019-08-23 22:24:32.901195+00 2019-08-23 22:24:34.076711+00 843 1 Phone number for app user jsmorgan missed new lead Brian VERMAAK,HERMANU May +17732909650 +13127618003 60 2019-08-23 22:24:32.89974 \N inbound c-mcf5b7p4csggsidvma2jxya \N 217 \N 5 \N 0 \N \N
2019-08-23 22:46:37.328902+00 2019-08-23 22:46:58.884822+00 882 1 Phone number for app user jsmorgan completed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-23 22:46:37.327615 2019-08-23 22:46:55.385752 inbound c-jvoom3frrs42ghdc5ctkrd1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/882_recording_a5c277635b5f4b409208c5ce12ba84a8 \N 218 2 5 \N 1 \N \N
2019-08-26 23:37:17.301018+00 2019-08-26 23:37:45.32675+00 886 1 Phone number for app user jsmorgan completed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-26 23:37:17.294087 2019-08-26 23:37:38.357169 inbound c-vvo6x62unjp7mb2znk3aig1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/886_recording_4d633c7d9e014281818f14d17888e3a3 \N 218 2 5 \N 1 \N \N
2019-08-26 23:43:25.104068+00 2019-08-26 23:43:44.760624+00 888 1 Phone number for app user jsmorgan completed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-26 23:43:25.101748 2019-08-26 23:43:41.885875 inbound c-dtnoianm3k6nytdcnfve7v1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/888_recording_15e9d52b8d5a45da8eccede3fe609f79 \N 218 2 5 \N 1 \N \N
2019-08-26 23:44:34.828556+00 2019-08-26 23:44:58.421854+00 889 1 Phone number for app user jsmorgan completed new lead CUTLER,NORMAN +18473123318 +14123246220 60 2019-08-26 23:44:34.824977 2019-08-26 23:44:55.492297 inbound c-aoo633er3vkgikc47levo51 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/889_recording_73ac023d62be4158894356c405311080 \N 218 2 9 \N 1 \N \N
2019-08-26 23:46:48.235081+00 2019-08-26 23:47:05.857367+00 890 1 Phone number for app user jsmorgan completed new lead CUTLER,NORMAN +18473123318 +14123246220 60 2019-08-26 23:46:48.232415 2019-08-26 23:47:02.355022 inbound c-3p26dmpj2oimy7a2orwkwr1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/890_recording_e58c5d0e96ef4781b94670663bec389a \N 218 2 9 \N 1 \N \N
2019-08-26 23:47:17.683841+00 2019-08-26 23:47:43.862436+00 891 1 Phone number for app user jsmorgan completed new lead CUTLER,NORMAN +18473123318 +14123246220 60 2019-08-26 23:47:17.679965 2019-08-26 23:47:40.102415 inbound c-z4visvkzd4q7svupbczgeg1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/891_recording_ae1582f00d4b4a7aa78569f6dfdd86fa \N 218 2 9 \N 1 \N \N
2019-06-28 23:44:34.743153+00 2019-06-28 23:45:03.117304+00 605 1 Phone number for app user fleego missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-06-28 23:44:34.742018 2019-06-28 23:45:03.116353 inbound c-izvylsaehrzols3aeygcpwq https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/605_recording_bfb071712c9d40cdab3f205dfd4cf674 \N 224 3 10 \N 1 \N \N
2019-07-02 20:32:47.313383+00 2019-07-02 20:33:15.279033+00 607 1 Phone number for app user fleego missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 60 2019-07-02 20:32:47.31218 2019-07-02 20:33:11.55508 inbound c-acbs4c7wg7qzg4bi6dqvfr1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/607_recording_67a8a3c63df2455ba053e22cd93cf276 \N 224 3 10 \N 1 \N \N
2019-08-30 15:58:13.227176+00 2019-08-30 15:58:58.033191+00 892 1 Phone number for app user jsmorgan missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-30 15:58:13.224844 2019-08-30 15:58:43.57856 inbound c-62pvtnzrvayh3tjavyntmca https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/892_recording_dbea0497aa1e4e2b94759497f49d0684 \N 224 2 5 \N 1 \N \N
2019-08-30 16:50:27.591759+00 2019-08-30 16:50:48.094431+00 893 1 Phone number for app user jsmorgan completed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-30 16:50:27.590316 2019-08-30 16:50:43.503345 inbound c-6x7mhf2sq3zrratva22tte1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/893_recording_44206ee4761e4e4fa15c5e7e8edb457f \N 224 2 5 \N 1 \N \N rec-uz2hezuzui3h3woaptzqldi
2019-08-30 19:13:53.799519+00 2019-08-30 19:14:30.496858+00 894 1 Phone number for app user ZoomO completed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-30 19:13:53.798486 2019-08-30 19:14:26.510722 inbound c-hanik2jg5ccirtf6vrai6o1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/894_recording_2404286dc500480d922745078d93e303 \N 225 2 5 \N 1 \N \N rec-4wexybrxcfzeqqurkbszzby
2019-08-30 19:17:08.687415+00 2019-08-30 19:17:19.143637+00 895 1 Phone number for app user ZoomO completed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-30 19:17:08.686353 2019-08-30 19:17:16.778594 inbound c-jq5cy3sg4neggedrr2zag31 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/895_recording_f0b6d573d20d40099f5e281d65996e3e \N 225 2 5 \N 1 \N \N rec-unftkfsujmhszhgcxi2zk2i
2019-08-30 19:18:43.523749+00 2019-08-30 19:19:20.136215+00 896 1 Phone number for app user ZoomO missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-30 19:18:43.523195 2019-08-30 19:19:07.57185 inbound c-dmyfqhszkljyeas2fuqlqkq https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/896_recording_8f2116ed5fc14a49992009b849707dd2 \N 225 2 5 \N 1 \N \N rec-6lbay7t3mbvjmym7z2k3qby
2019-09-02 15:50:45.454266+00 2019-09-02 15:50:46.746028+00 912 1 jsmorgan mobile number missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-09-02 15:50:45.451844 \N inbound c-y7hhnixlfjbdrccgauva2qq \N 226 \N 5 \N 0 \N \N
2019-08-30 19:23:50.485675+00 2019-08-30 19:24:04.673899+00 897 1 Phone number for app user ZoomO missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-30 19:23:50.484626 2019-08-30 19:24:04.672738 inbound c-2c6re4fzszhestvngfgdbqq \N 225 2 5 \N 1 \N \N
2019-08-30 23:15:47.372477+00 2019-08-30 23:16:04.8011+00 904 1 Phone number for app user Zappa completed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-30 23:15:47.371388 2019-08-30 23:15:59.268689 inbound c-73g3c4ch6o3ej56f2zyjff1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/904_recording_1f4964260f904569b2724b3615ed0a8d \N 226 2 5 \N 1 \N \N rec-r7gnxqfsadg5dtfwuaqpony
2019-08-30 19:26:06.604058+00 2019-08-30 19:26:19.918027+00 898 1 Phone number for app user ZoomO missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-30 19:26:06.602979 \N inbound c-ntp46xlapsdqvor3omkthti https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/898_recording_a1681eabfc3d4abaa8ee8cd73b528bf9 \N 225 \N 5 \N 0 \N \N rec-ogfs5mdcvvejhzhtx2n5ity
2019-08-30 23:06:28.160334+00 2019-08-30 23:06:34.465637+00 899 1 Phone number for app user Zappa ringing new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-30 23:06:28.15928 \N inbound c-rxdl7ucjg7huqvlxu2turgq \N 226 \N 5 \N 0 \N \N
2019-08-30 23:09:22.351833+00 2019-08-30 23:09:24.073652+00 900 1 Phone number for app user Zappa missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-30 23:09:22.350764 2019-08-30 23:09:24.072291 inbound c-i3zvozzo7tbm7rdtinjkxmy \N 226 2 5 \N 1 \N \N
2019-08-30 23:11:38.428552+00 2019-08-30 23:11:41.852264+00 901 1 Phone number for app user Zappa ringing new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-30 23:11:38.427522 \N inbound c-d3qa7dngxdawo7ochdwqgay \N 226 \N 5 \N 0 \N \N
2019-08-30 23:12:28.635432+00 2019-08-30 23:12:30.382559+00 902 1 Phone number for app user Zappa missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-30 23:12:28.634365 2019-08-30 23:12:30.38104 inbound c-nrw7obvzg3kisophixobvki \N 226 2 5 \N 1 \N \N
2019-08-30 23:13:31.569518+00 2019-08-30 23:13:33.059828+00 903 1 Phone number for app user Zappa missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-30 23:13:31.56823 2019-08-30 23:13:33.058855 inbound c-gp7evp5jvktult7fu7uwhjy \N 226 2 5 \N 1 \N \N
2019-08-30 23:40:03.436823+00 2019-08-30 23:40:15.523155+00 909 1 Phone number for app user Zappa missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-30 23:40:03.435754 \N inbound c-rkgq4ndcdlfyipqtz6pmczy https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/909_recording_820304e0472a4cbab887a18972b47e7e \N 226 \N 5 \N 0 \N \N rec-ikhi7l6ivzscpqzimyb4vpq
2019-08-30 23:24:53.778413+00 2019-08-30 23:25:06.381239+00 905 1 Phone number for app user Zappa completed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-30 23:24:53.77726 2019-08-30 23:25:04.216309 inbound c-3ibface5265xojyqotvx7t1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/905_recording_2bfe17e4955e436cb0a6a492e04a1743 \N 226 2 5 \N 1 \N \N rec-mstgscpdwz2ijtui2xpr5jy
2019-08-30 23:31:12.038116+00 2019-08-30 23:31:25.342526+00 907 1 Phone number for app user Zappa missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-30 23:31:12.036008 \N inbound c-ixhxdcpiwmekbzlhkvpk34a https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/907_recording_8a2a99b9871a41dd9fb8c644ae89d571 \N 226 \N 5 \N 0 \N \N rec-stk635bb7jzkc2aoj4hemnq
2019-08-30 23:26:35.44669+00 2019-08-30 23:26:50.335487+00 906 1 Phone number for app user Zappa completed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-30 23:26:35.445567 2019-08-30 23:26:47.275277 outbound c-b5wexqjj7xa3na6quay64p1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/906_recording_6210bb45e8534971a94931eaebfed773 \N 226 2 5 \N 1 \N \N rec-vtr7shpmsriiy2bg6rir36a
2019-08-30 23:35:02.025421+00 2019-08-30 23:35:37.177488+00 908 1 Phone number for app user Zappa missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-08-30 23:35:02.024331 2019-08-30 23:35:25.685023 inbound c-msdqwa7och5jb2tkjt5435q https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/908_recording_7680f87e178b462aaf3d57c4e3c8235d \N 226 2 5 \N 1 \N \N rec-2kiiypj2d4bnnyhnbtb4t6a
2019-09-02 15:48:21.500738+00 2019-09-02 15:48:23.927891+00 910 1 jsmorgan mobile number missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-09-02 15:48:21.499213 \N inbound c-2olpkyh5wrjijcotfbfyfka \N 226 \N 5 \N 0 \N \N
2019-09-02 15:49:21.409253+00 2019-09-02 15:49:24.25307+00 911 1 jsmorgan mobile number missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-09-02 15:49:21.407108 \N inbound c-2v64usvxjfacr5nuj7fpohy \N 226 \N 5 \N 0 \N \N
2019-09-02 15:56:46.002986+00 2019-09-02 15:56:48.890589+00 913 1 Phone number for app user BeefO missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-09-02 15:56:46.001789 \N inbound c-hbf4szk3z7e4rb4267cbvbi \N 227 \N 5 \N 0 \N \N
2019-09-02 16:04:35.954027+00 2019-09-02 16:04:43.970803+00 915 1 Phone number for app user BeefO missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-09-02 16:04:35.952578 \N inbound c-ipy3a3v6gfrwt5n4i5ir55q \N 227 \N 5 \N 0 \N \N
2019-09-02 15:59:18.245546+00 2019-09-02 15:59:19.453728+00 914 1 Phone number for app user BeefO missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-09-02 15:59:18.244206 \N inbound c-o4gthcflnoy77a6hyjhwpsq \N 227 \N 5 \N 0 \N \N
2019-09-02 16:05:25.013822+00 2019-09-02 16:05:26.515173+00 916 1 Phone number for app user BeefO missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-09-02 16:05:25.011714 \N inbound c-pxbea4djqgosbmg5aqbacqq \N 227 \N 5 \N 0 \N \N
2019-09-02 16:06:06.04609+00 2019-09-02 16:06:16.529489+00 917 1 Phone number for app user BeefO completed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-09-02 16:06:06.043973 2019-09-02 16:06:16.527362 inbound c-mjzlfgumrslg7wmggxvqts1 \N 227 2 5 \N 1 \N \N
2019-09-02 16:12:22.985701+00 2019-09-02 16:12:38.983486+00 918 1 Phone number for app user BeefO completed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-09-02 16:12:22.983468 2019-09-02 16:12:33.09158 inbound c-lhnj6g2d2dpswytew7fl4k1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/918_recording_1d4b0f687beb43d5bd83148dea5fae83 \N 227 2 5 \N 1 \N \N rec-zu4rj55f3gzkzu3s46iaj5a
2019-07-04 17:24:12.472929+00 2019-07-04 17:24:32.343984+00 643 1 Phone number for app user koolscopa missed new lead Henry HONDA K MI NCHI BoldEagle +17739699892 +18722217507 0 2019-07-04 17:24:12.47226 2019-07-04 17:24:24.542186 inbound c-wq3zacyf2rfxjtrc4xtn44i https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/643_recording_42c3f89f35d24734bb5abdf603766cbd \N 227 3 10 \N 1 \N \N
2019-09-02 17:04:03.863583+00 2019-09-02 17:04:33.3802+00 919 1 Phone number for app user BeefO completed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-09-02 17:04:03.861604 2019-09-02 17:04:24.927755 inbound c-tcjki6dgg26udj3lagookv1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/919_recording_67e59615368043e3b4d6e35691c3aaf2 \N 227 2 5 \N 1 \N \N Magic's to or on Tuesday. rec-odlynl6luwhvvwieyjyeoxi
2019-09-02 17:07:43.303748+00 2019-09-02 17:08:08.362821+00 920 1 Phone number for app user BeefO missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-09-02 17:07:43.302498 \N inbound c-fu3dtso5rl3oaizarm5hhmi https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/920_recording_ecc4731c030e4eea95ccdd7dc06dd4a7 \N 227 \N 5 \N 0 \N \N Can I come on Tuesday to see her car. Please? Let me know at 773-290-9650. Thank you have a. rec-v2l7micrhlfa4q2fe6bs7aa
2019-09-02 17:09:21.276588+00 2019-09-02 17:10:21.306215+00 921 1 Phone number for app user BeefO completed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-09-02 17:09:21.275958 2019-09-02 17:10:09.520733 inbound c-xctthisykecu6q2pl5s6ys1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/921_recording_933c811a9f214d0db0e10a2cb9106aea \N 227 2 5 \N 1 \N \N It's one. Hello, it's Pit's I was extremely thought. I hope he was just calling up on the phone. I mean I I can you give me a call, but now I spit it and Ryan. I can give me know the better you know, it sounds like a really far away. It's like to pursue person. Okay, how about no better now. Okay it by. rec-t7mvcfuz4qvucddgibpp5aq
2019-09-02 17:10:52.778591+00 2019-09-02 17:11:32.700955+00 922 1 Phone number for app user BeefO missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-09-02 17:10:52.778021 2019-09-02 17:11:16.619846 inbound c-dz23mstukplgrm7nmd3qcey https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/922_recording_50e0803c7607476c9ad2c8fde4cc04c6 \N 227 2 5 \N 1 \N \N Hello, this is Harry please come on Tuesday. Thank you, bye. rec-ogb7zu2jcbiz3oplwk4wrcq
2019-09-09 20:10:00.113899+00 2019-09-09 20:10:21.599623+00 923 1 Phone number for app user ozzy completed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-09-09 20:10:00.112663 2019-09-09 20:10:16.260129 inbound c-6665blpaudmcy4kblwpjn61 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/923_recording_243b96664ebd4446ad0ab9e002e10867 \N 228 2 5 \N 1 \N \N Hey, it's I I I I'm recording this call is just gonna call and talk to for thing message. Okay. Thank you, bye. rec-gvzjzdo6vk6uo7ktdbzovpa
2019-09-09 20:12:07.294821+00 2019-09-09 20:13:13.383231+00 924 1 Phone number for app user ozzy missed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-09-09 20:12:07.293769 2019-09-09 20:12:30.589317 inbound c-ugvracpoapiilanwrgr7y3y https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/924_recording_9b31ae360c9842d888dded1bdcac187f \N 228 2 5 \N 1 \N \N Mike, this is Harry. I'm just calling just to stop it thank you bye. rec-bsnb4rw7iaanulqg54tizti
2019-09-09 20:14:20.954701+00 2019-10-01 23:25:42.71634+00 925 1 Phone number for app user ozzy completed new lead Brian VERMAAK,HERMANU May +17732909650 +14123246220 60 2019-09-09 20:14:20.952848 2019-09-09 20:14:39.32785 outbound c-hwin4mqtosdbl2ta57fthn1 https://buyercall-test-recordings.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/925_recording_999f6abf8d31467282dbf14268daff8b \N 228 2 5 5 1 \N \N Hello, I'm just picking up this is working on I wanted to confront a call and I'll call him too. Okay, thanks bye. rec-yfh2d74lghhli672jn7keri
2019-10-04 19:55:18.400093+00 2019-10-04 19:55:24.825856+00 926 1 Phone number for app user bergie blocked new lead Brian HERMANU VERMAAK May +17732909650 +17733575773 60 2019-10-04 19:55:18.397383 \N inbound c-pgxzxv253iok25lifnkplta \N 229 \N 5 \N 0 \N \N
2019-10-04 19:56:36.727373+00 2019-10-04 19:56:38.136127+00 927 1 Phone number for app user bergie blocked new lead Brian HERMANU VERMAAK May +17732909650 +17733575773 60 2019-10-04 19:56:36.721222 \N inbound c-lvdd27zexnsdzcw72zj5j5y \N 229 \N 5 \N 0 \N \N
2019-10-04 19:58:01.746176+00 2019-10-04 19:58:03.068062+00 928 1 Phone number for app user bergie missed new lead Brian HERMANU VERMAAK May +17732909650 +17733575773 60 2019-10-04 19:58:01.744462 \N inbound c-lzxbeqepubvte5nroksrjdi \N 229 \N 5 \N 0 \N \N
2019-10-04 20:00:57.478727+00 2019-10-04 20:01:15.744488+00 929 1 Phone number for app user bergie completed new lead Brian HERMANU VERMAAK May +17732909650 +17733575773 60 2019-10-04 20:00:57.477997 2019-10-04 20:01:15.741412 inbound c-azsbi7v7qi7nos7uqtfacg1 \N 229 3 5 \N 1 \N \N
2019-10-10 01:49:26.01365+00 2019-10-10 01:49:26.551479+00 930 1 Booboo ringing new lead Brian HERMANU VERMAAK May +17732909650 +17733575773 \N 2019-10-10 01:49:26.011106 \N inbound c-mx33n7wgezvy7fywn62nfma \N 231 \N 5 \N 0 \N \N
2019-10-10 02:05:06.666802+00 2019-10-10 02:05:07.165983+00 931 1 Booboo ringing new lead Brian HERMANU VERMAAK May +17732909650 +17733575773 \N 2019-10-10 02:05:06.665824 \N inbound c-sdxyd5twosdeendhnd33kga \N 231 \N 5 \N 0 \N \N
2019-10-10 02:09:31.994497+00 2019-10-10 02:09:49.458061+00 932 1 Twilio Block Test completed new lead Brian May +17732909650 +13367394103 17 2019-10-10 02:09:31.993438 2019-10-10 02:09:49.456447 inbound CA027cda12fa042bea8fcc26aa200a9cda \N 232 5 5 \N 0 3.74281096458435059 \N
2019-10-10 02:15:55.018007+00 2019-10-10 02:16:10.415663+00 933 1 Twilio Block Test completed new lead Brian May +17732909650 +13367394103 15 2019-10-10 02:15:55.013965 2019-10-10 02:16:10.414113 inbound CA30b8aa072d7d08d53368ddde6857f6aa \N 232 5 5 \N 0 3.7701408863067627 \N
\.
--
-- Name: leads_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('leads_id_seq', 933, true);
--
-- Data for Name: messages; Type: TABLE DATA; Schema: public; Owner: -
--
COPY messages (created_on, updated_on, id, type, provider, provider_message_id, provider_message_date, "to", from_, body_text, num_media_files, media_url, status, delivery_code, delivery_description, direction, inbound_id, partnership_account_id, contact_id) FROM stdin;
2018-11-14 02:42:21.11319+00 2018-11-14 02:42:21.11319+00 1 SMS Twilio 3 2018-11-14 02:42:21.11319+00 +17773334444 +17732985544 Howdy Sir 0 SENT 3 Delivered outbound 1 1 8
2019-01-04 01:20:20.258815+00 2019-01-04 01:20:20.25883+00 3 sms bandwidth m-7pqvocvq7caok7mg3rddiqa 2019-01-04T01:20:19Z +17732909650 +18722217507 Carry me home \N {} sent \N \N outbound 8 1 5
2019-01-04 01:21:40.507747+00 2019-01-04 01:21:40.507766+00 4 sms bandwidth m-a42t5defa2rmodf4nw46jwi 2019-01-04T01:21:40Z +18473123318 +18722217507 I love you!!! \N {} sent \N \N outbound 8 1 9
2019-01-04 21:37:02.396257+00 2019-01-04 21:37:02.396305+00 5 sms bandwidth m-7rbxafk4p7h7dkb3q2mzjdy 2019-01-04T21:37:01Z +17732909650 +18722217507 Hello \N {} sent \N \N outbound 8 1 5
2019-01-04 21:38:47.634881+00 2019-01-04 21:38:47.634894+00 6 sms bandwidth m-2vzanne55phzpajngiihe5a 2019-01-04T21:38:47Z +17732909650 +18722217507 Season ticketz \N {} sent \N \N outbound 8 1 5
2019-01-04 21:47:10.079824+00 2019-01-04 21:47:10.079846+00 7 sms bandwidth m-zpek5cshnvoujhnfvwdb6ai 2019-01-04T21:47:09Z +17732909650 +18722217507 Come on \N {} sent \N \N outbound 8 1 5
2019-01-05 01:36:35.448902+00 2019-01-05 01:36:35.448935+00 8 sms bandwidth m-vdznrmr2jsagrcf6enzetra 2019-01-05T01:36:34Z +17732909650 +18722217507 Hello how are you? \N {} sent \N \N outbound 8 1 5
2019-01-06 21:37:16.580003+00 2019-01-06 21:37:16.580068+00 9 sms bandwidth m-v62aehhh3k2a47zkeajhwqa 2019-01-06T21:37:16Z +17732909650 +18722217507 Hi there \N {} sent \N \N outbound 8 1 5
2019-01-18 00:49:39.33258+00 2019-01-18 00:49:39.332594+00 10 sms twilio SM3d3d8633b5d34b398edabb1a1c55a118 2019-01-18 00:49:39 +17732909650 +13367394103 Hi John, thanks for your form submission. We will review it and get back to you asap. Offshore-Unlimited Marine & Trailer \N sent \N \N outbound 1 1 5
2019-01-04 01:18:58.54967+00 2019-01-04 01:18:58.54969+00 2 sms bandwidth m-hdo37ljeejp6qkkr5j5yxui 2019-01-04T01:18:58Z +17732909650 +18722217507 Stary night \N {} sent \N \N outbound 8 2 5
2019-03-16 00:50:19.786904+00 2019-03-16 00:50:19.786927+00 15 mms bandwidth m-rtu4fls4ci457z2qslvkrya 2019-03-16T00:50:19Z +17732909650 +18722217507 hello son of law \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/2562485d72a844c0b8771cf23d8ce458_mms_aa-small.png} sent \N \N outbound 55 1 5
2019-03-18 21:18:35.810547+00 2019-03-18 21:18:35.810562+00 16 sms bandwidth m-yuaygrslmd7gnxlr4757uzi 2019-03-18T21:18:35Z +17732909650 +18722217507 Howizt? \N {} sent \N \N outbound 58 1 5
2019-03-18 21:21:00.597463+00 2019-03-18 21:21:00.597476+00 17 sms bandwidth m-5wmnfa77cbsqzbhyqfxheyq 2019-03-18T21:21:00Z +17732909650 +18722217507 Fool is daycare \N {} sent \N \N outbound 58 1 5
2019-03-19 03:17:10.231216+00 2019-03-19 03:17:10.231231+00 18 sms twilio SM88c12abba6e5429c808b097c68ba7e3e 2019-03-19 03:17:05 +13367394103 +17732909650 Hi there cowboy!! \N received \N \N inbound 56 1 5
2019-03-19 03:17:11.961128+00 2019-03-19 03:17:11.961145+00 19 sms twilio SM910a3a57c0cc45568b4079eb4d9adcf3 2019-03-19 03:17:11 +17732909650 +13367394103 Thanks for the message. We'll be in touch. \N sent \N \N outbound 56 1 5
2019-04-04 19:57:54.616297+00 2019-04-04 19:57:54.616325+00 20 mms twilio MM67284a734062431686086c273ec53cfe 2019-04-04 19:57:54 +17732909650 +13367394103 Are you still interested in this vehicle? \N https://s3-us-west-2.amazonaws.com/buyercall-logo/logo_buyercall_yellow.png sent \N \N outbound 1 1 5
2019-04-08 21:55:16.799125+00 2019-04-08 21:55:16.799139+00 22 sms bandwidth m-zyfaf2hy7zxz34viamxjwry 2019-04-08T21:55:16Z +17732909650 +18722217507 I hope this works! \N {} sent \N \N outbound 74 1 5
2019-04-08 21:55:47.343584+00 2019-04-08 21:55:47.343597+00 23 sms bandwidth m-gq6nuwd635nq4wx2cqrmbdy 2019-04-08T21:55:46Z +17732909650 +18722217507 I hope this works! \N {} sent \N \N outbound 74 1 5
2019-04-08 21:56:29.162797+00 2019-04-08 21:56:29.162816+00 24 sms bandwidth m-hrn6wjpzqpwbeseljzb4h7a 2019-04-08T21:56:28Z +17732909650 +18722217507 I hope this works! \N {} sent \N \N outbound 74 1 5
2019-04-08 22:01:06.113186+00 2019-04-08 22:01:06.113206+00 25 sms bandwidth m-cdrvnb3ymtkazhbv3wsehhi 2019-04-08T22:01:05Z +17732909650 +18722217507 Let me try again \N {} sent \N \N outbound 74 1 5
2019-04-08 22:03:07.199877+00 2019-04-08 22:03:07.199894+00 26 sms bandwidth m-p3moj2offvipigxawryoejq 2019-04-08T22:03:06Z +17732909650 +18722217507 Boo train \N {} sent \N \N outbound 74 1 5
2019-04-08 23:11:52.139037+00 2019-04-08 23:11:52.139059+00 27 sms bandwidth m-lgu4j4tex4bmqp53ro7itna 2019-04-08T23:11:51Z +17732909650 +18722217507 Boo boo \N {} sent \N \N outbound 74 1 5
2019-04-08 23:30:36.593447+00 2019-04-08 23:30:36.593464+00 28 sms bandwidth m-55ixiyibhqmjdcia2sgqyyi 2019-04-08T23:30:36Z +17732909650 +18722217507 Come on \N {} sent \N \N outbound 74 1 5
2019-04-08 23:41:32.561392+00 2019-04-08 23:41:32.561404+00 29 sms bandwidth m-ozcvemakwu4nbbmgq2cxlka 2019-04-08T23:41:32Z +17732909650 +18722217507 Another try? \N {} sent \N \N outbound 74 1 5
2019-04-08 23:42:58.381086+00 2019-04-08 23:42:58.381099+00 30 sms bandwidth m-523cgog4kfpphdqthssan5a 2019-04-08T23:42:57Z +17732909650 +18722217507 Certainly you are the best \N {} sent \N \N outbound 74 1 5
2019-04-08 23:44:29.388043+00 2019-04-08 23:44:29.388056+00 31 sms bandwidth m-exp7e6nmkhttcc76qnoaw7q 2019-04-08T23:44:28Z +17732909650 +18722217507 Now? \N {} sent \N \N outbound 74 1 5
2019-04-08 23:46:56.507581+00 2019-04-08 23:46:56.507601+00 32 sms bandwidth m-nwz7a53e6okns2uy6h2cela 2019-04-08T23:46:56Z +17732909650 +18722217507 Here \N {} sent \N \N outbound 74 1 5
2019-04-08 23:55:34.001186+00 2019-04-08 23:55:34.001208+00 33 sms bandwidth m-744bmt5rdsvi7fpaz23btaq 2019-04-08T23:55:33Z +17732909650 +18722217507 Boo boo \N {} sent \N \N outbound 74 1 5
2019-04-09 00:00:45.685548+00 2019-04-09 00:00:45.685567+00 34 sms bandwidth m-6zyvnydwq7yvwawqx26ljpy 2019-04-09T00:00:45Z +17732909650 +18722217507 Wait a secomd \N {} sent \N \N outbound 74 1 5
2019-04-09 00:04:24.287693+00 2019-04-09 00:04:24.28771+00 35 sms bandwidth m-ox3szrtqqfzh7ca33bk4yry 2019-04-09T00:04:23Z +17732909650 +18722217507 Thaddeus \N {} sent \N \N outbound 74 1 5
2019-04-09 00:06:38.379587+00 2019-04-09 00:06:38.379621+00 36 sms bandwidth m-g7dwshr366cbjcxs4p77c4y 2019-04-09T00:06:37Z +17732909650 +18722217507 Igxs \N {} sent \N \N outbound 74 1 5
2019-04-09 00:08:38.207386+00 2019-04-09 00:08:38.207404+00 37 sms bandwidth m-ikt534mcxocjw2k7b2ckh5i 2019-04-09T00:08:37Z +17732909650 +18722217507 Never \N {} sent \N \N outbound 74 1 5
2019-04-12 18:37:55.319878+00 2019-04-12 18:37:55.319888+00 38 sms twilio SM8617015a88a786259b92cb91719c84b8 2019-04-12 18:37:52 +13367394103 +17739699892 Hello are you there? \N received \N \N inbound 111 1 10
2019-04-12 18:48:27.529014+00 2019-04-12 18:48:27.529031+00 39 sms twilio SMa452d2d534374923ac451d46f81e577b 2019-04-12 18:48:27 +17739699892 +13367394103 Hi Bobby, thanks for your form submission. We will review it and get back to you asap. Offshore-Unlimited Marine \N sent \N \N outbound 111 1 10
2019-04-12 18:50:20.604351+00 2019-04-12 18:50:20.60437+00 40 sms twilio SMad7c979f183d4cb29fcd988e0e1303ef 2019-04-12 18:50:20 +17739699892 +13367394103 want to come in and see a car? \N sent \N \N outbound 111 1 10
2019-04-16 00:04:30.789718+00 2019-04-16 00:04:30.789731+00 41 sms bandwidth m-vakr7klmbrotbrvuxacrscy 2019-04-16T00:04:30Z +18722217507 +17732909650 Hi there \N \N received \N \N inbound 112 1 5
2019-04-16 16:29:53.923317+00 2019-04-16 16:29:53.923329+00 42 sms bandwidth m-d7dx5c3el6zulikqef24ovi 2019-04-16T16:29:53Z +18722217507 +17732909650 Hello there \N \N received \N \N inbound 113 1 5
2019-04-16 21:47:43.175219+00 2019-04-16 21:47:43.175398+00 43 sms bandwidth m-eyw46nu3k3u3fex6sgotgha 2019-04-16T21:47:42Z +18722217507 +17732909650 Goyyn \N \N received \N \N inbound 113 1 5
2019-04-17 16:58:24.702023+00 2019-04-17 16:58:24.702036+00 44 sms bandwidth m-mkkvejt6ezbrriv6xt4jrei 2019-04-17T16:58:23Z +18722217507 +17732909650 Cowboy \N \N received \N \N inbound 114 1 5
2019-04-17 17:16:17.997219+00 2019-04-17 17:16:17.997442+00 45 sms bandwidth m-deljdla3wy52jka4p4y7j4a 2019-04-17T17:16:17Z +18722217507 +17732909650 Cowgirl \N \N received \N \N inbound 114 1 5
2019-04-17 17:22:32.452195+00 2019-04-17 17:22:32.452208+00 46 sms bandwidth m-vgn5wmjoalasu5au7vdqxka 2019-04-17T17:22:31Z +18722217507 +17732909650 Sweet golden tier \N \N received \N \N inbound 114 1 5
2019-04-17 17:28:33.819541+00 2019-04-17 17:28:33.819561+00 47 sms bandwidth m-uttspdxwd5yi5okhnheh37a 2019-04-17T17:28:33Z +18722217507 +17732909650 Try it again \N \N received \N \N inbound 114 1 5
2019-04-17 17:53:31.587739+00 2019-04-17 17:53:31.587751+00 48 sms bandwidth m-enuzds7oyurouu5tqtiykpi 2019-04-17T17:53:30Z +18722217507 +17732909650 Boo o boy \N \N received \N \N inbound 114 1 5
2019-04-17 18:12:01.5545+00 2019-04-17 18:12:01.554539+00 49 sms bandwidth m-xoydo4em3u3rsuz2376x3eq 2019-04-17T18:12:00Z +18722217507 +17732909650 Call it out now \N \N received \N \N inbound 114 1 5
2019-04-17 18:19:23.357094+00 2019-04-17 18:19:23.357107+00 50 sms bandwidth m-mbq74gvc7ia57yevjeretty 2019-04-17T18:19:22Z +18722217507 +17732909650 Let's got \N \N received \N \N inbound 114 1 5
2019-04-17 18:40:01.13174+00 2019-04-17 18:40:01.131766+00 51 sms bandwidth m-cdlp4owxb4yr2ybtrbmfuqi 2019-04-17T18:40:00Z +18722217507 +17732909650 Play around \N \N received \N \N inbound 114 1 5
2019-04-17 19:50:27.235015+00 2019-04-17 19:50:27.235027+00 52 sms bandwidth m-hkkuva5xbtdnxcixmnjfn5i 2019-04-17T19:50:26Z +18722217507 +17732909650 Black magic \N \N received \N \N inbound 115 1 5
2019-04-17 19:51:13.638098+00 2019-04-17 19:51:13.638112+00 53 sms bandwidth m-ashabgblmebmffz4chlj46y 2019-04-17T19:51:12Z +18722217507 +17732909650 Biop \N \N received \N \N inbound 115 1 5
2019-04-17 19:52:02.531874+00 2019-04-17 19:52:02.531885+00 54 sms bandwidth m-zi3lhatzcubgi3ai42ermeq 2019-04-17T19:52:01Z +18722217507 +17732909650 Again \N \N received \N \N inbound 115 1 5
2019-04-17 19:52:56.074335+00 2019-04-17 19:52:56.074347+00 55 sms bandwidth m-2jirou4riq4fgclp57a2sia 2019-04-17T19:52:55Z +18722217507 +17732909650 There \N \N received \N \N inbound 115 1 5
2019-04-17 19:53:57.014949+00 2019-04-17 19:53:57.015011+00 56 sms bandwidth m-m622hdaxcmr7k77fqu2c45i 2019-04-17T19:53:56Z +18722217507 +17732909650 Weer \N \N received \N \N inbound 115 1 5
2019-04-17 19:54:29.113077+00 2019-04-17 19:54:29.113092+00 57 sms bandwidth m-x45vccnq5d5sqxc3eu2c5ta 2019-04-17T19:54:28Z +18722217507 +17732909650 Again \N \N received \N \N inbound 115 1 5
2019-04-17 19:55:27.84088+00 2019-04-17 19:55:27.840893+00 58 sms bandwidth m-vj64te7oriecvifjpxipz7y 2019-04-17T19:55:27Z +18722217507 +17732909650 Boo \N \N received \N \N inbound 115 1 5
2019-04-17 19:56:15.142627+00 2019-04-17 19:56:15.14264+00 59 sms bandwidth m-miszkokd5u6jujztgz7xp4q 2019-04-17T19:56:14Z +18722217507 +17732909650 You \N \N received \N \N inbound 115 1 5
2019-04-17 19:57:05.054716+00 2019-04-17 19:57:05.054729+00 60 sms bandwidth m-vey2kzdwwxa4wyl7gudiyni 2019-04-17T19:57:04Z +18722217507 +17732909650 She \N \N received \N \N inbound 115 1 5
2019-04-17 19:58:37.750426+00 2019-04-17 19:58:37.750485+00 61 sms bandwidth m-wwa62d32vvv23bkxlof57dy 2019-04-17T19:58:37Z +18722217507 +17732909650 Great \N \N received \N \N inbound 115 1 5
2019-04-17 20:00:26.438384+00 2019-04-17 20:00:26.438413+00 62 sms bandwidth m-hzq45w6hdspanddqlxkmscy 2019-04-17T20:00:25Z +18722217507 +17732909650 Djshxis \N \N received \N \N inbound 115 1 5
2019-04-18 01:59:54.038614+00 2019-04-18 01:59:54.038626+00 63 sms bandwidth m-uj5trizjbqp3r72tjckowky 2019-04-18T01:59:53Z +18722217507 +17732909650 Golden \N \N received \N \N inbound 116 1 5
2019-04-18 02:04:42.987345+00 2019-04-18 02:04:42.987359+00 64 sms bandwidth m-5wavbm6zxdrwlptj2votevi 2019-04-18T02:04:42Z +18722217507 +17732909650 Gilden \N \N received \N \N inbound 116 1 5
2019-04-18 02:06:34.581553+00 2019-04-18 02:06:34.581566+00 65 sms bandwidth m-gh6hcmhnpdvth4z5veqd2fi 2019-04-18T02:06:34Z +17732909650 +18722217507 Gumtree \N {} sent \N \N outbound 116 1 5
2019-04-18 02:07:03.800304+00 2019-04-18 02:07:03.800316+00 66 sms bandwidth m-fcgtl5yjs5lpvmrk4ceiw5a 2019-04-18T02:07:03Z +18722217507 +17732909650 Sweet corn \N \N received \N \N inbound 116 1 5
2019-04-22 18:33:55.436272+00 2019-04-22 18:33:55.436284+00 67 sms bandwidth m-fjxkxxnuk6j2dbcwprsw6pi 2019-04-22T18:33:54Z +17732909650 +18722217507 😉 Hello there \N {} sent \N \N outbound 138 1 5
2019-04-22 18:35:06.00569+00 2019-04-22 18:35:06.005702+00 68 sms bandwidth m-4tefrczzkp5sud7fou35cza 2019-04-22T18:35:05Z +17732909650 +18722217507 {"attachments":[{"content-size":5545525,"content-url":"https://mmmsg.acrobits.net/0elaf0lrwat2gpr30zhg1edfru7phpvae","encryption-key":"CA4D547105955057DA20E75033E6899A","filename":"IMG_20190126_152630.jpg","hash":"2919745640","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAcAAAAKCAIAAAD3rtNaAAAAA3NCSVQICAjb4U/gAAAAzElEQVQImTXIvVLCUBBA4d3k3owDGMIdZSx0lAoLGssUWmPDO1Ba+5oCFowlQ4Mz/CskubBmdynU030HVVUUAGD66efzfWRKOgqKCCICACjs/c9wvLlwUfC3ABS4FDYRW4OoqvCfKCDCbMnm10RkjFksdllBWX4wqlrkdN/pKEhcrdzctZebbXgo/OPTw+Dt3SXnk+mk4er9l1fsPvdGH2OkIzPbKEzTNM984KkIpAxQK9UzZrbWxvVa2GrdJpdXq/WXa17HLiGf7b7XJyXtZfupmctOAAAAAElFTkSuQmCC"}}]} \N {} sent \N \N outbound 138 1 5
2019-04-22 18:58:07.071935+00 2019-04-22 18:58:07.071956+00 69 sms bandwidth m-6kyls4jrnxejajjlry7vpoq 2019-04-22T18:58:06Z +17732909650 +18722217507 Let me try this \N {} sent \N \N outbound 138 1 5
2019-04-22 19:03:31.984013+00 2019-04-22 19:03:31.984037+00 70 sms bandwidth m-af3zm4lesduyouzyecplp7a 2019-04-22T19:03:31Z +17732909650 +18722217507 Bee choice \N {} sent \N \N outbound 138 1 5
2019-04-22 19:03:45.979004+00 2019-04-22 19:03:45.979017+00 71 sms bandwidth m-llajosruvocbahtegu3hqqy 2019-04-22T19:03:45Z +17732909650 +18722217507 Bee choice \N {} sent \N \N outbound 138 1 5
2019-04-22 19:04:31.148664+00 2019-04-22 19:04:31.148676+00 72 sms bandwidth m-aamm7avybs6zmnvkbluaqvy 2019-04-22T19:04:30Z +17732909650 +18722217507 Bee choice \N {} sent \N \N outbound 138 1 5
2019-04-22 19:11:11.535878+00 2019-04-22 19:11:11.535899+00 73 sms bandwidth m-vianb5ywumu7iicey64le6a 2019-04-22T19:11:11Z +17732909650 +18722217507 Deep see \N {} sent \N \N outbound 138 1 5
2019-04-22 19:12:20.665636+00 2019-04-22 19:12:20.665653+00 74 sms bandwidth m-53vjvtxdzzgzzcpfubdlm2a 2019-04-22T19:12:18Z +17732909650 +18722217507 Felix and all \N {} sent \N \N outbound 138 1 5
2019-04-22 19:17:35.373708+00 2019-04-22 19:17:35.373726+00 75 sms bandwidth m-mdapamdrmcf3i2how5jsufa 2019-04-22T19:17:34Z +17732909650 +18722217507 Free to call me \N {} sent \N \N outbound 138 1 5
2019-04-22 19:48:11.512124+00 2019-04-22 19:48:11.512142+00 76 sms bandwidth m-pdj2qlnlpa7t7inh4zwa3qa 2019-04-22T19:48:11Z +17732909650 +18722217507 Bootcamp \N {} sent \N \N outbound 138 1 5
2019-04-22 19:59:14.821323+00 2019-04-22 19:59:14.821334+00 77 sms bandwidth m-qbsyraawwukypetgchmcewq 2019-04-22T19:59:14Z +18722217507 +17732909650 Sweet dreams \N \N received \N \N inbound 138 1 5
2019-04-22 20:06:04.820717+00 2019-04-22 20:06:04.820732+00 78 sms bandwidth m-vcb3bugqda76xq2dnf2pney 2019-04-22T20:06:04Z +18722217507 +17732909650 Seems to be the only one \N \N received \N \N inbound 138 1 5
2019-04-22 20:07:27.977527+00 2019-04-22 20:07:27.977545+00 79 sms bandwidth m-omtejjfkk5rqctrq3irwk4y 2019-04-22T20:07:27Z +18722217507 +17732909650 Did the movie \N \N received \N \N inbound 138 1 5
2019-04-22 21:40:18.952664+00 2019-04-22 21:40:18.952676+00 80 sms bandwidth m-iionnlzgj7fpiszcscmwdza 2019-04-22T21:40:18Z +17732909650 +18722217507 What movie? \N {} sent \N \N outbound 138 1 5
2019-04-22 21:42:41.218376+00 2019-04-22 21:42:41.218395+00 81 sms bandwidth m-r3cmqvidgjjmbuixfo5y5ti 2019-04-22T21:42:40Z +17732909650 +18722217507 Hi there, is this John? \N {} sent \N \N outbound 138 1 5
2019-04-22 22:11:55.867473+00 2019-04-22 22:11:55.867504+00 82 sms bandwidth m-jzaxcehuyl7agfkepmmpyea 2019-04-22T22:11:55Z +17732909650 +18722217507 Hierdie \N {} sent \N \N outbound 138 1 5
2019-04-22 22:22:52.63778+00 2019-04-22 22:22:52.637799+00 83 sms bandwidth m-rygrkfavk2grylvec7pmsua 2019-04-22T22:22:52Z +17732909650 +18722217507 What do you think? \N {} sent \N \N outbound 138 1 5
2019-04-22 23:52:23.397661+00 2019-04-22 23:52:23.397674+00 84 sms bandwidth m-tbvo6fth2gr4qoaigrov27a 2019-04-22T23:52:22Z +18722217507 +18473123318 Yay! Check! \N \N received \N \N inbound 139 1 9
2019-04-23 17:41:52.879718+00 2019-04-23 17:41:52.879747+00 85 sms bandwidth m-r6ev4w4nf3b5cvy7ldq2gxy 2019-04-23T17:41:52Z +17732909650 +18722217507 Hi there baby face \N {} sent \N \N outbound 140 1 5
2019-04-23 17:51:44.250301+00 2019-04-23 17:51:44.250318+00 86 sms bandwidth m-e62whna4cwmtxoaf6fdipeq 2019-04-23T17:51:43Z +17732909650 +18722217507 Cold as ice \N {} sent \N \N outbound 140 1 5
2019-04-23 17:55:03.225583+00 2019-04-23 17:55:03.225602+00 87 sms bandwidth m-ohieje4lxdxzseagqokvcsi 2019-04-23T17:55:02Z +17732909650 +18722217507 {"attachments":[{"content-size":145145,"content-url":"https://mmmsg.acrobits.net/vlnnylmfkybwew30skq14ad0hsfeqwec4","encryption-key":"35101BA802651A988D42534E8883D79C","filename":"IMG-20190321-WA0009.jpg","hash":"3297409297","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAYAAAAICAIAAABVpBlvAAAAA3NCSVQICAjb4U/gAAAAo0lEQVQImQGYAGf/AcTFx9nd4VVSSQ0LDuHm6dPY3wQAAAImKCjo6/L49/78+PcJA/wC3+jtAwD98+zp5uHc9vHsEAsDBPHr4cbj4+fq6xUNC/X29u329wEyPEX5/QELCQj6+voBAQH09PQE7fHzAgIEDwsK6e/v+Pn2/fz/AnRnXv357ePl1/v99AkHAgMC+gLm6uz+AP8ODxccFhb09/T+/vyZ8VlgeKyMFwAAAABJRU5ErkJggg=="}}]} \N {} sent \N \N outbound 140 1 5
2019-04-24 21:01:01.580947+00 2019-04-24 21:01:01.580964+00 88 sms bandwidth m-ipknr7q3msae6yzoibla7tq 2019-04-24T21:01:01Z +17732909650 +18722217507 Boo lol \N {} sent \N \N outbound 140 1 5
2019-04-25 16:16:56.11965+00 2019-04-25 16:16:56.119661+00 89 sms bandwidth m-lm6ha4mvnsr5jkcgpinnkxq 2019-04-25T16:16:55Z +17732909650 +18722217507 Please tell me your story \N {} sent \N \N outbound 142 1 5
2019-04-25 17:28:15.448272+00 2019-04-25 17:28:15.448285+00 90 sms bandwidth m-er3y2b66r2w3kuwydkljoqq 2019-04-25T17:28:14Z +17732909650 +18722217507 Sweet story \N {} sent \N \N outbound 142 1 5
2019-04-29 18:38:21.32871+00 2019-04-29 18:38:21.328724+00 91 sms bandwidth m-nv5ml3s7ozcj36b2ydzqipq 2019-04-29T18:38:20Z +17732909650 +18722217507 Hello there \N {} sent \N \N outbound 160 1 5
2019-04-29 19:02:46.939255+00 2019-04-29 19:02:46.939336+00 92 sms bandwidth m-wiyueqdywx242evmj6tsifq 2019-04-29T19:02:46Z +17732909650 +18722217507 Hwllo \N {} sent \N \N outbound 160 1 5
2019-04-29 19:24:36.921118+00 2019-04-29 19:24:36.921135+00 93 sms bandwidth m-fxzjpojpxlafqqtmncentyq 2019-04-29T19:24:36Z +17732909650 +18722217507 {"attachments":[{"content-size":90168,"content-type":"image/png","content-url":"https://mmmsg.acrobits.net/8466ty16y83tzzu06g0ck29609z0c2uii","encryption-key":"4272B8E4A7C1EF8DE9753F3D4EF22E8C","filename":"Screenshot_20190306-152141.png","hash":"3215976990","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAUAAAAICAIAAAC+k6JsAAAAA3NCSVQICAjb4U/gAAAANElEQVQImWNUc65mQAKM////Z/jPwMAI5TMxMCA4UP5/JPVMf/4yMPz/j6ofWf7QOwZ8AAAgTg6Ro3SngQAAAABJRU5ErkJggg=="}}],"body":"Helelo"} \N {} sent \N \N outbound 160 1 5
2019-04-30 17:21:35.482155+00 2019-04-30 17:21:35.482172+00 94 sms bandwidth m-bfmc5afxclea7xck6mdukba 2019-04-30T17:21:34Z +17732909650 +18722217507 Please let \N {} sent \N \N outbound 162 1 5
2019-04-30 17:28:33.176454+00 2019-04-30 17:28:33.176471+00 95 sms bandwidth m-gq5gi3p5aq7g4nnk7lilu6a 2019-04-30T17:28:32Z +17732909650 +18722217507 Tourism \N {} sent \N \N outbound 162 1 5
2019-04-30 17:33:50.833634+00 2019-04-30 17:33:50.833653+00 96 sms bandwidth m-grwwbeeugnvhikwpxvyfyhq 2019-04-30T17:33:50Z +17732909650 +18722217507 Kool-aid \N {} sent \N \N outbound 162 1 5
2019-04-30 17:34:58.729274+00 2019-04-30 17:34:58.72929+00 97 sms bandwidth m-bpei3b65okd37xxpgmpvn3y 2019-04-30T17:34:58Z +17732909650 +18722217507 Yoy \N {} sent \N \N outbound 162 1 5
2019-04-30 17:35:23.464389+00 2019-04-30 17:35:23.464415+00 98 sms bandwidth m-mdx32l22wyznks4e35ntgzq 2019-04-30T17:35:22Z +17732909650 +18722217507 Sulsa \N {} sent \N \N outbound 162 1 5
2019-04-30 17:36:42.396081+00 2019-04-30 17:36:42.396102+00 99 sms bandwidth m-xtzbotqle6yhbolf7j6y3ty 2019-04-30T17:36:41Z +17732909650 +18722217507 Causes \N {} sent \N \N outbound 162 1 5
2019-04-30 18:27:24.707068+00 2019-04-30 18:27:24.707091+00 100 sms bandwidth m-oai75bousgvwe3rrdti4jti 2019-04-30T18:27:24Z +17732909650 +18722217507 Very well \N {} sent \N \N outbound 162 1 5
2019-04-30 18:37:37.945848+00 2019-04-30 18:37:37.94587+00 101 sms bandwidth m-m3fcqgxfziipijdd2dg3dpy 2019-04-30T18:37:37Z +17732909650 +18722217507 Stream \N {} sent \N \N outbound 162 1 5
2019-04-30 18:46:55.758948+00 2019-04-30 18:46:55.758981+00 102 sms bandwidth m-eyvdkqivikhbsxnjvpzf7ga 2019-04-30T18:46:55Z +17732909650 +18722217507 Volunteer \N {} sent \N \N outbound 162 1 5
2019-04-30 18:49:27.134615+00 2019-04-30 18:49:27.134637+00 103 sms bandwidth m-l3up3egt32si5qmdjpg2p5i 2019-04-30T18:49:26Z +17732909650 +18722217507 Door \N {} sent \N \N outbound 162 1 5
2019-04-30 18:55:10.432375+00 2019-04-30 18:55:10.432401+00 104 sms bandwidth m-psz4djae36wr2ibpl63644y 2019-04-30T18:55:09Z +17732909650 +18722217507 Suitable \N {} sent \N \N outbound 162 1 5
2019-04-30 18:56:43.433727+00 2019-04-30 18:56:43.433747+00 105 sms bandwidth m-4qur24njtcsahj2iyhdc35y 2019-04-30T18:56:42Z +17732909650 +18722217507 Can you send me the address \N {} sent \N \N outbound 162 1 5
2019-04-30 19:07:41.893137+00 2019-04-30 19:07:41.893157+00 106 sms bandwidth m-ldhjt2tulvhf425n4n4onlq 2019-04-30T19:07:41Z +17732909650 +18722217507 Seed money \N {} sent \N \N outbound 162 1 5
2019-04-30 19:12:49.797158+00 2019-04-30 19:12:49.797174+00 107 sms bandwidth m-btfiopa6maaf2ljbkknyfuq 2019-04-30T19:12:49Z +17732909650 +18722217507 Gero \N {} sent \N \N outbound 162 1 5
2019-04-30 19:29:25.446483+00 2019-04-30 19:29:25.446499+00 108 sms bandwidth m-sg5opsb23q7ct7cwqv2hicq 2019-04-30T19:29:24Z +17732909650 +18722217507 George \N {} sent \N \N outbound 162 1 5
2019-04-30 19:37:31.920381+00 2019-04-30 19:37:31.920402+00 109 sms bandwidth m-o57uqznhwro4avxmrd2lv4a 2019-04-30T19:37:31Z +17732909650 +18722217507 Mark Jones \N {} sent \N \N outbound 162 1 5
2019-04-30 19:42:55.215926+00 2019-04-30 19:42:55.215949+00 110 sms bandwidth m-ejprgt2mhdxdtd4zsn2iyhy 2019-04-30T19:42:54Z +17732909650 +18722217507 Boo boo \N {} sent \N \N outbound 162 1 5
2019-04-30 19:43:28.938523+00 2019-04-30 19:43:28.93854+00 111 sms bandwidth m-yc5hss6gxzrdnqvbrc7i67q 2019-04-30T19:43:28Z +17732909650 +18722217507 {"attachments":[{"content-size":166287,"content-url":"https://mmmsg.acrobits.net/at405e8areut2a50m6d8dbtddwl03r00t","encryption-key":"544477FF6097D0869C6FBFF265809B90","filename":"IMG-20190321-WA0011.jpg","hash":"3047008281","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAYAAAAICAIAAABVpBlvAAAAA3NCSVQICAjb4U/gAAAAo0lEQVQImQGYAGf/AXh9kCsqIufr80c/NP0AAdzf5gQFBgPu8PMPDQr8/fr5+fkQDQQEBAD99vTxAwD56Ojn8/X46u7xAys3Q/7+AuLu+c7e7wABAwD9+QE8Pjvp5ev+CgYIAwry9fr28+QABAgJJiorrKyuwMDCTFBRvr/BBGZjZuft8auyuP///wMHEQICAgMPFBgCAwQAAAIAAP8NDQ39+vlAQUkxPvsRLAAAAABJRU5ErkJggg=="}}]} \N {} sent \N \N outbound 162 1 5
2019-04-30 19:50:43.612281+00 2019-04-30 19:50:43.612332+00 112 mms bandwidth m-uoxbz6mbxpcxa3l3wy4d3ii 2019-04-30T19:50:43Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/28d07bd80b42489d8b5ccfe32a6b63d0_mms_decrypted.png} sent \N \N outbound 162 1 5
2019-04-30 19:59:30.183065+00 2019-04-30 19:59:30.183082+00 113 mms bandwidth m-mxw4mu3dlmg5y5247gyuhmy 2019-04-30T19:59:29Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/c87954dbfad64b8cae1fb24a55784fda_mms_decrypted.png} sent \N \N outbound 162 1 5
2019-04-30 20:05:53.303144+00 2019-04-30 20:05:53.303175+00 114 sms bandwidth m-5rjam4ucjkithyct466cxti 2019-04-30T20:05:52Z +17732909650 +18722217507 {"attachments":[{"content-size":78337,"content-url":"https://mmmsg.acrobits.net/kig8upgm797liizplvj193zxpnlep928e","encryption-key":"AFB285BAC79AF816D3CA8E786CBCB83A","filename":"IMG-20190319-WA0004.jpg","hash":"413243424","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAMAAAAGCAIAAACJh7NbAAAAA3NCSVQICAjb4U/gAAAAR0lEQVQImQE8AMP/Ad3a0+/ezfv9/QLe4OWxrqYMGS4DEf/qAAH+7enhAiwoGcPX+tLX6gLx+heLf3QyIhUDGwYZx7uxMTgsO7UfUev1anEAAAAASUVORK5CYII="}}]} \N {} sent \N \N outbound 162 1 5
2019-06-07 16:28:53.384174+00 2019-06-07 16:28:53.38419+00 220 sms bandwidth m-gpfgd24aqmlrb3eji47j7ya 2019-06-07T16:28:53Z +13307660833 +18722217507 What about this \N {} sent \N \N outbound 184 1 14
2019-04-30 20:07:05.519263+00 2019-04-30 20:07:05.519324+00 115 sms bandwidth m-wfs5s3fx47gj4svdecvyqtq 2019-04-30T20:07:05Z +17732909650 +18722217507 {"attachments":[{"content-size":159073,"content-url":"https://mmmsg.acrobits.net/pfyd5z4m4fw8ad08c4mzohvgrmr242tfj","encryption-key":"4531647AE65D2293152A560338A2C896","filename":"IMG-20190321-WA0007.jpg","hash":"1460259914","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAYAAAAICAIAAABVpBlvAAAAA3NCSVQICAjb4U/gAAAAo0lEQVQImQGYAGf/AUxkihUPDfj6+/j8/f7+/C8iGgIA6cUIB/8BAwMyJRtLPi7u9vsDCxEO3NbFFQj89e/h4N7WIiY2A9XRztvZ2/n18dTV0fb29L65qwLo6vCAfH/8BAoFAgTf5O34/fsBpqmuICAi//z9/P36/v7+jJKVAzo6OyMlIvn//AkICQECAjMzMQL9AP+7ubPx9Pfw9fPr7e7v7e59qVaLfGs7kgAAAABJRU5ErkJggg=="}}]} \N {} sent \N \N outbound 162 1 5
2019-04-30 20:08:08.316156+00 2019-04-30 20:08:08.316174+00 116 mms bandwidth m-oz4hqcjzro4akhefq7zsnyy 2019-04-30T20:08:07Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/9fc40b814c8342f88ba44ce26e0f751f_mms_decrypted.png} sent \N \N outbound 162 1 5
2019-04-30 20:11:13.884557+00 2019-04-30 20:11:13.884575+00 117 sms bandwidth m-3sc2zo35h5drz7m2qvnnipa 2019-04-30T20:11:13Z +17732909650 +18722217507 {"attachments":[{"content-size":77445,"content-url":"https://mmmsg.acrobits.net/8fsc28ytzja2nwy5ph4ebiiafrb0n5hcu","encryption-key":"CD2007E4B1CF7AA8F898E793FF229E8C","filename":"IMG-20190321-WA0001.jpg","hash":"2558897664","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAYAAAAICAIAAABVpBlvAAAAA3NCSVQICAjb4U/gAAAAmElEQVQImQXBSQ6CMBQA0A6/UgqYUNA4rFi5IuF0HsFbeC4XrowbTTABO0hpS3wPny9XzvA6A2XMb9KffoC6zo8yk2XKcLg/XgVD0Ozz5lBxIDKHySo9UGh3alvxdCMTUXbjbXz2uO1OBWcFJ0Conud3r8Aap0YdvKOEcZEMX0PRCtnJL5g5RGLAmRAQiYg0cpaGJRrvrXd/5g0/uRfqqz4AAAAASUVORK5CYII="}}]} \N {} sent \N \N outbound 162 1 5
2019-04-30 20:16:53.070419+00 2019-04-30 20:16:53.070441+00 118 mms bandwidth m-2tvvwcsnjmvjrcmeinkf3vi 2019-04-30T20:16:52Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/6cba1f88b8bf442fa515144210ec9941_mms_decrypted.png} sent \N \N outbound 162 1 5
2019-04-30 20:19:20.172867+00 2019-04-30 20:19:20.173011+00 119 sms bandwidth m-mvvategim4zmevm2wsvzi4y 2019-04-30T20:19:19Z +17732909650 +18722217507 {"attachments":[{"content-size":247312,"content-url":"https://mmmsg.acrobits.net/p4igc2uwv4swege5uhv23aqvsdvc9rix7","encryption-key":"66668CB117C65FCEF1042E669C0D1632","filename":"IMG-20190311-WA0005.jpg","hash":"3738107498","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAYAAAAICAIAAABVpBlvAAAAA3NCSVQICAjb4U/gAAAAo0lEQVQImQGYAGf/AdvIt9zh5+n9GKfPDQH+/v/9/gI3UXL2+/8IBAALEgoLEgkC/eIC+Pbq8evrCwP3HRoPRQvEFhQOAgMGBeLn7AYCAD0mCQkaIcuqgAAIDRAhIiS7rqh7cGwTFhsTFxoE/v379vn409jcobG79Pb1AAD/AQgKCQ0NDR0XFREUHOzp5U5EOgEGCAcJCw0eGRYCAwfi4d0PCAchUju4Kr943QAAAABJRU5ErkJggg=="}}]} \N {} sent \N \N outbound 162 1 5
2019-04-30 20:24:27.519269+00 2019-04-30 20:24:27.519286+00 120 mms bandwidth m-74o4lrwc7bytrkojg7bdfsy 2019-04-30T20:24:27Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/2c988c76786942eab5f15eda8ba8d1cb_mms_decrypted.png} sent \N \N outbound 162 1 5
2019-04-30 20:26:42.319043+00 2019-04-30 20:26:42.31906+00 121 mms bandwidth m-a4cli74ov47jbsisvy2lrjq 2019-04-30T20:26:41Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/a68b5639441842ee9cfb670d227823ee_mms_decrypted.jpeg} sent \N \N outbound 162 1 5
2019-04-30 22:12:55.437198+00 2019-04-30 22:12:55.437213+00 122 sms bandwidth m-bczozwdfmlff455ijqkjo5i 2019-04-30T22:12:54Z +17732909650 +18722217507 {"attachments":[{"content-size":172496,"content-url":"https://mmmsg.acrobits.net/uqgo6a6gzifge6srb6r6rgy1n1lx0wvcr","encryption-key":"9C5749B3F2851D3E1B75F1A63F4B9578","filename":"IMG-20180823-WA0004.jpg","hash":"3677705388","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAMAAAAGCAIAAACJh7NbAAAAA3NCSVQICAjb4U/gAAAAR0lEQVQImQE8AMP/AUA/KwoeFA7+FQQrFhz4/AYcICkEKTZFCwkE5ODnAvkC/woLBgYQCgL8+QTm7vwFCRIDJSMm9vz//fv6Ai4VqgZNIEIAAAAASUVORK5CYII="}}]} \N {} sent \N \N outbound 163 1 5
2019-04-30 22:14:34.92495+00 2019-04-30 22:14:34.924973+00 123 mms bandwidth m-jvykottbn2om2mfyx6g6woa 2019-04-30T22:14:34Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/95905c45da994a3784b6da0b96991532_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-04-30 23:05:15.744418+00 2019-04-30 23:05:15.744434+00 124 mms bandwidth m-r4hc2k4j5j7jc7z3bqzgjhq 2019-04-30T23:05:15Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/d7743e1565d44e0a8f37cc09a932c635_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-04-30 23:09:32.467161+00 2019-04-30 23:09:32.467181+00 125 mms bandwidth m-udcg42ywmo362vaw2jnnzwy 2019-04-30T23:09:31Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/408bf17651b64f9f92da396afff9e33f_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-04-30 23:18:37.77069+00 2019-04-30 23:18:37.770705+00 126 mms bandwidth m-lhv6xvocjq3nlsn725jl3ka 2019-04-30T23:18:37Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/e1d28ca7556343cea824bc0cbdc9a2a2_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-04-30 23:58:24.675107+00 2019-04-30 23:58:24.675126+00 127 mms bandwidth m-k4vy37xkaame6d6jzhmvagy 2019-04-30T23:58:24Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/d8560acdb30640d5aecdcc74bb9d3c84_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 01:00:21.04678+00 2019-05-01 01:00:21.046801+00 128 mms bandwidth m-cvndihrv56iekcu4ldu4pnq 2019-05-01T01:00:20Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/4998492b140947eeb57612ae144d7cfc_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 01:05:27.577035+00 2019-05-01 01:05:27.57706+00 129 mms bandwidth m-z2bdqyib3osgoekoksdul4i 2019-05-01T01:05:27Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/c6160607f4cc4db8b1c5cf3d8a92af28_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 01:06:57.352308+00 2019-05-01 01:06:57.352326+00 130 mms bandwidth m-vn5ld76in4jkgfobsooj2aq 2019-05-01T01:06:56Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/d9deb8f288fe4e91806ba6b54cae4b4b_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 01:10:26.319209+00 2019-05-01 01:10:26.319228+00 131 mms bandwidth m-tann4vksukmah4zuusshngy 2019-05-01T01:10:25Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/a4d8540f36fb452295e93afa8b4f0506_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 01:18:48.825453+00 2019-05-01 01:18:48.825482+00 132 sms bandwidth m-jpydyl2lauxftsvfldnaffi 2019-05-01T01:18:48Z +17732909650 +18722217507 {"attachments":[{"content-size":977504,"content-url":"https://mmmsg.acrobits.net/z32omhc4q9533y7fsd91bxwk2jswy608i","encryption-key":"5198E07228183A3494C234BF3672D5D7","filename":"IMG_20190317_230009.jpg","hash":"2367340228","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAUAAAAKCAIAAADzWwNnAAAAA3NCSVQICAjb4U/gAAAAqElEQVQImQXBsQ7BQBwH4Pv9r3dHoickUpEOFkQ05RmsBpvJG3gST2L0ECYji0hjYtSENG1Oe219H5ZBDxLr1cL1QtUe0jzsjHx1eSSv2t9sd85kPCjSNMnE83oO9icnTfJOSx2O99snanYjzKZ+kWQFGsh/sbFQSnHOhRBScNfrQ2ttjGGMEVFVVbwsSyJijIGTLayjtZbSAave8RcAF0IABPC6rq21f08COiEWW9OoAAAAAElFTkSuQmCC"}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 01:23:44.446795+00 2019-05-01 01:23:44.446813+00 133 mms bandwidth m-bgv65nthynortxy4nzto56q 2019-05-01T01:23:43Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/aeff3eb9660c4a76992b7105377c35fc_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-06-07 16:28:57.589685+00 2019-06-07 16:28:57.589715+00 221 sms bandwidth m-nlhfo35nqfl6xjjcd54xwqy 2019-06-07T16:28:57Z +13307660833 +18722217507 Do you get it? \N {} sent \N \N outbound 184 1 14
2019-06-07 16:29:23.131724+00 2019-06-07 16:29:23.131742+00 222 sms bandwidth m-zbcdgd7dbu6absirys3snza 2019-06-07T16:29:22Z +18722217507 +13307660833 I got them. \N received \N \N inbound 184 1 14
2019-05-01 01:29:25.499957+00 2019-05-01 01:29:25.501403+00 134 sms bandwidth m-7i3hvskprzjir7nr7hynopy 2019-05-01T01:29:25Z +17732909650 +18722217507 {"attachments":[{"content-size":2674129,"content-url":"https://mmmsg.acrobits.net/2xopk97qcvesq2odh3c1x7cm5lc48jof4","encryption-key":"52C7BD7B134B3FE480C14A00C9A2A2BB","filename":"IMG_20190326_125842.jpg","hash":"724573048","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAcAAAAKCAIAAAD3rtNaAAAAA3NCSVQICAjb4U/gAAAA50lEQVQImQHcACP/AYFCIyNbZ/X19TlBTPb4+fj4+Pv5+wQZUlv29u/+/QEHBwr5+v8DAv75Av4Cy83Y/Pf3/fn4/v8D/gAE/wEHAAEFAQsNDIZ2XAAAARcqQOXj8N7NudTh6AMIBwXq6/owRlGEdHEQBuyjsMAMCgEDgWVODydG8+/58enb6Ov1CgwM9/j+AgL36B/uwvb4/+jq6+Hn6G1lavT59wNEKxjn5+Xo/g7a18719/jIzss4OkMCBwoD/v38/9KqBwL8GwwB8/T2sq+oBPr6+gkIBBgUCTkEAfkDBNrR7BskK+KJdjAiaNdAAAAAAElFTkSuQmCC"}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 01:37:15.840908+00 2019-05-01 01:37:15.840925+00 135 sms bandwidth m-kzqa5k4h7lll7gjbbgmceea 2019-05-01T01:37:15Z +17732909650 +18722217507 {"attachments":[{"content-size":118053,"content-url":"https://mmmsg.acrobits.net/qgsw8aj3pvm8jmmt853pzknj2p6wjh9x6","encryption-key":"5190725752A15D14FDA69E118F677598","filename":"IMG-20190321-WA0008.jpg","hash":"1982468489","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAYAAAAICAIAAABVpBlvAAAAA3NCSVQICAjb4U/gAAAAo0lEQVQImQGYAGf/AYeQlwoICR8bGBcVEhESDQkGBwQNCQYlIR8CBgf/AgMmJCX9/f0Ey9DYBwsQoKGkHRoWsSAbDxgfARskKQoGBRMTEwkJCRYWFvP3/AT9+vXv+AAJBQYyMz8EBAAM+PsEUlZg3drYKCcrtbeu///+CgoLA/Ly6fz8+uzt7d3g3vb59/Hy8gL3+/4IDBUDCBD//wEQEhIICwqDojjaKxHpMwAAAABJRU5ErkJggg=="}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 01:38:31.066463+00 2019-05-01 01:38:31.06648+00 136 sms bandwidth m-rddgnipcpkj774zcezm6bkq 2019-05-01T01:38:30Z +17732909650 +18722217507 {"attachments":[{"content-size":82038,"content-url":"https://mmmsg.acrobits.net/s5x1zp7d6z9kq3cxtcgqbz2p7zhyiuh44","encryption-key":"9A2153DC077896E1DF2CBB33F02A21E2","filename":"IMG-20190324-WA0000.jpg","hash":"4148220019","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAoAAAAFCAIAAADzBuo/AAAAA3NCSVQICAjb4U/gAAAApklEQVQImQGbAGT/AZ2mq83FxUpNUxMTEa+urCQkJvHu7S83RkU9JgAAAAQICAwQGSC2vstZUUL08u/Iytfm5NWNobQkND0B5MoDCurd0MS/0ewEYUD1SEQrs6y2Ifb8e3JAa1U2o6i2A4JkQzEpGd/m40wzGOni2VZBMOHw5Q8RC8XBvhwiMQMkEAvF1d0SEhYaIQkKEBDP1c+Vq9X+9/v+CBcFAwVrb0X36iCUUgAAAABJRU5ErkJggg=="}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 01:41:08.434416+00 2019-05-01 01:41:08.434437+00 137 sms bandwidth m-rqwas63vge4l6h4k2zk5x3y 2019-05-01T01:41:07Z +17732909650 +18722217507 {"attachments":[{"content-size":197188,"content-url":"https://mmmsg.acrobits.net/znzvylvrm18qlht8maaeabiks6j91omcl","encryption-key":"AB7C1F611FAF8AA3A26DB23863BD79EE","filename":"IMG-20190322-WA0002.jpg","hash":"3296515517","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAYAAAAICAIAAABVpBlvAAAAA3NCSVQICAjb4U/gAAAAo0lEQVQImQGYAGf/A7qRdd7Y3REPDQwLDwoAAAgLCgEFBQVMKBzX6fHr9/sKBQHv+P0DCAYJ6vP4GQoHKBkOGgMF4vP4Ag4HBx0DBhgKByMSEc3r9jYXDwP6AAA3Dg9PSjMcEAvg5PISCgIACAYJfy0vGg4OGgwMWB0jHw8SBA8IBvcA+GM7Jh4UELq72fj//QOYZ1nP9v73/Pmz0N7X9PI5IRXx9zRQ7zn3sAAAAABJRU5ErkJggg=="}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 01:46:01.491204+00 2019-05-01 01:46:01.49123+00 138 sms bandwidth m-4xscmpmon5eqjpf7kbkydrq 2019-05-01T01:46:01Z +17732909650 +18722217507 {"attachments":[{"content-size":159073,"content-url":"https://mmmsg.acrobits.net/705gci87k1dqcyfyicwu8lyzobi6fnw1o","encryption-key":"421494186597532E8F72BC216E55B918","filename":"IMG-20190321-WA0007.jpg","hash":"1460259914","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAYAAAAICAIAAABVpBlvAAAAA3NCSVQICAjb4U/gAAAAo0lEQVQImQGYAGf/AUxkihUPDfj6+/j8/f7+/C8iGgIA6cUIB/8BAwMyJRtLPi7u9vsDCxEO3NbFFQj89e/h4N7WIiY2A9XRztvZ2/n18dTV0fb29L65qwLo6vCAfH/8BAoFAgTf5O34/fsBpqmuICAi//z9/P36/v7+jJKVAzo6OyMlIvn//AkICQECAjMzMQL9AP+7ubPx9Pfw9fPr7e7v7e59qVaLfGs7kgAAAABJRU5ErkJggg=="}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 01:48:05.725823+00 2019-05-01 01:48:05.725839+00 139 sms bandwidth m-zqpt65dursz44jhyedhddra 2019-05-01T01:48:05Z +17732909650 +18722217507 {"attachments":[{"content-size":67911,"content-url":"https://mmmsg.acrobits.net/yw2m5n93x4a1tyi57xvvuane68l8cf6tr","encryption-key":"F404C38F02878D7EC9E7E59895551261","filename":"IMG-20190325-WA0000.jpg","hash":"1740103903","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAMAAAAGCAIAAACJh7NbAAAAA3NCSVQICAjb4U/gAAAAR0lEQVQImQE8AMP/ASMlPP/7+fT07AQICAr/Avz6+gcBz7qNCAgI5uPiAlZjmwYGCL/G4gIwLSDp6Oo5MBEBDwwV/wD8/fz+VGUb5R5LNdMAAAAASUVORK5CYII="}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 01:49:47.317527+00 2019-05-01 01:49:47.317543+00 140 sms bandwidth m-whpt5tjallnduemgquxtlri 2019-05-01T01:49:46Z +17732909650 +18722217507 {"attachments":[{"content-size":1335751,"content-url":"https://mmmsg.acrobits.net/qgo45ylvmicyb978nw2wi44r0oht6dimg","encryption-key":"AE3846DADEC8665F3470C4364E01BF51","filename":"IMG_20190423_073924.jpg","hash":"2051642531","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAUAAAAKCAIAAADzWwNnAAAAA3NCSVQICAjb4U/gAAAAh0lEQVQImQXBWxKCMAwF0OYm0EDxgeO/407c/0r8khEZKLRNPYdez8epD74Ntu7vZRZB1VyBXbkEn4WTEWU+ypY2xSBkRDm2pshAuHHP2jWiQCO8uIRxPOvl/qnblG3+TXwlxHVjw1Et1ioxW2d1llUWFO948MERlcROuy8OabyuJZkD0uJZ/hrDQdLGwWyPAAAAAElFTkSuQmCC"}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 01:54:43.642402+00 2019-05-01 01:54:43.642421+00 141 mms bandwidth m-vbssv2aypff7ffijeve7gwq 2019-05-01T01:54:43Z +17739699892 +18722217507 hello y \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/79461d9aeb3846ffa6b3c1a60d2b3d2e_mms_logo_buyercall_yellow.png} sent \N \N outbound 163 1 10
2019-05-01 15:30:56.258501+00 2019-05-01 15:30:56.258524+00 142 sms bandwidth m-6gwmi5xsttix3yablb575qq 2019-05-01T15:30:55Z +17732909650 +18722217507 {"attachments":[{"content-size":67911,"content-url":"https://mmmsg.acrobits.net/yohkdawrrzetdp4jrfxbo38s77nktwyhg","encryption-key":"577EEA5FFC021CE9A63BBA5F194460CF","filename":"IMG-20190325-WA0000.jpg","hash":"1740103903","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAMAAAAGCAIAAACJh7NbAAAAA3NCSVQICAjb4U/gAAAAR0lEQVQImQE8AMP/ASMlPP/7+fT07AQICAr/Avz6+gcBz7qNCAgI5uPiAlZjmwYGCL/G4gIwLSDp6Oo5MBEBDwwV/wD8/fz+VGUb5R5LNdMAAAAASUVORK5CYII="}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 15:33:05.824482+00 2019-05-01 15:33:05.824502+00 143 sms bandwidth m-dxof4ie2gcuvmzvedrk2mzi 2019-05-01T15:33:05Z +17732909650 +18722217507 {"attachments":[{"content-size":98236,"content-url":"https://mmmsg.acrobits.net/ng24wsbuib70pc5aux7j4ilavxu3kbpm3","encryption-key":"5147F319A78720DD36678B69AE1B61A8","filename":"IMG-20190323-WA0000.jpg","hash":"4199186464","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAMAAAAGCAIAAACJh7NbAAAAA3NCSVQICAjb4U/gAAAAR0lEQVQImQE8AMP/AU1LTAkJDdvb2wQOHxkk9Ql5aC8D7OTp8AD4LUlIAQwLEDs9Pfbz8wAjJCb29/n///8At7i8GBkdQEFFsMMYvJBBn2MAAAAASUVORK5CYII="}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 16:22:19.634579+00 2019-05-01 16:22:19.634599+00 144 sms bandwidth m-vpihs2stygtafwdwqdmqc4i 2019-05-01T16:22:19Z +17732909650 +18722217507 {"attachments":[{"content-size":67911,"content-url":"https://mmmsg.acrobits.net/rph8ghevznhnb8ap0yj8p1c64s9dh0wft","encryption-key":"A00BA933AD71C049E766D50D5EA0F016","filename":"IMG-20190325-WA0000.jpg","hash":"1740103903","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAMAAAAGCAIAAACJh7NbAAAAA3NCSVQICAjb4U/gAAAAR0lEQVQImQE8AMP/ASMlPP/7+fT07AQICAr/Avz6+gcBz7qNCAgI5uPiAlZjmwYGCL/G4gIwLSDp6Oo5MBEBDwwV/wD8/fz+VGUb5R5LNdMAAAAASUVORK5CYII="}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 16:31:58.871043+00 2019-05-01 16:31:58.871064+00 145 sms bandwidth m-igroufdlon5mcoxiuqh446q 2019-05-01T16:31:58Z +17732909650 +18722217507 {"attachments":[{"content-size":145145,"content-url":"https://mmmsg.acrobits.net/a3mhk0z9lpscrp3ercjg4ply2x33u56ap","encryption-key":"45C31F086DAC57579764850AE055D916","filename":"IMG-20190321-WA0009.jpg","hash":"3297409297","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAYAAAAICAIAAABVpBlvAAAAA3NCSVQICAjb4U/gAAAAo0lEQVQImQGYAGf/AcTFx9nd4VVSSQ0LDuHm6dPY3wQAAAImKCjo6/L49/78+PcJA/wC3+jtAwD98+zp5uHc9vHsEAsDBPHr4cbj4+fq6xUNC/X29u329wEyPEX5/QELCQj6+voBAQH09PQE7fHzAgIEDwsK6e/v+Pn2/fz/AnRnXv357ePl1/v99AkHAgMC+gLm6uz+AP8ODxccFhb09/T+/vyZ8VlgeKyMFwAAAABJRU5ErkJggg=="}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 16:34:09.191703+00 2019-05-01 16:34:09.191719+00 146 sms bandwidth m-4msyc65nj6yfkqez2vslpqy 2019-05-01T16:34:08Z +17732909650 +18722217507 {"attachments":[{"content-size":159073,"content-url":"https://mmmsg.acrobits.net/wkmhjyjds4lfyl9zlj9vctgz0hhudz1qn","encryption-key":"FF641FFFF21882BA4E4F4AF88F65373C","filename":"IMG-20190321-WA0007.jpg","hash":"1460259914","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAYAAAAICAIAAABVpBlvAAAAA3NCSVQICAjb4U/gAAAAo0lEQVQImQGYAGf/AUxkihUPDfj6+/j8/f7+/C8iGgIA6cUIB/8BAwMyJRtLPi7u9vsDCxEO3NbFFQj89e/h4N7WIiY2A9XRztvZ2/n18dTV0fb29L65qwLo6vCAfH/8BAoFAgTf5O34/fsBpqmuICAi//z9/P36/v7+jJKVAzo6OyMlIvn//AkICQECAjMzMQL9AP+7ubPx9Pfw9fPr7e7v7e59qVaLfGs7kgAAAABJRU5ErkJggg=="}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 16:36:46.460226+00 2019-05-01 16:36:46.460258+00 147 sms bandwidth m-uqjytuwsdlovlkewrgrfzoy 2019-05-01T16:36:45Z +17732909650 +18722217507 {"attachments":[{"content-size":145145,"content-url":"https://mmmsg.acrobits.net/b8wgf5masv84xhhsou4com2tr8exxht9b","encryption-key":"F09847C8B4E2F691E1A0CC7E49E5E06A","filename":"IMG-20190321-WA0009.jpg","hash":"3297409297","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAYAAAAICAIAAABVpBlvAAAAA3NCSVQICAjb4U/gAAAAo0lEQVQImQGYAGf/AcTFx9nd4VVSSQ0LDuHm6dPY3wQAAAImKCjo6/L49/78+PcJA/wC3+jtAwD98+zp5uHc9vHsEAsDBPHr4cbj4+fq6xUNC/X29u329wEyPEX5/QELCQj6+voBAQH09PQE7fHzAgIEDwsK6e/v+Pn2/fz/AnRnXv357ePl1/v99AkHAgMC+gLm6uz+AP8ODxccFhb09/T+/vyZ8VlgeKyMFwAAAABJRU5ErkJggg=="}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 16:39:01.693687+00 2019-05-01 16:39:01.693711+00 148 sms bandwidth m-g4zb6bgphdk7nxmrkibvspi 2019-05-01T16:39:01Z +17732909650 +18722217507 {"attachments":[{"content-size":196361,"content-url":"https://mmmsg.acrobits.net/z0fr0kxlucp9ywo2i9n9mn5lg4r72tz99","encryption-key":"B44D738C9A652B298EFCB6138A0EAFF3","filename":"IMG-20190317-WA0003.jpg","hash":"519334538","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAYAAAAICAIAAABVpBlvAAAAA3NCSVQICAjb4U/gAAAAo0lEQVQImQGYAGf/AThGYw4OFCAL+O/y8Ojq3/cEEwMLCgwlJCkLBwABCxvz8/EAAQICBBME+PTpwMXAA//2/O3n7PbsAhL/Debf2DxjLdfTx/kNDv/v+QMUERYPDQ728Pf78Pj39Pf9/P0CAQH/+Pby+OX2AwMFAwUEAAD+AggJBgsXHfv++/wKAAkeAfv89gIZGReWnaDv8/Du5+rn0+kEBAT2EUnBReJPUwAAAABJRU5ErkJggg=="}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 16:41:15.141536+00 2019-05-01 16:41:15.141606+00 149 mms bandwidth m-q67xnzmjjux6f4ab57uqr5y 2019-05-01T16:41:14Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/31560ed2490445939c2381891989b3ec_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 16:42:29.917081+00 2019-05-01 16:42:29.918022+00 150 sms bandwidth m-esnmwpsyobixpznl63k4h7i 2019-05-01T16:42:29Z +17732909650 +18722217507 {"attachments":[{"content-size":2789703,"content-url":"https://mmmsg.acrobits.net/594v2xt1l1nyyyt69hf3d0qjzgetug0w8","encryption-key":"0D10EF2A82797C7D768061592418EEAC","filename":"image-20170524_212111.jpg","hash":"474233639","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAcAAAAKCAIAAAD3rtNaAAAAA3NCSVQICAjb4U/gAAAA50lEQVQImQHcACP/AWtqcLiwrZqGf/sB/+vu6+Hf66q8sAIxCQEBAQOhqq0pIh0B/AEEAfoNAAIDBfv3cUxFj7XBEfXmSk9H1MS/1dbbA4+Mg9/q6P/y6vcBCSQA+uzd1xINCgIeFgv/9vMUDw1qWU6Ns8DcAhHW/AcC8evtNDQ0JhwXKjk2j31v5ezsvs3WAbijkIKFlAgFBAUB/wEGBP8AAunx9AEnJB8DA/8OBAUE/gIDBv339wT5/vgCcVRE+vQA+PgH9Pn97/MA9fz3+Pn+ARMREhEKDP7+/gME/////v79A+zz8yyKbLK+hSeWAAAAAElFTkSuQmCC"}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 16:44:58.686776+00 2019-05-01 16:44:58.686792+00 151 sms bandwidth m-yawsnwptutrx35xzqiqmlea 2019-05-01T16:44:58Z +17732909650 +18722217507 {"attachments":[{"content-size":166287,"content-url":"https://mmmsg.acrobits.net/9vyro19s1txc2imglzikh043bjk878tdf","encryption-key":"2BDA4EC7BFA71C3134B54F198AE5054B","filename":"IMG-20190321-WA0011.jpg","hash":"3047008281","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAYAAAAICAIAAABVpBlvAAAAA3NCSVQICAjb4U/gAAAAo0lEQVQImQGYAGf/AXh9kCsqIufr80c/NP0AAdzf5gQFBgPu8PMPDQr8/fr5+fkQDQQEBAD99vTxAwD56Ojn8/X46u7xAys3Q/7+AuLu+c7e7wABAwD9+QE8Pjvp5ev+CgYIAwry9fr28+QABAgJJiorrKyuwMDCTFBRvr/BBGZjZuft8auyuP///wMHEQICAgMPFBgCAwQAAAIAAP8NDQ39+vlAQUkxPvsRLAAAAABJRU5ErkJggg=="}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 16:45:43.704131+00 2019-05-01 16:45:43.704148+00 152 sms bandwidth m-rjjkbrpr57xfp6brjoamt7i 2019-05-01T16:45:43Z +17732909650 +18722217507 {"attachments":[{"content-size":166287,"content-url":"https://mmmsg.acrobits.net/rowsqu7l40a1vbhfb2h14nqv4geha22wr","encryption-key":"15F802BEBFF07FB8BA09D39A8B8D83F2","filename":"IMG-20190321-WA0011.jpg","hash":"3047008281","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAYAAAAICAIAAABVpBlvAAAAA3NCSVQICAjb4U/gAAAAo0lEQVQImQGYAGf/AXh9kCsqIufr80c/NP0AAdzf5gQFBgPu8PMPDQr8/fr5+fkQDQQEBAD99vTxAwD56Ojn8/X46u7xAys3Q/7+AuLu+c7e7wABAwD9+QE8Pjvp5ev+CgYIAwry9fr28+QABAgJJiorrKyuwMDCTFBRvr/BBGZjZuft8auyuP///wMHEQICAgMPFBgCAwQAAAIAAP8NDQ39+vlAQUkxPvsRLAAAAABJRU5ErkJggg=="}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 16:49:59.460279+00 2019-05-01 16:49:59.460301+00 153 sms bandwidth m-hshfv5wslyivpgwt3klpmiy 2019-05-01T16:49:58Z +17732909650 +18722217507 {"attachments":[{"content-size":81959,"content-type":"image/png","content-url":"https://mmmsg.acrobits.net/96hj3a4oscbmtyb21i39uiizkphnjblkb","encryption-key":"4DA2535BE7D18F8106BCD37391159DFA","filename":"Screenshot_20190306-151213.png","hash":"3107419917","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAUAAAAICAIAAAC+k6JsAAAAA3NCSVQICAjb4U/gAAAAO0lEQVQImWNUc65mQAa///z7/edfaXAghMEEEWVk+gtl/P7zD1k5EwMqYHr16hUjIyOE8/jxY3T16AAAIzwaL3A45NoAAAAASUVORK5CYII="}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 16:51:43.261699+00 2019-05-01 16:51:43.261724+00 154 mms bandwidth m-2lhnjzhdzcfnrbi56bc46ji 2019-05-01T16:51:42Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/0b39bcc255a04935ae4df6441ce3e75d_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 16:54:52.712563+00 2019-05-01 16:54:52.712587+00 155 sms bandwidth m-7pj6ccqvi2ntwo3vbcld2tq 2019-05-01T16:54:52Z +17732909650 +18722217507 {"attachments":[{"content-size":159073,"content-url":"https://mmmsg.acrobits.net/ux11otstr1afex4lq5ykw7nxmqt11k7i8","encryption-key":"DB0B9D8A9649CD87415F147C68488D11","filename":"IMG-20190321-WA0007.jpg","hash":"1460259914","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAYAAAAICAIAAABVpBlvAAAAA3NCSVQICAjb4U/gAAAAo0lEQVQImQGYAGf/AUxkihUPDfj6+/j8/f7+/C8iGgIA6cUIB/8BAwMyJRtLPi7u9vsDCxEO3NbFFQj89e/h4N7WIiY2A9XRztvZ2/n18dTV0fb29L65qwLo6vCAfH/8BAoFAgTf5O34/fsBpqmuICAi//z9/P36/v7+jJKVAzo6OyMlIvn//AkICQECAjMzMQL9AP+7ubPx9Pfw9fPr7e7v7e59qVaLfGs7kgAAAABJRU5ErkJggg=="}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 16:56:21.061469+00 2019-05-01 16:56:21.061495+00 156 mms bandwidth m-wmgpw757gs3puhinvbjihzy 2019-05-01T16:56:20Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/83047147c1094147a717259705569a70_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 16:59:07.563234+00 2019-05-01 16:59:07.56325+00 157 mms bandwidth m-ec2ibxqx5kbl3d7qpoe72la 2019-05-01T16:59:06Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/4344312cc7934378a1d1718b40acec30_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 17:02:05.532131+00 2019-05-01 17:02:05.532147+00 158 mms bandwidth m-nd6t7z6f373qnekpilqzogi 2019-05-01T17:02:05Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/f13723b802994d5eb5e95d018c400ec9_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 17:04:01.663871+00 2019-05-01 17:04:01.663891+00 159 mms bandwidth m-hy3mzjsu433oudoql2x6pqa 2019-05-01T17:04:01Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/69b539faf7f046019b5a624117df5aaf_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 17:06:12.398161+00 2019-05-01 17:06:12.398187+00 160 mms bandwidth m-tegrnkbtnf3q3zclmeqsvla 2019-05-01T17:06:11Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/759357d2efe347efa2dfc3d190b6e0f0_mms_decrypted} sent \N \N outbound 163 1 5
2019-05-01 17:08:47.535528+00 2019-05-01 17:08:47.535545+00 161 sms bandwidth m-ecwdi5ydeuwk3dpwfivewoq 2019-05-01T17:08:47Z +17732909650 +18722217507 {"attachments":[{"content-size":67911,"content-url":"https://mmmsg.acrobits.net/blt6s56qxbf3oriv9kdakr2ilgxwn3ls6","encryption-key":"BE5FECC47C7C546DD991C295EF26C2CC","filename":"IMG-20190325-WA0000.jpg","hash":"1740103903","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAMAAAAGCAIAAACJh7NbAAAAA3NCSVQICAjb4U/gAAAAR0lEQVQImQE8AMP/ASMlPP/7+fT07AQICAr/Avz6+gcBz7qNCAgI5uPiAlZjmwYGCL/G4gIwLSDp6Oo5MBEBDwwV/wD8/fz+VGUb5R5LNdMAAAAASUVORK5CYII="}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 17:10:14.728386+00 2019-05-01 17:10:14.728405+00 162 mms bandwidth m-5mhkdvyqf36ug54gedwb7ma 2019-05-01T17:10:14Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/46bdb725fe48486f8962d9f0ec6c20b6_mms_decrypted} sent \N \N outbound 163 1 5
2019-05-01 17:12:20.119846+00 2019-05-01 17:12:20.119866+00 163 mms bandwidth m-tplopsvvjow344jyrj7rdqi 2019-05-01T17:12:19Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/7159505187fa46238b0581b42827236b_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 17:15:42.455138+00 2019-05-01 17:15:42.455153+00 164 mms bandwidth m-ukneiyh4mmkjkykk3xgjaaq 2019-05-01T17:15:41Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/3e3d6f0e05324be7b4e52d8300889471_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 17:17:18.269163+00 2019-05-01 17:17:18.269178+00 165 mms bandwidth m-unvlcy3ihomi7raibl5objq 2019-05-01T17:17:17Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/d2a838a3cc374536bce4491fd23060a8_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 17:23:34.510186+00 2019-05-01 17:23:34.510215+00 166 mms bandwidth m-m7qcvpbm7irdtrvxtqfwkfa 2019-05-01T17:23:34Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/564d80da3a6e4d24a1956b8e9a3a25f4_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 17:29:04.716851+00 2019-05-01 17:29:04.716872+00 167 sms bandwidth m-a4pv67wsz35bgqcm4n7sxgi 2019-05-01T17:29:04Z +17732909650 +18722217507 {"attachments":[{"content-size":1623,"content-url":"https://mmmsg.acrobits.net/ei5lfpkqf60i9c7k1kv5mbgxq4d06ha6k","encryption-key":"7B3FF73FD0DCCE3C5C73AA1BC225DC13","filename":"boo.jpg","hash":"3628388868","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAIAAAACDbGyAAAAA3NCSVQICAjb4U/gAAAAUUlEQVQImWNkLDjEgAz233n149+fn7/+vfn2nTH/CNO6U8/ZGJhYWRiWnXvGwPSfkbHgECMjAx/z30//fv//x8HCwMDw/z/Dxz/MDAzMDAwMAMx2HqB67fvlAAAAAElFTkSuQmCC"}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 17:31:27.426751+00 2019-05-01 17:31:27.426763+00 168 sms bandwidth m-a6eptft6gn5fcotwga6cviq 2019-05-01T17:31:26Z +17732909650 +18722217507 {"attachments":[{"content-size":1623,"content-url":"https://mmmsg.acrobits.net/ueiy16u0owkvwdl6ccybskpb4fwvo1imc","encryption-key":"D6E810CA37F178665224AFDA0A65B0E2","filename":"boo.jpg","hash":"3628388868","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAIAAAACDbGyAAAAA3NCSVQICAjb4U/gAAAAUUlEQVQImWNkLDjEgAz233n149+fn7/+vfn2nTH/CNO6U8/ZGJhYWRiWnXvGwPSfkbHgECMjAx/z30//fv//x8HCwMDw/z/Dxz/MDAzMDAwMAMx2HqB67fvlAAAAAElFTkSuQmCC"}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 17:32:56.174112+00 2019-05-01 17:32:56.174134+00 169 sms bandwidth m-6ophjr2egs5tjgejig7lzcy 2019-05-01T17:32:55Z +17732909650 +18722217507 {"attachments":[{"content-size":1623,"content-url":"https://mmmsg.acrobits.net/wbirtwm5bqfqagk2axreyajrbwqte35rr","encryption-key":"89386AC9278D87388529B9C89DACF521","filename":"boo.jpg","hash":"3628388868","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAIAAAACDbGyAAAAA3NCSVQICAjb4U/gAAAAUUlEQVQImWNkLDjEgAz233n149+fn7/+vfn2nTH/CNO6U8/ZGJhYWRiWnXvGwPSfkbHgECMjAx/z30//fv//x8HCwMDw/z/Dxz/MDAzMDAwMAMx2HqB67fvlAAAAAElFTkSuQmCC"}}]} \N {} sent \N \N outbound 163 1 5
2019-05-01 17:36:11.565761+00 2019-05-01 17:36:11.565892+00 170 mms bandwidth m-cstzw2s477hutj4ww2a7sly 2019-05-01T17:36:11Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/a8de62e725864757822f7e3b5f8f35ac_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 17:38:32.339659+00 2019-05-01 17:38:32.33968+00 171 mms bandwidth m-dkyfqwi2djn6qgoc727d2cy 2019-05-01T17:38:31Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/11016969cafb4c24b20fb8bef8d6cfa7_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 17:44:08.401935+00 2019-05-01 17:44:08.401953+00 172 mms bandwidth m-plbixy3jiz2vq6jtiu72w5q 2019-05-01T17:44:07Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/be93c73e07c94e56a722bbe0a96a4a35_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 17:48:46.292007+00 2019-05-01 17:48:46.292028+00 173 mms bandwidth m-rmremqkujhp7dqphwgb4uly 2019-05-01T17:48:45Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/387113a3a8db47f6b894742fea5315d1_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 17:50:30.706098+00 2019-05-01 17:50:30.70611+00 174 mms bandwidth m-kxtvmrmjktf7tqzvtqryygq 2019-05-01T17:50:29Z +18722217507 +17732909650 \N {https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/IMG-20190429-WA0014-m-kxtvmrmjktf7tqzvtqryygq.jpg,https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/smil-m-kxtvmrmjktf7tqzvtqryygq.xml} received \N \N inbound 163 1 5
2019-05-01 18:32:34.898609+00 2019-05-01 18:32:34.898633+00 175 mms bandwidth m-l7faiajmv5lxf75cfntmx5i 2019-05-01T18:32:34Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/e5d646674ed94815a0578effd1108f51_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 18:54:25.981554+00 2019-05-01 18:54:25.981576+00 176 mms bandwidth m-a7l5kyy6mbfwzv73cnfqsti 2019-05-01T18:54:25Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/8cf0412b8e1a4d28ae38322888d9d7bb_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 19:00:09.054473+00 2019-05-01 19:00:09.05449+00 177 mms bandwidth m-xbau275mmkcndlsozrrx4ny 2019-05-01T19:00:08Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/50db737360d745718e401bd6898e6ed5_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 19:08:23.91111+00 2019-05-01 19:08:23.911134+00 178 mms bandwidth m-axrgofgamyofp67kwpkxojy 2019-05-01T19:08:23Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/6fff27e5c20f4ba5abc7a6d682ec7c9e_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 19:10:36.73926+00 2019-05-01 19:10:36.739286+00 179 mms bandwidth m-ppnwjjczb64xyhmccsj7fgi 2019-05-01T19:10:36Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/5f1b5edd7ea54781852fe776564a10c1_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 19:12:59.828334+00 2019-05-01 19:12:59.828372+00 180 mms bandwidth m-xzsyhygdngiueapsgatjwka 2019-05-01T19:12:59Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/hello_1/c5c1b0370ff4429ebe2b36c177589597_mms_decrypted.jpeg} sent \N \N outbound 163 1 5
2019-05-01 19:58:25.044232+00 2019-05-01 19:58:25.044279+00 181 mms bandwidth m-74a2hjixc4tq7itxxnhw2hq 2019-05-01T19:58:24Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/10c6ce616f034a05bf4e8755eec00e5e_mms_dc008614-a131-4f8e-a2da-bc26f11d5b73.jpeg} sent \N \N outbound 163 1 5
2019-06-07 16:29:32.578977+00 2019-06-07 16:29:32.578996+00 223 sms bandwidth m-wlgrdp7mmrcc6lqc6nwqkya 2019-06-07T16:29:32Z +13307660833 +18722217507 Sweet \N {} sent \N \N outbound 184 1 14
2019-06-07 16:52:00.935717+00 2019-06-07 16:52:00.935731+00 229 mms bandwidth m-jtjj3oeebg4o2uwobkgwf5i 2019-06-07T16:52:00Z +13307660833 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/26d1303d85744eef947feefa0727ccd5_mms_00000IMG_00000_BURST20190427122005872_COVER.jpg} sent \N \N outbound 184 1 14
2019-05-02 19:23:38.736182+00 2019-05-02 19:23:38.736196+00 182 sms bandwidth m-opzgopxz27n65wxdvemo7yq 2019-05-02T19:23:38Z +17732909650 +18722217507 {"attachments":[{"content-size":1623,"content-url":"https://mmmsg.acrobits.net/zvx5v7uy3cvxef6ln3kb9jz50frpcxn29","encryption-key":"EE09216B75E0B4730FBD2B308EEAE47C","filename":"boo.jpg","hash":"3628388868","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAIAAAACDbGyAAAAA3NCSVQICAjb4U/gAAAAUUlEQVQImWNkLDjEgAz233n149+fn7/+vfn2nTH/CNO6U8/ZGJhYWRiWnXvGwPSfkbHgECMjAx/z30//fv//x8HCwMDw/z/Dxz/MDAzMDAwMAMx2HqB67fvlAAAAAElFTkSuQmCC"}}],"body":"Hello"} \N {} sent \N \N outbound 164 1 5
2019-05-02 19:32:19.74478+00 2019-05-02 19:32:19.744794+00 183 sms bandwidth m-rnla7ppc64c2etmmgb5mb4i 2019-05-02T19:32:19Z +17732909650 +18722217507 {"attachments":[{"content-size":1623,"content-url":"https://mmmsg.acrobits.net/4xmmed887pswa1jt6kktzamsaf1iltgws","encryption-key":"67688E64E0307C34868E59A331CE8EB9","filename":"boo.jpg","hash":"3628388868","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAIAAAACDbGyAAAAA3NCSVQICAjb4U/gAAAAUUlEQVQImWNkLDjEgAz233n149+fn7/+vfn2nTH/CNO6U8/ZGJhYWRiWnXvGwPSfkbHgECMjAx/z30//fv//x8HCwMDw/z/Dxz/MDAzMDAwMAMx2HqB67fvlAAAAAElFTkSuQmCC"}}],"body":"Hello there cowboy"} \N {} sent \N \N outbound 164 1 5
2019-05-02 20:05:25.417705+00 2019-05-02 20:05:25.417721+00 184 mms bandwidth m-jtxjzoen5vafbyxjykdkqby 2019-05-02T20:05:24Z +17732909650 +18722217507 Mac and cheese \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/47e855947c3342d1bfb10b0657af0048_mms_ac48eeba-114f-4e9b-9587-f82abf3359ce.jpeg} sent \N \N outbound 164 1 5
2019-05-02 22:06:55.109251+00 2019-05-02 22:06:55.109267+00 185 mms bandwidth m-apirx4ncozrnndv66lt7klq 2019-05-02T22:06:54Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/f7b2183c6bdf4456a2d4f89f51246628_mms_243bb529-b502-4f4f-ad54-dc0435ab523c.jpeg} sent \N \N outbound 164 1 5
2019-05-02 22:11:23.228955+00 2019-05-02 22:11:23.228973+00 186 mms bandwidth m-3vkc2fpygs37btt5qkd6bga 2019-05-02T22:11:22Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/98d167e84a71411283f443163c4c704a_mms_f509deef-e2f5-4574-93bd-7a93da7f6a6a.jpeg} sent \N \N outbound 164 1 5
2019-05-03 01:32:09.068165+00 2019-05-03 01:32:09.068185+00 187 sms bandwidth m-lub6g5ghib34jth3g32ggvq 2019-05-03T01:32:08Z +17732909650 +18722217507 Chutbut \N {} sent \N \N outbound 164 1 5
2019-05-03 01:33:26.940339+00 2019-05-03 01:33:26.940357+00 188 mms bandwidth m-styuorllagkw6dy6qq4baua 2019-05-03T01:33:26Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/0e7ec4f18efb466cbdd1604516249df7_mms_IMG_20190501_101416.jpg,https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/f711989233f541b28262585a09486a41_mms_IMG_20190501_101340.jpg,https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/0fa99df772f04823a5733d5e0451018f_mms_IMG_20190501_101315.jpg} sent \N \N outbound 164 1 5
2019-05-03 01:34:55.784399+00 2019-05-03 01:34:55.784423+00 189 mms bandwidth m-qw5ikbzpgsiqygigq5j7hnq 2019-05-03T01:34:55Z +17732909650 +18722217507 Herman is cool \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/a8b58a8e97f44db993057d364d7c3f60_mms_clue.bmp,https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/d0d0d5d6b5274e7cb004389ac438bb24_mms_download.jpeg,https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/7a43ef377dc64d2e80a2eb1ca15fdd23_mms_boo.jpg} sent \N \N outbound 164 1 5
2019-05-03 21:58:05.629574+00 2019-05-03 21:58:05.629596+00 190 sms bandwidth m-kg5mahgq6ts2fxfgaidmzgi 2019-05-03T21:58:05Z +17732909650 +18722217507 {"attachments":[{"content-size":1623,"content-url":"https://mmmsg.acrobits.net/fdxjvq9axleswexv2jlf7vfo1xdllbcxs","encryption-key":"BE588D704BACDB3214C164B73A93A176","filename":"boo.jpg","hash":"3628388868","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAIAAAACDbGyAAAAA3NCSVQICAjb4U/gAAAAUUlEQVQImWNkLDjEgAz233n149+fn7/+vfn2nTH/CNO6U8/ZGJhYWRiWnXvGwPSfkbHgECMjAx/z30//fv//x8HCwMDw/z/Dxz/MDAzMDAwMAMx2HqB67fvlAAAAAElFTkSuQmCC"}}]} \N {} sent \N \N outbound 165 1 5
2019-05-03 22:09:26.02228+00 2019-05-03 22:09:26.022299+00 191 sms bandwidth m-sucbmlurq2emat7kjd7apkq 2019-05-03T22:09:25Z +17732909650 +18722217507 {"attachments":[{"content-size":1363960,"content-type":"image/gif","content-url":"https://mmmsg.acrobits.net/h22a5dh5dod66hegcw74jmyncmxjcozde","encryption-key":"87063816305709CEC407E4230B5B182C","filename":"giphy.gif","hash":"742613981","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAIAAAACDbGyAAAAA3NCSVQICAjb4U/gAAAAKklEQVQImWP8//8/AxJgglDHObUR/G/njv3oz0PwuYyseF7ehfAZ0fQDAD+vDcUQFW1bAAAAAElFTkSuQmCC"}}]} \N {} sent \N \N outbound 165 1 5
2019-05-06 16:47:48.896458+00 2019-05-06 16:47:48.896479+00 192 mms bandwidth m-lzwmu7wxfhmwzrn2vpewftq 2019-05-06T16:47:48Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/339d7230db7b4fdeb7a26a8bdcdf3134_mms_giphy.gif} sent \N \N outbound 166 1 5
2019-05-06 16:55:48.075768+00 2019-05-06 16:55:48.075787+00 193 mms bandwidth m-33gpf3r4d7ga7zbhs7itfta 2019-05-06T16:55:47Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/713f4f963ce345f6ad37a9c8363c2e29_mms_boo.jpg} sent \N \N outbound 166 1 5
2019-05-08 21:41:05.43803+00 2019-05-08 21:41:05.438058+00 195 sms bandwidth m-nckaezvoawpdnh6j7m4opaa 2019-05-08T21:41:04Z +17732909650 +18722217507 Hello buddy \N {} sent \N \N outbound 169 1 5
2019-05-08 21:41:23.417033+00 2019-05-08 21:41:23.417058+00 196 sms bandwidth m-klzdsx43dkdzrjkartjaz4y 2019-05-08T21:41:22Z +18722217507 +17732909650 How's it going? \N \N received \N \N inbound 169 1 5
2019-05-09 16:58:28.71053+00 2019-05-09 16:58:28.710543+00 197 mms bandwidth m-5ceumkbf3py3dopc6bip2mq 2019-05-09T16:58:27Z +18722217507 +17732909650 \N {https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/IMG-20190501-WA0007-m-5ceumkbf3py3dopc6bip2mq.jpg,https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/smil-m-5ceumkbf3py3dopc6bip2mq.xml} received \N \N inbound 171 1 5
2019-05-10 17:31:11.478444+00 2019-05-10 17:31:11.478586+00 198 mms bandwidth m-lp5ssrqqatd6d7td2jvqsvi 2019-05-10T17:31:10Z +18722217507 +17732909650 \N {https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/IMG_20190506_085114-m-lp5ssrqqatd6d7td2jvqsvi.jpg,https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/smil-m-lp5ssrqqatd6d7td2jvqsvi.xml} received \N \N inbound 173 1 5
2019-05-14 17:41:53.489833+00 2019-05-06 17:41:53.489854+00 194 mms bandwidth m-rdl5ykatsieqvpbakshtpoa 2019-05-06T17:41:52Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/d15ef44efc3845e6ac7e5cabf36c416d_mms_boo.jpg} sent \N \N outbound 166 1 8
2019-06-07 16:48:46.875041+00 2019-06-07 16:48:46.875056+00 224 sms bandwidth m-k3chdan3i45jk2kclfcwrwq 2019-06-07T16:48:46Z +18722217507 +13307660833 No emojis!! \N received \N \N inbound 184 1 14
2019-06-07 16:49:04.288666+00 2019-06-07 16:49:04.288689+00 225 sms bandwidth m-didqsa5gqhnlbqktsk4w75a 2019-06-07T16:49:04Z +13307660833 +18722217507 Please no \N {} sent \N \N outbound 184 1 14
2019-06-07 16:49:29.805933+00 2019-06-07 16:49:29.805959+00 226 sms bandwidth m-lmdg7jbaantjx4ayp6mrs5a 2019-06-07T16:49:29Z +13307660833 +18722217507 Hell no \N {} sent \N \N outbound 184 1 14
2019-06-07 16:49:37.312049+00 2019-06-07 16:49:37.312067+00 227 sms bandwidth m-3n6d3jg3cpnvh5evtc7ac7a 2019-06-07T16:49:37Z +13307660833 +18722217507 Hello \N {} sent \N \N outbound 184 1 14
2019-06-07 16:51:01.625898+00 2019-06-07 16:51:01.625926+00 228 mms bandwidth m-5rbftrntvin222izl4actmy 2019-06-07T16:51:01Z +13307660833 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/a769214d831543e491f6b357ab65ec15_mms_IMG_20190607_125050.jpg} sent \N \N outbound 184 1 14
2019-05-10 17:48:51.932543+00 2019-05-10 17:48:51.932581+00 200 mms bandwidth m-ezjhn42kx6uff34svjt456q 2019-05-10T17:48:51Z +18722217507 +17732909650 \N {https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/IMG-20190510-WA0000-m-ezjhn42kx6uff34svjt456q.jpg,https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/IMG-20190508-WA0000-m-ezjhn42kx6uff34svjt456q.jpg,https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/IMG-20190502-WA0007-m-ezjhn42kx6uff34svjt456q.jpg,https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/smil-m-ezjhn42kx6uff34svjt456q.xml} received \N \N inbound 173 1 5
2019-05-10 17:59:43.982839+00 2019-05-10 17:59:43.982851+00 201 mms bandwidth m-mkgbnbbsq2wmm6qs2guzety 2019-05-10T17:59:43Z +18722217507 +17732909650 \N {https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/IMG-20190510-WA0000-m-mkgbnbbsq2wmm6qs2guzety.jpg,https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/IMG-20190508-WA0000-m-mkgbnbbsq2wmm6qs2guzety.jpg,https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/IMG_20190506_085114-m-mkgbnbbsq2wmm6qs2guzety.jpg,https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/smil-m-mkgbnbbsq2wmm6qs2guzety.xml} received \N \N inbound 173 1 5
2019-05-10 19:17:30.392352+00 2019-05-10 19:17:30.392364+00 202 mms bandwidth m-76tegvlpljrgm5equaleioa 2019-05-10T19:17:29Z +18722217507 +17732909650 \N {https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/IMG-20190510-WA0000-m-76tegvlpljrgm5equaleioa.jpg,https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/IMG-20190508-WA0000-m-76tegvlpljrgm5equaleioa.jpg,https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/smil-m-76tegvlpljrgm5equaleioa.xml} received \N \N inbound 173 1 5
2019-05-10 19:19:30.203583+00 2019-05-10 19:19:30.203596+00 203 mms bandwidth m-e2euxzfkpowlzmn2psutqga 2019-05-10T19:19:29Z +18722217507 +17732909650 \N {https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/IMG-20190510-WA0000-m-e2euxzfkpowlzmn2psutqga.jpg,https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/IMG-20190508-WA0000-m-e2euxzfkpowlzmn2psutqga.jpg} received \N \N inbound 173 1 5
2019-05-10 20:27:08.712233+00 2019-05-10 20:27:08.712249+00 204 mms bandwidth m-6w2aw63mt334tbvh3lxedui 2019-05-10T20:27:04Z +18722217507 +17732909650 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/cacc5fa76596477d80b4137850c51198_mms_1de757d0-3464-427e-8c8b-0bcaf049f42d} received \N \N inbound 173 1 5
2019-05-10 21:20:33.981224+00 2019-05-10 21:20:33.981239+00 205 mms bandwidth m-gqqjoyzyexpsa6exqj4rugy 2019-05-10T21:20:29Z +18722217507 +17732909650 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/698f42a0449640b39464b52e1b51e770_mms_a72966a1-c419-4ba0-89fa-74634235e5e5} received \N \N inbound 173 1 5
2019-05-10 21:25:20.954883+00 2019-05-10 21:25:20.954977+00 206 mms bandwidth m-yvyjkqhsymbprmfci5vzypq 2019-05-10T21:25:12Z +18722217507 +17732909650 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/870507932065472ca1c639ad34484956_mms_IMG-20190508-WA0000-m-yvyjkqhsymbprmfci5vzypq.jpg,https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/d01e074aa3964882a72a16c45d320634_mms_IMG_20190506_085114-m-yvyjkqhsymbprmfci5vzypq.jpg} received \N \N inbound 173 1 5
2019-05-10 21:33:54.954028+00 2019-05-10 21:33:54.954054+00 207 mms bandwidth m-nhjf34sxsxxc7axt6mdfbui 2019-05-10T21:33:51Z +18722217507 +17732909650 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/8948f8fba2704d2e87cddfd0659cf419_mms_IMG-20190510-WA0000-m-nhjf34sxsxxc7axt6mdfbui.jpg,https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/1f8b9866222c4290905aaaa95c04d319_mms_IMG-20190508-WA0000-m-nhjf34sxsxxc7axt6mdfbui.jpg} received \N \N inbound 173 1 5
2019-05-10 21:37:01.595522+00 2019-05-10 21:37:01.595546+00 208 mms bandwidth m-mamssr4yb3zprqv66zxgkrq 2019-05-10T21:36:54Z +18722217507 +17732909650 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/32bb546c49ca42f6ac7220b4441414ad_mms_IMG-20190508-WA0000-m-mamssr4yb3zprqv66zxgkrq.jpg,https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/0061aeeff0e94a1db9ac2c11dae69372_mms_IMG-20190510-WA0000-m-mamssr4yb3zprqv66zxgkrq.jpg} received \N \N inbound 173 1 5
2019-05-10 21:54:22.63298+00 2019-05-10 21:54:22.633002+00 209 mms bandwidth m-5yvffdhrf2gsntt5gch3a7q 2019-05-10T21:54:09Z +18722217507 +17732909650 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/822d9f87fe9b4eb4a82cb3194b9aa43b_mms_IMG-20190510-WA0000-m-5yvffdhrf2gsntt5gch3a7q.jpg,https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/d73d420803634ac1be3d574eecf9a82e_mms_IMG-20190508-WA0000-m-5yvffdhrf2gsntt5gch3a7q.jpg} received \N \N inbound 173 1 5
2019-06-06 16:34:57.007503+00 2019-06-06 16:34:57.007517+00 211 sms bandwidth m-uo4nx6axgmlk5o47nyasxzy 2019-06-06T16:34:56Z +18722217507 +17732909650 Hello \N received \N \N inbound 178 1 5
2019-05-15 19:44:34.100115+00 2019-04-08 19:44:34.100131+00 21 sms bandwidth m-7ze7vut6k3il3lzkmtlvona 2019-04-08T19:44:33Z +17732909650 +18722217507 Jerry bells yo! \N {} sent \N \N outbound 74 1 5
2019-05-24 22:01:38.041727+00 2019-05-10 22:01:38.041741+00 210 mms bandwidth m-p3c2u2lkximaniwykqef7bi 2019-05-10T22:01:30Z +18722217507 +17732909650 \N ['https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/bd4b736b901144e2b98622057250430b_mms_IMG-20190508-WA0000-m-p3c2u2lkximaniwykqef7bi.jpg', 'https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/9f91d685cbd349a88d59ba1e81230409_mms_IMG-20190510-WA0000-m-p3c2u2lkximaniwykqef7bi.jpg'] received \N \N inbound 173 1 8
2019-05-24 17:45:23.195711+00 2019-05-10 17:45:23.195728+00 199 mms bandwidth m-jog7bcfuwkeobqqqlgpezry 2019-05-10T17:45:22Z +18722217507 +17732909650 \N {https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/IMG-20190510-WA0000-m-jog7bcfuwkeobqqqlgpezry.jpg,https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/IMG-20190508-WA0000-m-jog7bcfuwkeobqqqlgpezry.jpg,https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/IMG_20190506_085114-m-jog7bcfuwkeobqqqlgpezry.jpg,https://api.catapult.inetwork.com/v1/users/u-hgygmfipmuw7asnskzybr4y/media/smil-m-jog7bcfuwkeobqqqlgpezry.xml} received \N \N inbound 173 1 5
2019-06-06 19:01:01.294252+00 2019-06-06 19:01:01.29427+00 212 sms bandwidth m-43bvhel6hhdg222msys6jyi 2019-06-06T19:01:00Z +17732909650 +18722217507 Hi there \N {} sent \N \N outbound 178 1 5
2019-06-06 19:33:35.832366+00 2019-06-06 19:33:35.832378+00 213 sms bandwidth m-iokte2pdflyjdmaiopebymy 2019-06-06T19:33:35Z +18722217507 +17732909650 What about now \N received \N \N inbound 179 1 5
2019-06-06 19:33:57.398335+00 2019-06-06 19:33:57.398355+00 214 sms bandwidth m-equl5zbn3hmxlcqssjehljy 2019-06-06T19:33:56Z +17732909650 +18722217507 Are you there \N {} sent \N \N outbound 179 1 5
2019-06-06 23:22:30.117535+00 2019-06-06 23:22:30.117559+00 215 sms bandwidth m-vfnqxgmtxleigebrj54nogq 2019-06-06T23:22:29Z +18722217507 +17732909650 Is this working? \N received \N \N inbound 180 1 5
2019-06-06 23:22:50.538345+00 2019-06-06 23:22:50.538371+00 216 sms bandwidth m-ppwcqnknqhfvcplp52fqhwa 2019-06-06T23:22:49Z +17732909650 +18722217507 Yes it is 😊 \N {} sent \N \N outbound 180 1 5
2019-06-06 23:23:04.568319+00 2019-06-06 23:23:04.568343+00 217 sms bandwidth m-q6oq5hre2aj7kwgt5nkszmi 2019-06-06T23:23:04Z +18722217507 +17732909650 Good \N received \N \N inbound 180 1 5
2019-06-06 23:23:27.178778+00 2019-06-06 23:23:27.178802+00 218 sms bandwidth m-jtz7xbtizmqhjeidi5za4zi 2019-06-06T23:23:26Z +17732909650 +18722217507 Great \N {} sent \N \N outbound 180 1 5
2019-06-06 23:23:36.63924+00 2019-06-06 23:23:36.639264+00 219 sms bandwidth m-mpn3n5z7kmdczx2u3uincna 2019-06-06T23:23:36Z +18722217507 +17732909650 What are you doing? \N received \N \N inbound 180 1 5
2019-06-07 16:53:56.1413+00 2019-06-07 16:53:56.141324+00 230 mms bandwidth m-gkvnre6sdis6crdqyrsmwkq 2019-06-07T16:53:55Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/8b4e72d560c44717821268f41504243d_mms_00000IMG_00000_BURST20190427122005872_COVER.jpg} sent \N \N outbound 184 1 5
2019-06-10 17:05:57.417773+00 2019-06-10 17:05:57.417791+00 231 sms bandwidth m-a5qgfbufyxdmceqjmd7p32y 2019-06-10T17:05:56Z +17732909650 +18722217507 Hello harry \N {} sent \N \N outbound 185 1 5
2019-06-10 17:06:06.99921+00 2019-06-10 17:06:06.999256+00 232 sms bandwidth m-75k4mga3m2apwp23iw3djoy 2019-06-10T17:06:06Z +18722217507 +17732909650 Hello How are you? \N received \N \N inbound 185 1 5
2019-06-10 17:07:48.244021+00 2019-06-10 17:07:48.244033+00 233 sms bandwidth m-7l264gwematqpaw66xhituy 2019-06-10T17:07:47Z +17732909650 +18722217507 Good and you? \N {} sent \N \N outbound 185 1 5
2019-06-10 17:08:02.214563+00 2019-06-10 17:08:02.214574+00 234 sms bandwidth m-3vddmr4if6hnwrhxghx7k3q 2019-06-10T17:08:01Z +18722217507 +17732909650 I'm good \N received \N \N inbound 185 1 5
2019-06-10 17:09:03.344598+00 2019-06-10 17:09:03.344612+00 235 mms bandwidth m-o3z77iwsvllzblipzcp3qwa 2019-06-10T17:09:02Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/40cf7ea286e04e448f5e9cd2c6c337f2_mms_IMG_20190607_125050.jpg} sent \N \N outbound 185 1 5
2019-06-10 17:14:38.596161+00 2019-06-10 17:14:38.596176+00 236 mms bandwidth m-mp3l24thmar4zv6zkyskwni 2019-06-10T17:14:38Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/14b08288915346d6975dccca84554a6f_mms_Screenshot_20190606-071238.png} sent \N \N outbound 185 1 5
2019-06-10 17:19:44.262277+00 2019-06-10 17:19:44.262293+00 237 mms bandwidth m-cxvaluy3zvsxni3y3uwg3wy 2019-06-10T17:19:43Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/cc8b8b84a7d143f29a01ec7df0044e4a_mms_IMG_20190607_125050.jpg} sent \N \N outbound 185 1 5
2019-06-10 17:33:20.497615+00 2019-06-10 17:33:20.497635+00 238 mms bandwidth m-vxb274lg5k657znt6cvduvy 2019-06-10T17:33:20Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/1d4688f30dfe411981302a0c2a566e0d_mms_IMG_20190607_125050.jpg} sent \N \N outbound 185 1 5
2019-06-10 17:36:37.615844+00 2019-06-10 17:36:37.615866+00 239 mms bandwidth m-vynzhviat5znp3kotvvy7hy 2019-06-10T17:36:37Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/bbda7e28cf6e47b9aeb6d8b420a6c6c4_mms_IMG_20190607_125050.jpg} sent \N \N outbound 185 1 5
2019-06-10 17:38:39.101348+00 2019-06-10 17:38:39.101363+00 240 mms bandwidth m-27uhb556gy2cl4cky7mw3li 2019-06-10T17:38:38Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/cf36e320b29f4dd3a9a30e4363c01525_mms_IMG_20190607_125050.jpg} sent \N \N outbound 185 1 5
2019-06-10 17:41:26.254508+00 2019-06-10 17:41:26.254525+00 241 mms bandwidth m-knhqhag56etrfgcm3iaxxuq 2019-06-10T17:41:25Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/8cd90586d7de48d6900e18c362b9c4f1_mms_IMG_20190607_125050.jpg} sent \N \N outbound 185 1 5
2019-06-10 17:43:12.351706+00 2019-06-10 17:43:12.35173+00 242 mms bandwidth m-kqov53bb53k7anfyoxbcvia 2019-06-10T17:43:11Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/d084075cd3a1485eb2f277a8d6b59b64_mms_IMG_20190607_125050.jpg} sent \N \N outbound 185 1 5
2019-06-10 17:43:49.954783+00 2019-06-10 17:43:49.954797+00 243 sms bandwidth m-6ylqc2dpbagkj6enpsdm7ei 2019-06-10T17:43:49Z +17732909650 +18722217507 {"attachments":[{"content-size":97041,"content-type":"image/png","content-url":"https://mmsg.buyercall.com/rptuvbsy063974yw8pfic7m4fevi5mczo","encryption-key":"17AF963A9588592CA12755A142F08E18","filename":"Screenshot_20190606-071238.png","hash":"1144434220","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAUAAAAKCAIAAADzWwNnAAAAA3NCSVQICAjb4U/gAAAAY0lEQVQImYXJuxFAUABE0d3nk/gUINGBChSiCZE6dCCSK0MRQoEZscjgWZlB4mZnLlkOVe7X/QrAaKOkU0gbhNgtZABYItAugTQ8ZJ02A6PFS+KioyQ8Mnj3Z3ec5hveEX02LrHlIMXsSVUUAAAAAElFTkSuQmCC"}}]} \N {} sent \N \N outbound 185 1 5
2019-06-10 17:46:24.935149+00 2019-06-10 17:46:24.935166+00 244 mms bandwidth m-im26sktzdgaq36rz667o6bq 2019-06-10T17:46:24Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/c316939b5be3464a8cf1647cb363681c_mms_IMG_20190607_125050.jpg} sent \N \N outbound 185 1 5
2019-06-10 17:46:49.730511+00 2019-06-10 17:46:49.730526+00 245 sms bandwidth m-kndz6qkq7nv6eipigfksm5y 2019-06-10T17:46:49Z +17732909650 +18722217507 {"attachments":[{"content-size":97041,"content-type":"image/png","content-url":"https://mmsg.buyercall.com/6bomytowjthg9pj01uhmvom81p5hdtzdw","encryption-key":"EFA98023397FBDFE4D0BE4402F0EAB52","filename":"Screenshot_20190606-071238.png","hash":"1144434220","preview":{"content":"iVBORw0KGgoAAAANSUhEUgAAAAUAAAAKCAIAAADzWwNnAAAAA3NCSVQICAjb4U/gAAAAY0lEQVQImYXJuxFAUABE0d3nk/gUINGBChSiCZE6dCCSK0MRQoEZscjgWZlB4mZnLlkOVe7X/QrAaKOkU0gbhNgtZABYItAugTQ8ZJ02A6PFS+KioyQ8Mnj3Z3ec5hveEX02LrHlIMXsSVUUAAAAAElFTkSuQmCC"}}]} \N {} sent \N \N outbound 185 1 5
2019-06-10 17:50:43.249135+00 2019-06-10 17:50:43.24915+00 246 mms bandwidth m-u5glhajklbamj2thmw7qvoa 2019-06-10T17:50:42Z +17732909650 +18722217507 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/0f034039827a46728ad2a1adc8b1af4d_mms_Screenshot_20190606-071238.png} sent \N \N outbound 185 1 5
2019-06-10 18:31:46.391432+00 2019-06-10 18:31:46.391449+00 247 mms bandwidth m-3cbisjgsucdfrxjo4msq5oq 2019-06-10T18:31:41Z +18722217507 +17732909650 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/6ba5c8528e1246d6a2eb033a9a33022d_mms_40cf7ea286e0-m-3cbisjgsucdfrxjo4msq5oq.jpeg} received \N \N inbound 185 1 5
2019-06-10 18:44:28.892333+00 2019-06-10 18:44:28.892347+00 248 sms bandwidth m-mgbeynzanhtm6cwbsi6ot5i 2019-06-10T18:44:28Z +18722217507 +17739699892 😍 \N received \N \N inbound 185 1 10
2019-06-10 19:05:44.802022+00 2019-06-10 19:05:44.802032+00 249 sms bandwidth m-sykxfu3u6zatxyh7ux3vw2i 2019-06-10T19:05:44Z +18722217507 +17739699892 Brace dude \N received \N \N inbound 185 1 10
2019-06-10 19:06:54.395801+00 2019-06-10 19:06:54.395833+00 250 sms bandwidth m-2yf5d2k3vpa6iqaygz3wu4i 2019-06-10T19:06:53Z +17739699892 +18722217507 Hello \N {} sent \N \N outbound 185 1 10
2019-06-10 19:07:49.326002+00 2019-06-10 19:07:49.326014+00 251 sms bandwidth m-lmvgwhdu42zvf37xhbwssaa 2019-06-10T19:07:48Z +18722217507 +17739699892 Hi bro \N received \N \N inbound 185 1 10
2019-06-27 17:00:08.727982+00 2019-06-27 17:00:08.727998+00 252 sms bandwidth m-7hmrov3tmmcekjwim6rv2hq 2019-06-27T17:00:07Z +18722217507 +17739699892 Hello bro \N received \N \N inbound 191 1 10
2019-07-11 18:13:12.34958+00 2019-07-11 18:13:12.349599+00 253 sms bandwidth m-jwl6s2bsl7t23pbt72h3exa 2019-07-11T18:13:11Z +18722217507 +17739699892 Cowboys and crooks \N received \N \N inbound 196 1 10
2019-07-11 18:13:59.771932+00 2019-07-11 18:13:59.771947+00 254 sms bandwidth m-z5t2ynvn6sdkrvru5crmrvq 2019-07-11T18:13:59Z +18722217507 +17739699892 Make me Red Nose Day \N received \N \N inbound 196 1 10
2019-07-11 19:26:35.896975+00 2019-07-11 19:26:35.896986+00 255 sms bandwidth m-yrywsdayd2ziqs4em7zsgwa 2019-07-11T19:26:35Z +18722217507 +12064327364 Hello old mqn \N received \N \N inbound 196 1 15
2019-07-15 18:56:00.24311+00 2019-07-15 18:56:00.243143+00 256 sms bandwidth m-we5tlshdx52f3doa6qgj2la 2019-07-15T18:55:59Z +17739699892 +18722217507 Hello there \N {} sent \N \N outbound 200 1 10
2019-07-15 21:36:34.537073+00 2019-07-15 21:36:34.537093+00 257 sms bandwidth m-ryfxfjdyrhjruipuh2ouewi 2019-07-15T21:36:34Z +17739699892 +18722217507 This is another message \N {} sent \N \N outbound 200 1 10
2019-07-15 21:39:46.194851+00 2019-07-15 21:39:46.194863+00 258 sms bandwidth m-p4i24bsi5st4dluilkcgbwa 2019-07-15T21:39:45Z +17739699892 +18722217507 Maybe this is different \N {} sent \N \N outbound 200 1 10
2019-07-15 21:42:36.987677+00 2019-07-15 21:42:36.987689+00 259 sms bandwidth m-mcvnsdtuauxna3sb76ng64a 2019-07-15T21:42:36Z +17739699892 +18722217507 Are you still interested in this vehicle? \N {} sent \N \N outbound 200 1 10
2019-07-15 22:08:08.486165+00 2019-07-15 22:08:08.486181+00 260 sms bandwidth m-leeh2lqman4mlrvv4bf7fba 2019-07-15T22:08:08Z +17739699892 +18722217507 Car blue model \N {} sent \N \N outbound 200 1 10
2019-07-15 22:17:46.972098+00 2019-07-15 22:17:46.972109+00 261 sms bandwidth m-x3njzgsc5ysbimaaa5zxcoy 2019-07-15T22:17:46Z +17739699892 +18722217507 Try couscous \N {} sent \N \N outbound 201 1 10
2019-07-15 22:18:39.763008+00 2019-07-15 22:18:39.763021+00 262 sms bandwidth m-3enpfoido2pkcrx7ppdwfyi 2019-07-15T22:18:39Z +17739699892 +18722217507 Are you still interested in this vehicle? \N {} sent \N \N outbound 201 1 10
2019-07-15 22:20:55.968689+00 2019-07-15 22:20:55.9687+00 263 sms bandwidth m-k5aip3vg33zz7pf67czs4dq 2019-07-15T22:20:55Z +17739699892 +18722217507 Free monty \N {} sent \N \N outbound 201 1 10
2019-07-15 22:33:45.103275+00 2019-07-15 22:33:45.103286+00 264 sms bandwidth m-camr7od3zx6y7ml2xr3pjoa 2019-07-15T22:33:44Z +17739699892 +18722217507 Help the king of kong \N {} sent \N \N outbound 202 1 10
2019-07-15 22:34:20.83208+00 2019-07-15 22:34:20.832091+00 265 sms bandwidth m-tn2wly2ipawft34xq4e6xwi 2019-07-15T22:34:20Z +17739699892 +18722217507 Are you still coming? \N {} sent \N \N outbound 202 1 10
2019-07-15 22:45:33.085627+00 2019-07-15 22:45:33.08564+00 266 sms bandwidth m-swpoyq4xwr73lrd4l7ixefy 2019-07-15T22:45:32Z +17739699892 +18722217507 Are you still interested in this vehicle? \N {} sent \N \N outbound 202 1 10
2019-07-16 01:08:28.100709+00 2019-07-16 01:08:28.100758+00 267 sms bandwidth m-oizoqhbhqlnirpnl3k3kztq 2019-07-16T01:08:27Z +17739699892 +18722217507 Hi there mate \N {} sent \N \N outbound 202 1 10
2019-07-16 01:09:47.379276+00 2019-07-16 01:09:47.379287+00 268 sms bandwidth m-gqfdikstbciujj3ty3bovqa 2019-07-16T01:09:46Z +17739699892 +18722217507 And this well me kind! \N {} sent \N \N outbound 202 1 10
2019-07-16 01:10:39.137313+00 2019-07-16 01:10:39.137324+00 269 sms bandwidth m-6jizxwwiau4e4q2cucxbjrq 2019-07-16T01:10:38Z +18722217507 +17739699892 Is this for real? \N received \N \N inbound 202 1 10
2019-07-16 16:03:39.40771+00 2019-07-16 16:03:39.407724+00 270 sms bandwidth m-pdumvjhg5brsr2vls745zfa 2019-07-16T16:03:38Z +17739699892 +18722217507 Hello kookabra \N {} sent \N \N outbound 203 1 10
2019-07-16 16:04:28.353124+00 2019-07-16 16:04:28.353136+00 271 sms bandwidth m-wqyrs6c2gahlz5uskvzwvka 2019-07-16T16:04:27Z +18722217507 +17739699892 House of cards \N received \N \N inbound 203 1 10
2019-07-16 16:38:29.58694+00 2019-07-16 16:38:29.586952+00 272 sms bandwidth m-kaogobih35qwomqi6jowkvy 2019-07-16T16:38:29Z +17739699892 +18722217507 Jonty and they have been staged \N {} sent \N \N outbound 204 1 10
2019-07-16 16:58:54.127903+00 2019-07-16 16:58:54.127915+00 273 sms bandwidth m-jm2zvgsb7isf3opzpx2lrfa 2019-07-16T16:58:53Z +18722217507 +17739699892 Make mike great chop \N received \N \N inbound 204 1 10
2019-07-16 17:36:21.669563+00 2019-07-16 17:36:21.669578+00 274 sms bandwidth m-qr72ksiuofzf3o2wqxpo46q 2019-07-16T17:36:21Z +17739699892 +18722217507 Boom town \N {} sent \N \N outbound 204 1 10
2019-07-16 17:37:53.693247+00 2019-07-16 17:37:53.693259+00 275 sms bandwidth m-qa27uod4s5g5zhjxumjm6va 2019-07-16T17:37:53Z +18722217507 +17739699892 Mooi man \N received \N \N inbound 204 1 10
2019-07-16 17:47:57.504571+00 2019-07-16 17:47:57.504599+00 276 mms bandwidth m-xxx7pwrsnoxyku7rdfen74q 2019-07-16T17:47:57Z +17732909650 +18722217507 Are you still interested in this vehicle? \N {https://s3-us-west-2.amazonaws.com/buyercall-logo/logo_buyercall_yellow.png} sent \N \N outbound 204 1 5
2019-07-22 20:51:56.119557+00 2019-07-22 20:51:56.119572+00 277 sms bandwidth m-tsyn7iqjstgjwecp3qurqfa 2019-07-22T20:51:55Z +13127618003 +17739699892 And now? \N received \N \N inbound 209 1 10
2019-07-22 21:00:32.528283+00 2019-07-22 21:00:32.528295+00 278 sms bandwidth m-xkk73mxw7fpvdnafcmrqgpi 2019-07-22T21:00:31Z +13127618003 +17739699892 Curry balls \N received \N \N inbound 209 1 10
2019-07-22 21:01:56.342826+00 2019-07-22 21:01:56.342911+00 279 sms bandwidth m-bwaj4ykqgg4hr7nlquymqri 2019-07-22T21:01:55Z +13127618003 +17739699892 Curry wings \N received \N \N inbound 209 1 10
2019-07-29 20:12:47.098779+00 2019-07-29 20:12:47.098791+00 280 sms twilio SMcd2dd89f1fc1418bb9cb9a1b2bf8a684 2019-07-29 20:12:47 +17732909650 +13367394103 Are you still interested in this vehicle? \N sent \N \N outbound 212 1 5
2019-07-29 20:23:32.317651+00 2019-07-29 20:23:32.317684+00 281 sms twilio SM0a805b06441693717f898220f250559f 2019-07-29 20:23:31 +13367394103 +17732909650 Hello champ \N received \N \N inbound 212 1 5
2019-07-29 20:24:55.687129+00 2019-07-29 20:24:55.687148+00 282 mms twilio MM0f59a98369be32553a842dba16e32d13 2019-07-29 20:24:51 +13367394103 +17732909650 This car \N https://api.twilio.com/2010-04-01/Accounts/AC813e1806fcd88afc543d509dc892288a/Messages/MM0f59a98369be32553a842dba16e32d13/Media/MEaa2a56e756e51521747efe6770ee01ba received \N \N inbound 212 1 5
2019-07-29 20:29:17.307417+00 2019-07-29 20:29:17.307445+00 283 mms twilio MM0c40254bb59d4880bd8d5fd2d4a0b543 2019-07-29 20:29:17 +17732909650 +13367394103 Do you like the logo? \N https://s3-us-west-2.amazonaws.com/buyercall-logo/logo_buyercall_yellow.png sent \N \N outbound 212 1 5
2019-07-29 20:31:00.102484+00 2019-07-29 20:31:00.102498+00 284 sms twilio SM0e147e59274842a4b41b97dd94abec9c 2019-07-29 20:31:00 +17732909650 +13367394103 Hi Buddy! \N sent \N \N outbound 212 1 5
2019-09-09 20:08:18.55055+00 2019-09-09 20:08:18.550565+00 285 sms bandwidth m-sovb3j2dyl3sojdwysxijvi 2019-09-09T20:08:18Z +17732909650 +14123246220 Hello harry \N {} sent \N \N outbound 228 1 5
2019-10-03 23:27:02.57924+00 2019-10-03 23:27:02.579251+00 286 sms bandwidth m-yky5o42bwfkcmo3q7mba24q 2019-10-03T23:27:02Z +17733575773 +17732909650 Hello Mary 👋 \N received \N \N inbound 229 1 5
2019-10-04 01:49:16.648968+00 2019-10-04 01:49:16.648981+00 287 sms bandwidth m-6x7cs6kavbwtbnuqvxzzx4i 2019-10-04T01:49:15Z +17733575773 +17732909650 Do I see the message? \N received \N \N inbound 229 1 5
2019-10-04 01:51:10.284213+00 2019-10-04 01:51:10.284225+00 288 sms bandwidth m-5n4s73drlqkkhkj3b5cb2ha 2019-10-04T01:51:09Z +17733575773 +17732909650 Hell mate \N received \N \N inbound 229 1 5
2019-10-04 01:56:38.317992+00 2019-10-04 01:56:38.318004+00 289 sms bandwidth m-gkqpft5gq34vhtz76prnuea 2019-10-04T01:56:37Z +17733575773 +17732909650 Hi sweetie \N received \N \N inbound 229 1 5
2019-10-04 02:02:55.988078+00 2019-10-04 02:02:55.98809+00 290 sms bandwidth m-4q7ceqknxz655lpzamt5e6q 2019-10-04T02:02:55Z +17733575773 +17732909650 Gone by \N received \N \N inbound 229 1 5
2019-10-09 23:09:40.885394+00 2019-10-09 23:09:40.885406+00 291 sms bandwidth m-mhytlwqav74wnphifmiwa4a 2019-10-09T23:09:40Z +15095962210 +17732909650 Hello there \N received \N \N inbound 230 1 5
2019-10-10 02:04:44.420031+00 2019-10-10 02:04:44.420043+00 292 sms bandwidth m-nu5jqhsjwntsylckuvmqo5i 2019-10-10T02:04:43Z +17733575773 +17732909650 Hello player \N \N received \N \N inbound 231 1 5
2019-10-10 02:08:15.579462+00 2019-10-10 02:08:15.579472+00 293 sms twilio SM2cd028cb5c207962ed784abcebeee5c4 2019-10-10 02:08:14 +13367394103 +17732909650 Gotcha! \N received \N \N inbound 232 1 5
2019-10-10 23:30:51.556547+00 2019-10-10 23:30:51.556561+00 294 mms bandwidth m-l7nb7udwnsd73jmowvhjf3y 2019-10-10T23:30:43Z +15095962210 +17732909650 F \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/c76893f20b9e4a49b8b32b1f0955f131_mms_text000002-m-l7nb7udwnsd73jmowvhjf3y.txt,https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/3d44c9c88a8e4f28a60a12cf94ba73ad_mms_IMG-20191008-WA0000-m-l7nb7udwnsd73jmowvhjf3y.jpg} received \N \N inbound 230 1 5
2019-10-10 23:52:20.681904+00 2019-10-10 23:52:20.681919+00 295 mms bandwidth m-hvqxcz5a3wa4f4nm4frkbga 2019-10-10T23:52:18Z +15095962210 +17732909650 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/37425d1330d64dbfb94bb11f10c294bc_mms_IMG-20191007-WA0004-m-hvqxcz5a3wa4f4nm4frkbga.jpg} received \N \N inbound 230 1 5
2019-10-10 23:58:48.327233+00 2019-10-10 23:58:48.327252+00 296 sms bandwidth m-ppgewpcxt5lqh4zx7jlpzei 2019-10-10T23:58:47Z +17732909650 +17733575773 Hello \N {} sent \N \N outbound 233 1 5
2019-10-10 23:59:14.495042+00 2019-10-10 23:59:14.495058+00 297 mms bandwidth m-mabshqtck5cpwv57csow7uy 2019-10-10T23:59:14Z +17732909650 +17733575773 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/ae2e932adbfe4be190d5cb65bfb7c9ad_mms_microw2.jpg} sent \N \N outbound 233 1 5
2019-10-11 00:10:51.228459+00 2019-10-11 00:10:51.228474+00 298 mms bandwidth m-xblnqnirsriluxytkczzc7a 2019-10-11T00:10:50Z +17732909650 +15095962210 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/a232518d60bc4640bfd8f6e84b0801ac_mms_524607b8-2952-423f-b053-e2925dee1c3c} sent \N \N outbound 230 1 5
2019-10-11 00:11:57.031939+00 2019-10-11 00:11:57.032391+00 299 mms bandwidth m-frqiid6nj3bejnsfcuddt2i 2019-10-11T00:11:56Z +17732909650 +15095962210 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/320dc4e5dc344795975913c627f37a96_mms_30461d34-18e6-44d4-af66-2dc59475e737} sent \N \N outbound 230 1 5
2019-10-11 00:13:02.918395+00 2019-10-11 00:13:02.918416+00 300 mms bandwidth m-xvfi6wxgpok4ajuickvgyiy 2019-10-11T00:13:02Z +17732909650 +15095962210 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/4472731511364e90a8cdc56674d31210_mms_ba896bef-bfbb-4a53-95fd-427c07dff570} sent \N \N outbound 230 1 5
2019-10-11 00:15:09.651067+00 2019-10-11 00:15:09.651082+00 301 mms bandwidth m-h5bfxboqsg4hvurh3cuud4a 2019-10-11T00:15:09Z +17732909650 +15095962210 \N {https://buyercall-test-mms-attachments.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/a22a640a4b044fe7b4b9dd37e32207fb_mms_dab9e80c-480a-4d8a-87b3-f7ff007b0fa1} sent \N \N outbound 230 1 5
\.
--
-- Name: messages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('messages_id_seq', 301, true);
--
-- Data for Name: partnership_account_group_tie; Type: TABLE DATA; Schema: public; Owner: -
--
COPY partnership_account_group_tie (created_on, updated_on, partnership_account_group_id, partnership_account_id) FROM stdin;
2019-03-28 21:52:20.39128+00 2019-03-28 21:52:20.39128+00 1 1
2019-03-28 21:52:20.39128+00 2019-03-28 21:52:20.39128+00 1 4
2019-03-28 21:52:20.39128+00 2019-03-28 21:52:20.39128+00 1 2
\.
--
-- Data for Name: partnership_account_groups; Type: TABLE DATA; Schema: public; Owner: -
--
COPY partnership_account_groups (created_on, updated_on, id, name) FROM stdin;
2019-03-28 21:52:20.39128+00 2019-03-28 21:52:20.39128+00 1 Offshore Unlimited Group Holding
\.
--
-- Name: partnership_account_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('partnership_account_groups_id_seq', 1, false);
--
-- Data for Name: partnership_accounts; Type: TABLE DATA; Schema: public; Owner: -
--
COPY partnership_accounts (created_on, updated_on, id, name, partnership_id, subscription_id, is_active, billing_type, api_token_id, partner_account_code) FROM stdin;
2019-03-10 20:15:55.930138+00 2019-03-10 20:15:55.930141+00 3 Herman Trucks 1 \N t partnership 4 W00045
2019-03-10 20:18:30.619781+00 2019-03-10 20:18:30.619781+00 5 GWK Mini-Mart 2 2 t partnership 6 R003
2019-04-05 14:49:14.283603+00 2019-04-05 14:51:32.29871+00 6 EFF Motors INC 1 2 t partnership 7 A0034244
2018-10-25 22:47:21.56791+00 2019-02-08 00:57:11.227376+00 1 Offshore-Unlimited Marine 1 1 t account 2 BONUS01
2019-03-10 20:18:30.619781+00 2019-03-10 20:18:30.619786+00 4 Ballard Foods 1 2 t partnership 5 E0005R
2019-02-11 21:51:02.02068+00 2019-02-11 21:52:20.39128+00 2 Mort Cars LTD 1 2 t account \N
\.
--
-- Name: partnership_accounts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('partnership_accounts_id_seq', 6, true);
--
-- Data for Name: partnerships; Type: TABLE DATA; Schema: public; Owner: -
--
COPY partnerships (created_on, updated_on, id, name, is_active, account_invitation_url_token, subscription_id, logo, default_billing_type, default_provider, api_token_id, partner_url, email_sender) FROM stdin;
2019-03-10 20:24:02.546971+00 2019-03-10 20:24:05.941535+00 2 GWK Holdings t 5dc2282c-e676-4152-af24-efd3f036160b \N 2_GWK Holdings/logo-autosave123.png partnership twilio 6
2018-10-25 22:33:26.935926+00 2019-10-28 10:21:11.835073+00 1 Buyercall LLC t ecd8cab8-fc95-4b7b-a152-ac446b039048 2 1_Buyercall/logo_buyercall_blue.png account twilio 10
\.
--
-- Name: partnerships_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('partnerships_id_seq', 2, true);
--
-- Data for Name: phonenumbers; Type: TABLE DATA; Schema: public; Owner: -
--
COPY phonenumbers (created_on, updated_on, id, partnership_account_id, phonenumber, is_local, is_tollfree, type, is_active, is_callerid, friendly_name, source, channel, twilio_number_sid, routings, notifications, provider, deactivated_on, is_deactivated) FROM stdin;
2018-10-26 02:42:21.11319+00 2019-04-25 21:09:13.852539+00 1 1 +13367394103 t f priority t t First Business Number Facebook AC813e1806fcd88afc543d509dc892288a {"":""} {"":""} twilio 2019-04-25 14:09:13.851881 t
2018-12-12 19:03:53.995+00 2019-04-25 21:09:17.360102+00 2 1 +18722217506 t f tracking t f Beef Stew Inc Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-25 14:09:17.357243 t
2018-12-13 19:16:37.873899+00 2018-12-20 01:58:28.407609+00 3 1 +18722217502 t f tracking t f Mobile Business App Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2018-12-19 17:58:28.406889 t
2018-12-14 23:40:21.794215+00 2018-12-20 01:58:23.95558+00 4 1 +18722217501 t f tracking t f Normal Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2018-12-19 17:58:23.954801 t
2018-12-20 01:59:12.16697+00 2018-12-27 23:17:00.261244+00 6 1 +18722217507 t f tracking t f Mobile App Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2018-12-27 15:17:00.259642 t
2018-12-27 23:17:38.552977+00 2019-01-03 22:46:39.490048+00 7 1 +18722217507 t f tracking t f Mobile Phone App Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-01-03 14:46:39.488438 t
2019-01-09 17:24:53.842785+00 2019-04-12 18:13:29.881045+00 10 1 +18722217507 t f tracking t f Mobile AppX Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-12 11:13:29.875937 t
2019-01-08 22:41:26.63296+00 2019-01-09 17:23:02.78549+00 9 1 +18722217507 t f tracking t f Mobile Appz Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-01-09 09:23:02.776151 t
2019-03-13 16:06:03.49188+00 2019-03-13 16:37:29.585066+00 13 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Brad Thomas", "excludeGroups": true, "contactUsing": "phone", "id": 3}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 09:37:29.584596 t
2019-03-13 00:49:13.547362+00 2019-03-13 16:37:33.022633+00 12 1 +18722217507 t f mobile t f Default Phone Number Organic Search {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 09:37:33.022228 t
2019-03-12 23:41:11.891836+00 2019-03-13 16:37:35.940577+00 11 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": true, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "text", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": false, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 09:37:35.94022 t
2019-03-13 16:20:46.211481+00 2019-03-13 16:37:18.256216+00 16 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Brad Thomas", "excludeGroups": true, "contactUsing": "phone", "id": 3}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 09:37:18.255373 t
2019-03-13 16:18:47.512895+00 2019-03-13 16:37:21.839884+00 15 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Brad Thomas", "excludeGroups": true, "contactUsing": "phone", "id": 3}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 09:37:21.839538 t
2019-03-13 16:17:36.003655+00 2019-03-13 16:37:25.76675+00 14 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Sue Matthews", "excludeGroups": true, "contactUsing": "phone", "id": 2}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 09:37:25.766367 t
2019-03-13 16:38:04.972942+00 2019-03-13 16:38:52.370468+00 17 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Brad Thomas", "excludeGroups": true, "contactUsing": "extension", "id": 3}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 09:38:52.369065 t
2019-03-13 16:42:29.244158+00 2019-03-13 17:00:24.047576+00 19 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 10:00:24.047031 t
2019-03-13 16:39:39.255439+00 2019-03-13 17:00:28.002779+00 18 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Brad Thomas", "excludeGroups": true, "contactUsing": "extension", "id": 3}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 10:00:28.00228 t
2019-03-13 16:58:13.15933+00 2019-03-13 17:00:20.53047+00 20 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 10:00:20.529611 t
2019-03-13 17:01:55.413044+00 2019-03-13 17:43:30.106367+00 22 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 10:43:30.105901 t
2019-03-13 17:00:47.739449+00 2019-03-13 17:43:33.206863+00 21 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 10:43:33.206085 t
2019-03-13 17:24:18.742012+00 2019-03-13 17:43:16.946022+00 26 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 10:43:16.945636 t
2019-03-13 17:23:21.064291+00 2019-03-13 17:43:20.240584+00 25 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 10:43:20.240118 t
2019-03-13 17:16:04.262399+00 2019-03-13 17:43:23.078443+00 24 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 10:43:23.078054 t
2019-03-13 17:41:17.469263+00 2019-03-13 17:43:04.779288+00 30 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 10:43:04.775951 t
2019-03-13 17:38:20.839002+00 2019-03-13 17:43:07.76101+00 29 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 10:43:07.760524 t
2019-03-13 17:33:29.588711+00 2019-03-13 17:43:11.7527+00 28 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 10:43:11.752112 t
2019-03-13 17:29:49.44289+00 2019-03-13 17:43:14.359383+00 27 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 10:43:14.358864 t
2019-03-13 17:10:15.124858+00 2019-03-13 17:43:27.203845+00 23 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 10:43:27.203417 t
2019-03-13 17:44:07.780391+00 2019-03-13 17:53:18.160346+00 31 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Brad Thomas", "excludeGroups": true, "contactUsing": "extension", "id": 3}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 10:53:18.158986 t
2019-03-13 17:53:35.534724+00 2019-03-13 17:54:43.232116+00 32 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 10:54:43.230768 t
2019-03-13 18:01:05.353343+00 2019-03-13 18:11:54.767904+00 36 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 11:11:54.767474 t
2019-03-13 18:00:35.777673+00 2019-03-13 18:11:57.753328+00 35 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 11:11:57.75273 t
2019-03-13 17:56:59.922145+00 2019-03-13 18:12:00.698368+00 34 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 11:12:00.697824 t
2019-03-13 18:02:35.092115+00 2019-03-13 18:11:39.966973+00 37 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 11:11:39.966091 t
2019-03-13 17:55:04.574178+00 2019-03-13 18:12:03.890284+00 33 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 11:12:03.889673 t
2019-03-13 18:12:25.790147+00 2019-03-13 18:59:46.671437+00 38 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 11:59:46.669835 t
2019-03-14 00:02:23.177343+00 2019-03-14 00:08:35.31655+00 41 1 +18722217507 t f mobile t f Bollie Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"excludeGroups": true, "contactUsing": "phone"}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 17:08:35.314991 t
2019-03-13 19:15:35.758111+00 2019-03-14 00:08:38.740265+00 40 1 +18722217507 t f mobile t f Bob's Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Brad Thomas", "excludeGroups": true, "contactUsing": "phone", "id": 3}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 17:08:38.735109 t
2019-03-13 19:01:25.057199+00 2019-03-14 00:08:43.065288+00 39 1 +18722217507 t f mobile t f Sip Test Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Sue Matthews", "excludeGroups": true, "contactUsing": "phone", "id": 2}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 17:08:43.063533 t
2019-03-14 00:09:30.450563+00 2019-03-14 00:32:21.372548+00 42 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Sue Matthews", "excludeGroups": true, "contactUsing": "mobile", "id": 2}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 17:32:21.36842 t
2019-03-14 00:29:08.928365+00 2019-03-14 00:32:25.535506+00 43 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-13 17:32:25.535066 t
2019-03-14 00:33:19.226105+00 2019-04-12 18:13:26.210543+00 44 1 +18722217507 t f mobile t f Cowboy Sip Test Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Mark Jones", "excludeGroups": true, "contactUsing": "phone", "id": 5}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-12 11:13:26.208322 t
2019-03-14 00:41:09.118149+00 2019-03-14 16:31:14.113782+00 45 1 +18722217507 t f mobile t f Pret Mobile Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Brad Thomas", "excludeGroups": true, "contactUsing": "phone", "id": 3}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-14 09:31:14.112071 t
2019-03-14 16:33:07.301319+00 2019-03-15 00:08:52.138078+00 46 1 +18722217507 t f tracking t f Texting Test Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": false, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-14 17:08:52.136804 t
2019-03-15 00:09:43.210825+00 2019-03-15 00:10:45.803727+00 47 1 +18722217507 t f mobile t f Mobile Super Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": true, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Tom Jones", "excludeGroups": true, "contactUsing": "phone", "id": 8}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": false, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-14 17:10:45.802322 t
2019-03-15 00:19:29.395919+00 2019-03-15 02:27:11.835318+00 49 1 +18722217507 t f mobile t f Fam Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": true, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Sue Matthews", "excludeGroups": true, "contactUsing": "phone", "id": 2}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": false, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-14 19:27:11.834059 t
2019-03-15 01:51:02.498051+00 2019-03-18 14:27:41.442193+00 51 1 +18722217507 t f mobile t f X Non Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-18 07:27:41.441774 t
2019-03-15 01:45:11.250131+00 2019-04-12 18:13:23.357677+00 50 1 +18722217507 t f mobile t f Sanders Mobile App Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": true, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Tom Jones", "excludeGroups": true, "contactUsing": "phone", "id": 8}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": false, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-12 11:13:23.355143 t
2019-03-15 01:56:23.934923+00 2019-03-15 02:26:37.504668+00 52 1 +18722217507 t f mobile t f Coomon XCO Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Brad Thomas", "excludeGroups": true, "contactUsing": "phone", "id": 3}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-14 19:26:37.50348 t
2019-03-15 00:11:30.215764+00 2019-03-15 02:31:21.671054+00 48 1 +18722217507 t f mobile t f Short Nom Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": true, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Conway", "excludeGroups": true, "contactUsing": "phone", "id": 9}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": false, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-14 19:31:21.663486 t
2019-03-15 02:33:06.199724+00 2019-03-15 02:37:27.743759+00 53 1 +18722217507 t f mobile t f Monner Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Sue Matthews", "excludeGroups": true, "contactUsing": "phone", "id": 2}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-14 19:37:27.742631 t
2019-03-15 02:40:53.928994+00 2019-03-15 06:01:55.569382+00 54 1 +18722217507 t f mobile t f flow it Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Brad Thomas", "excludeGroups": true, "contactUsing": "extension", "id": 3}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-14 23:01:55.568584 t
2019-03-18 14:31:26.940087+00 2019-04-12 18:13:17.520808+00 56 1 +13367394103 t f priority t t Smooth Criminal Number Organic Search PNcd31d8c4381073d246126da7d4674c31 {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "cancel", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": true, "SMSAutoReplyImageUrl": "", "digitRoutings": [{"retryRouting": 0, "callOrder": "sequence", "dialDigit": "1", "name": "When digit 1 is pressed:", "agents": [{"fullName": "Brad Thomas", "contactUsing": "phone", "id": 3}]}], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "text", "SMSRuleOneSMSBody": "Contact this lead now.", "hiddenInformation": "This is a smooth criminal number call.", "callBackMessage": true, "recordCalls": true, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "8", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "sms", "digitPrompt": true, "callBack": true, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 1, "callOrder": "simultaneous", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Mark Jones", "excludeGroups": true, "contactUsing": "phone", "id": 5}, {"fullName": "Sue Matthews", "contactUsing": "phone", "id": 2}]}, "configSMSSetup": true, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "text", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": true, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": true, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": true, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "agent", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "Boo. I don't want you to call me.", "SMSAutoReply": true, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "hv13@hotmail.com", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} twilio 2019-04-12 11:13:17.520101 t
2019-04-05 15:58:43.374187+00 2019-04-12 18:12:42.516017+00 71 1 +18722217507 t f mobile t f Phone number for app user goonryn mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-04-12 11:12:42.512808 t
2019-03-27 20:37:52.669611+00 2019-04-08 19:30:02.237595+00 70 1 +13367394103 t f priority t f Widget Smart Number Autotrader email PNcd31d8c4381073d246126da7d4674c31 {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "SMSAutoReplyText": "Are you available tomorrow for a showing?", "SMSAutoReplyImageUrl": "https://s3-us-west-2.amazonaws.com/buyercall-logo/logo_buyercall_yellow.png", "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "SMSAutoReplyImage": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "agents": [{"fullName": "", "contactUsing": "phone", "id": 2}], "digitalPrompt": false}, "configSMSSetup": false, "SMSAutoReply": false, "voicemailMessageType": "text", "whisperMessage": "This call will be recorded."} {} twilio 2019-04-08 12:30:02.236932 t
2019-03-27 17:16:22.463239+00 2019-04-08 19:30:10.625263+00 67 1 +18722217507 t f mobile t f Phone number for app user jsoon mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Sue", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-04-08 12:30:10.624498 t
2019-03-27 20:22:43.239086+00 2019-04-12 18:12:47.042149+00 69 1 +18722217507 t f mobile t f Phone number for app user bstone mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-04-12 11:12:47.040482 t
2019-01-03 22:47:08.303175+00 2019-01-08 22:40:55.828457+00 8 2 +18722217507 t f tracking t f BW Mobile App Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-01-08 14:40:55.827098 f
2019-03-20 01:06:04.65805+00 2019-03-20 17:33:33.149004+00 59 1 +13367394103 t f priority t f Sterling Number Organic Search PNcd31d8c4381073d246126da7d4674c31 {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} twilio 2019-03-20 10:33:33.142379 t
2019-03-18 14:41:54.023586+00 2019-03-20 17:33:36.634074+00 58 1 +18722217507 t f mobile t f Bullie Beef John Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "This is a google call", "callBackMessage": false, "recordCalls": true, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": true, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Conway", "excludeGroups": true, "contactUsing": "phone", "id": 9}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "text", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": true, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "This call is being recorded.", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-03-20 10:33:36.633361 t
2019-03-22 22:39:30.607524+00 2019-03-22 23:00:39.978959+00 62 1 +13367394103 t f priority t f Sales Phone Number Autotrader ppc PNcd31d8c4381073d246126da7d4674c31 {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "SMSAutoReplyText": "Are you available tomorrow for a showing?", "SMSAutoReplyImageUrl": "https://s3-us-west-2.amazonaws.com/buyercall-logo/logo_buyercall_yellow.png", "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "SMSAutoReplyImage": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "agents": [{"fullName": "", "contactUsing": "phone", "id": 1}, {"fullName": "", "contactUsing": "phone", "id": 2}]}, "configSMSSetup": false, "SMSAutoReply": false, "voicemailMessageType": "text", "whisperMessage": "This call will be recorded."} {} twilio 2019-03-22 16:00:39.977682 t
2019-03-24 03:14:55.824125+00 2019-04-12 18:13:00.753813+00 64 1 +13367394103 t f priority t f Sales Phone Number Autotrader ppc PNcd31d8c4381073d246126da7d4674c31 {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "SMSAutoReplyText": "Are you available tomorrow for a showing?", "SMSAutoReplyImageUrl": "https://s3-us-west-2.amazonaws.com/buyercall-logo/logo_buyercall_yellow.png", "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "SMSAutoReplyImage": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "agents": [{"fullName": "", "contactUsing": "phone", "id": 5}, {"fullName": "", "contactUsing": "phone", "id": 2}]}, "configSMSSetup": false, "SMSAutoReply": false, "voicemailMessageType": "text", "whisperMessage": "This call will be recorded."} {} twilio 2019-04-12 11:13:00.753023 t
2019-03-22 05:54:51.900824+00 2019-04-12 18:13:07.02228+00 61 1 +18722217507 t f mobile t f string mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "id": 3}]}} {} bandwidth 2019-04-12 11:13:07.020972 t
2019-03-27 16:42:37.442127+00 2019-04-12 18:12:54.251082+00 66 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-04-12 11:12:54.250341 t
2019-03-16 00:49:30.410693+00 2019-04-12 18:13:20.18575+00 55 1 +18722217507 t f mobile t f Braveheart Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Conway", "excludeGroups": true, "contactUsing": "phone", "id": 9}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-12 11:13:20.180282 t
2019-04-05 16:09:28.303347+00 2019-04-08 19:29:31.892879+00 73 1 +13367394103 t f priority t f Sales Phone Number Autotrader ppc PNcd31d8c4381073d246126da7d4674c31 {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "SMSAutoReplyText": "Are you available tomorrow for a showing?", "SMSAutoReplyImageUrl": "https://s3-us-west-2.amazonaws.com/buyercall-logo/logo_buyercall_yellow.png", "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "SMSAutoReplyImage": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": false, "agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 2}], "digitalPrompt": false}, "configSMSSetup": false, "SMSAutoReply": false, "voicemailMessageType": "text", "whisperMessage": "This call will be recorded."} {} twilio 2019-04-08 12:29:31.889673 t
2019-04-05 16:03:28.810972+00 2019-04-08 19:29:39.47674+00 72 1 +18722217507 t f mobile t f Phone number for app user goonryn mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-04-08 12:29:39.475374 t
2019-04-12 18:02:53.112117+00 2019-04-12 18:12:31.76196+00 76 1 +13367394103 t f priority t f CobelCoble Number Organic Search PNcd31d8c4381073d246126da7d4674c31 {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Sue Matthews", "excludeGroups": true, "contactUsing": "phone", "id": 2}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} twilio 2019-04-12 11:12:31.756716 t
2019-04-09 17:25:20.657139+00 2019-04-12 18:12:35.679161+00 75 1 +18722217507 t f mobile t f Phone number for app user pearmom mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-04-12 11:12:35.675669 t
2019-03-18 14:38:24.012223+00 2019-04-12 18:13:14.199627+00 57 1 +18722217507 t f tracking t f Coolio Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": true, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "This is an Adwords call.", "callBackMessage": false, "recordCalls": true, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": true, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Brad Thomas", "excludeGroups": true, "contactUsing": "phone", "id": 3}]}, "configSMSSetup": true, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "text", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": true, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": true, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "Hello this call is being recorded.", "SMSAutoReply": true, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "mike@buyercall.com", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-12 11:13:14.198884 t
2019-04-19 18:55:57.968208+00 2019-04-25 22:37:48.250485+00 128 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-04-25 15:37:48.249784 t
2019-04-19 19:02:22.12143+00 2019-05-31 18:48:57.090874+00 132 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-05-31 11:48:57.089871 t
2019-04-19 18:59:37.335366+00 2019-05-31 18:49:00.862065+00 130 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-05-31 11:49:00.861 t
2019-04-19 18:51:02.403032+00 2019-07-18 16:07:58.400806+00 126 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:07:58.397814 t
2019-04-08 19:40:13.875465+00 2019-04-12 18:12:39.104015+00 74 1 +18722217507 t f mobile t f Bob Business Mobile Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-12 11:12:39.102637 t
2019-03-27 20:21:20.387721+00 2019-04-12 18:12:51.070265+00 68 1 +18722217507 t f mobile t f Phone number for app user bstone mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-04-12 11:12:51.0576 t
2019-03-24 03:32:17.243481+00 2019-04-12 18:12:57.395667+00 65 1 +13367394103 t f priority t f Bearer Number Organic Search PNcd31d8c4381073d246126da7d4674c31 {\n "voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.",\n "SMSRuleOneEmailBody": "",\n "SMSAutoReplyImageUrl": "",\n "digitRoutings": [],\n "routingType": "default",\n "recordCalls": false,\n "digitWhisperMessageType": "",\n "SMSAutoReplyImage": false,\n "thirdCallBack": "",\n "MissedCallAutoReply": false,\n "firstCallBack": "",\n "SMSRuleOneEmails": "",\n "voicemailMessageType": "text",\n "SMSRuleOneRecipientAgent": "",\n "hiddenInformation": "",\n "callBackMessage": false,\n "SMSRuleOneKeyword": "",\n "notifyAdf": false,\n "noDigitWhisperMessage": "",\n "SMSRuleOneSMSBody": "",\n "callBackText": "Hello. We're calling you back since we missed your call a while ago.",\n "SMSRuleOneAction": "",\n "noDigitWhisperMessageType": "",\n "callBack": false,\n "secondCallBack": "",\n "defaultRouting": {\n "retryRouting": 0,\n "callOrder": "simultaneous",\n "dialDigit": false,\n "name": "Default routing",\n "agents": [\n {\n "fullName": "Sue Matthews",\n "excludeGroups": true,\n "contactUsing": "phone",\n "id": 2\n },\n {\n "fullName": "Mark Jones",\n "contactUsing": "phone",\n "id": 5\n }\n ]\n },\n "configSMSSetup": false,\n "SMSRuleOneEmailAgent": "",\n "SMSRuleOneCallAgent": "",\n "callBackTextType": "",\n "whisperMessageType": "",\n "digitPrompt": false,\n "SMSAutoReplyText": "Thanks for the message. We'll be in touch.",\n "greetingMessage": false,\n "language": "en",\n "digitWhisperMessage": "",\n "SMSRuleOne": false,\n "voicemail": true,\n "SMSRuleOneRecipientCustom": "",\n "playHoldMusic": false,\n "notifyAdfCustom": "",\n "SMSRuleOneRecipientType": "",\n "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?",\n "whisperMessage": "",\n "SMSAutoReply": false,\n "customHoldMusic": false\n} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} twilio 2019-04-12 11:12:57.395218 t
2019-03-24 03:03:30.003005+00 2019-04-12 18:13:03.845424+00 63 1 +13367394103 t f priority t f Sweet Air Number Organic Search PNcd31d8c4381073d246126da7d4674c31 {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "simultaneous", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Sue Matthews", "excludeGroups": true, "contactUsing": "phone", "id": 2}, {"fullName": "Mark Jones", "contactUsing": "phone", "id": 5}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} twilio 2019-04-12 11:13:03.839859 t
2019-03-20 17:38:39.422421+00 2019-04-12 18:13:10.761755+00 60 1 +13367394103 t f priority t f API Testing Number Organic Search PNcd31d8c4381073d246126da7d4674c31 {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Sue Matthews", "excludeGroups": true, "contactUsing": "phone", "id": 2}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} twilio 2019-04-12 11:13:10.760973 t
2019-04-12 18:14:07.255453+00 2019-04-12 18:16:17.488698+00 109 1 +13367394103 t f priority t f Comeon PLS Number Organic Search PNcd31d8c4381073d246126da7d4674c31 {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Sue Matthews", "excludeGroups": true, "contactUsing": "phone", "id": 2}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} twilio 2019-04-12 11:16:17.486767 t
2019-04-12 18:17:29.441345+00 2019-04-12 18:36:17.538995+00 110 1 +13367394103 t f priority t f Deep Blue Number Organic Search PNcd31d8c4381073d246126da7d4674c31 {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Sue Matthews", "excludeGroups": true, "contactUsing": "phone", "id": 2}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} twilio 2019-04-12 11:36:17.537785 t
2019-04-19 18:49:05.734572+00 2019-04-19 18:49:05.734588+00 125 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth \N f
2019-04-19 19:02:48.390228+00 2019-05-31 18:48:54.578291+00 133 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-05-31 11:48:54.577656 t
2019-04-19 19:00:32.271779+00 2019-05-31 18:48:59.390339+00 131 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-05-31 11:48:59.389542 t
2019-04-19 18:51:49.855502+00 2019-07-18 16:07:55.23431+00 127 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:07:55.233396 t
2019-04-19 18:58:15.087759+00 2019-10-10 01:45:35.267949+00 129 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-10-09 18:45:35.267558 t
2019-04-19 18:27:17.337739+00 2019-04-19 18:27:17.337757+00 118 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth \N f
2019-04-19 18:34:55.091829+00 2019-04-19 18:34:55.091847+00 119 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth \N f
2019-04-19 18:38:27.816621+00 2019-04-19 18:38:27.816638+00 120 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth \N f
2019-04-15 22:58:39.610073+00 2019-04-25 21:09:27.1155+00 112 1 +18722217507 t f mobile t f Phone number for app user jordto mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-04-25 14:09:27.114993 t
2019-04-16 16:03:44.506548+00 2019-04-25 21:09:31.482507+00 113 1 +18722217507 t f mobile t f Phone number for app user billto mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-04-25 14:09:31.480893 t
2019-04-17 16:54:49.85359+00 2019-04-25 21:09:35.668281+00 114 1 +18722217507 t f mobile t f Phone number for app user georgee mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-04-25 14:09:35.667554 t
2019-04-17 19:47:41.941581+00 2019-04-25 21:09:38.873217+00 115 1 +18722217507 t f mobile t f Phone number for app user os mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-04-25 14:09:38.872156 t
2019-04-18 01:58:01.637242+00 2019-04-25 21:09:42.908137+00 116 1 +18722217507 t f mobile t f Phone number for app user es mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-04-25 14:09:42.906948 t
2019-04-19 18:20:33.568598+00 2019-04-25 21:09:48.295624+00 117 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-04-25 14:09:48.295044 t
2019-04-19 18:42:43.293964+00 2019-05-31 18:49:06.04581+00 121 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-05-31 11:49:06.044882 t
2019-04-19 18:46:20.072653+00 2019-07-18 16:08:01.11893+00 122 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:08:01.116089 t
2019-04-23 17:29:46.333079+00 2019-04-25 22:37:21.544435+00 140 1 +18722217507 t f mobile t f Phone number for app user bn mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-04-25 15:37:21.543425 t
2019-04-22 23:36:06.048183+00 2019-04-25 22:37:25.392348+00 139 1 +18722217507 t f mobile t f Phone number for app user et mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-04-25 15:37:25.386984 t
2019-04-22 18:27:55.587225+00 2019-04-25 22:37:29.482595+00 138 1 +18722217507 t f mobile t f Phone number for app user jeez mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-04-25 15:37:29.481975 t
2019-04-25 21:01:52.400858+00 2019-04-25 21:09:03.727215+00 143 1 +18722217507 t f mobile t f Phone number for app user ko mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-04-25 14:09:03.726805 t
2019-04-25 16:11:34.925345+00 2019-04-25 22:37:10.446994+00 142 1 +18722217507 t f mobile t f Phone number for app user owa mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-04-25 15:37:10.445271 t
2019-04-24 21:52:47.170251+00 2019-04-25 22:37:16.109464+00 141 1 +18722217507 t f mobile t f Phone number for app user op mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-04-25 15:37:16.108878 t
2019-04-19 19:37:30.152855+00 2019-04-25 22:37:33.247095+00 137 1 +18722217507 t f mobile t f Phone number for app user gun mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-04-25 15:37:33.246461 t
2019-04-19 19:33:58.776478+00 2019-04-25 22:37:38.302537+00 136 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-04-25 15:37:38.298712 t
2019-05-06 14:57:33.996281+00 2019-05-31 18:48:24.780235+00 166 1 +18722217507 t f mobile t f Phone number for app user klm mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-05-31 11:48:24.779628 t
2019-05-03 21:51:26.14191+00 2019-05-31 18:48:28.985573+00 165 1 +18722217507 t f mobile t f Phone number for app user gh mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-05-31 11:48:28.982328 t
2019-05-02 18:07:13.145223+00 2019-05-31 18:48:32.543278+00 164 1 +18722217507 t f mobile t f Phone number for app user nn mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Sue", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-05-31 11:48:32.541957 t
2019-04-30 22:10:59.668153+00 2019-05-31 18:48:35.437254+00 163 1 +18722217507 t f mobile t f Phone number for app user xx mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Sue", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-05-31 11:48:35.431952 t
2019-04-29 18:34:42.682689+00 2019-05-31 18:48:42.538029+00 161 1 +18722217507 t f mobile t f Phone number for app user uo mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Sue", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-05-31 11:48:42.537171 t
2018-12-14 23:47:36.288241+00 2019-04-25 21:09:20.683142+00 5 1 +13367394103 t f priority t f twilio PN Organic Search PNcd31d8c4381073d246126da7d4674c31 {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} twilio 2019-04-25 14:09:20.682625 t
2019-04-12 18:36:50.545973+00 2019-04-25 21:09:23.713505+00 111 1 +13367394103 t f priority t f Solar Sun Number Organic Search PNcd31d8c4381073d246126da7d4674c31 {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "SMSAutoReplyImageUrl": "", "digitRoutings": [], "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "notifyAdf": false, "firstCallBack": "", "SMSRuleOneKeyword": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneRecipientAgent": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneSMSBody": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Sue Matthews", "excludeGroups": true, "contactUsing": "phone", "id": 2}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} twilio 2019-04-25 14:09:23.712667 t
2019-04-25 21:10:57.838203+00 2019-04-25 21:30:50.333761+00 144 1 +18722217507 t f mobile t f Holo Mobile Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": false, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-25 14:30:50.330301 t
2019-04-25 21:27:03.895882+00 2019-04-25 21:30:27.862348+00 148 1 +18722217507 t f mobile t f foolo Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-25 14:30:27.859396 t
2019-04-25 21:22:35.458966+00 2019-04-25 21:30:31.676796+00 147 1 +18722217507 t f mobile t f doos Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-25 14:30:31.676238 t
2019-04-25 21:16:37.615607+00 2019-04-25 21:30:35.401456+00 146 1 +18722217507 t f mobile t f Default Phone Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-25 14:30:35.400908 t
2019-04-25 21:12:42.142222+00 2019-04-25 21:30:45.610154+00 145 1 +18722217507 t f mobile t f Bla Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-25 14:30:45.609455 t
2019-04-25 21:34:14.368638+00 2019-04-25 22:27:51.975398+00 151 1 +18722217507 t f mobile t f muffen Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-25 15:27:51.974761 t
2019-04-25 21:31:31.720625+00 2019-04-25 22:27:57.322301+00 150 1 +18722217507 t f mobile t f felxi Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-25 15:27:57.32166 t
2019-04-25 21:31:17.718961+00 2019-04-25 22:28:01.285313+00 149 1 +18722217507 t f mobile t f felxi Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-25 15:28:01.274103 t
2019-04-25 22:21:43.626225+00 2019-04-25 22:27:44.56094+00 153 1 +18722217507 t f mobile t f dood Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Sue Matthews", "excludeGroups": true, "contactUsing": "phone", "id": 2}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-25 15:27:44.559978 t
2019-04-25 22:15:24.350732+00 2019-04-25 22:27:48.908126+00 152 1 +18722217507 t f mobile t f holrer Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Sue Matthews", "excludeGroups": true, "contactUsing": "phone", "id": 2}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-25 15:27:48.907714 t
2019-04-25 22:28:39.600649+00 2019-04-25 22:37:04.543696+00 154 1 +18722217507 t f mobile t f oop Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Sue Matthews", "excludeGroups": true, "contactUsing": "phone", "id": 2}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-25 15:37:04.541555 t
2019-04-19 19:06:25.659183+00 2019-04-25 22:37:42.012758+00 134 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-04-25 15:37:42.01219 t
2019-04-19 19:12:20.392596+00 2019-04-25 22:37:44.165962+00 135 1 +13367394103 t f priority t f Sales Phone Number Autotrader ppc PNcd31d8c4381073d246126da7d4674c31 {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "SMSAutoReplyText": "Are you available tomorrow for a showing?", "SMSAutoReplyImageUrl": "https://s3-us-west-2.amazonaws.com/buyercall-logo/logo_buyercall_yellow.png", "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "SMSAutoReplyImage": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": false, "agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}], "digitalPrompt": false}, "configSMSSetup": false, "SMSAutoReply": false, "voicemailMessageType": "text", "whisperMessage": "This call will be recorded."} {} twilio 2019-04-25 15:37:44.165456 t
2019-04-25 22:38:30.17376+00 2019-04-25 22:51:08.796482+00 155 1 +18722217507 t f mobile t f barry Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Sue Matthews", "excludeGroups": true, "contactUsing": "phone", "id": 2}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-04-25 15:51:08.795347 t
2019-04-25 22:51:45.922525+00 2019-05-31 18:48:51.966949+00 156 1 +18722217507 t f mobile t f coolio Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Sue Matthews", "excludeGroups": true, "contactUsing": "phone", "id": 2}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-05-31 11:48:51.96632 t
2019-04-29 18:33:17.366732+00 2019-07-18 16:07:52.017183+00 159 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:07:52.014652 t
2019-05-14 00:07:51.79919+00 2019-05-31 18:47:55.738932+00 175 1 +18722217507 t f mobile t f Phone number for app user dollop mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-05-31 11:47:55.733522 t
2019-05-12 15:49:40.586837+00 2019-05-31 18:48:02.936084+00 174 1 +18722217507 t f mobile t f Phone number for app user loopo mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-05-31 11:48:02.935531 t
2019-05-10 17:18:47.635707+00 2019-05-31 18:48:06.176637+00 173 1 +18722217507 t f mobile t f Phone number for app user kooli mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-05-31 11:48:06.175776 t
2019-05-09 22:47:21.763221+00 2019-05-31 18:48:08.6634+00 172 1 +18722217507 t f mobile t f Phone number for app user ooz mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-05-31 11:48:08.662522 t
2019-05-09 16:54:16.10698+00 2019-05-31 18:48:11.132757+00 171 1 +18722217507 t f mobile t f Phone number for app user popo mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-05-31 11:48:11.131959 t
2019-05-09 16:53:01.586752+00 2019-05-31 18:48:16.122963+00 170 1 +18722217507 t f mobile t f Phone number for app user pop mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-05-31 11:48:16.12075 t
2019-05-08 14:58:14.201931+00 2019-05-31 18:48:18.432385+00 169 1 +18722217507 t f mobile t f Phone number for app user vv mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-05-31 11:48:18.431761 t
2019-05-07 21:06:50.933555+00 2019-05-31 18:48:21.59373+00 167 1 +18722217507 t f mobile t f Phone number for app user zzz mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-05-31 11:48:21.592701 t
2019-04-30 16:24:41.748478+00 2019-05-31 18:48:38.046698+00 162 1 +18722217507 t f mobile t f Phone number for app user ll mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Sue", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-05-31 11:48:38.046096 t
2019-04-29 18:34:29.533511+00 2019-05-31 18:48:44.478786+00 160 1 +18722217507 t f mobile t f Phone number for app user uo mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Sue", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-05-31 11:48:44.478118 t
2019-04-26 02:59:24.172801+00 2019-05-31 18:48:47.072209+00 158 1 +18722217507 t f tracking t f Sales Phone Number Autotrader ppc n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "SMSAutoReplyText": "Are you available tomorrow for a showing?", "SMSAutoReplyImageUrl": "https://s3-us-west-2.amazonaws.com/buyercall-logo/logo_buyercall_yellow.png", "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "SMSAutoReplyImage": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": false, "agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}], "digitalPrompt": false}, "configSMSSetup": false, "SMSAutoReply": false, "voicemailMessageType": "text", "whisperMessage": "This call will be recorded."} {} bandwidth 2019-05-31 11:48:47.071239 t
2019-05-08 14:57:54.921285+00 2019-07-18 16:07:47.642538+00 168 1 +18722217507 t f mobile t f Phone number for app user ll mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-07-18 09:07:47.63962 t
2019-04-25 22:56:05.209196+00 2019-05-31 18:48:49.447204+00 157 1 +18722217507 t f mobile t f malhaas Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Sue Matthews", "excludeGroups": true, "contactUsing": "phone", "id": 2}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-05-31 11:48:49.446584 t
2019-04-19 18:48:07.973309+00 2019-05-31 18:49:03.943853+00 124 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-05-31 11:49:03.942768 t
2019-06-06 19:05:59.593059+00 2019-07-18 16:07:26.075796+00 179 1 +18722217507 t f mobile t f Phone number for app user feeto mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:07:26.075107 t
2019-05-31 18:49:57.109813+00 2019-07-18 16:07:42.489023+00 176 1 +18722217507 t f mobile t f Ninja Number Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Sue Matthews", "excludeGroups": true, "contactUsing": "phone", "id": 2}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-07-18 09:07:42.488353 t
2019-06-21 17:47:14.92206+00 2019-07-18 16:06:44.912141+00 188 1 +18722217507 t f mobile t f Phone number for app user dopeno mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": true, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:06:44.909816 t
2019-06-07 16:16:56.050371+00 2019-07-18 16:07:02.033234+00 184 1 +18722217507 t f mobile t f Phone number for app user zeelo mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:07:02.032322 t
2019-06-07 16:01:57.922404+00 2019-07-18 16:07:06.716447+00 183 1 +18722217507 t f mobile t f Phone number for app user beefo mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": true, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:07:06.713706 t
2019-06-19 19:28:10.936068+00 2019-07-18 16:06:49.049081+00 187 1 +18722217507 t f mobile t f Phone number for app user aaha mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": true, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:06:49.045681 t
2019-06-21 21:01:28.111815+00 2019-07-18 16:06:37.275642+00 190 1 +18722217507 t f mobile t f Phone number for app user jollorop mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": true, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:06:37.27279 t
2019-06-27 16:52:05.22941+00 2019-07-18 16:06:32.982685+00 191 1 +18722217507 t f mobile t f Phone number for app user fleego mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": true, "greetingMessage": true, "language": "en", "whisperMessageType": "audio", "routingType": "default", "voicemail": true, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:06:32.981602 t
2019-07-03 21:38:22.801532+00 2019-07-18 16:06:26.552135+00 192 1 +18722217507 t f mobile t f Phone number for app user koolscopa mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep", "recordCalls": true, "greetingMessage": true, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": true, "whisperMessage": "This call is being recorded", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:06:26.550888 t
2019-06-19 17:10:18.230533+00 2019-07-18 16:06:53.041356+00 186 1 +18722217507 t f mobile t f Phone number for app user cheezos mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:06:53.040048 t
2019-06-08 18:08:51.064856+00 2019-07-18 16:06:57.078303+00 185 1 +18722217507 t f mobile t f Phone number for app user shoozes mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:06:57.076538 t
2019-06-07 15:55:50.426171+00 2019-07-18 16:07:11.409075+00 182 1 +18722217507 t f mobile t f Phone number for app user seemano mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:07:11.406627 t
2019-07-15 22:13:27.99285+00 2019-07-18 16:05:44.307354+00 201 1 +18722217507 t f mobile t f Phone number for app user NomNomFol mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:05:44.303111 t
2019-07-11 17:49:44.604442+00 2019-07-11 17:49:44.604496+00 196 1 +18722217507 t f mobile t f Phone number for app user BlueBull mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth \N f
2019-07-12 01:22:43.569432+00 2019-07-12 01:22:43.569444+00 197 1 +18722217507 t f mobile t f Phone number for app user BlueBull mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth \N f
2019-07-16 16:36:23.552433+00 2019-07-18 16:05:30.333603+00 204 1 +18722217507 t f mobile t f Phone number for app user CoCoButter mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:05:30.331568 t
2019-07-16 15:58:21.044401+00 2019-07-18 16:05:35.183015+00 203 1 +18722217507 t f mobile t f Phone number for app user BlackBeard mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:05:35.180085 t
2019-07-15 22:32:20.262341+00 2019-07-18 16:05:39.873424+00 202 1 +18722217507 t f mobile t f Phone number for app user Soldol007 mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": true, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": true, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:05:39.869345 t
2019-07-15 18:21:56.718402+00 2019-07-18 16:05:50.040754+00 200 1 +18722217507 t f mobile t f Phone number for app user GanstaBoi mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:05:50.039921 t
2019-07-12 01:48:29.231081+00 2019-07-18 16:06:03.668974+00 198 1 +18722217507 t f mobile t f Phone number for app user BlueBull mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:06:03.667333 t
2019-07-12 01:58:53.629293+00 2019-07-18 16:05:57.45408+00 199 1 +18722217507 t f mobile t f Phone number for app user BlueBull mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:05:57.450038 t
2019-07-11 16:26:12.38517+00 2019-07-18 16:06:10.130358+00 195 1 +18722217507 t f mobile t f Phone number for app user meeko mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:06:10.128473 t
2019-07-11 15:58:40.476051+00 2019-07-18 16:06:17.271962+00 194 1 +18722217507 t f mobile t f Phone number for app user fearo mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:06:17.269177 t
2019-07-05 17:36:36.939285+00 2019-07-18 16:06:21.991306+00 193 1 +18722217507 t f mobile t f Phone number for app user kingkong mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": true, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "audio", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 9}]}} {} bandwidth 2019-07-18 09:06:21.977514 t
2019-08-23 22:32:27.115081+00 2019-08-23 22:46:18.900683+00 218 1 +14123246220 t f mobile t f Phone number for app user jsmorgan mobile \N n-vhnhfnzhx6dumggwg3zjcwi {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": true, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 2}]}} {} bandwidth \N f
2019-07-17 00:09:30.270505+00 2019-07-18 16:05:20.049037+00 205 1 +13367394103 t f priority t f Testing Phone Number Routing Testing testing PNcd31d8c4381073d246126da7d4674c31 {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "SMSAutoReplyText": "Are you available tomorrow for a showing?", "SMSAutoReplyImageUrl": "https://s3-us-west-2.amazonaws.com/buyercall-logo/logo_buyercall_yellow.png", "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "SMSAutoReplyImage": false, "defaultRouting": {"retryRouting": 0, "callOrder": "simultaneous", "dialDigit": false, "agents": [{"fullName": "Sue", "contactUsing": "phone", "id": 2}, {"fullName": "Mark", "contactUsing": "phone", "id": 5}, {"fullName": "Harry", "contactUsing": "phone", "id": 9}], "digitalPrompt": false}, "configSMSSetup": false, "SMSAutoReply": false, "voicemailMessageType": "text", "whisperMessage": "This call will be recorded."} {} twilio 2019-07-18 09:05:20.044685 t
2019-06-21 20:49:35.973453+00 2019-07-18 16:06:41.372018+00 189 1 +18722217507 t f tracking t f Boo Too Nom Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "SMSAutoReplyImageUrl": "", "digitRoutings": [], "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "notifyAdf": false, "firstCallBack": "", "SMSRuleOneKeyword": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneRecipientAgent": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": true, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneSMSBody": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Conway", "excludeGroups": true, "contactUsing": "phone", "id": 9}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-07-18 09:06:41.368501 t
2019-06-07 13:18:27.300607+00 2019-07-18 16:07:16.124101+00 181 1 +18722217507 t f mobile t f Phone number for app user joesop mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:07:16.121484 t
2019-06-06 23:18:23.264665+00 2019-07-18 16:07:20.629824+00 180 1 +18722217507 t f mobile t f Phone number for app user noonop mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:07:20.628937 t
2019-06-06 15:40:25.490144+00 2019-07-18 16:07:30.383657+00 178 1 +18722217507 t f mobile t f Phone number for app user koono mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-07-18 09:07:30.381978 t
2019-05-31 18:54:55.878216+00 2019-07-18 16:07:35.023422+00 177 1 +18722217507 t f mobile t f BeesKnees Numbers Organic Search n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Harry Vermaak", "excludeGroups": true, "contactUsing": "phone", "id": 1}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": true, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth 2019-07-18 09:07:35.020555 t
2019-08-23 22:03:42.947841+00 2019-10-10 01:45:06.943311+00 217 1 +14123246220 t f mobile t f Phone number for app user jsmorgan mobile \N n-vhnhfnzhx6dumggwg3zjcwi {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": true, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-10-09 18:45:06.942676 t
2019-07-18 16:17:06.017115+00 2019-07-18 16:17:06.017371+00 207 1 +13367394103 t f priority t f Local Tester Phone Number BuyerCall cpc PN20619de3c706b385a08d6f2088fc3d1a {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "SMSAutoReplyText": "Are you available tomorrow for a showing?", "SMSAutoReplyImageUrl": "", "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "SMSAutoReplyImage": false, "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": false, "agents": [{"fullName": "Mark Jones", "contactUsing": "phone", "id": 5}], "digitalPrompt": false}, "configSMSSetup": false, "SMSAutoReply": false, "voicemailMessageType": "text", "whisperMessage": "This call will be recorded."} {} twilio \N f
2019-07-22 20:50:16.260288+00 2019-10-10 01:45:24.822347+00 209 1 +13127618003 t f mobile t f Phone number for app user camelBack mobile \N n-nvtnuftjwannfbokq2n37aq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Kate", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-10-09 18:45:24.822004 t
2019-07-18 16:10:00.232726+00 2019-10-10 01:45:31.05403+00 206 1 +12063399096 t f priority t f Testing Local Number Organic Search PNe1919fd26843de5a97d3c4f977e3b881 {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Mark Jones", "excludeGroups": true, "contactUsing": "phone", "id": 5}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": false, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""} twilio 2019-10-09 18:45:31.053508 t
2019-07-18 17:17:23.506335+00 2019-10-10 01:45:29.133039+00 208 1 +13127618003 t f mobile t f Phone number for app user camelBack mobile \N n-nvtnuftjwannfbokq2n37aq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Kate", "contactUsing": "phone", "id": 641}]}} {} bandwidth 2019-10-09 18:45:29.132656 t
2019-07-29 21:54:15.616538+00 2019-10-10 01:45:18.971871+00 213 1 +13367394103 t f priority t f BigBoy Number Organic Search PN20619de3c706b385a08d6f2088fc3d1a {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "SMSAutoReplyImageUrl": "", "digitRoutings": [], "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "notifyAdf": false, "firstCallBack": "", "SMSRuleOneKeyword": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneRecipientAgent": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneSMSBody": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": true, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Morne Krit", "excludeGroups": true, "contactUsing": "phone", "id": 11}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""} twilio 2019-10-09 18:45:18.971438 t
2019-07-29 19:37:07.668285+00 2019-10-10 01:45:21.767163+00 212 1 +13367394103 t f priority t f WH Number Organic Search PN20619de3c706b385a08d6f2088fc3d1a {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "SMSAutoReplyImageUrl": "", "digitRoutings": [], "routingType": "default", "notifyAdf": false, "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "firstCallBack": "", "SMSRuleOneKeyword": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneRecipientAgent": "", "hiddenInformation": "", "digitWhisperMessageType": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneSMSBody": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Mark Jones", "excludeGroups": true, "contactUsing": "phone", "id": 5}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": false, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""} twilio 2019-10-09 18:45:21.766798 t
2019-07-30 17:48:57.255017+00 2019-10-10 01:45:16.102893+00 214 1 +13367394103 t f priority t f Sunside Up Organic Search PN20619de3c706b385a08d6f2088fc3d1a {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "SMSAutoReplyImageUrl": "", "digitRoutings": [], "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "notifyAdf": false, "firstCallBack": "", "SMSRuleOneKeyword": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneRecipientAgent": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneSMSBody": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "digitPrompt": true, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Morne Krit", "excludeGroups": true, "contactUsing": "phone", "id": 11}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""} twilio 2019-10-09 18:45:16.102554 t
2019-08-29 17:17:56.212081+00 2019-10-10 01:44:53.373681+00 223 1 +14123246220 t f mobile t f Phone number for app user jsmorgan mobile \N n-vhnhfnzhx6dumggwg3zjcwi {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-10-09 18:44:53.373315 t
2019-08-28 16:42:57.185653+00 2019-08-28 16:42:57.185669+00 220 1 +14123246220 t f mobile t f Phone number for app user bellyO mobile \N n-vhnhfnzhx6dumggwg3zjcwi {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 2}]}} {} bandwidth \N f
2019-08-28 18:41:25.176343+00 2019-08-28 18:45:14.689974+00 221 1 +14123246220 t f mobile t f jsmorgan mobile number mobile \N n-vhnhfnzhx6dumggwg3zjcwi {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 2}]}} {} bandwidth \N f
2019-08-28 18:49:54.035449+00 2019-10-10 01:45:00.877585+00 222 1 +14123246220 t f mobile t f Phone number for app user TESTCOM1_salesrestricted mobile \N n-vhnhfnzhx6dumggwg3zjcwi {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message, and we'll get back to you as soon as possible.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": true, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Sales Restricted", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-10-09 18:45:00.875869 t
2019-08-30 19:50:03.056487+00 2019-10-10 01:44:42.954209+00 226 1 +14123246220 t f mobile t f jsmorgan mobile number mobile \N n-vhnhfnzhx6dumggwg3zjcwi {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "transcribeVoiceMail": false, "voicemailMessageType": "text", "transcribeAnsweredCall": false, "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-10-09 18:44:42.953462 t
2019-08-30 19:01:32.100572+00 2019-10-10 01:44:47.236944+00 225 1 +14123246220 t f mobile t f Phone number for app user ZoomO mobile \N n-vhnhfnzhx6dumggwg3zjcwi {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": true, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": true, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-10-09 18:44:47.235479 t
2019-08-29 17:21:34.845862+00 2019-10-10 01:44:50.349837+00 224 1 +14123246220 t f mobile t f Phone number for app user jsmorgan mobile \N n-vhnhfnzhx6dumggwg3zjcwi {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": true, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": true, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-10-09 18:44:50.349123 t
2019-08-28 16:02:36.798931+00 2019-10-10 01:45:03.388721+00 219 1 +14123246220 t f mobile t f Phone number for app user bellyO mobile \N n-vhnhfnzhx6dumggwg3zjcwi {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-10-09 18:45:03.388287 t
2019-10-03 23:13:39.065297+00 2019-10-17 05:33:01.845793+00 229 1 +17733575773 t f mobile t f Phone number for app user bergie mobile \N n-yftrsnzspelcdxzadwkbedq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "transcribeVoiceMail": false, "voicemailMessageType": "text", "transcribeAnsweredCall": false, "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-10-16 22:33:01.844681 t
2019-09-02 15:53:51.577931+00 2019-10-17 05:46:24.172441+00 227 1 +14123246220 t f mobile t f harry Test mobile \N n-vhnhfnzhx6dumggwg3zjcwi {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": true, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": true, "whisperMessage": "This call is being recorded.", "transcribeVoiceMail": true, "voicemailMessageType": "text", "transcribeAnsweredCall": true, "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-10-16 22:36:59.931608 t
2019-09-09 19:49:58.563585+00 2019-09-09 19:49:58.563598+00 228 1 +14123246220 t f mobile t f Phone number for app user ozzy mobile \N n-vhnhfnzhx6dumggwg3zjcwi {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": true, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": true, "whisperMessage": "This call is being recorded.", "transcribeVoiceMail": true, "voicemailMessageType": "text", "transcribeAnsweredCall": true, "defaultRouting": {"agents": [{"fullName": "Sue", "contactUsing": "phone", "id": 2}]}} {} bandwidth \N f
2019-10-09 22:36:37.879684+00 2019-10-09 22:36:37.879701+00 230 1 +15095962210 t f mobile t f Phone number for app user berryo mobile \N n-bevaeo3jx45ggutrkdznqfq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "transcribeVoiceMail": false, "voicemailMessageType": "text", "transcribeAnsweredCall": false, "defaultRouting": {"agents": [{"fullName": "Sue", "contactUsing": "phone", "id": 2}]}} {} bandwidth \N f
2019-08-01 16:26:12.270334+00 2019-10-10 01:45:10.242886+00 216 1 +13127618003 t f mobile t f Phone number for app user dockerPro mobile \N n-nvtnuftjwannfbokq2n37aq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": true, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Morne Kit", "contactUsing": "phone", "id": 11}]}} {} bandwidth 2019-10-09 18:45:10.242541 t
2019-07-31 17:00:21.346733+00 2019-10-10 01:45:13.235376+00 215 1 +13367394103 t f priority t f Boo Boo Number Autotrader ppc PN20619de3c706b385a08d6f2088fc3d1a {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "SMSAutoReplyImageUrl": "", "digitRoutings": [], "routingType": "default", "recordCalls": false, "notifyAdf": false, "SMSAutoReplyImage": false, "thirdCallBack": "", "MissedCallAutoReply": false, "firstCallBack": "", "SMSRuleOneEmails": "", "voicemailMessageType": "text", "SMSRuleOneRecipientAgent": "", "hiddenInformation": "", "callBackMessage": false, "SMSRuleOneKeyword": "", "digitWhisperMessageType": "", "noDigitWhisperMessage": "", "SMSRuleOneSMSBody": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "transcribeAnsweredCall": true, "noDigitWhisperMessageType": "", "callBack": false, "secondCallBack": "", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "name": "Default routing", "dialDigit": false, "agents": [{"fullName": "Morne Krit", "excludeGroups": true, "contactUsing": "phone", "id": 11}], "digitalPrompt": false}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "callBackTextType": "", "whisperMessageType": "text", "digitPrompt": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": false, "SMSRuleOneRecipientCustom": "", "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "transcribeVoiceMail": true, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""} twilio 2019-10-09 18:45:13.235029 t
2019-04-19 18:47:58.480215+00 2019-10-10 01:45:38.719407+00 123 1 +18722217507 t f mobile t f Phone number for app user jsmorgan mobile \N n-4vepcrr67cuyf4w34ewglzq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "voicemailMessageType": "text", "defaultRouting": {"agents": [{"fullName": "Barry White", "contactUsing": "phone", "id": 3}]}} {} bandwidth 2019-10-09 18:45:38.719041 t
2019-10-10 01:48:58.87279+00 2019-10-10 01:48:58.872806+00 231 1 +17733575773 t f tracking t f Booboo Organic Search n-yftrsnzspelcdxzadwkbedq {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "transcribeAnsweredCall": false, "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Mark Jones", "excludeGroups": true, "contactUsing": "phone", "id": 5}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "transcribeVoiceMail": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""} bandwidth \N f
2019-10-10 02:07:39.775159+00 2019-10-10 02:07:39.775171+00 232 1 +13367394103 t f priority t f Twilio Block Test Organic Search PN20619de3c706b385a08d6f2088fc3d1a {"voicemailMessage": "Sorry, we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "SMSRuleOneEmailBody": "", "notifyAdf": false, "SMSRuleOneKeyword": "", "routingType": "default", "digitWhisperMessageType": "", "SMSRuleOneRecipientCustom": "", "MissedCallAutoReply": false, "SMSAutoReplyImageUrl": "", "digitRoutings": [], "firstCallBack": "", "SMSRuleOneEmails": "", "callBackTextType": "", "SMSRuleOneSMSBody": "", "hiddenInformation": "", "callBackMessage": false, "recordCalls": false, "thirdCallBack": "", "noDigitWhisperMessage": "", "SMSRuleOneRecipientAgent": "", "callBackText": "Hello. We're calling you back since we missed your call a while ago.", "SMSRuleOneAction": "", "transcribeAnsweredCall": false, "digitPrompt": false, "callBack": false, "SMSAutoReplyText": "Thanks for the message. We'll be in touch.", "defaultRouting": {"retryRouting": 0, "callOrder": "sequence", "dialDigit": null, "name": "Default routing", "agents": [{"fullName": "Mark Jones", "excludeGroups": true, "contactUsing": "phone", "id": 5}]}, "configSMSSetup": false, "SMSRuleOneEmailAgent": "", "SMSRuleOneCallAgent": "", "voicemailMessageType": "text", "whisperMessageType": "", "noDigitWhisperMessageType": "", "secondCallBack": "", "greetingMessage": false, "language": "en", "digitWhisperMessage": "", "SMSRuleOne": false, "voicemail": true, "SMSAutoReplyImage": false, "playHoldMusic": false, "notifyAdfCustom": "", "SMSRuleOneRecipientType": "", "MissedCallAutoReplyText": "Sorry we missed your call. Want us to reply by text message?", "whisperMessage": "", "SMSAutoReply": false, "transcribeVoiceMail": false, "customHoldMusic": false} {"notifyLeads": "all", "notifyMissedAgents": false, "notifyAllCustom": "", "notifyMissedMe": true, "notifyAllMe": false, "notifyAllAgents": false, "notifyMissedCustom": ""} twilio \N f
2019-10-10 23:55:18.742373+00 2019-10-10 23:55:18.742387+00 233 1 +17733575773 t f mobile t f Phone number for app user whiteo mobile \N n-yftrsnzspelcdxzadwkbedq {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "transcribeVoiceMail": false, "voicemailMessageType": "text", "transcribeAnsweredCall": false, "defaultRouting": {"agents": [{"fullName": "Mark", "contactUsing": "phone", "id": 3}]}} {} bandwidth \N f
2019-10-22 09:51:24.234182+00 2019-10-22 09:55:01.29333+00 234 1 +17736578988 t f mobile t f Phone number for app user bergie mobile \N n-lgficxrrhiu3sibldoawaza {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "transcribeVoiceMail": false, "voicemailMessageType": "text", "transcribeAnsweredCall": false, "defaultRouting": {"agents": [{"fullName": "Sue", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-10-22 02:55:01.282648 t
2019-10-22 10:11:02.943161+00 2019-10-22 10:11:02.943176+00 236 1 +17736578988 t f mobile t f Phone number for app user bergie mobile \N n-lgficxrrhiu3sibldoawaza {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "transcribeVoiceMail": false, "voicemailMessageType": "text", "transcribeAnsweredCall": false, "defaultRouting": {"agents": [{"fullName": "Sue", "contactUsing": "phone", "id": 2}]}} {} bandwidth \N f
2019-10-22 09:58:10.12417+00 2019-10-22 10:09:32.785874+00 235 1 +17736578988 t f mobile t f Phone number for app user bergie mobile \N n-lgficxrrhiu3sibldoawaza {"voicemailMessage": "Please leave a message after the beep.", "recordCalls": false, "greetingMessage": false, "language": "en", "whisperMessageType": "text", "routingType": "default", "voicemail": false, "whisperMessage": "This call is being recorded.", "transcribeVoiceMail": false, "voicemailMessageType": "text", "transcribeAnsweredCall": false, "defaultRouting": {"agents": [{"fullName": "Sue", "contactUsing": "phone", "id": 2}]}} {} bandwidth 2019-10-22 03:09:32.782815 t
\.
--
-- Name: phonenumbers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('phonenumbers_id_seq', 236, true);
--
-- Data for Name: report_user_tie; Type: TABLE DATA; Schema: public; Owner: -
--
COPY report_user_tie (created_on, updated_on, report_id, user_id, partnership_accounts_id, emails) FROM stdin;
2019-04-19 16:25:03.634953+00 2019-04-19 16:25:03.634967+00 1 3 1 {}
2019-04-21 21:55:52.298809+00 2019-04-21 21:55:52.298825+00 1 6 1 {}
2019-04-21 21:55:52.298809+00 2019-07-25 20:43:31.473773+00 2 3 1 {"emails": ""}
\.
--
-- Data for Name: reports; Type: TABLE DATA; Schema: public; Owner: -
--
COPY reports (id, name) FROM stdin;
1 List of Interest
2 Daily Leads Report
\.
--
-- Name: reports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('reports_id_seq', 2, true);
--
-- Data for Name: sip_domains; Type: TABLE DATA; Schema: public; Owner: -
--
COPY sip_domains (created_on, updated_on, id, domain_id, name, description, provider, partnership_id, deactivated_on, is_deactivated, cloud_id) FROM stdin;
2019-03-22 05:54:51.900824+00 2019-03-22 05:54:51.900824+00 1 rd-qwiotoummjbbfrtjdd4d7oy autosoftdev Autosoft SIP Domain bandwidth 1 \N f AUTOSOFT
\.
--
-- Name: sip_domains_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('sip_domains_id_seq', 1, false);
--
-- Data for Name: sip_endpoints; Type: TABLE DATA; Schema: public; Owner: -
--
COPY sip_endpoints (created_on, updated_on, id, description, provider, provider_id, sip_uri, enabled, inbound_id, partnership_account_id, domain_id, deactivated_on, is_deactivated, agent_id, sip_username, sip_password, device_token, selector, app_id, install_id, imei, unique_id, build, platform, platform_version, version, app_name, locale, cpu, device, production_build, last_sms_received_id, last_sms_sent_id, qr_url) FROM stdin;
2019-03-27 16:42:39.149624+00 2019-03-27 17:09:33.390758+00 1 mobile app for jsmorgan bandwidth re-i5v5yamha4aoj5p2vpamyuy sip:jsmorgan@Autosoft.bwapp.bwsip.io t 66 1 1 \N f 3 jsmorgan BooBooTels
2019-03-27 20:22:44.88537+00 2019-03-27 20:29:03.668358+00 3 Holy money mobile endpoint bandwidth re-dnd2da7yliauzhfy33as27i sip:bstone@Autosoft.bwapp.bwsip.io t 69 1 1 \N f 2 bstone CrazyFrog656
2019-04-05 16:03:30.64542+00 2019-04-08 19:29:39.54788+00 4 mobile app for goonryn bandwidth re-whcagghxz4yridbyxe4y5ia sip:goonryn@Autosoft.bwapp.bwsip.io f 72 1 1 2019-04-08 12:29:39.547291 t 2 goonryn xfg34DFsde453SS=df#
2019-03-27 17:16:24.654318+00 2019-04-08 19:30:10.676154+00 2 jsoon mobile sip bandwidth re-yur2vmghxvyhve7arm2kkkq sip:jsoon@Autosoft.bwapp.bwsip.io f 67 1 1 2019-04-08 12:30:10.675734 t 2 jsoon string
2019-04-08 19:40:15.614429+00 2019-04-08 21:27:51.571962+00 5 Autosoft sip domain endpoint for mobile account use bandwidth re-kguec3aeynlcqz5nvwetari sip:harryv@Autosoft.bwapp.bwsip.io t 74 1 1 \N f 1 harryv PomPom07
2019-04-09 17:25:22.391085+00 2019-04-15 22:54:54.15669+00 6 mobile app for pearmom bandwidth re-bk57n2ugn7tllywjkpln5ji sip:pearmom@Autosoft.bwapp.bwsip.io t 75 1 1 \N f 3 pearmom BoomBoom007 %last_known_sms_sent_id%
2019-04-15 22:58:41.329231+00 2019-04-25 21:09:27.144357+00 7 mobile app for jordto bandwidth re-zlomwlptqjjtqmti6tv4fci sip:jordto@Autosoft.bwapp.bwsip.io f 112 1 1 2019-04-25 14:09:27.14271 t 2 jordto xfg34DFsde453SS=df# %last_known_sms_sent_id%
2019-04-16 16:03:46.173877+00 2019-04-25 21:09:31.509724+00 8 mobile app for billto bandwidth re-us47lsjzmb6jewe3tphyqda sip:billto@Autosoft.bwapp.bwsip.io f 113 1 1 2019-04-25 14:09:31.509158 t 2 billto BoomBoom007 Y2YxTGhxT2E0cG86QVBBOTFiR2J0SEtxZEMxMEVPSEdPalFuanhmbkhkNzBPZXItVlR1c1dyY3VvM0RJS3RCOGNwZGtFNE1DRlVaeUtWeHVua3Y2Y0FrME8yd1hTTnk2RWNtNWNadzYtck14QS1WRGUyVmJFN2d5dUhxMGxtRTF4VkxPcWQtWl9XUzVGLVJVUzRaY2tURzE= 77D6B932EA4804BB72126E24F92ADCD31E692321:23A45F41 cz.acrobits.softphone.cloudphone f80f7613-044b-41b2-bc25-e53c6a6d59b3 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1
2019-04-17 16:54:51.55019+00 2019-04-25 21:09:35.707188+00 9 mobile app for georgee bandwidth re-xzjohsxag2onatpjldtln2y sip:georgee@Autosoft.bwapp.bwsip.io f 114 1 1 2019-04-25 14:09:35.70685 t 2 georgee georgee Y2YxTGhxT2E0cG86QVBBOTFiR2J0SEtxZEMxMEVPSEdPalFuanhmbkhkNzBPZXItVlR1c1dyY3VvM0RJS3RCOGNwZGtFNE1DRlVaeUtWeHVua3Y2Y0FrME8yd1hTTnk2RWNtNWNadzYtck14QS1WRGUyVmJFN2d5dUhxMGxtRTF4VkxPcWQtWl9XUzVGLVJVUzRaY2tURzE= 66C56FC5F8E67FEA530B97809DF36B4B93FF2452:23A45F41 cz.acrobits.softphone.cloudphone ebd74144-c33e-4de2-a150-26ca2243b595 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1
2019-04-17 19:47:43.597634+00 2019-04-25 21:09:38.895951+00 10 mobile app for os bandwidth re-pzkgsbzzt2hjkt5v7arkmca sip:os@Autosoft.bwapp.bwsip.io f 115 1 1 2019-04-25 14:09:38.895577 t 2 os BoomBoom007 Y2YxTGhxT2E0cG86QVBBOTFiR2J0SEtxZEMxMEVPSEdPalFuanhmbkhkNzBPZXItVlR1c1dyY3VvM0RJS3RCOGNwZGtFNE1DRlVaeUtWeHVua3Y2Y0FrME8yd1hTTnk2RWNtNWNadzYtck14QS1WRGUyVmJFN2d5dUhxMGxtRTF4VkxPcWQtWl9XUzVGLVJVUzRaY2tURzE= F4BE52D74C29F6D12D52110E2FB9D002AB36ABE9:23A45F41 cz.acrobits.softphone.cloudphone a67ebef8-17da-4d31-8f01-8bd61106b758 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1
2019-04-18 01:58:03.390013+00 2019-04-25 21:09:42.9292+00 11 mobile app for es bandwidth re-fwazllx7upq4vob3pz43aza sip:es@Autosoft.bwapp.bwsip.io f 116 1 1 2019-04-25 14:09:42.928713 t 2 es BoomBoom007 Y2YxTGhxT2E0cG86QVBBOTFiR2J0SEtxZEMxMEVPSEdPalFuanhmbkhkNzBPZXItVlR1c1dyY3VvM0RJS3RCOGNwZGtFNE1DRlVaeUtWeHVua3Y2Y0FrME8yd1hTTnk2RWNtNWNadzYtck14QS1WRGUyVmJFN2d5dUhxMGxtRTF4VkxPcWQtWl9XUzVGLVJVUzRaY2tURzE= 081669A3DE26417B34DC2333123267509C053379:23A45F41 cz.acrobits.softphone.cloudphone e2386cc5-5fa8-48ce-b3d0-6bb2f4255bb7 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1
2019-04-25 21:16:40.632064+00 2019-04-25 21:30:35.422154+00 18 Autosoft sip domain endpoint for mobile account use bandwidth re-qnpyutdf6gdyucvejhkpp3i sip:tool@Autosoft.bwapp.bwsip.io f 146 1 1 2019-04-25 14:30:35.421725 t 1 tool BoomBoom007
2019-04-25 21:12:45.228167+00 2019-04-25 21:30:45.644972+00 17 Autosoft sip domain endpoint for mobile account use bandwidth re-pz5pu2ojyrpzb722dchj66a sip:gobo@Autosoft.bwapp.bwsip.io f 145 1 1 2019-04-25 14:30:45.644463 t 1 gobo BoomBoom007
2019-04-24 21:52:48.85415+00 2019-04-25 22:37:16.126478+00 15 mobile app for op bandwidth re-s4gvpytbdeks7y7bzhx4u4y sip:op@Autosoft.bwapp.bwsip.io f 141 1 1 2019-04-25 15:37:16.126062 t 3 op BoomBoom007 ZmFCTDBMeXM1WjQ6QVBBOTFiRl9PNnZiN3RGNjNscWt2SGo5b0xtVklvQndtWWhyZDZwLWtfS2EtSGY1XzhLUExRRTNMcnUxbW95MVRTM2x0VmZ1RUlVakswZlJET1dscEx3Zm5Sek9GM0U2WmpfZ3MzZmZmeGMxMXhvanVlX1djel9WMHl6d3hRZUVtUzRLU3BmWWcxcEs= 9C890AC9589E0F0A3C1F3F910744C95600282A0B:23A45F41 cz.acrobits.softphone.cloudphone 645b03ec-557a-4921-894d-65cf161549f7 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1
2019-04-23 17:29:48.042321+00 2019-04-25 22:37:21.563364+00 14 mobile app for bn bandwidth re-foutyghzbi4257wslsmuu6y sip:bn@Autosoft.bwapp.bwsip.io f 140 1 1 2019-04-25 15:37:21.562974 t 3 bn BoomBoom007 ZmFCTDBMeXM1WjQ6QVBBOTFiRl9PNnZiN3RGNjNscWt2SGo5b0xtVklvQndtWWhyZDZwLWtfS2EtSGY1XzhLUExRRTNMcnUxbW95MVRTM2x0VmZ1RUlVakswZlJET1dscEx3Zm5Sek9GM0U2WmpfZ3MzZmZmeGMxMXhvanVlX1djel9WMHl6d3hRZUVtUzRLU3BmWWcxcEs= A35631DBBC52FE262E9099E6C9EC617BEFB29B91:23A45F41 cz.acrobits.softphone.cloudphone 1a119da3-d2f2-4ed6-8dba-c92e2d2f2630 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1 m-ohieje4lxdxzseagqokvcsi m-r6ev4w4nf3b5cvy7ldq2gxy
2019-04-22 23:36:07.666347+00 2019-04-25 22:37:25.429791+00 13 mobile app for et bandwidth re-nleg3gm4nhhqdwsyqfpiqci sip:et@Autosoft.bwapp.bwsip.io f 139 1 1 2019-04-25 15:37:25.42942 t 3 et BoomBoom007 ZmFCTDBMeXM1WjQ6QVBBOTFiRl9PNnZiN3RGNjNscWt2SGo5b0xtVklvQndtWWhyZDZwLWtfS2EtSGY1XzhLUExRRTNMcnUxbW95MVRTM2x0VmZ1RUlVakswZlJET1dscEx3Zm5Sek9GM0U2WmpfZ3MzZmZmeGMxMXhvanVlX1djel9WMHl6d3hRZUVtUzRLU3BmWWcxcEs= FA6171200631A6E081E1678168E4D75631C9D6AC:23A45F41 cz.acrobits.softphone.cloudphone fd3aac7c-4139-4520-92c8-8274ae488dac 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1
2019-04-22 18:27:57.254279+00 2019-04-25 22:37:29.502296+00 12 mobile app for jeez bandwidth re-4kqnt7yupdpaph6xshnpuci sip:jeez@Autosoft.bwapp.bwsip.io f 138 1 1 2019-04-25 15:37:29.501893 t 3 jeez BoomBoom007 ZmFCTDBMeXM1WjQ6QVBBOTFiRl9PNnZiN3RGNjNscWt2SGo5b0xtVklvQndtWWhyZDZwLWtfS2EtSGY1XzhLUExRRTNMcnUxbW95MVRTM2x0VmZ1RUlVakswZlJET1dscEx3Zm5Sek9GM0U2WmpfZ3MzZmZmeGMxMXhvanVlX1djel9WMHl6d3hRZUVtUzRLU3BmWWcxcEs= 366E59AFAE762EC41BB45F1FB1280DA67D24A54E:23A45F41 cz.acrobits.softphone.cloudphone de2ee286-7066-493a-ba1b-294d1310e956 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1 m-rygrkfavk2grylvec7pmsua m-pdj2qlnlpa7t7inh4zwa3qa
2019-04-25 21:27:07.793974+00 2019-04-25 21:30:27.895928+00 20 Autosoft sip domain endpoint for mobile account use bandwidth re-bq7ximu24cgncnep3wbspfy sip:qz@Autosoft.bwapp.bwsip.io f 148 1 1 2019-04-25 14:30:27.894785 t 1 qz BoomBoom007
2019-04-25 21:22:40.947077+00 2019-04-25 21:30:31.69466+00 19 Autosoft sip domain endpoint for mobile account use bandwidth re-aqrasqwjs34nshytlwh6s2i sip:fool@Autosoft.bwapp.bwsip.io f 147 1 1 2019-04-25 14:30:31.694288 t 1 fool BoomBoom007
2019-04-25 22:21:46.422422+00 2019-04-25 22:27:44.59922+00 24 Autosoft sip domain endpoint for mobile account use bandwidth re-n5tcyqvd45hoiauqjo5k5cq sip:sg@Autosoft.bwapp.bwsip.io f 153 1 1 2019-04-25 15:27:44.598323 t 2 sg BoomBoom007
2019-04-25 22:15:27.005456+00 2019-04-25 22:27:48.929378+00 23 Autosoft sip domain endpoint for mobile account use bandwidth re-zudreifnpi5k6ahwz7trogq sip:eu@Autosoft.bwapp.bwsip.io f 152 1 1 2019-04-25 15:27:48.929006 t 2 eu BoomBoom007
2019-04-25 21:34:16.694127+00 2019-04-25 22:27:52.00654+00 22 Autosoft sip domain endpoint for mobile account use bandwidth re-i42pvyaxyhjlofyfues5ilq sip:sd@Autosoft.bwapp.bwsip.io f 151 1 1 2019-04-25 15:27:52.006098 t 1 sd BoomBoom007
2019-04-25 21:31:35.249411+00 2019-04-25 22:27:57.348856+00 21 Autosoft sip domain endpoint for mobile account use bandwidth re-dqg27k6zr7nmxr63sxp7sai sip:ay@Autosoft.bwapp.bwsip.io f 150 1 1 2019-04-25 15:27:57.348253 t 1 ay BoomBoom007
2019-04-25 22:28:41.395243+00 2019-04-25 22:37:04.599319+00 25 Autosoft sip domain endpoint for mobile account use bandwidth re-kaxzf6ziomlhvrykakkqrzq sip:oopa@Autosoft.bwapp.bwsip.io f 154 1 1 2019-04-25 15:37:04.598337 t 2 oopa Boom007
2019-04-25 16:11:36.566639+00 2019-04-25 22:37:10.470854+00 16 mobile app for owa bandwidth re-fafuducujrfczuhnr3hceey sip:owa@Autosoft.bwapp.bwsip.io f 142 1 1 2019-04-25 15:37:10.469993 t 3 owa BoomBoom007 ZGNIc2tReWk1TmM6QVBBOTFiRWRudTNLSVIwcjY2am52TTZyYk1qS3FFd2hpODJWeXVuMmZNTlJ5eU9zbDlpazZFQldBazZtVmFMSGhtWVBVZTRYUVJCb0RVUnR3d21qbUMtNFBOVUhLVl9uUTR3NVNPclJNRmU3VmlUZjRjNE5LVXZCaTUyTGNpLWVaekxJYUo0aFdSckc= 1C73B58B79D035F2C92A2037E6EFFE003C836093:23A45F41 cz.acrobits.softphone.cloudphone a7ee8399-d183-4127-9113-258d1ada7a1c 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1 m-er3y2b66r2w3kuwydkljoqq
2019-04-25 22:38:32.367563+00 2019-04-25 22:51:08.822103+00 26 Autosoft sip domain endpoint for mobile account use bandwidth re-6zew2ovmdz63cppupckysia sip:roo@Autosoft.bwapp.bwsip.io f 155 1 1 2019-04-25 15:51:08.82135 t 2 roo Boom007 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/roo_qrcode_a81952690e5a4d9eba65b91879c920b5
2019-04-25 22:51:47.741471+00 2019-05-31 18:48:52.008187+00 27 Autosoft sip domain endpoint for mobile account use bandwidth re-t2nrerhz26yvpvwkzx7gcqy sip:suep@Autosoft.bwapp.bwsip.io f 156 1 1 2019-05-31 11:48:52.007572 t 2 suep BoomBoom007 ZGNIc2tReWk1TmM6QVBBOTFiRWRudTNLSVIwcjY2am52TTZyYk1qS3FFd2hpODJWeXVuMmZNTlJ5eU9zbDlpazZFQldBazZtVmFMSGhtWVBVZTRYUVJCb0RVUnR3d21qbUMtNFBOVUhLVl9uUTR3NVNPclJNRmU3VmlUZjRjNE5LVXZCaTUyTGNpLWVaekxJYUo0aFdSckc= 64F98490E0D443ECBA0B778C089C860AFC16ABBB:23A45F41 cz.acrobits.softphone.cloudphone 035faced-e73a-423b-8540-d95e48509e9f 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/suep_qrcode_06ccc055fb2a4fb3a0ed27e7a65d62ce
2019-04-30 16:24:43.524882+00 2019-05-31 18:48:38.0795+00 30 mobile app for ll bandwidth re-rp5ercgmblj6dj746pjsvhq sip:ll@Autosoft.bwapp.bwsip.io f 162 1 1 2019-05-31 11:48:38.078921 t 2 ll BoomBoom007 ZGNIc2tReWk1TmM6QVBBOTFiRWRudTNLSVIwcjY2am52TTZyYk1qS3FFd2hpODJWeXVuMmZNTlJ5eU9zbDlpazZFQldBazZtVmFMSGhtWVBVZTRYUVJCb0RVUnR3d21qbUMtNFBOVUhLVl9uUTR3NVNPclJNRmU3VmlUZjRjNE5LVXZCaTUyTGNpLWVaekxJYUo0aFdSckc= 6319340B67C881B5E9EA4A5B4431A19F9189A5C7:23A45F41 cz.acrobits.softphone.cloudphone a022f7dd-905d-4191-aa80-49ccdb13f4f4 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1 m-bfmc5afxclea7xck6mdukba https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/ll_qrcode_0525f7ddf2b7427892e0a804428e3897
2019-04-29 18:34:31.276978+00 2019-05-31 18:48:44.501658+00 29 mobile app for uo bandwidth re-ocnc4tq2cdgmbjgw7t4jwba sip:uo@Autosoft.bwapp.bwsip.io f 160 1 1 2019-05-31 11:48:44.500932 t 2 uo BoomBoom007 ZGNIc2tReWk1TmM6QVBBOTFiRWRudTNLSVIwcjY2am52TTZyYk1qS3FFd2hpODJWeXVuMmZNTlJ5eU9zbDlpazZFQldBazZtVmFMSGhtWVBVZTRYUVJCb0RVUnR3d21qbUMtNFBOVUhLVl9uUTR3NVNPclJNRmU3VmlUZjRjNE5LVXZCaTUyTGNpLWVaekxJYUo0aFdSckc= E5F479A11AA0CF7220688C0A2B8EAA3A7D338D48:23A45F41 cz.acrobits.softphone.cloudphone 43351166-f759-47bc-ba25-61922f7461a3 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1 m-fxzjpojpxlafqqtmncentyq https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/uo_qrcode_5779f07c5be34fbe974f649903564edc
2019-04-25 22:56:07.052656+00 2019-05-31 18:48:49.479449+00 28 Autosoft sip domain endpoint for mobile account use bandwidth re-mlkvnsuca4q2s4krgzdn4py sip:lock@Autosoft.bwapp.bwsip.io f 157 1 1 2019-05-31 11:48:49.47893 t 2 lock BoomBoom007 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/lock_qrcode_a49a957dfc2c4f69bb7d12aa149b119f
2019-04-30 22:11:01.403458+00 2019-05-31 18:48:35.467112+00 31 mobile app for xx bandwidth re-ntg32purx7bhcyxzddw4xgq sip:xx@Autosoft.bwapp.bwsip.io f 163 1 1 2019-05-31 11:48:35.466502 t 2 xx BoomBoom007 ZGNIc2tReWk1TmM6QVBBOTFiRWRudTNLSVIwcjY2am52TTZyYk1qS3FFd2hpODJWeXVuMmZNTlJ5eU9zbDlpazZFQldBazZtVmFMSGhtWVBVZTRYUVJCb0RVUnR3d21qbUMtNFBOVUhLVl9uUTR3NVNPclJNRmU3VmlUZjRjNE5LVXZCaTUyTGNpLWVaekxJYUo0aFdSckc= CFA0AA21A877AA3372B7B6D14B69959C68525D94:23A45F41 cz.acrobits.softphone.cloudphone b9cc0e50-17b6-4abe-b3a2-3ff96f771405 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1 m-kxtvmrmjktf7tqzvtqryygq m-jvykottbn2om2mfyx6g6woa https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/xx_qrcode_28fade74b2d14a66a805cd1838e38b91
2019-05-02 18:07:14.88118+00 2019-05-31 18:48:32.569319+00 32 mobile app for nn bandwidth re-x4sqwt4rknjjy563d3e72ti sip:nn@Autosoft.bwapp.bwsip.io f 164 1 1 2019-05-31 11:48:32.568641 t 2 nn BoomBoom007 ZGNIc2tReWk1TmM6QVBBOTFiRWRudTNLSVIwcjY2am52TTZyYk1qS3FFd2hpODJWeXVuMmZNTlJ5eU9zbDlpazZFQldBazZtVmFMSGhtWVBVZTRYUVJCb0RVUnR3d21qbUMtNFBOVUhLVl9uUTR3NVNPclJNRmU3VmlUZjRjNE5LVXZCaTUyTGNpLWVaekxJYUo0aFdSckc= 4BBBE050F751EAADF319CC159039BA7508675CBD:23A45F41 cz.acrobits.softphone.cloudphone 202d607c-3ed8-427a-bc3f-16137301a84a 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1 m-lub6g5ghib34jth3g32ggvq https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/nn_qrcode_a1bca2357b794c9dbc9c528761140db2
2019-05-09 22:47:23.791372+00 2019-05-31 18:48:08.692059+00 38 mobile app for ooz bandwidth re-57hyeot3o76xng5ice7b5wq sip:ooz@Autosoft.bwapp.bwsip.io f 172 1 1 2019-05-31 11:48:08.691453 t 2 ooz BoomBoom007 ZlRZMEdIOUs4QXc6QVBBOTFiSFZrMzJQRnBhZks3ODhfTHg1c3ZGQThNRFJMcDJJdnNGMlBoTUtwYi1fZEkyTFZIX24yMXkxS2FFVDAyMkVXbXVydDU5SnpNVW9XYzBTZllDOTY1QUxnZEtPcUM3aEhXX2d0RUVQRTZNb0EzTzVWUHItTkEwRHcxd2tES2EzVk04Ul9JdTA= AEBF996F4A94C438DEB161D49D1E41536BACD466:23A45F41 cz.acrobits.softphone.cloudphone 536e8f95-15ec-4534-8ced-6ee506d0a111 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/ooz_qrcode_e45bfb2a1cab477b9a8430211a27e31e
2019-05-08 14:58:15.969113+00 2019-05-31 18:48:18.463042+00 36 mobile app for vv bandwidth re-e6yrws7wxleq4fi5gzgodga sip:vv@Autosoft.bwapp.bwsip.io f 169 1 1 2019-05-31 11:48:18.462556 t 2 vv BoomBoom007 ZlRZMEdIOUs4QXc6QVBBOTFiSFZrMzJQRnBhZks3ODhfTHg1c3ZGQThNRFJMcDJJdnNGMlBoTUtwYi1fZEkyTFZIX24yMXkxS2FFVDAyMkVXbXVydDU5SnpNVW9XYzBTZllDOTY1QUxnZEtPcUM3aEhXX2d0RUVQRTZNb0EzTzVWUHItTkEwRHcxd2tES2EzVk04Ul9JdTA= 7BEAC446D5E8DAB9E2AFB86F587857B4B762137D:155642F9 cz.acrobits.softphone.cloudphone b84d7226-c434-4480-b340-9f305f3a9945 S8DSQM6G4U4 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1 m-klzdsx43dkdzrjkartjaz4y m-nckaezvoawpdnh6j7m4opaa https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/vv_qrcode_ae94f0f81841485a87317bbc3e29eb8f
2019-05-03 21:51:27.781143+00 2019-05-31 18:48:29.01345+00 33 mobile app for gh bandwidth re-nsbohrrpgryla4zknidwkjy sip:gh@Autosoft.bwapp.bwsip.io f 165 1 1 2019-05-31 11:48:29.013022 t 3 gh BoomBoom007 ZGNIc2tReWk1TmM6QVBBOTFiRWRudTNLSVIwcjY2am52TTZyYk1qS3FFd2hpODJWeXVuMmZNTlJ5eU9zbDlpazZFQldBazZtVmFMSGhtWVBVZTRYUVJCb0RVUnR3d21qbUMtNFBOVUhLVl9uUTR3NVNPclJNRmU3VmlUZjRjNE5LVXZCaTUyTGNpLWVaekxJYUo0aFdSckc= A16D868B7A7036EBD8F09189E1CDFF673A98D4FF:23A45F41 cz.acrobits.softphone.cloudphone a7d5e446-aae0-4c91-b621-f9786c7d4c22 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1 m-kg5mahgq6ts2fxfgaidmzgi https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/gh_qrcode_8281d7565f7d421bb4e189f61a2954c4
2019-05-09 16:54:17.742157+00 2019-05-31 18:48:11.158557+00 37 mobile app for popo bandwidth re-c2gowgl4qxxdejqcu7jz4iq sip:popo@Autosoft.bwapp.bwsip.io f 171 1 1 2019-05-31 11:48:11.158001 t 2 popo BoomBoom007 ZlRZMEdIOUs4QXc6QVBBOTFiSFZrMzJQRnBhZks3ODhfTHg1c3ZGQThNRFJMcDJJdnNGMlBoTUtwYi1fZEkyTFZIX24yMXkxS2FFVDAyMkVXbXVydDU5SnpNVW9XYzBTZllDOTY1QUxnZEtPcUM3aEhXX2d0RUVQRTZNb0EzTzVWUHItTkEwRHcxd2tES2EzVk04Ul9JdTA= 4CF603D6D005D97F3E052D1D3B8623CA677B6ADE:23A45F41 cz.acrobits.softphone.cloudphone e526d2bc-ab18-4403-96ab-30fd64259b42 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1 m-5ceumkbf3py3dopc6bip2mq https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/popo_qrcode_2e2add0c4f0b42118113e147d6eee94a
2019-05-07 21:06:52.628475+00 2019-05-31 18:48:21.638515+00 35 mobile app for zzz bandwidth re-pjwsshdawrw654scgjev2za sip:zzz@Autosoft.bwapp.bwsip.io f 167 1 1 2019-05-31 11:48:21.638047 t 2 zzz BoomBoom007 ZGNIc2tReWk1TmM6QVBBOTFiRWRudTNLSVIwcjY2am52TTZyYk1qS3FFd2hpODJWeXVuMmZNTlJ5eU9zbDlpazZFQldBazZtVmFMSGhtWVBVZTRYUVJCb0RVUnR3d21qbUMtNFBOVUhLVl9uUTR3NVNPclJNRmU3VmlUZjRjNE5LVXZCaTUyTGNpLWVaekxJYUo0aFdSckc= DB0691E1E41BA1B002EB7E09770CEC89831C1944:23A45F41 cz.acrobits.softphone.cloudphone d7a04072-c74f-4940-ad09-a996ff92f6a7 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/zzz_qrcode_def22602ef0f4506960c5708f86ef8f4
2019-05-06 14:57:35.770315+00 2019-05-31 18:48:24.807873+00 34 mobile app for klm bandwidth re-vmamedmqfugt5nw2ppxx2cq sip:klm@Autosoft.bwapp.bwsip.io f 166 1 1 2019-05-31 11:48:24.807342 t 2 klm BoomBoom007 ZGNIc2tReWk1TmM6QVBBOTFiRWRudTNLSVIwcjY2am52TTZyYk1qS3FFd2hpODJWeXVuMmZNTlJ5eU9zbDlpazZFQldBazZtVmFMSGhtWVBVZTRYUVJCb0RVUnR3d21qbUMtNFBOVUhLVl9uUTR3NVNPclJNRmU3VmlUZjRjNE5LVXZCaTUyTGNpLWVaekxJYUo0aFdSckc= E167BD7878AB11A5D367131BF5B32F73A6893139:23A45F41 cz.acrobits.softphone.cloudphone a0f43b35-4857-4d33-ba02-147f48a1740e 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1 m-lzwmu7wxfhmwzrn2vpewftq https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/klm_qrcode_874ea76c9f3b4b1c9602889edc0a7150
2019-05-10 17:18:49.294773+00 2019-05-31 18:48:06.203946+00 39 mobile app for kooli bandwidth re-i5yo74p2ln6j3mqvlxs5zsy sip:kooli@Autosoft.bwapp.bwsip.io f 173 1 1 2019-05-31 11:48:06.202556 t 3 kooli BoomBoom007 ZEh5NEVIYUJJMmc6QVBBOTFiRzRXZElxQUxjVWM4NWIzYl9EUWNOS0VYS0NGM1VqektETjZIdXpkTE1iS2p2LTV0YUx3cTlZRkxOeUJMakcwOHdOcTZfY29PTHJLd01tUFpLTjRCOXJfb3gwTWh1SHQ2bkNDSGVzcXpwWXdPM3JtOFF1WXVuWk91OElsU0g4Q3otSXBDWko= 6689E1425DB8B614DEC3FE612D38F322DD93A931:23A45F41 cz.acrobits.softphone.cloudphone e346f66c-6d6d-4e03-abf9-7a2a104ab22e 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1 m-ezjhn42kx6uff34svjt456q https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/kooli_qrcode_e4f38ca799e64a109994a900b0a83228
2019-05-12 15:49:42.339856+00 2019-05-31 18:48:02.963464+00 40 mobile app for loopo bandwidth re-5ihculf4g6sby7jd2ufoska sip:loopo@Autosoft.bwapp.bwsip.io f 174 1 1 2019-05-31 11:48:02.962885 t 3 loopo BoomBoom007 ZEh5NEVIYUJJMmc6QVBBOTFiRzRXZElxQUxjVWM4NWIzYl9EUWNOS0VYS0NGM1VqektETjZIdXpkTE1iS2p2LTV0YUx3cTlZRkxOeUJMakcwOHdOcTZfY29PTHJLd01tUFpLTjRCOXJfb3gwTWh1SHQ2bkNDSGVzcXpwWXdPM3JtOFF1WXVuWk91OElsU0g4Q3otSXBDWko= F848AE6BA05D48483716A551397CFD4C8B7F7A54:23A45F41 cz.acrobits.softphone.cloudphone bd1587bf-7f26-4b95-a92c-f94ebb95f425 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/loopo_qrcode_1b7220eb1ffd4ce3abb3b293bedec460
2019-05-14 00:07:54.035061+00 2019-05-31 18:47:55.822992+00 41 mobile app for dollop bandwidth re-abtquysyyx2oried7vxepva sip:dollop@Autosoft.bwapp.bwsip.io f 175 1 1 2019-05-31 11:47:55.821964 t 3 dollop BoomBoom007 ZEh5NEVIYUJJMmc6QVBBOTFiRzRXZElxQUxjVWM4NWIzYl9EUWNOS0VYS0NGM1VqektETjZIdXpkTE1iS2p2LTV0YUx3cTlZRkxOeUJMakcwOHdOcTZfY29PTHJLd01tUFpLTjRCOXJfb3gwTWh1SHQ2bkNDSGVzcXpwWXdPM3JtOFF1WXVuWk91OElsU0g4Q3otSXBDWko= C08171CCB438C4C7880EECB680EFBE2002E14CDD:23A45F41 cz.acrobits.softphone.cloudphone a2d046d4-9d00-4e75-890d-c4532d09c72b 860771030229582 WU7SY49BAM 1217986 Android 7.0 2.1.12 Cloud Softphone en_US arm64-v8a FRD-L04 1 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/dollop_qrcode_8e9c5e5b2ec14c468ab1da42a8fdeeb2
2019-05-31 18:49:59.01978+00 2019-07-18 16:07:42.501955+00 42 Autosoft sip domain endpoint for mobile account use bandwidth re-xovr4lznx7au57mzcxlkfyy sip:ninja@Autosoft.bwapp.bwsip.io f 176 1 1 2019-07-18 09:07:42.50166 t 2 ninja BoomBoom007 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/ninja_qrcode_a8e9f0c971e24d3cb71692a89d92583d
2019-06-07 16:01:58.801533+00 2019-07-18 16:07:06.741506+00 49 mobile app for beefo bandwidth re-wzkc3icndtpnrrg36xkgruy sip:beefo@autosoftdev.bwapp.bwsip.io f 183 1 1 2019-07-18 09:07:06.741152 t 3 beefo SweetSocks030 ZGRjWWxfc1dreXM6QVBBOTFiRWhtazNDcEJXQnZ4MldZUFhuVndycXZkamFrQ3ZTZ3pQUG1oUVdndVpkOFpHNUlfZlFCYnNlWFJIR1R5ZC1fTkg2ZHlEUDd4N1NPdWFNNXlMUFlwZ2hFanBoTEtZTVBEQ096OGtaT1FOWVI1Z1FZSXpSMjR6UTc5enVpaFVKR3lzeDVZYTc= F11FAADC90191E7DE0762C3A87D6DBF930F97810:CD5ECFE3 cz.acrobits.softphone.cloudphone d3c86c30-49fe-4324-b5de-c63347071161 990012006272998 YYG4A4KCAZ 1243766 Android 9 2.1.14 Cloud Softphone en_US arm64-v8a Pixel 3 1 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/beefo_qrcode_0e2eed5a75334d78af12dc9e53e845a2
2019-06-06 19:06:01.432575+00 2019-07-18 16:07:26.086165+00 45 mobile app for feeto bandwidth re-7ynrpo7ysnknkwld7jhchpa sip:feeto@autosoftdev.bwapp.bwsip.io f 179 1 1 2019-07-18 09:07:26.085879 t 3 feeto BoomBoom007 m-iokte2pdflyjdmaiopebymy m-equl5zbn3hmxlcqssjehljy https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/feeto_qrcode_c39437e9f0c04dc9b60d9baf8d27a214
2019-05-31 18:54:57.574617+00 2019-07-18 16:07:35.055118+00 43 autosoftdev sip domain endpoint for mobile account use bandwidth re-x5lolv23435db3jmkabztpi sip:beesbees@autosoftdev.bwapp.bwsip.io f 177 1 1 2019-07-18 09:07:35.054737 t 1 beesbees BoomBoom007 ZnBUS21yX2piSVU6QVBBOTFiRVVQVllqckZKei01VTRUMjJZODV1cEUxYnpvcXZvYmhaeXFnOXk4U3FBdS1ta0pKSGRDenp2ZzlmWWhhVHh3MzQ2Y3ZraTZUR0xiNjJmSmJGU242cVp0X2Y4eHZKUV9iTDAxRUpXd012RTdkbnUyWDRkVkFnaTVneXRaVVp1TFc0bEdIa0c= E28B987A3463755FF68132C834BF8116B5D39DED:CD5ECFE3 cz.acrobits.softphone.cloudphone 5b337b9b-4cce-4386-a2a2-b2e7b5f1f2e0 990012006272998 YYG4A4KCAZ 1242704 Android 9 2.1.13 Cloud Softphone en_US arm64-v8a Pixel 3 1 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/beesbees_qrcode_f70a136e836e44f19a38e93cf6aab346
2019-06-06 23:18:25.296694+00 2019-07-18 16:07:20.644558+00 46 mobile app for noonop bandwidth re-s6sifcsqttiiqro2dtqmz5q sip:noonop@autosoftdev.bwapp.bwsip.io f 180 1 1 2019-07-18 09:07:20.644246 t 3 noonop BoomBoom007 ZGRjWWxfc1dreXM6QVBBOTFiRWhtazNDcEJXQnZ4MldZUFhuVndycXZkamFrQ3ZTZ3pQUG1oUVdndVpkOFpHNUlfZlFCYnNlWFJIR1R5ZC1fTkg2ZHlEUDd4N1NPdWFNNXlMUFlwZ2hFanBoTEtZTVBEQ096OGtaT1FOWVI1Z1FZSXpSMjR6UTc5enVpaFVKR3lzeDVZYTc= 89C30F0D2268762E884DA57C22D3B39490C5A772:CD5ECFE3 cz.acrobits.softphone.cloudphone 4add5edc-150b-4c0c-92c4-09c675db4170 990012006272998 YYG4A4KCAZ 1243766 Android 9 2.1.14 Cloud Softphone en_US arm64-v8a Pixel 3 1 m-mpn3n5z7kmdczx2u3uincna m-ppwcqnknqhfvcplp52fqhwa https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/noonop_qrcode_995c0f475cf4460a8cad18417aa03443
2019-06-06 15:40:29.871234+00 2019-07-18 16:07:30.417983+00 44 mobile app for koono bandwidth re-exenptfj4jr46plcq5gr64a sip:koono@autosoftdev.bwapp.bwsip.io f 178 1 1 2019-07-18 09:07:30.417487 t 3 koono BoomBoom007 m-uo4nx6axgmlk5o47nyasxzy m-43bvhel6hhdg222msys6jyi https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/koono_qrcode_f7bc06fb7fa048ddab1f13b3c1acff44
2019-06-07 13:18:28.133684+00 2019-07-18 16:07:16.158769+00 47 mobile app for joesop bandwidth re-uw4mksijofbphnfyabeknva sip:joesop@autosoftdev.bwapp.bwsip.io f 181 1 1 2019-07-18 09:07:16.158379 t 3 joesop BoomBoom007 ZGRjWWxfc1dreXM6QVBBOTFiRWhtazNDcEJXQnZ4MldZUFhuVndycXZkamFrQ3ZTZ3pQUG1oUVdndVpkOFpHNUlfZlFCYnNlWFJIR1R5ZC1fTkg2ZHlEUDd4N1NPdWFNNXlMUFlwZ2hFanBoTEtZTVBEQ096OGtaT1FOWVI1Z1FZSXpSMjR6UTc5enVpaFVKR3lzeDVZYTc= 58CC34256C158831EAC8BE38B8C87C50328F33C7:CD5ECFE3 cz.acrobits.softphone.cloudphone 3c28cf9f-2a9d-48f0-beb0-7d292b891df5 990012006272998 YYG4A4KCAZ 1243766 Android 9 2.1.14 Cloud Softphone en_US arm64-v8a Pixel 3 1 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/joesop_qrcode_345bea3e017342b3ba3a62227e9a8b74
2019-06-07 15:55:51.22559+00 2019-07-18 16:07:11.453092+00 48 mobile app for seemano bandwidth re-swhg73h3oiyevxt4oiqi3mi sip:seemano@autosoftdev.bwapp.bwsip.io f 182 1 1 2019-07-18 09:07:11.452509 t 3 seemano BoomBoom007 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/seemano_qrcode_0f1e51af566842f3ace5cc86d336ec1b
2019-06-07 16:16:57.034567+00 2019-07-18 16:07:02.053825+00 50 mobile app for zeelo bandwidth re-2aeews2kkwtiiz22njunnbi sip:zeelo@autosoftdev.bwapp.bwsip.io f 184 1 1 2019-07-18 09:07:02.053447 t 3 zeelo BoomBoom007 ZGRjWWxfc1dreXM6QVBBOTFiRWhtazNDcEJXQnZ4MldZUFhuVndycXZkamFrQ3ZTZ3pQUG1oUVdndVpkOFpHNUlfZlFCYnNlWFJIR1R5ZC1fTkg2ZHlEUDd4N1NPdWFNNXlMUFlwZ2hFanBoTEtZTVBEQ096OGtaT1FOWVI1Z1FZSXpSMjR6UTc5enVpaFVKR3lzeDVZYTc= B2A5576BE08892D01D5F8977235E19EA758A1B78:CD5ECFE3 cz.acrobits.softphone.cloudphone 9020d957-8222-4f7c-a8c5-8f878fb60be0 990012006272998 YYG4A4KCAZ 1243766 Android 9 2.1.14 Cloud Softphone en_US arm64-v8a Pixel 3 1 m-k3chdan3i45jk2kclfcwrwq m-3n6d3jg3cpnvh5evtc7ac7a https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/zeelo_qrcode_d66555fc0a564566b892fa9153dfb334
2019-06-08 18:08:52.764879+00 2019-07-18 16:06:57.100665+00 51 mobile app for shoozes bandwidth re-agpae5guv7i7cpe6db2fiwa sip:shoozes@autosoftdev.bwapp.bwsip.io f 185 1 1 2019-07-18 09:06:57.100167 t 3 shoozes BoomBoom007 ZGNfY25qNnk3VXc6QVBBOTFiR29XLVRCRzRNRHdWX0NCcUEwdHpMUUo1YkFWOHFpVUh5TWJqN1dpVGY4X21KTDJ0ODFROGtXSV9NeGpISkprd0Y1OEtoamc5TXhNYkw3d3VOME5hZ2t4d091Q0xqYzNGaHNXb2w0MHppNC1JZ0VVZXhzV3I5ZFFQVHpYUWpwNWJjRGVZMnE= 5174F396F1EA3890797123AEBBB1A98756F9ED5E:CD5ECFE3 cz.acrobits.softphone.cloudphone 08381078-c65d-46e8-a3d5-2b35e71536f4 990012006272998 YYG4A4KCAZ 1243766 Android 9 2.1.14 Cloud Softphone en_US arm64-v8a Pixel 3 1 m-lmvgwhdu42zvf37xhbwssaa m-7l264gwematqpaw66xhituy https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/shoozes_qrcode_93c894cb96b64e279fefcaeed5c1fe12
2019-06-19 17:10:20.09308+00 2019-07-18 16:06:53.059838+00 52 cheezos for jsmorgan bandwidth re-dfoj7uotzseq6bmk4whmdma sip:cheezos@autosoftdev.bwapp.bwsip.io f 186 1 1 2019-07-18 09:06:53.059534 t 3 cheezos BoomBoom007 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/cheezos_qrcode_e16280f11a9243bb9c79a0f91ed0a1cf
2019-06-19 19:28:12.618948+00 2019-07-18 16:06:49.084688+00 53 aaha for jsmorgan bandwidth re-nppasnszf6rzdio7piy6qcq sip:aaha@autosoftdev.bwapp.bwsip.io f 187 1 1 2019-07-18 09:06:49.084358 t 3 aaha BoomBoom007 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/aaha_qrcode_22b8a339edd64261a4ef324688f3675b
2019-06-21 17:47:16.647901+00 2019-07-18 16:06:44.946748+00 54 mobile app for dopeno bandwidth re-gyzt2ii3cv5muatrrs234ty sip:dopeno@autosoftdev.bwapp.bwsip.io f 188 1 1 2019-07-18 09:06:44.94631 t 3 dopeno BoomBoom007 ZV9LaEJGTGljY2c6QVBBOTFiRVVLR0hMc2p5d2JnejFBY1h3U3BCSDBwMTNQOVo3S1VUejdBNzQ5aU5TTXl4Qkh3eDdqWjNIcG9lQjBXUVc3YUVOTHZaSlM0d1g0TkVma2IybnFPR2s4dDhZTzY5eVJJd3E5OWFqblpYei0zUkdVZFV3aUdJMkVzVjZSZUE0OG1ySlFiTGc= C0E15D5BE45A34BC94EC319385B0C0CA93A403BF:3087F8D9 com.autosoft.autosoftapp.android fb22c397-38ac-46a4-b887-91a1132efd6a AUB4XEP5YGW 1243766 Android 9 1.0 Autosoft en_US arm64-v8a Pixel 3 0 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/dopeno_qrcode_be26db4c847f41aaa0a04aa45d5f5f13
2019-07-03 21:38:24.477144+00 2019-07-18 16:06:26.573039+00 57 mobile app for koolscopa bandwidth re-3a5tol2zhlfzrqyf2wikwiq sip:koolscopa@autosoftdev.bwapp.bwsip.io f 192 1 1 2019-07-18 09:06:26.572694 t 3 koolscopa BoomBoom007 Y29fTEFHOFRKZ0k6QVBBOTFiR1JtZEczMEltUnRSd0xjNnpiczE0S3BCelpkMGdSbk81ZXFET0s4OVljbmJIZFp1THVoMGFWS3RWS3NMNmgtOXBDeHdnVEJtRVdhUXZENW02VWplcHQyZ0RsV3dtdjNUbGw4aW5qa3JhSUZjVzRkZ01aTEMzajVOZDF4dlh2YUNqcllXS28= 35C3773B1F66F50BA01CCC34B8BDAE34481AAA77:3087F8D9 com.autosoft.autosoftapp.android 4582b5bd-fea8-40a9-ae2b-96c6154f17ff 990012006272998 AUB4XEP5YGW 1248850 Android 9 1.0 Autosoft en_US arm64-v8a Pixel 3 0 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/koolscopa_qrcode_ee8ceb766287430c9b4b9645a02627c0
2019-06-21 21:01:29.767774+00 2019-07-18 16:06:37.32308+00 55 mobile app for jollorop bandwidth re-p3exoobiayhcl3f42jg2wwq sip:jollorop@autosoftdev.bwapp.bwsip.io f 190 1 1 2019-07-18 09:06:37.322303 t 3 jollorop BoomBoom007 ZV9LaEJGTGljY2c6QVBBOTFiRVVLR0hMc2p5d2JnejFBY1h3U3BCSDBwMTNQOVo3S1VUejdBNzQ5aU5TTXl4Qkh3eDdqWjNIcG9lQjBXUVc3YUVOTHZaSlM0d1g0TkVma2IybnFPR2s4dDhZTzY5eVJJd3E5OWFqblpYei0zUkdVZFV3aUdJMkVzVjZSZUE0OG1ySlFiTGc= 7B666E4955640FAE0C77F14ADDF8AC1BBAD4E181:EA55C9CB com.autosoft.autosoftapp.android a59e5c3a-e7b2-491e-8951-d3f09bb5ea96 990012006272998 YYG4A4KCAZ 1243766 Android 9 1.0 Autosoft en_US arm64-v8a Pixel 3 0 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/jollorop_qrcode_4fc6fd1de44f4f9896cd5bbb058d9770
2019-07-11 16:26:14.01302+00 2019-07-18 16:06:10.159967+00 60 mobile app for meeko bandwidth re-tz26k4lfvuvoqkpuuqga67a sip:meeko@autosoftdev.bwapp.bwsip.io f 195 1 1 2019-07-18 09:06:10.159548 t 3 meeko BoomBoom007 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/meeko_qrcode_e0de2ca43118486bb0a722dfeb6d287f
2019-06-27 16:52:07.088367+00 2019-07-18 16:06:33.015959+00 56 mobile app for fleego bandwidth re-qbi273i3z7rjoqxd2fjz4fq sip:fleego@autosoftdev.bwapp.bwsip.io f 191 1 1 2019-07-18 09:06:33.015543 t 3 fleego BoomBoom007 ZEdFRTdhUTBuelk6QVBBOTFiRmM0UDFVVmh2WWhSLW1kTVlLZVJlaEtYdTg4ekFVemUwMlpGY05LU0hqOXJmd2U1YTR3T0JORjZYZnFwOHZBZEFkNHRhV2V2S2pFNENNN3BjQkVtajQtSjBnRXlzcEFDRnJBSm0wTEJZOEtxUWNzQ2ZUcTNuUVNZYVZMcGs5RFVxUUo1MDU= DE7D4887487DB8364F612C59930B31B85A1790DA:EA55C9CB com.autosoft.autosoftapp.android 26853e22-0239-49f4-858d-e27c89b3f038 990012006272998 YYG4A4KCAZ 1243766 Android 9 1.0 Autosoft en_US arm64-v8a Pixel 3 0 m-7hmrov3tmmcekjwim6rv2hq https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/fleego_qrcode_5859536d904f499b85d08cc9689f6881
2019-07-05 17:36:38.6639+00 2019-07-18 16:06:22.021538+00 58 mobile app for kingkong bandwidth re-er7fzvpoh7gxqm636j5myfy sip:kingkong@autosoftdev.bwapp.bwsip.io f 193 1 1 2019-07-18 09:06:22.021007 t 9 kingkong BoomBoom007 Zlg5V2puNVE4S0U6QVBBOTFiR1dfbjlTWmdZRE1OeVc0TU43S3hmVVV6TG95ZG1kcWRxM25FLVhNN19QS0pCT2ptSkVDVmViekt4MmdlTG5vM0V3aFBNZDlIX09yX1dSVG9KNTBSUzFZcEhDWF9MaHBueDg1dWJwTk14VXRVNG9LcUhrWENRRWlkdk5UZ2VNODl4b2FCdVE= 57441F16D103D7FA3EAE28A25CD1F072A9954244:3087F8D9 com.autosoft.autosoftapp.android 5d117810-deb6-4f24-b697-376e354a1f24 990012006272998 AUB4XEP5YGW 1248850 Android 9 1.0 Autosoft en_US arm64-v8a Pixel 3 0 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/kingkong_qrcode_97a24dfafecc4b929403bf153830d506
2019-07-11 15:58:42.259482+00 2019-07-18 16:06:17.31257+00 59 mobile app for fearo bandwidth re-cn3x6c7pmqg3pw2z6o3vvka sip:fearo@autosoftdev.bwapp.bwsip.io f 194 1 1 2019-07-18 09:06:17.31217 t 3 fearo BoomBoom007 ZXpUaXZ3SEtEcEU6QVBBOTFiRnFIUEh0UjNDcFI1Y1p1azVJLS1NYTItRW5kbEJTaUlkODltS3RXSFkwZWdpQmhpTGducXppM0QzamF5dUtHZmhkaUxVWTlsd3UxUnlDaGNJbjExMmhxVjk3U2RQenBuelZCdEo3TmdPZjhGZnI2UHhieEFRbUpVOHpzRURNb1hDMHVfUGI= 86D53062446029C68EBC5030D1A883253C0CF83E:EA55C9CB com.autosoft.autosoftapp.android 03426d55-a341-4631-ad2c-62bc3ed66a5c 990012006272998 YYG4A4KCAZ 1248850 Android 9 1.0 Autosoft en_US arm64-v8a Pixel 3 0 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/fearo_qrcode_a672871b94e64b6aac4dbe243d8f1e13
2019-07-11 17:49:46.32967+00 2019-07-11 19:27:23.52405+00 61 mobile app for BlueBull bandwidth re-ljazrus2jdxghvtloa3kiwi sip:BlueBull@autosoftdev.bwapp.bwsip.io t 196 1 1 \N f 3 BlueBull BoomBoom007 ZXpUaXZ3SEtEcEU6QVBBOTFiRnFIUEh0UjNDcFI1Y1p1azVJLS1NYTItRW5kbEJTaUlkODltS3RXSFkwZWdpQmhpTGducXppM0QzamF5dUtHZmhkaUxVWTlsd3UxUnlDaGNJbjExMmhxVjk3U2RQenBuelZCdEo3TmdPZjhGZnI2UHhieEFRbUpVOHpzRURNb1hDMHVfUGI= DE4D8E4BC83807D9D10B578C9F4297AFD1335954:EA55C9CB com.autosoft.autosoftapp.android e643aa6f-86b7-4758-86bf-13a917ef38a8 990012006272998 YYG4A4KCAZ 1248850 Android 9 1.0 Autosoft en_US arm64-v8a Pixel 3 0 m-yrywsdayd2ziqs4em7zsgwa https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/BlueBull_qrcode_8e70933b6ecd45fc89e4f16c059df9fe
2019-07-15 18:21:58.446226+00 2019-07-18 16:05:50.05863+00 62 mobile app for GanstaBoi bandwidth re-2xz54h62gxis7dvxsf7zpdy sip:GanstaBoi@autosoftdev.bwapp.bwsip.io f 200 1 1 2019-07-18 09:05:50.058202 t 3 GanstaBoi BoomBoom007 ZXpUaXZ3SEtEcEU6QVBBOTFiRnFIUEh0UjNDcFI1Y1p1azVJLS1NYTItRW5kbEJTaUlkODltS3RXSFkwZWdpQmhpTGducXppM0QzamF5dUtHZmhkaUxVWTlsd3UxUnlDaGNJbjExMmhxVjk3U2RQenBuelZCdEo3TmdPZjhGZnI2UHhieEFRbUpVOHpzRURNb1hDMHVfUGI= FC5BA99B2CD4289F6EDBD767AA377AA28D07171C:EA55C9CB com.autosoft.autosoftapp.android dcb944c1-ba5a-4357-afde-36215ca07d07 990012006272998 YYG4A4KCAZ 1248850 Android 9 1.0 Autosoft en_US arm64-v8a Pixel 3 0 m-we5tlshdx52f3doa6qgj2la https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/GanstaBoi_qrcode_7149014cf64c4f11bf1be2232ffac971
2019-07-15 22:13:29.679081+00 2019-07-18 16:05:44.365256+00 63 mobile app for NomNomFol bandwidth re-cs7vzf5rfqpmh7felzippji sip:NomNomFol@autosoftdev.bwapp.bwsip.io f 201 1 1 2019-07-18 09:05:44.362654 t 3 NomNomFol BoomBoom007 ZXpUaXZ3SEtEcEU6QVBBOTFiRnFIUEh0UjNDcFI1Y1p1azVJLS1NYTItRW5kbEJTaUlkODltS3RXSFkwZWdpQmhpTGducXppM0QzamF5dUtHZmhkaUxVWTlsd3UxUnlDaGNJbjExMmhxVjk3U2RQenBuelZCdEo3TmdPZjhGZnI2UHhieEFRbUpVOHpzRURNb1hDMHVfUGI= 00A817D057068C9A1A13068E6515EC066B078A60:EA55C9CB com.autosoft.autosoftapp.android 371f5e70-0c7b-4218-8d44-0b76efc696d3 990012006272998 YYG4A4KCAZ 1248850 Android 9 1.0 Autosoft en_US arm64-v8a Pixel 3 0 m-x3njzgsc5ysbimaaa5zxcoy https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/NomNomFol_qrcode_4de0f88a1476449088d5c7a747f28144
2019-07-16 15:58:22.716029+00 2019-07-18 16:05:35.218531+00 65 mobile app for BlackBeard bandwidth re-osvtdjc2urufipaygb4bl2i sip:BlackBeard@autosoftdev.bwapp.bwsip.io f 203 1 1 2019-07-18 09:05:35.218039 t 3 BlackBeard BoomBoom007 ZDQ3Q0xEY2RMQWs6QVBBOTFiSEtnNldMOHVLbmx0M2tKWWFURHdHQjdBNk0yWXRFQlFKTzBJLW0wUkFTUFB0Sk9WcnJQenFCdGxrdWU1a013ZEZpRV95MnBqT1RwUE05dmpibUt2VnRxY0pwbi1MREttOTBSUEhFWnRzQmRhYVZrZ1MwdXFIVXR0WXJYeV9zRC1MQUNwYTA= A84B44824DD818F063C535F8287702FFAB823B03:EA55C9CB com.autosoft.autosoftapp.android 14ce6fbc-e80e-4ac0-900b-32d2af5d04d1 990012006272998 YYG4A4KCAZ 1248850 Android 9 1.0 Autosoft en_US arm64-v8a Pixel 3 0 m-wqyrs6c2gahlz5uskvzwvka m-pdumvjhg5brsr2vls745zfa https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/BlackBeard_qrcode_45bd51ed35df42c1a965c3b0c6f68181
2019-08-23 22:03:44.610831+00 2019-10-10 01:45:06.965899+00 70 mobile app for jsmorgan bandwidth re-4vyojzihygw4dfgtq673kgy sip:PeterPan@autosoftdev.bwapp.bwsip.io f 217 1 1 2019-10-09 18:45:06.965499 t 3 PeterPan BoomBoom007 ZvndrZTsO5F2oSu3z4Rum5rkAy5fdJ2TvHybQsR7IgQ= 924B43D3EAFAC2C0670948C09D4F1B1F69C56B84:D90A48D4 com.cloudsoftphone.app.pushkit 85C43232-E9BC-487D-9A84-4B5AA249BAC5 F80D6A2D-5A4C-4AA1-8958-E70B3D7536B5 1245662 iOS 12.3.1 1.9.16 CloudSoftphone en_US arm64-neon iPhone 8(iPhone10,4) 1 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/PeterPan_qrcode_af11c651f4a148a6afc440f3b5baeb8f
2019-07-16 16:36:25.173808+00 2019-07-18 16:05:30.382873+00 66 mobile app for CoCoButter bandwidth re-ttgaxwh3vwghcblrl3u6geq sip:CoCoButter@autosoftdev.bwapp.bwsip.io f 204 1 1 2019-07-18 09:05:30.381872 t 3 CoCoButter BoomBoom007 ZDQ3Q0xEY2RMQWs6QVBBOTFiSEtnNldMOHVLbmx0M2tKWWFURHdHQjdBNk0yWXRFQlFKTzBJLW0wUkFTUFB0Sk9WcnJQenFCdGxrdWU1a013ZEZpRV95MnBqT1RwUE05dmpibUt2VnRxY0pwbi1MREttOTBSUEhFWnRzQmRhYVZrZ1MwdXFIVXR0WXJYeV9zRC1MQUNwYTA= 69EED9EFA230D5E692272D1EEA08D42CD71FEE74:EA55C9CB com.autosoft.autosoftapp.android a50a02a8-122c-4879-8a6c-18c5f7781b35 990012006272998 YYG4A4KCAZ 1248850 Android 9 1.0 Autosoft en_US arm64-v8a Pixel 3 0 m-qa27uod4s5g5zhjxumjm6va m-xxx7pwrsnoxyku7rdfen74q https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/CoCoButter_qrcode_db7fadc1c4a74a8b9eb1415ff2a33683
2019-07-15 22:32:22.719995+00 2019-07-18 16:05:39.918256+00 64 mobile app for Soldol007 bandwidth re-w6arowphwrrkon2he5vibsq sip:Soldol007@autosoftdev.bwapp.bwsip.io f 202 1 1 2019-07-18 09:05:39.917647 t 3 Soldol007 BoomBoom007 ZDQ3Q0xEY2RMQWs6QVBBOTFiSEtnNldMOHVLbmx0M2tKWWFURHdHQjdBNk0yWXRFQlFKTzBJLW0wUkFTUFB0Sk9WcnJQenFCdGxrdWU1a013ZEZpRV95MnBqT1RwUE05dmpibUt2VnRxY0pwbi1MREttOTBSUEhFWnRzQmRhYVZrZ1MwdXFIVXR0WXJYeV9zRC1MQUNwYTA= 717ABE865DB68E28D70A1D709646AE7FE00BD001:3087F8D9 com.autosoft.autosoftapp.android 307a84f3-b1c9-466a-8b27-9379d625d3a5 990012006272998 AUB4XEP5YGW 1248850 Android 9 1.0 Autosoft en_US arm64-v8a Pixel 3 0 m-6jizxwwiau4e4q2cucxbjrq m-camr7od3zx6y7ml2xr3pjoa https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/Soldol007_qrcode_fcc072e0c1014b02bfdfaa22cab8dc7b
2019-07-22 20:50:17.962331+00 2019-10-10 01:45:24.837327+00 68 mobile app for camelBack bandwidth re-egn7wskb5keumhw5rorrkda sip:ccMom@autosoftdev.bwapp.bwsip.io f 209 1 1 2019-10-09 18:45:24.836403 t 2 ccMom BoomBoom007 ZDQ3Q0xEY2RMQWs6QVBBOTFiSEtnNldMOHVLbmx0M2tKWWFURHdHQjdBNk0yWXRFQlFKTzBJLW0wUkFTUFB0Sk9WcnJQenFCdGxrdWU1a013ZEZpRV95MnBqT1RwUE05dmpibUt2VnRxY0pwbi1MREttOTBSUEhFWnRzQmRhYVZrZ1MwdXFIVXR0WXJYeV9zRC1MQUNwYTA= 53EBE95A9764F946ECF87F2A7ACE06CA1E076A3C:EA55C9CB com.autosoft.autosoftapp.android 1363df45-6588-4c8f-849b-db77c33de763 990012006272998 YYG4A4KCAZ 1248850 Android 9 1.0 Autosoft en_US arm64-v8a Pixel 3 0 m-xkk73mxw7fpvdnafcmrqgpi https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/ccMom_qrcode_44cef5d8d1dd4a539e6d3edc9a0efcfe
2019-08-23 22:32:28.826286+00 2019-08-27 22:23:41.348708+00 71 mobile app for jsmorgan bandwidth re-uapzjcciu76umbjufbln3hi sip:ConnorMan@autosoftdev.bwapp.bwsip.io t 218 1 1 \N f 2 ConnorMan BoomBoom007 ZvndrZTsO5F2oSu3z4Rum5rkAy5fdJ2TvHybQsR7IgQ= 955DADF756520F9AFA969D65C8E035775EB9B5B8:D90A48D4 com.cloudsoftphone.app.pushkit 934BD2E7-32E9-4E2A-8F0B-559F6899381D F80D6A2D-5A4C-4AA1-8958-E70B3D7536B5 1245662 iOS 12.3.1 1.9.16 CloudSoftphone en_US arm64-neon iPhone 8(iPhone10,4) 1 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/ConnorMan_qrcode_f6506c5fe8f74f8eaa2efaa7b8a51cb1
2019-08-28 18:49:56.632321+00 2019-10-10 01:45:00.91215+00 75 mobile app for TESTCOM1_salesrestricted bandwidth re-i4iftplnfv2szlttjq3j5pq sip:Balloon@autosoftdev.bwapp.bwsip.io f 222 1 1 2019-10-09 18:45:00.910791 t 2 Balloon BoomBoom007 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/Balloon_qrcode_4bd0793a83964b988a08b5ad4537dc93
2019-08-28 16:42:58.812549+00 2019-08-28 16:44:18.187248+00 73 mobile app for bellyO bandwidth re-k7gfjocmj7gvongbka7nvri sip:FreddiO@autosoftdev.bwapp.bwsip.io t 220 1 1 \N f 2 FreddiO BoomBoom007 ZvndrZTsO5F2oSu3z4Rum5rkAy5fdJ2TvHybQsR7IgQ= A4290267EB44B5F93A8979597FB2A1B919AE1F5A:D90A48D4 com.cloudsoftphone.app.pushkit FEC757AF-EC1E-4972-B319-0C8DA7309DFE F80D6A2D-5A4C-4AA1-8958-E70B3D7536B5 1245662 iOS 12.3.1 1.9.16 CloudSoftphone en_US arm64-neon iPhone 8(iPhone10,4) 1 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/FreddiO_qrcode_ce0d8e9fc8c045c49d8e94138a0aa799
2019-08-28 18:41:27.847086+00 2019-08-28 18:44:16.053204+00 74 mobile app for jsmorgan bandwidth re-obl5wzemx3xhpga6amlncli sip:BoogieMan@autosoftdev.bwapp.bwsip.io t 221 1 1 \N f 2 BoogieMan BoomBoom007 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/BoogieMan_qrcode_95d93b15fe8d422489e24dccb4636e56
2019-08-29 17:17:58.033899+00 2019-10-10 01:44:53.390185+00 76 mobile app for jsmorgan bandwidth re-odo2gibghn5b25xnlrpuwai sip:FlowerPower@autosoftdev.bwapp.bwsip.io f 223 1 1 2019-10-09 18:44:53.389828 t 2 FlowerPower BoomBoom007
2019-08-29 17:21:36.773045+00 2019-10-10 01:44:50.367528+00 77 mobile app for jsmorgan bandwidth re-gat27obwtlaqnk2qti3lhiy sip:SAFFA@autosoftdev.bwapp.bwsip.io f 224 1 1 2019-10-09 18:44:50.367168 t 2 SAFFA BoomBoom007 ZvndrZTsO5F2oSu3z4Rum5rkAy5fdJ2TvHybQsR7IgQ= C88017566516E7716264917F74FA794DC58B9218:D90A48D4 com.cloudsoftphone.app.pushkit 0014297C-74CD-43F2-ACB4-B994E4175B65 F80D6A2D-5A4C-4AA1-8958-E70B3D7536B5 1245662 iOS 12.3.1 1.9.16 CloudSoftphone en_US arm64-neon iPhone 8(iPhone10,4) 1 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/SAFFA_qrcode_b436b9d3ccdd40e29f89d55a9a39007d
2019-08-28 16:02:38.509216+00 2019-10-10 01:45:03.408478+00 72 mobile app for BellyO bandwidth re-y7farbexsynlmpjoy662axy sip:bellyO@autosoftdev.bwapp.bwsip.io f 219 1 1 2019-10-09 18:45:03.408067 t 2 bellyO BoomBoom007 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/bellyO_qrcode_65cacaf9efef40ce9809e29665cf0b73
2019-08-01 16:26:13.960117+00 2019-10-10 01:45:10.258951+00 69 mobile app for dockerPro bandwidth re-y6biqfzglmui7fbssvpc37y sip:dockerPro@autosoftdev.bwapp.bwsip.io f 216 1 1 2019-10-09 18:45:10.25869 t 11 dockerPro BoomBoom007 Y0w3ZmxTQ28za0U6QVBBOTFiSGRYT3dGRnE1OUltV3dFbVR5UXhGYVQycWZ4aXJIU0MwQnNraHNIcTFzdHZsWGExVTJRdFdfSXpkc1RvQXFva2pSc0s1X05GZV96VkdyOEVqdjNKcElfQzROR3p0LUdGaEZBZXVXZ0xjUTZqc1VHZTJnM3RJTkxRaUw5b1ZlTUg2SGxzXzI= EE3F4A0DA519D2B91C34E5E703FB6044264492E7:EA55C9CB com.autosoft.autosoftapp.android b6210295-4297-4487-9a61-24b81e2dfae3 990012006272998 YYG4A4KCAZ 1248850 Android 9 1.0 Autosoft en_US arm64-v8a Pixel 3 0 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/dockerPro_qrcode_41fe4793775f47909656c9e7b23863f5
2019-10-03 23:13:40.723333+00 2019-10-17 05:33:01.882912+00 82 mobile app for bergie bandwidth re-bsijjaqip4p6leg2h6sdbay sip:bergie@autosoftdev.bwapp.bwsip.io f 229 1 1 2019-10-16 22:33:01.881748 t 3 bergie BoomBoom007 ZvndrZTsO5F2oSu3z4Rum5rkAy5fdJ2TvHybQsR7IgQ= 4E4F9EF812F8556D2C351F42EAECD904A34A3373:D90A48D4 com.cloudsoftphone.app.pushkit 9CCB418B-9460-4A9F-9BD8-84B72785E5AC F80D6A2D-5A4C-4AA1-8958-E70B3D7536B5 1308883 iOS 12.3.1 1.9.20 CloudSoftphone en_US arm64-neon iPhone 8(iPhone10,4) 1 m-6x7cs6kavbwtbnuqvxzzx4i https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/bergie_qrcode_bf7652993cc24c3db616ef5e9ebf078f
2019-09-02 15:53:53.237888+00 2019-10-17 05:46:22.625261+00 80 mobile app for BeefO bandwidth re-hd3tjd3z5kjt4tklcoklz5a sip:BeefO@autosoftdev.bwapp.bwsip.io f 227 1 1 2019-10-16 22:36:59.952174 t 2 BeefO BoomBoom007 ZvndrZTsO5F2oSu3z4Rum5rkAy5fdJ2TvHybQsR7IgQ= F11FAADC90191E7DE0762C3A87D6DBF930F97810:D90A48D4 com.cloudsoftphone.app.pushkit 79C2C107-7A77-410C-9450-51989F6EAF19 F80D6A2D-5A4C-4AA1-8958-E70B3D7536B5 1245662 iOS 12.3.1 1.9.16 CloudSoftphone en_US arm64-neon iPhone 8(iPhone10,4) 1 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/BeefO_qrcode_b8413a12e3fd4da88a41663d170baeaa
2019-10-22 09:58:15.052256+00 2019-10-22 10:09:32.804623+00 86 mobile app for bergie bandwidth re-vvah4yteqdthcxzkg4fxvia sip:bergie@autosoftdev.bwapp.bwsip.io f 235 1 1 2019-10-22 03:09:32.803907 t 2 bergie BoomBoom007 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/bergie_qrcode_14ea14703d4d4403a4678042c4251010
2019-10-10 23:55:21.001603+00 2019-10-11 13:27:29.501708+00 84 mobile app for whiteo bandwidth re-3sjh22trnwv2xg3r6lddp3i sip:whiteo@autosoftdev.bwapp.bwsip.io t 233 1 1 \N f 3 whiteo BoomBoom007 ZvndrZTsO5F2oSu3z4Rum5rkAy5fdJ2TvHybQsR7IgQ= 064D357A95600441970FDB6B2913498C2FF6F783:D90A48D4 com.cloudsoftphone.app.pushkit C6FDF10F-F03A-4BB6-91CC-9E10A2507A02 F80D6A2D-5A4C-4AA1-8958-E70B3D7536B5 1308883 iOS 12.3.1 1.9.20 CloudSoftphone en_US arm64-neon iPhone 8(iPhone10,4) 1 m-mabshqtck5cpwv57csow7uy https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/whiteo_qrcode_f4cf0843d12b412f9185c8be49af398d
2019-08-30 19:50:04.889322+00 2019-10-10 01:44:42.974126+00 79 mobile app for jsmorgan bandwidth re-ohwkgsuesubxp356wp3bday sip:Zappa@autosoftdev.bwapp.bwsip.io f 226 1 1 2019-10-09 18:44:42.973275 t 3 Zappa BoomBoom007 ZvndrZTsO5F2oSu3z4Rum5rkAy5fdJ2TvHybQsR7IgQ= 204B8BDCF41EE21C69ABDFF97E897688DF73299A:D90A48D4 com.cloudsoftphone.app.pushkit E0B7303F-A731-4211-9412-2B65BF48271B F80D6A2D-5A4C-4AA1-8958-E70B3D7536B5 1245662 iOS 12.3.1 1.9.16 CloudSoftphone en_US arm64-neon iPhone 8(iPhone10,4) 1 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/Zappa_qrcode_34fe6a3a349f49d6b13706132d8259b7
2019-09-09 19:50:00.291482+00 2019-09-09 20:10:03.653206+00 81 mobile app for ozzy bandwidth re-puu64ejqtzqdxf36wftg45y sip:ozzy@autosoftdev.bwapp.bwsip.io t 228 1 1 \N f 2 ozzy BoomBoom007 ZvndrZTsO5F2oSu3z4Rum5rkAy5fdJ2TvHybQsR7IgQ= 9D2B89F56DAE56394871ECCEFDD985699EE321B6:D90A48D4 com.cloudsoftphone.app.pushkit 11059D62-4136-4A2B-9CFC-DC0ED305681A F80D6A2D-5A4C-4AA1-8958-E70B3D7536B5 1245662 iOS 12.3.1 1.9.16 CloudSoftphone en_US arm64-neon iPhone 8(iPhone10,4) 1 m-sovb3j2dyl3sojdwysxijvi https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/ozzy_qrcode_b7217934f117476db4872dbb6c89ffff
2019-08-30 19:01:33.988249+00 2019-10-10 01:44:47.258238+00 78 mobile app for ZoomO bandwidth re-v755gre7yqvvc2gy7yueztq sip:ZoomO@autosoftdev.bwapp.bwsip.io f 225 1 1 2019-10-09 18:44:47.25763 t 2 ZoomO BoomBoom007 ZvndrZTsO5F2oSu3z4Rum5rkAy5fdJ2TvHybQsR7IgQ= 9B83185B7EE9298C21A07DA50E422A1B40781C8A:D90A48D4 com.cloudsoftphone.app.pushkit 2BC4BC4F-E719-4673-BF82-56A2A676251E F80D6A2D-5A4C-4AA1-8958-E70B3D7536B5 1245662 iOS 12.3.1 1.9.16 CloudSoftphone en_US arm64-neon iPhone 8(iPhone10,4) 1 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/ZoomO_qrcode_8e291f2f98b54a3f985258fe883f6a70
2019-10-09 22:36:39.503867+00 2019-10-13 21:35:18.653639+00 83 mobile app for berryo bandwidth re-amgcu43prhcwl3isinkzlpq sip:berryo@autosoftdev.bwapp.bwsip.io t 230 1 1 \N f 2 berryo BoomBoom007 Y3EyT0YxVTdsV0U6QVBBOTFiRmNEU25pREtVU2RjeGJMZkFVcFM4bEFJZGpPbnFqVDdvNnV6b1l2OGRlaVlJLVZlRUliNDlZQzc4Znl0cXNzanBpaHUzN3NUbmNTbWRVRWU3OGVJWURyZDA2eDhfTGRRVzNvR2dMYmtEREJaRGxiY00zZE5ZdG41NVViU3JadTBLN1ZnaW8= F2E3B4506B34A332E9FB64BD8DD070FF97BA2ACA:98836C31 cz.acrobits.softphone.cloudphone 51413663-9401-4c46-8839-a6edbd1bf70e AUB4XEP5YGW 1308919 Android 10 2.1.17 Cloud Softphone en_US arm64-v8a Pixel 3 0 m-hvqxcz5a3wa4f4nm4frkbga m-h5bfxboqsg4hvurh3cuud4a https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/berryo_qrcode_986d252a294d49ba8b68639ce602f885
2019-10-22 09:51:29.148247+00 2019-10-22 09:55:01.316807+00 85 mobile app for bergie bandwidth re-nr4uilqnecfyvakmuvrkpna sip:bergie@autosoftdev.bwapp.bwsip.io f 234 1 1 2019-10-22 02:55:01.316194 t 2 bergie BoomBoom007 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/bergie_qrcode_10f15497b17946ecb96640bca468c548
2019-10-22 10:11:07.821457+00 2019-10-22 10:11:10.650464+00 87 mobile app for bergie bandwidth re-ub4vhw4p23dpoylkkfxlgey sip:bergie@autosoftdev.bwapp.bwsip.io t 236 1 1 \N f 2 bergie BoomBoom007 https://buyercall-test-qrcodes.s3.amazonaws.com/Offshore-Unlimited%20Marine_1/bergie_qrcode_ce6bf33d3d484435b98b4ef4b9df0345
\.
--
-- Name: sip_endpoints_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('sip_endpoints_id_seq', 87, true);
--
-- Data for Name: subscriptions; Type: TABLE DATA; Schema: public; Owner: -
--
COPY subscriptions (created_on, updated_on, id, credit_card_id, plan, coupon, payment_id, cancelled_subscription_on, usage_current_month, limit_warning_count, twilio_subaccount_sid, status) FROM stdin;
2018-10-25 22:48:24.647314+00 2019-10-29 19:02:01.156112+00 1 1 masterpluspackage \N cus_DqzcosWnYx3YE2 \N 0 0 AC813e1806fcd88afc543d509dc892288a active
2019-02-11 21:52:20.373866+00 2019-10-29 19:02:10.846502+00 2 \N partnershipsingle \N cus_EVoJCqfEnFw50h \N 0 0 AC553798a5f29d5198a0938a0a2baeed23 active
\.
--
-- Name: subscriptions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('subscriptions_id_seq', 2, true);
--
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: -
--
COPY users (created_on, updated_on, id, partnership_id, partnership_account_id, role, is_active, username, email, password, is_tos_agreed, full_feature_access, inbound_routing_access, outbound_routing_access, forms_access, external_api_access, sign_in_count, current_sign_in_on, current_sign_in_ip, last_sign_in_on, last_sign_in_ip, firstname, lastname, phonenumber, company, extension, title, department, leads_onboard, agents_onboard, outbound_onboard, inbound_onboard, locale, two_factor_auth, partnership_account_group_id, two_factor_auth_onboard) FROM stdin;
2018-10-25 22:33:26.954826+00 2019-10-26 14:21:37.042693+00 2 1 \N partner t \N partner@localhost.com $2a$08$psrMz/nPK.85BTKuAmhLKu8nWNeItlNSorRL8UT11ThQA4.G0CcQW f t t t t f 28 2019-10-26 14:21:37.038696+00 127.0.0.1 2019-10-24 16:00:52.487618+00 102.250.5.8 7732909650 Buyercall Partnership \N \N \N f f f f en f \N t
2019-02-11 21:51:02.04549+00 2019-07-26 18:52:22.096177+00 4 1 2 admin t \N billing@buyercall.com $2a$08$psrMz/nPK.85BTKuAmhLKu8nWNeItlNSorRL8UT11ThQA4.G0CcQW t t t t t f 2 2019-04-13 19:53:30.269372+00 127.0.0.1 2019-04-13 19:42:16.508982+00 127.0.0.1 Morty Thomas 7732909650 Mort Cars LTD \N \N \N f f f f en f \N t
2019-04-05 00:09:40.303809+00 2019-04-16 19:47:11.113447+00 6 1 1 admin t \N hjvermaak@gmail.com $2a$08$psrMz/nPK.85BTKuAmhLKu8nWNeItlNSorRL8UT11ThQA4.G0CcQW t t t t t f 62 2019-04-12 23:31:00.268008+00 71.197.213.217 2019-04-12 22:14:14.622569+00 71.197.213.217 Morne Krit 7732909650 Harry's Fast Cars \N none t t f f en f \N t
2018-10-25 22:33:26.925436+00 2019-10-29 17:34:13.733456+00 1 \N \N sysadmin t \N dev@localhost.com $2a$08$psrMz/nPK.85BTKuAmhLKu8nWNeItlNSorRL8UT11ThQA4.G0CcQW f t t t t f 12 2019-10-29 17:34:13.731915+00 127.0.0.1 2019-10-28 09:42:31.904869+00 127.0.0.1 SysAdmin \N \N \N f f f f en f \N t
2018-10-25 22:47:21.611494+00 2019-10-29 18:59:15.99968+00 3 1 1 admin t \N harry@buyercall.com $2a$08$psrMz/nPK.85BTKuAmhLKu8nWNeItlNSorRL8UT11ThQA4.G0CcQW t t t t t t 193 2019-10-28 09:42:13.90555+00 127.0.0.1 2019-10-25 12:21:56.43197+00 127.0.0.1 Harry Vermaak 7732909650 Harry's Fast Cars \N \N \N t t t t en f 1 t
2019-03-10 20:24:02.579845+00 2019-10-24 07:20:48.387569+00 5 2 \N partner t \N saastool@gmail.com $2a$08$psrMz/nPK.85BTKuAmhLKu8nWNeItlNSorRL8UT11ThQA4.G0CcQW f t t t t f 1 2019-10-24 07:20:48.386728+00 127.0.0.1 \N \N GWK Holdings \N \N \N f f f f en f \N t
\.
--
-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('users_id_seq', 6, true);
--
-- Data for Name: webhooks; Type: TABLE DATA; Schema: public; Owner: -
--
COPY webhooks (id, created_on, updated_on, webhook_url, partnership_id, is_deactivated, deactivated_on) FROM stdin;
7 2019-07-16 00:30:00.329228+00 2019-07-16 00:30:00.329228+00 https://google.com 2 f \N
6 2019-07-16 00:30:00.329228+00 2019-07-16 01:06:55.813172+00 http://buyercall.pythonanywhere.com/local_wehook 1 f \N
\.
--
-- Name: webhooks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('webhooks_id_seq', 6, true);
--
-- Data for Name: widget_agents; Type: TABLE DATA; Schema: public; Owner: -
--
COPY widget_agents (widget_id, agent_id, contact_using, "order") FROM stdin;
3 2 phone 0
5 9 phone 0
\.
--
-- Data for Name: widget_files; Type: TABLE DATA; Schema: public; Owner: -
--
COPY widget_files (created_on, updated_on, guid, partnership_account_id) FROM stdin;
\.
--
-- Data for Name: widgets; Type: TABLE DATA; Schema: public; Owner: -
--
COPY widgets (created_on, updated_on, id, guid, partnership_account_id, name, type, phone_number_id, options, email, enabled) FROM stdin;
2018-10-25 22:47:21.628943+00 2018-10-25 22:47:21.628954+00 1 cd80950f-9d0b-49ec-b5f0-8ceaa7cb9d31 1 Default widget \N {"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "retryRouting": ["0", "", ""], "color": "#03a9f4", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "typeLink": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default Widget", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "tabWidth": 40, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "enableNotifications": true, "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": false, "unavailableAskLastName": true, "notifyAdf": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAdfCustom": "", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""} \N t
2019-02-11 21:51:02.062883+00 2019-02-11 21:51:02.062893+00 2 12b424af-ac92-49fb-ba1b-dfb6735e654a 2 Default widget \N {"voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "retryRouting": ["0", "", ""], "color": "#03a9f4", "typeButton": true, "imageHorizontal": 50, "askLastName": true, "alwaysModal": false, "unavailableAskQuestion": false, "notifyAllMe": true, "unavailableIntro": "Sorry, we are not available at the moment. Please leave us your details and your question, and we'll get back to you as soon as possible.", "pages": [], "emailAddressPrompt": "Email address:", "routeInSequence": false, "triggerBasedOnTime": false, "lastNamePrompt": "Last name:", "notifyNone": false, "askPhoneNumber": true, "unavailableButtonText": "Submit", "unavailableHeaderTitle": "Get in touch!", "availableTo": "20:00:00", "scheduleTimezone": "", "triggerBasedOnPage": false, "typeLink": false, "notifyMissedAgents": false, "notifyAllLeads": false, "animation": "bounce-up", "askFirstName": true, "transparentBackground": false, "askEmailAddress": true, "name": "Default Widget", "showOnMobile": true, "askQuestion": false, "phoneNumberPrompt": "Phone number:", "notifyMissedLeads": true, "tabWidth": 40, "imageInFront": false, "unavailableLastNamePrompt": "Last name:", "addHiddenInformation": false, "enableNotifications": true, "unavailableAskPhoneNumber": true, "triggerPageInterval": 10, "notifyMissedMe": true, "branding": false, "unavailableAskLastName": true, "notifyAdf": false, "intro": "Let us help you. Enter your details below and click on the talk button to speak to one of our representatives.", "routeRandomly": false, "typeTab": true, "firstNamePrompt": "First name:", "availableFrom": "08:00:00", "notifyAdfCustom": "", "unavailableFirstNamePrompt": "First name:", "customImage": "", "unavailableAskFirstName": true, "mobileOptimized": false, "unavailablePhoneNumberPrompt": "Phone number:", "hiddenInformation": "", "unavailableQuestionPrompt": "Question:", "typeImage": false, "questionPrompt": "Question:", "recordCalls": false, "title": "Talk to us now!", "defaultImage": "", "imageVertical": 50, "triggerInterval": 30, "unavailableEmailAddressPrompt": "Email address:", "showHideButton": true, "unavailableAskEmailAddress": true, "notifyAllAgents": false, "imageSize": 50, "language": "en", "headerTitle": "Talk to us now!", "notifyAllCustom": "", "voicemail": true, "buttonText": "Talk Now!", "days": [false, true, true, true, true, true, false], "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "position": "bottom-right", "routeSimultaneously": true, "notifyMissedCustom": ""} \N t
2019-03-18 22:30:14.01734+00 2019-03-20 17:46:58.507897+00 3 11ba6af7-b6f1-47dc-a561-1b7e3e0e037b 1 Toetser Widget widget 5 {"typeLink": true, "questionPrompt": "What is your question?", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Sue Matthews", "contactUsing": "phone", "id": 2}], "triggerPageInterval": 10, "color": "#03a9f4", "branding": false, "unavailableAskLastName": true, "notifyAdf": false, "typeButton": true, "fromNumberType": "priority", "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Complete the form and click on the talk button to speak to one of our representatives.", "imageHorizontal": "50", "routeRandomly": false, "askLastName": true, "typeTab": true, "firstNamePrompt": "Enter your first name", "fromNumberId": 5, "notifyAdfCustom": "", "notifyAllLeads": false, "unavailableButtonText": "Send message", "title": "TALK TO US NOW!", "notifyMissedLeads": true, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Send us a message, and we'll get back to you!.", "routeInSequence": false, "unavailableFirstNamePrompt": "Enter your first name", "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Enter your email address", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Enter your last name", "hiddenInformation": "", "unavailableQuestionPrompt": "What is your question?", "typeImage": false, "addHiddenInformation": false, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Enter your phone number", "widgetType": "widget", "unavailableHeaderTitle": "Send us a messsage!", "defaultImage": "Custom", "imageVertical": "50", "notifyAllAgents": false, "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "enableNotifications": true, "transparentBackground": false, "askEmailAddress": true, "name": "Toetser Widget", "showOnMobile": true, "unavailableEmailAddressPrompt": "Enter your email address", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": true, "buttonText": "Click to talk!", "triggerBasedOnPage": false, "phoneNumberPrompt": "Enter your phone number", "askQuestion": false, "tabWidth": "40", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Enter your last name", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""} HarrysFastCars2@inbound.buyercall.com t
2019-05-22 23:05:28.945307+00 2019-05-22 23:05:30.926938+00 5 6bfdfcd6-3ccd-4a89-90e7-ffdd1c8cf5ec 1 Leads Test Widget widget 1 {"typeLink": true, "questionPrompt": "What is your question?", "unavailableAskPhoneNumber": true, "agents": [{"fullName": "Harry Conway", "contactUsing": "phone", "id": 9}], "triggerPageInterval": 10, "color": "#03a9f4", "branding": false, "unavailableAskLastName": true, "notifyAdf": false, "typeButton": true, "fromNumberType": "priority", "notifyMissedAgents": false, "repeatAnimation": true, "intro": "Complete the form and click on the talk button to speak to one of our representatives.", "imageHorizontal": "50", "routeRandomly": false, "askLastName": true, "typeTab": true, "firstNamePrompt": "Enter your first name", "fromNumberId": 1, "notifyAdfCustom": "", "notifyAllLeads": false, "unavailableButtonText": "Send message", "title": "TALK TO US NOW!", "notifyMissedLeads": true, "notifyAllMe": true, "customImage": "", "unavailableIntro": "Sorry, we are not available at the moment. Send us a message, and we'll get back to you!.", "routeInSequence": false, "unavailableFirstNamePrompt": "Enter your first name", "unavailableAskFirstName": true, "unavailableAskQuestion": false, "emailAddressPrompt": "Enter your email address", "mobileOptimized": false, "animation": "bounce-up", "lastNamePrompt": "Enter your last name", "hiddenInformation": "", "unavailableQuestionPrompt": "What is your question?", "typeImage": false, "addHiddenInformation": false, "askPhoneNumber": true, "recordCalls": false, "voicemailMessage": "Sorry we are not available at the moment. Please leave a voice message and we'll get back to you as soon as possible.", "unavailablePhoneNumberPrompt": "Enter your phone number", "widgetType": "widget", "unavailableHeaderTitle": "Send us a messsage!", "defaultImage": "Custom", "imageVertical": "50", "notifyAllAgents": false, "triggerInterval": 30, "language": "en", "triggerBasedOnTime": false, "showHideButton": true, "notifyNone": false, "notifyMissedMe": true, "unavailableAskEmailAddress": true, "pages": [], "askFirstName": true, "imageSize": "50", "enableNotifications": true, "transparentBackground": false, "askEmailAddress": true, "name": "Leads Test Widget", "showOnMobile": true, "unavailableEmailAddressPrompt": "Enter your email address", "headerTitle": "Talk to us now!", "alwaysModal": false, "voicemail": true, "buttonText": "Click to talk!", "triggerBasedOnPage": false, "phoneNumberPrompt": "Enter your phone number", "askQuestion": true, "tabWidth": "40", "whisperMessage": "Thank you for contacting us. You will be connected to a representative shortly. Please note that this call might be recorded.", "retryRouting": ["0", "", ""], "imageInFront": false, "unavailableLastNamePrompt": "Enter your last name", "position": "bottom-right", "routeSimultaneously": true, "notifyAllCustom": "", "notifyMissedCustom": ""} HarrysFastCars3@inbound.buyercall.com t
\.
--
-- Name: widgets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('widgets_id_seq', 5, true);
--
-- Name: agent_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY agent_groups
ADD CONSTRAINT agent_groups_pkey PRIMARY KEY (group_id, agent_id);
--
-- Name: agent_schedules_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY agent_schedules
ADD CONSTRAINT agent_schedules_pkey PRIMARY KEY (id);
--
-- Name: agents_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY agents
ADD CONSTRAINT agents_pkey PRIMARY KEY (id);
--
-- Name: api_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY api_tokens
ADD CONSTRAINT api_tokens_pkey PRIMARY KEY (id);
--
-- Name: audio_urls_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY audio_urls
ADD CONSTRAINT audio_urls_pkey PRIMARY KEY (id);
--
-- Name: block_numbers_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY block_numbers
ADD CONSTRAINT block_numbers_pkey PRIMARY KEY (id);
--
-- Name: contact_notes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY contact_notes
ADD CONSTRAINT contact_notes_pkey PRIMARY KEY (id);
--
-- Name: contacts_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY contacts
ADD CONSTRAINT contacts_pkey PRIMARY KEY (id);
--
-- Name: coupons_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY coupons
ADD CONSTRAINT coupons_pkey PRIMARY KEY (id);
--
-- Name: credit_cards_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY credit_cards
ADD CONSTRAINT credit_cards_pkey PRIMARY KEY (id);
--
-- Name: external_api_service_provider_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY external_api_service_providers
ADD CONSTRAINT external_api_service_provider_pkey PRIMARY KEY (id);
--
-- Name: external_form_fields_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY external_form_fields
ADD CONSTRAINT external_form_fields_pkey PRIMARY KEY (form_id, field_id);
--
-- Name: external_forms_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY external_forms
ADD CONSTRAINT external_forms_pkey PRIMARY KEY (id);
--
-- Name: form_lead_fields_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY form_lead_fields
ADD CONSTRAINT form_lead_fields_pkey PRIMARY KEY (lead_id, field_id);
--
-- Name: form_leads_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY form_leads
ADD CONSTRAINT form_leads_pkey PRIMARY KEY (id);
--
-- Name: form_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY form_logs
ADD CONSTRAINT form_logs_pkey PRIMARY KEY (id);
--
-- Name: holdmusic_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY holdmusic
ADD CONSTRAINT holdmusic_pkey PRIMARY KEY (id);
--
-- Name: invoices_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY invoices
ADD CONSTRAINT invoices_pkey PRIMARY KEY (id);
--
-- Name: issues_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY issues
ADD CONSTRAINT issues_pkey PRIMARY KEY (id);
--
-- Name: lead_notes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY lead_notes
ADD CONSTRAINT lead_notes_pkey PRIMARY KEY (id);
--
-- Name: leads_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY leads
ADD CONSTRAINT leads_pkey PRIMARY KEY (id);
--
-- Name: messages_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY messages
ADD CONSTRAINT messages_pkey PRIMARY KEY (id);
--
-- Name: partnership_account_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY partnership_account_groups
ADD CONSTRAINT partnership_account_groups_pkey PRIMARY KEY (id);
--
-- Name: partnership_accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY partnership_accounts
ADD CONSTRAINT partnership_accounts_pkey PRIMARY KEY (id);
--
-- Name: partnerships_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY partnerships
ADD CONSTRAINT partnerships_pkey PRIMARY KEY (id);
--
-- Name: phonenumbers_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY phonenumbers
ADD CONSTRAINT phonenumbers_pkey PRIMARY KEY (id);
--
-- Name: report_user_tie_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY report_user_tie
ADD CONSTRAINT report_user_tie_pkey PRIMARY KEY (report_id, user_id);
--
-- Name: reports_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY reports
ADD CONSTRAINT reports_pkey PRIMARY KEY (id);
--
-- Name: sip_domains_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY sip_domains
ADD CONSTRAINT sip_domains_pkey PRIMARY KEY (id);
--
-- Name: sip_endpoints_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY sip_endpoints
ADD CONSTRAINT sip_endpoints_pkey PRIMARY KEY (id);
--
-- Name: subscriptions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY subscriptions
ADD CONSTRAINT subscriptions_pkey PRIMARY KEY (id);
--
-- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY users
ADD CONSTRAINT users_pkey PRIMARY KEY (id);
--
-- Name: webhooks_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY webhooks
ADD CONSTRAINT webhooks_pkey PRIMARY KEY (id);
--
-- Name: widget_agents_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY widget_agents
ADD CONSTRAINT widget_agents_pkey PRIMARY KEY (widget_id, agent_id);
--
-- Name: widget_files_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY widget_files
ADD CONSTRAINT widget_files_pkey PRIMARY KEY (guid);
--
-- Name: widgets_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
--
ALTER TABLE ONLY widgets
ADD CONSTRAINT widgets_pkey PRIMARY KEY (id);
--
-- Name: external_api_service_provider_id_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE UNIQUE INDEX external_api_service_provider_id_index ON external_api_service_providers USING btree (id);
--
-- Name: ix_agent_schedules_day; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_agent_schedules_day ON agent_schedules USING btree (day);
--
-- Name: ix_agent_schedules_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_agent_schedules_partnership_account_id ON agent_schedules USING btree (partnership_account_id);
--
-- Name: ix_agents_firstname; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_agents_firstname ON agents USING btree (firstname);
--
-- Name: ix_agents_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_agents_partnership_account_id ON agents USING btree (partnership_account_id);
--
-- Name: ix_agents_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_agents_user_id ON agents USING btree (user_id);
--
-- Name: ix_block_numbers_partnership_accounts_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_block_numbers_partnership_accounts_id ON block_numbers USING btree (partnership_accounts_id);
--
-- Name: ix_block_numbers_status; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_block_numbers_status ON block_numbers USING btree (status);
--
-- Name: ix_contact_notes_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_contact_notes_partnership_account_id ON contact_notes USING btree (partnership_account_id);
--
-- Name: ix_contact_notes_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_contact_notes_user_id ON contact_notes USING btree (user_id);
--
-- Name: ix_contacts_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_contacts_partnership_account_id ON contacts USING btree (partnership_account_id);
--
-- Name: ix_contacts_status; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_contacts_status ON contacts USING btree (status);
--
-- Name: ix_coupons_code; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE UNIQUE INDEX ix_coupons_code ON coupons USING btree (code);
--
-- Name: ix_coupons_duration; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_coupons_duration ON coupons USING btree (duration);
--
-- Name: ix_coupons_max_redemptions; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_coupons_max_redemptions ON coupons USING btree (max_redemptions);
--
-- Name: ix_coupons_redeem_by; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_coupons_redeem_by ON coupons USING btree (redeem_by);
--
-- Name: ix_coupons_times_redeemed; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_coupons_times_redeemed ON coupons USING btree (times_redeemed);
--
-- Name: ix_credit_cards_cc_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_credit_cards_cc_name ON credit_cards USING btree (cc_name);
--
-- Name: ix_credit_cards_exp_date; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_credit_cards_exp_date ON credit_cards USING btree (exp_date);
--
-- Name: ix_external_forms_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_external_forms_partnership_account_id ON external_forms USING btree (partnership_account_id);
--
-- Name: ix_external_forms_public_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_external_forms_public_id ON external_forms USING btree (public_id);
--
-- Name: ix_external_forms_send_auto_sms_inbound_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_external_forms_send_auto_sms_inbound_id ON external_forms USING btree (send_auto_sms_inbound_id);
--
-- Name: ix_form_leads_contact_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_form_leads_contact_id ON form_leads USING btree (contact_id);
--
-- Name: ix_form_leads_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_form_leads_partnership_account_id ON form_leads USING btree (partnership_account_id);
--
-- Name: ix_form_logs_form_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_form_logs_form_id ON form_logs USING btree (form_id);
--
-- Name: ix_form_logs_form_lead_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_form_logs_form_lead_id ON form_logs USING btree (form_lead_id);
--
-- Name: ix_holdmusic_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_holdmusic_partnership_account_id ON holdmusic USING btree (partnership_account_id);
--
-- Name: ix_invoices_credit_card_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_invoices_credit_card_id ON invoices USING btree (credit_card_id);
--
-- Name: ix_invoices_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_invoices_partnership_account_id ON invoices USING btree (partnership_account_id);
--
-- Name: ix_invoices_partnership_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_invoices_partnership_id ON invoices USING btree (partnership_id);
--
-- Name: ix_invoices_plan; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_invoices_plan ON invoices USING btree (plan);
--
-- Name: ix_invoices_receipt_number; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_invoices_receipt_number ON invoices USING btree (receipt_number);
--
-- Name: ix_issues_email; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_issues_email ON issues USING btree (email);
--
-- Name: ix_issues_label; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_issues_label ON issues USING btree (label);
--
-- Name: ix_issues_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_issues_partnership_account_id ON issues USING btree (partnership_account_id);
--
-- Name: ix_issues_partnership_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_issues_partnership_id ON issues USING btree (partnership_id);
--
-- Name: ix_issues_status; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_issues_status ON issues USING btree (status);
--
-- Name: ix_lead_notes_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_lead_notes_user_id ON lead_notes USING btree (user_id);
--
-- Name: ix_leads_call_sid; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_leads_call_sid ON leads USING btree (call_sid);
--
-- Name: ix_leads_caller_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_leads_caller_id ON leads USING btree (caller_id);
--
-- Name: ix_leads_contact_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_leads_contact_id ON leads USING btree (contact_id);
--
-- Name: ix_leads_email; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_leads_email ON leads USING btree (email);
--
-- Name: ix_leads_firstname; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_leads_firstname ON leads USING btree (firstname);
--
-- Name: ix_leads_inbound_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_leads_inbound_id ON leads USING btree (inbound_id);
--
-- Name: ix_leads_lastname; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_leads_lastname ON leads USING btree (lastname);
--
-- Name: ix_leads_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_leads_partnership_account_id ON leads USING btree (partnership_account_id);
--
-- Name: ix_leads_phonenumber; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_leads_phonenumber ON leads USING btree (phonenumber);
--
-- Name: ix_leads_progress_status; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_leads_progress_status ON leads USING btree (progress_status);
--
-- Name: ix_leads_status; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_leads_status ON leads USING btree (status);
--
-- Name: ix_messages_contact_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_messages_contact_id ON messages USING btree (contact_id);
--
-- Name: ix_messages_from_; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_messages_from_ ON messages USING btree (from_);
--
-- Name: ix_messages_inbound_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_messages_inbound_id ON messages USING btree (inbound_id);
--
-- Name: ix_messages_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_messages_partnership_account_id ON messages USING btree (partnership_account_id);
--
-- Name: ix_messages_provider; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_messages_provider ON messages USING btree (provider);
--
-- Name: ix_messages_to; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_messages_to ON messages USING btree ("to");
--
-- Name: ix_partnership_accounts_api_token_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_partnership_accounts_api_token_id ON partnership_accounts USING btree (api_token_id);
--
-- Name: ix_partnership_accounts_billing_type; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_partnership_accounts_billing_type ON partnership_accounts USING btree (billing_type);
--
-- Name: ix_partnership_accounts_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_partnership_accounts_name ON partnership_accounts USING btree (name);
--
-- Name: ix_partnership_accounts_partner_account_code; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_partnership_accounts_partner_account_code ON partnership_accounts USING btree (partner_account_code);
--
-- Name: ix_partnership_accounts_partnership_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_partnership_accounts_partnership_id ON partnership_accounts USING btree (partnership_id);
--
-- Name: ix_partnership_accounts_subscription_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_partnership_accounts_subscription_id ON partnership_accounts USING btree (subscription_id);
--
-- Name: ix_partnerships_account_invitation_url_token; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_partnerships_account_invitation_url_token ON partnerships USING btree (account_invitation_url_token);
--
-- Name: ix_partnerships_api_token_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_partnerships_api_token_id ON partnerships USING btree (api_token_id);
--
-- Name: ix_partnerships_default_billing_type; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_partnerships_default_billing_type ON partnerships USING btree (default_billing_type);
--
-- Name: ix_partnerships_default_provider; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_partnerships_default_provider ON partnerships USING btree (default_provider);
--
-- Name: ix_partnerships_email_sender; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_partnerships_email_sender ON partnerships USING btree (email_sender);
--
-- Name: ix_partnerships_logo; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_partnerships_logo ON partnerships USING btree (logo);
--
-- Name: ix_partnerships_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_partnerships_name ON partnerships USING btree (name);
--
-- Name: ix_partnerships_partner_url; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_partnerships_partner_url ON partnerships USING btree (partner_url);
--
-- Name: ix_partnerships_subscription_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_partnerships_subscription_id ON partnerships USING btree (subscription_id);
--
-- Name: ix_phonenumbers_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_phonenumbers_partnership_account_id ON phonenumbers USING btree (partnership_account_id);
--
-- Name: ix_phonenumbers_provider; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_phonenumbers_provider ON phonenumbers USING btree (provider);
--
-- Name: ix_report_user_tie_partnership_accounts_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_report_user_tie_partnership_accounts_id ON report_user_tie USING btree (partnership_accounts_id);
--
-- Name: ix_reports_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_reports_name ON reports USING btree (name);
--
-- Name: ix_sip_domains_partnership_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_sip_domains_partnership_id ON sip_domains USING btree (partnership_id);
--
-- Name: ix_sip_endpoints_agent_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_sip_endpoints_agent_id ON sip_endpoints USING btree (agent_id);
--
-- Name: ix_sip_endpoints_domain_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_sip_endpoints_domain_id ON sip_endpoints USING btree (domain_id);
--
-- Name: ix_sip_endpoints_inbound_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_sip_endpoints_inbound_id ON sip_endpoints USING btree (inbound_id);
--
-- Name: ix_sip_endpoints_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_sip_endpoints_partnership_account_id ON sip_endpoints USING btree (partnership_account_id);
--
-- Name: ix_sip_endpoints_provider; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_sip_endpoints_provider ON sip_endpoints USING btree (provider);
--
-- Name: ix_subscriptions_credit_card_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_subscriptions_credit_card_id ON subscriptions USING btree (credit_card_id);
--
-- Name: ix_subscriptions_payment_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_subscriptions_payment_id ON subscriptions USING btree (payment_id);
--
-- Name: ix_subscriptions_status; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_subscriptions_status ON subscriptions USING btree (status);
--
-- Name: ix_users_email; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE UNIQUE INDEX ix_users_email ON users USING btree (email);
--
-- Name: ix_users_firstname; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_users_firstname ON users USING btree (firstname);
--
-- Name: ix_users_lastname; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_users_lastname ON users USING btree (lastname);
--
-- Name: ix_users_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_users_partnership_account_id ON users USING btree (partnership_account_id);
--
-- Name: ix_users_partnership_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_users_partnership_id ON users USING btree (partnership_id);
--
-- Name: ix_users_role; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_users_role ON users USING btree (role);
--
-- Name: ix_users_username; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE UNIQUE INDEX ix_users_username ON users USING btree (username);
--
-- Name: ix_webhooks_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_webhooks_partnership_account_id ON webhooks USING btree (partnership_id);
--
-- Name: ix_widget_files_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_widget_files_partnership_account_id ON widget_files USING btree (partnership_account_id);
--
-- Name: ix_widgets_email; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE UNIQUE INDEX ix_widgets_email ON widgets USING btree (email);
--
-- Name: ix_widgets_guid; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE UNIQUE INDEX ix_widgets_guid ON widgets USING btree (guid);
--
-- Name: ix_widgets_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_widgets_name ON widgets USING btree (name);
--
-- Name: ix_widgets_partnership_account_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_widgets_partnership_account_id ON widgets USING btree (partnership_account_id);
--
-- Name: ix_widgets_type; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE INDEX ix_widgets_type ON widgets USING btree (type);
--
-- Name: partnership_account_groups_id_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE UNIQUE INDEX partnership_account_groups_id_index ON partnership_account_groups USING btree (id);
--
-- Name: uq_widgets_guid; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
CREATE UNIQUE INDEX uq_widgets_guid ON widgets USING btree (guid);
--
-- Name: agent_groups_agent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY agent_groups
ADD CONSTRAINT agent_groups_agent_id_fkey FOREIGN KEY (agent_id) REFERENCES agents(id);
--
-- Name: agent_groups_group_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY agent_groups
ADD CONSTRAINT agent_groups_group_id_fkey FOREIGN KEY (group_id) REFERENCES agents(id);
--
-- Name: agent_schedules_agent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY agent_schedules
ADD CONSTRAINT agent_schedules_agent_id_fkey FOREIGN KEY (agent_id) REFERENCES agents(id);
--
-- Name: agent_schedules_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY agent_schedules
ADD CONSTRAINT agent_schedules_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: agents_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY agents
ADD CONSTRAINT agents_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: agents_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY agents
ADD CONSTRAINT agents_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: block_numbers_partnership_accounts_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY block_numbers
ADD CONSTRAINT block_numbers_partnership_accounts_id_fkey FOREIGN KEY (partnership_accounts_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: contact_note_partnership_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY contact_notes
ADD CONSTRAINT contact_note_partnership_account_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: contact_notes_contact_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY contact_notes
ADD CONSTRAINT contact_notes_contact_id_fkey FOREIGN KEY (contact_id) REFERENCES contacts(id);
--
-- Name: contact_notes_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY contact_notes
ADD CONSTRAINT contact_notes_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: contact_partnership_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY contacts
ADD CONSTRAINT contact_partnership_account_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: external_api_service_provider_account_tie_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY external_api_service_providers_partnership_account_tie
ADD CONSTRAINT external_api_service_provider_account_tie_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: external_api_service_provider_id_tie_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY external_api_service_providers_partnership_account_tie
ADD CONSTRAINT external_api_service_provider_id_tie_fkey FOREIGN KEY (external_api_service_provider_id) REFERENCES external_api_service_providers(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: external_form_fields_form_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY external_form_fields
ADD CONSTRAINT external_form_fields_form_id_fkey FOREIGN KEY (form_id) REFERENCES external_forms(id);
--
-- Name: external_form_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY form_logs
ADD CONSTRAINT external_form_fkey FOREIGN KEY (form_id) REFERENCES external_forms(id);
--
-- Name: external_forms_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY external_forms
ADD CONSTRAINT external_forms_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id);
--
-- Name: external_forms_routing_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY external_forms
ADD CONSTRAINT external_forms_routing_id_fkey FOREIGN KEY (routing_id) REFERENCES widgets(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: fk_webhooks_partnership_id; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY webhooks
ADD CONSTRAINT fk_webhooks_partnership_id FOREIGN KEY (partnership_id) REFERENCES partnerships(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: fkey_contacts_agent_id; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY contacts
ADD CONSTRAINT fkey_contacts_agent_id FOREIGN KEY (agent_id) REFERENCES agents(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: fkey_contacts_api_token_id; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY contacts
ADD CONSTRAINT fkey_contacts_api_token_id FOREIGN KEY (api_token_id) REFERENCES api_tokens(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: form_lead_contact_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY form_leads
ADD CONSTRAINT form_lead_contact_fkey FOREIGN KEY (contact_id) REFERENCES contacts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: form_lead_fields_lead_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY form_lead_fields
ADD CONSTRAINT form_lead_fields_lead_id_fkey FOREIGN KEY (lead_id) REFERENCES form_leads(id);
--
-- Name: form_leads_form_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY form_leads
ADD CONSTRAINT form_leads_form_id_fkey FOREIGN KEY (form_id) REFERENCES external_forms(id);
--
-- Name: form_leads_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY form_leads
ADD CONSTRAINT form_leads_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id);
--
-- Name: form_log_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY form_logs
ADD CONSTRAINT form_log_fkey FOREIGN KEY (form_lead_id) REFERENCES form_leads(id);
--
-- Name: holdmusic_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY holdmusic
ADD CONSTRAINT holdmusic_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: invoices_credit_card_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY invoices
ADD CONSTRAINT invoices_credit_card_id_fkey FOREIGN KEY (credit_card_id) REFERENCES credit_cards(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: invoices_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY invoices
ADD CONSTRAINT invoices_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: invoices_partnership_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY invoices
ADD CONSTRAINT invoices_partnership_id_fkey FOREIGN KEY (partnership_id) REFERENCES partnerships(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: issues_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY issues
ADD CONSTRAINT issues_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: issues_partnership_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY issues
ADD CONSTRAINT issues_partnership_id_fkey FOREIGN KEY (partnership_id) REFERENCES partnerships(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: lead_contact_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY leads
ADD CONSTRAINT lead_contact_fkey FOREIGN KEY (contact_id) REFERENCES contacts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: lead_notes_lead_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY lead_notes
ADD CONSTRAINT lead_notes_lead_id_fkey FOREIGN KEY (lead_id) REFERENCES leads(id);
--
-- Name: lead_notes_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY lead_notes
ADD CONSTRAINT lead_notes_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: leads_agent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY leads
ADD CONSTRAINT leads_agent_id_fkey FOREIGN KEY (agent_id) REFERENCES agents(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: leads_inbound_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY leads
ADD CONSTRAINT leads_inbound_fkey FOREIGN KEY (inbound_id) REFERENCES phonenumbers(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: leads_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY leads
ADD CONSTRAINT leads_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: leads_widget_guid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY leads
ADD CONSTRAINT leads_widget_guid_fkey FOREIGN KEY (widget_guid) REFERENCES widgets(guid) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: message_contact_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY messages
ADD CONSTRAINT message_contact_fkey FOREIGN KEY (contact_id) REFERENCES contacts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: message_inbound_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY messages
ADD CONSTRAINT message_inbound_fkey FOREIGN KEY (inbound_id) REFERENCES phonenumbers(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: message_inbound_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY external_forms
ADD CONSTRAINT message_inbound_fkey FOREIGN KEY (send_auto_sms_inbound_id) REFERENCES phonenumbers(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: message_partnership_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY messages
ADD CONSTRAINT message_partnership_account_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: partnership_account_group_account_tie_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY partnership_account_group_tie
ADD CONSTRAINT partnership_account_group_account_tie_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: partnership_account_group_id_tie_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY partnership_account_group_tie
ADD CONSTRAINT partnership_account_group_id_tie_fkey FOREIGN KEY (partnership_account_group_id) REFERENCES partnership_account_groups(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: partnership_accounts_api_token_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY partnership_accounts
ADD CONSTRAINT partnership_accounts_api_token_id_fkey FOREIGN KEY (api_token_id) REFERENCES api_tokens(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: partnership_accounts_partnership_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY partnership_accounts
ADD CONSTRAINT partnership_accounts_partnership_id_fkey FOREIGN KEY (partnership_id) REFERENCES partnerships(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: partnership_accounts_subscription_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY partnership_accounts
ADD CONSTRAINT partnership_accounts_subscription_id_fkey FOREIGN KEY (subscription_id) REFERENCES subscriptions(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: partnerships_api_token_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY partnerships
ADD CONSTRAINT partnerships_api_token_id_fkey FOREIGN KEY (api_token_id) REFERENCES api_tokens(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: partnerships_subscription_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY partnerships
ADD CONSTRAINT partnerships_subscription_id_fkey FOREIGN KEY (subscription_id) REFERENCES subscriptions(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: phonenumbers_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY phonenumbers
ADD CONSTRAINT phonenumbers_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: report_user_tie_report_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY report_user_tie
ADD CONSTRAINT report_user_tie_report_id_fkey FOREIGN KEY (report_id) REFERENCES reports(id);
--
-- Name: report_user_tie_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY report_user_tie
ADD CONSTRAINT report_user_tie_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
--
-- Name: reports_partnership_accounts_id_tie_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY report_user_tie
ADD CONSTRAINT reports_partnership_accounts_id_tie_fkey FOREIGN KEY (partnership_accounts_id) REFERENCES partnership_accounts(id);
--
-- Name: sip_agent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY sip_endpoints
ADD CONSTRAINT sip_agent_fkey FOREIGN KEY (agent_id) REFERENCES agents(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: sip_domain_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY sip_endpoints
ADD CONSTRAINT sip_domain_fkey FOREIGN KEY (domain_id) REFERENCES sip_domains(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: sip_domain_partnership_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY sip_domains
ADD CONSTRAINT sip_domain_partnership_fkey FOREIGN KEY (partnership_id) REFERENCES partnerships(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: sip_inbound_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY sip_endpoints
ADD CONSTRAINT sip_inbound_fkey FOREIGN KEY (inbound_id) REFERENCES phonenumbers(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: sip_partnership_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY sip_endpoints
ADD CONSTRAINT sip_partnership_account_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: subscriptions_credit_card_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY subscriptions
ADD CONSTRAINT subscriptions_credit_card_id_fkey FOREIGN KEY (credit_card_id) REFERENCES credit_cards(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: users_partnership_account_group_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY users
ADD CONSTRAINT users_partnership_account_group_id_fkey FOREIGN KEY (partnership_account_group_id) REFERENCES partnership_account_groups(id);
--
-- Name: users_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY users
ADD CONSTRAINT users_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: users_partnership_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY users
ADD CONSTRAINT users_partnership_id_fkey FOREIGN KEY (partnership_id) REFERENCES partnerships(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: widget_agents_agent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY widget_agents
ADD CONSTRAINT widget_agents_agent_id_fkey FOREIGN KEY (agent_id) REFERENCES agents(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: widget_agents_widget_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY widget_agents
ADD CONSTRAINT widget_agents_widget_id_fkey FOREIGN KEY (widget_id) REFERENCES widgets(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: widget_files_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY widget_files
ADD CONSTRAINT widget_files_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: widgets_partnership_account_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY widgets
ADD CONSTRAINT widgets_partnership_account_id_fkey FOREIGN KEY (partnership_account_id) REFERENCES partnership_accounts(id) ON UPDATE CASCADE ON DELETE CASCADE;
--
-- Name: widgets_phone_number_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY widgets
ADD CONSTRAINT widgets_phone_number_id_fkey FOREIGN KEY (phone_number_id) REFERENCES phonenumbers(id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: public; Type: ACL; Schema: -; Owner: -
--
REVOKE ALL ON SCHEMA public FROM PUBLIC;
REVOKE ALL ON SCHEMA public FROM postgres;
GRANT ALL ON SCHEMA public TO postgres;
GRANT ALL ON SCHEMA public TO PUBLIC;
--
-- PostgreSQL database dump complete
--