[BluFetch] Fetch from IdiData
@michaelblufetch
code:
data:privatelast updated:3 years ago
today
Build integrations remarkably fast!
You're viewing a public workflow template.
Sign up to customize, add steps, modify code and more.
Join 1,000,000+ developers using the Pipedream platform
steps.
trigger
HTTP API
Deploy to generate unique URL
This workflow runs on Pipedream's servers and is triggered by HTTP / Webhook requests.
steps.
send_http_request_1
Make an HTTP or webhook request and return the response as a step export.
params
URL
 
string ·params.url
Optional
code
async params => {
1
2
3
4
5
6
7
8
9
10
11
}
12
const config = {
  method: params.method,
  url: params.url,
  params: params.query,
  headers: params.headers,
  responseType: params.responseType,
  data: params.data,
}
if (params.auth) config.auth = params.auth
return await require("@pipedreamhq/platform").axios(this, config)
steps.
GetAuth
auth
to use OAuth tokens and API keys in code via theauths object
code
Write any Node.jscodeand use anynpm package. You can alsoexport datafor use in later steps via return or this.key = 'value', pass input data to your code viaparams, and maintain state across executions with$checkpoint.
async (event, steps) => {
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
}
42
const axios = require("axios")
const clientID = "api-client@blufetch";
const clientSecret = "eeBq%JACM!cgKR3%pa7NQ4AVzR%5fG8PVYSaxwF2b4zkqVGpmVDQmVftue$ZksWs";
const loginUrl = "https://login-api.idicore.com/apiclient";
const testUrl = "https://webhook.site/ecdc6aed-6277-454f-bd87-05a19473ada9";
const searchUrl = "https://api.idicore.com/search";
const glbaVal = "otheruse";
const dppaVal = "none";
const user = "franklin";
const pass = "IKEpwv737AOuFCOEo7b8";
const host = "34.225.225.247";
const port = "6789";
let httpsProxyAgent = require('https-proxy-agent')
const agent = new httpsProxyAgent(`http://${user}:${pass}@${host}:${port}`)

  const authString= "Basic " + Buffer.from(clientID + ":" +clientSecret).toString("base64");

// Make an HTTP GET request using axios
const resp = await axios({
  method: "post",
  url: loginUrl,
  httpsAgent: agent,
 body: JSON.stringify({
          qlba: glbaVal,
          dppa: dppaVal,
      }),
      headers: {
          "Content-Type": "application/json",
          "Authorization": authString,

      },
      });


// Retrieve just the data from the response
const { data } = resp

// export this data for use in a future step
// https://docs.pipedream.com/workflows/steps/#step-exports
this.data = data
steps.
PerformSearch
auth
to use OAuth tokens and API keys in code via theauths object
code
Write any Node.jscodeand use anynpm package. You can alsoexport datafor use in later steps via return or this.key = 'value', pass input data to your code viaparams, and maintain state across executions with$checkpoint.
async (event, steps) => {
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
}
50
const axios = require("axios")
const clientID = "api-client@blufetch";
const clientSecret = "eeBq%JACM!cgKR3%pa7NQ4AVzR%5fG8PVYSaxwF2b4zkqVGpmVDQmVftue$ZksWs";
const loginUrl = "https://login-api.idicore.com/apiclient";
const testUrl = "https://webhook.site/2d0d1c2d-1414-450e-813b-43400a0aa156";
const searchUrl = "https://api.idicore.com/search";
const glbaVal = "otheruse";
const dppaVal = "none";

const firstName = steps.trigger.event.body.first_name;
const lastName = steps.trigger.event.body.last_name;
const address = steps.trigger.event.body.address1;
const user = "franklin";
const pass = "IKEpwv737AOuFCOEo7b8";
const host = "34.225.225.247";
const port = "6789";
let httpsProxyAgent = require('https-proxy-agent')
const agent = new httpsProxyAgent(`http://${user}:${pass}@${host}:${port}`)
const authToken = steps.GetAuth.data; 
  const authString= "Basic " + Buffer.from(clientID + ":" +clientSecret).toString("base64");

  const searchParams ={"firstName": firstName,
                    "lastName": lastName,
                    "address": address,
                    "nicknamesearch": true,
                    "fields": ["name", "address", "phone", "bankruptcy", "dob", "isDead", "property", "lien", "judgment", "relationshipDetail"] 
}

// Make an HTTP GET request using axios
res = await axios(searchUrl, { 
            method: "post",
            httpsAgent: agent,
            data: JSON.stringify(searchParams),
            headers: {
                "Content-Type": "application/json",
                "Authorization": authToken,
            
            },
        });



// Retrieve just the data from the response
const { data } = res

// export this data for use in a future step
// https://docs.pipedream.com/workflows/steps/#step-exports
this.data = data
steps.
nodejs_14
auth
to use OAuth tokens and API keys in code via theauths object
code
Write any Node.jscodeand use anynpm package. You can alsoexport datafor use in later steps via return or this.key = 'value', pass input data to your code viaparams, and maintain state across executions with$checkpoint.
async (event, steps) => {
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
}
65
const axios = require("axios")
const clientID = "api-client@blufetch";
const clientSecret = "eeBq%JACM!cgKR3%pa7NQ4AVzR%5fG8PVYSaxwF2b4zkqVGpmVDQmVftue$ZksWs";
const loginUrl = "https://login-api.idicore.com/apiclient";
const testUrl = "https://webhook.site/ecdc6aed-6277-454f-bd87-05a19473ada9";
const searchUrl = "https://api.idicore.com/search";
const glbaVal = "otheruse";
const dppaVal = "none";

const firstName = steps.trigger.event.body.first_name;
const lastName = steps.trigger.event.body.last_name;
const user = "franklin";
const pass = "IKEpwv737AOuFCOEo7b8";
const host = "34.225.225.247";
const port = "6789";
let httpsProxyAgent = require('https-proxy-agent')
const agent = new httpsProxyAgent(`http://${user}:${pass}@${host}:${port}`)
const authToken = steps.GetAuth.data; 
  const authString= "Basic " + Buffer.from(clientID + ":" +clientSecret).toString("base64");

  const searchParams ={"firstName": firstName,
                    "lastName": lastName,
                    "address": steps.trigger.event.body.address1,
                    "nicknamesearch": true,
                    "fields": ["name", "address", "phone", "bankruptcy", "dob", "isDead", "property", "lien", "judgment", "relationshipDetail"] 
}

// Make an HTTP GET request using axios
res = await axios(searchUrl, { 
            method: "post",
            httpsAgent: agent,
            data: JSON.stringify(searchParams),
            headers: {
                "Content-Type": "application/json",
                "Authorization": authToken,
            
            },
        })
         .catch(function (error) {
    if (error.response) {
      // Request made and server responded
      console.log(error.response.data);
      console.log(error.response.status);
      console.log(error.response.headers);
    } else if (error.request) {
      // The request was made but no response was received
      console.log(error.request);
    } else {
      // Something happened in setting up the request that triggered an Error
      console.log('Error', error.message);
    }

  });



// Retrieve just the data from the response
const { data } = res

// export this data for use in a future step
// https://docs.pipedream.com/workflows/steps/#step-exports
this.data = data
steps.
nodejs_13
auth
to use OAuth tokens and API keys in code via theauths object
code
Write any Node.jscodeand use anynpm package. You can alsoexport datafor use in later steps via return or this.key = 'value', pass input data to your code viaparams, and maintain state across executions with$checkpoint.
async (event, steps) => {
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
}
41
const axios = require("axios")
const clientID = "api-client@blufetch";
const clientSecret = "eeBq%JACM!cgKR3%pa7NQ4AVzR%5fG8PVYSaxwF2b4zkqVGpmVDQmVftue$ZksWs";
const loginUrl = "https://login-api.idicore.com/apiclient";
const testUrl = "https://webhook.site/ecdc6aed-6277-454f-bd87-05a19473ada9";
const searchUrl = "https://api.idicore.com/search";
const glbaVal = "otheruse";
const dppaVal = "none";
const user = "franklin";
const pass = "IKEpwv737AOuFCOEo7b8";
const host = "34.225.225.247";
const port = "6789";
let httpsProxyAgent = require('https-proxy-agent')
const agent = new httpsProxyAgent(`http://${user}:${pass}@${host}:${port}`)
let authToken = "";
  

//function to get authorization token
async function getAuthenticationToken(glbaVal, dppaVal){
  const authString= "Basic " + Buffer.from(clientID + ":" +clientSecret).toString("base64");
const resp = await axios({
  method: "post",
  url: loginUrl,
  httpsAgent: agent,
 body: JSON.stringify({
          qlba: glbaVal,
          dppa: dppaVal,
      }),
      headers: {
          "Content-Type": "application/json",
          "Authorization": authString,
      },
      });
    return(resp)
  }



const test = await getAuthenticationToken(glbaVal, dppaVal).then(resp=> {console.log(resp.data)})
steps.
nodejs_12
auth
to use OAuth tokens and API keys in code via theauths object
code
Write any Node.jscodeand use anynpm package. You can alsoexport datafor use in later steps via return or this.key = 'value', pass input data to your code viaparams, and maintain state across executions with$checkpoint.
async (event, steps) => {
1
2
3
}
4
var result = {"result":[{"ssn":[],"name":[{"pidlist":[],"meta":{"sources":[],"firstSeen":20010222,"lastSeen":20210529,"count":114,"rank":0},"data":"NATHAN ANDERSON","first":"NATHAN","last":"ANDERSON"},{"pidlist":[],"meta":{"sources":[],"firstSeen":20210113,"lastSeen":20210113,"count":2,"rank":5},"data":"NATHAN NDERSON","first":"NATHAN","last":"NDERSON"}],"dob":[{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"firstSeen":20010222,"lastSeen":20210529,"count":35},"date":{"data":"XX/XX/XXXX","sortable":0},"age":"38"}],"address":[{"meta":{"sources":[],"firstSeen":20180731,"lastSeen":20210529,"count":16,"rank":0},"data":"4801 PICKETT ST, GREENVILLE, TX 75401-3601","streetNumber":"4801","street":"PICKETT","streetSuffix":"ST","city":"GREENVILLE","state":"TX","zip":"75401","zip4":"3601","dateRange":"07/31/2018-05/29/2021","complete":"4801 PICKETT ST","isCass":"Y","county":"HUNT","rank":0,"latitude":33.137995,"longitude":-96.130179,"ownership":"C","topPoBox":0,"highFrequency":false},{"meta":{"sources":[],"firstSeen":20170523,"lastSeen":20180731,"count":12,"rank":1},"data":"1600 JOE RAMSEY BLVD N APT 117, GREENVILLE, TX 75401-2309","streetNumber":"1600","street":"JOE RAMSEY","streetSuffix":"BLVD","aptName":"APT","aptNum":"117","city":"GREENVILLE","state":"TX","zip":"75401","zip4":"2309","postdir":"N","dateRange":"05/23/2017-07/31/2018","complete":"1600 JOE RAMSEY BLVD N APT 117","isCass":"Y","county":"HUNT","rank":1,"latitude":33.146692,"longitude":-96.137188,"topPoBox":0,"highFrequency":false},{"meta":{"sources":[],"firstSeen":20150901,"lastSeen":20160430,"count":19,"rank":2},"data":"4022 ROBERTS ST, GREENVILLE, TX 75401-5613","streetNumber":"4022","street":"ROBERTS","streetSuffix":"ST","city":"GREENVILLE","state":"TX","zip":"75401","zip4":"5613","dateRange":"09/01/2015-04/30/2016","complete":"4022 ROBERTS ST","isCass":"Y","county":"HUNT","rank":2,"latitude":33.128336,"longitude":-96.110829,"topPoBox":0,"highFrequency":false},{"meta":{"sources":[],"firstSeen":20050810,"lastSeen":20091231,"count":31,"rank":4},"data":"1408 TEASLEY LN APT 3611, DENTON, TX 76205-5261","streetNumber":"1408","street":"TEASLEY","streetSuffix":"LN","aptName":"APT","aptNum":"3611","city":"DENTON","state":"TX","zip":"76205","zip4":"5261","dateRange":"08/10/2005-12/31/2009","complete":"1408 TEASLEY LN APT 3611","isCass":"Y","county":"DENTON","rank":4,"latitude":33.196052,"longitude":-97.12684,"topPoBox":0,"highFrequency":false},{"meta":{"sources":[],"firstSeen":20041225,"lastSeen":20051225,"count":16,"rank":5},"data":"603 EAGLE DR APT 13, DENTON, TX 76201-6748","streetNumber":"603","street":"EAGLE","streetSuffix":"DR","aptName":"APT","aptNum":"13","city":"DENTON","state":"TX","zip":"76201","zip4":"6748","dateRange":"12/25/2004-12/25/2005","complete":"603 EAGLE DR APT 13","isCass":"Y","county":"DENTON","rank":5,"latitude":33.205635,"longitude":-97.139113,"topPoBox":0,"highFrequency":false},{"meta":{"sources":[],"firstSeen":20030117,"lastSeen":20030314,"count":20,"rank":6},"data":"2511 CHARLOTTE ST APT 33, DENTON, TX 76201-5321","streetNumber":"2511","street":"CHARLOTTE","streetSuffix":"ST","aptName":"APT","aptNum":"33","city":"DENTON","state":"TX","zip":"76201","zip4":"5321","dateRange":"01/17/2003-03/14/2003","complete":"2511 CHARLOTTE ST APT 33","isCass":"Y","county":"DENTON","rank":6,"latitude":33.212542,"longitude":-97.160191,"topPoBox":0,"highFrequency":false},{"meta":{"sources":[],"firstSeen":20020512,"lastSeen":20020512,"count":20,"rank":7},"data":"2310 HENRY ST, GREENVILLE, TX 75401-3547","streetNumber":"2310","street":"HENRY","streetSuffix":"ST","city":"GREENVILLE","state":"TX","zip":"75401","zip4":"3547","dateRange":"05/12/2002-05/12/2002","complete":"2310 HENRY ST","isCass":"Y","county":"HUNT","rank":7,"latitude":33.141994,"longitude":-96.104908,"topPoBox":0,"highFrequency":false},{"meta":{"sources":[],"firstSeen":20010222,"lastSeen":20201112,"count":116,"rank":8},"data":"2016 JONES ST, GREENVILLE, TX 75401-4725","streetNumber":"2016","street":"JONES","streetSuffix":"ST","city":"GREENVILLE","state":"TX","zip":"75401","zip4":"4725","dateRange":"02/22/2001-11/12/2020","complete":"2016 JONES ST","isCass":"Y","county":"HUNT","rank":8,"latitude":33.1327,"longitude":-96.102731,"ownership":"C","topPoBox":0,"highFrequency":false}],"phone":[{"meta":{"sources":[],"firstSeen":20141117,"lastSeen":20210326,"count":4,"rank":0,"score":100},"type":"Mobile","number":"817-403-6349","business":false,"highFrequency":false,"fake":false,"disconnected":false,"providerName":"VERIZON WIRELESS-TX"},{"meta":{"sources":[],"firstSeen":20080426,"lastSeen":20190427,"count":88,"rank":3,"score":100},"type":"Residential","number":"903-455-8869","business":false,"highFrequency":false,"fake":false,"disconnected":false,"providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20130911,"lastSeen":20130911,"count":2,"rank":4,"score":85},"type":"Mobile","number":"903-413-8502","business":false,"highFrequency":false,"fake":false,"disconnected":false,"providerName":"NEW CINGULAR WRLS IL"},{"meta":{"sources":[],"firstSeen":20070822,"lastSeen":20070919,"count":1,"rank":6,"score":72},"type":"Mobile","number":"940-595-2865","business":false,"highFrequency":false,"fake":false,"disconnected":true,"providerName":"T-MOBILE USA INC."}],"bankruptcy":[],"death":[],"employment":[],"property":[{"owner":[{"personName":[{"pidlist":["562950190640177","281475172474523"],"meta":{"sources":[]},"first":"NATHAN","last":"ANDERSON"},{"pidlist":["562950190640177","281475172474523"],"meta":{"sources":[]},"first":"GABRIAL","last":"ANDERSON"}],"businessName":[],"pidlist":["562950190640177","281475172474523"],"people":[{"pidlist":["562950190640177"],"name":{"pidlist":[],"meta":{"sources":[]},"first":"NATHAN","last":"ANDERSON"}},{"pidlist":["281475172474523"],"name":{"pidlist":[],"meta":{"sources":[]},"first":"GABRIAL","last":"ANDERSON"}}],"businesses":[],"name":"ANDERSON,NATHAN & GABRIAL"}],"history":[{"buyer":[{"personName":[{"pidlist":["562950190640177","281475172474523"],"meta":{"sources":[]},"first":"NATHAN","last":"ANDERSON"},{"pidlist":["562950190640177","281475172474523"],"meta":{"sources":[]},"first":"GABRIAL","last":"ANDERSON"}],"businessName":[],"pidlist":["562950190640177","281475172474523"],"people":[{"pidlist":["562950190640177"],"name":{"pidlist":[],"meta":{"sources":[]},"first":"NATHAN","last":"ANDERSON"}},{"pidlist":["281475172474523"],"name":{"pidlist":[],"meta":{"sources":[]},"first":"GABRIAL","last":"ANDERSON"}}],"businesses":[],"name":"ANDERSON,NATHAN & GABRIAL"}],"seller":[{"personName":[{"pidlist":[],"meta":{"sources":[]},"first":"OSCAR","last":"GARCIA"}],"businessName":[],"pidlist":[],"people":[{"pidlist":[],"name":{"pidlist":[],"meta":{"sources":[]},"first":"OSCAR","last":"GARCIA"}}],"businesses":[],"name":"GARCIA,OSCAR"}],"loan":[{"docNumber":"0000011782","loanValue":151098,"loanType":"FEDERAL HOUSING AUTHORITY (FHA)","lenderFirstName":"CARDINAL FIN'L","lenderType":"FUNDING/FINANCE COMPANY"}],"detail":{"receiptDate":{"data":"08/02/2018","sortable":20180802},"transferDate":{"data":"07/31/2018","sortable":20180731},"transferType":"RESALE","deedType":"GRANT DEED","quitclaimFlag":"No","armsLengthFlag":"Yes","docNumber":"11781","docNumberFormat":"0000011781"},"isCurrentOwner":true},{"buyer":[{"personName":[],"businessName":[],"pidlist":[],"people":[],"businesses":[],"name":"ESTEX INVESTMENT"}],"seller":[{"personName":[],"businessName":[],"pidlist":[],"people":[],"businesses":[],"name":"HOUSE OF PRAYER"}],"loan":[],"detail":{"receiptDate":{"data":"03/12/2018","sortable":20180312},"transferDate":{"data":"03/08/2018","sortable":20180308},"transferType":"RESALE","deedType":"WARRANTY DEED","quitclaimFlag":"No","armsLengthFlag":"No","docNumber":"3300","docNumberFormat":"0000003300"},"isCurrentOwner":false},{"buyer":[{"personName":[],"businessName":[],"pidlist":[],"people":[],"businesses":[],"name":"HOUSE OF PRAYER"}],"seller":[],"loan":[],"detail":{"receiptDate":{"data":"06/25/2004","sortable":20040625},"transferDate":{"data":"","sortable":0},"transferType":"RESALE","deedType":"GRANT DEED","quitclaimFlag":"No","armsLengthFlag":"","docNumber":"1180-0519","docNumberFormat":"0011800519"},"isCurrentOwner":false}],"foreclosure":[],"meta":{"sources":[],"count":1},"eid":"14918174000418684","detail":{"state":"TX","county":"HUNT","parcelNumber":"42130","propertyDescription":"S2535 COLLEGE HILL ADDITION (GREENVILLE) BLK 39 LOT 1 ACRES .1607","useCode":"SINGLE FAMILY RESIDENCE","ownershipStatus":"HUSBAND AND WIFE","lotSqft":7000,"buildingSqft":2002,"yearBuilt":"2018","bedrooms":0,"bathrooms":0,"subdivision":"COLLEGE HILL ADD","municipality":"HUNT","municipalityCode":"231"},"exemption":0,"assessment":{"taxYear":"2019","assessedValue":168840,"marketValue":168840,"landValue":10920,"improvementValue":157920,"totalTax":4302,"date":{"data":"11/12/2020","sortable":20201112},"assessorYear":"2020"},"address":{"meta":{"sources":[],"firstSeen":0,"lastSeen":0},"data":"4801 PICKETT ST, GREENVILLE, TX 75401-3601","streetNumber":"4801","street":"PICKETT","streetSuffix":"ST","city":"GREENVILLE","state":"TX","zip":"75401","zip4":"3601","dateRange":"0000-0000","complete":"4801 PICKETT ST","county":"HUNT"},"mailingAddress":{"meta":{"sources":[],"firstSeen":0,"lastSeen":0},"data":"4801 PICKETT ST, GREENVILLE, TX 75401-3601","streetNumber":"4801","street":"PICKETT","streetSuffix":"ST","city":"GREENVILLE","state":"TX","zip":"75401","zip4":"3601","dateRange":"0000-0000","complete":"4801 PICKETT ST"}},{"owner":[{"personName":[{"pidlist":["562950190640177"],"meta":{"sources":[]},"first":"NATHAN","last":"ANDERSON"}],"businessName":[],"pidlist":["562950190640177"],"people":[{"pidlist":["562950190640177"],"name":{"pidlist":[],"meta":{"sources":[]},"first":"NATHAN","last":"ANDERSON"}}],"businesses":[],"name":"ANDERSON,NATHAN"}],"history":[{"buyer":[{"personName":[{"pidlist":["562950190640177"],"meta":{"sources":[]},"first":"NATHAN","last":"ANDERSON"}],"businessName":[],"pidlist":["562950190640177"],"people":[{"pidlist":["562950190640177"],"name":{"pidlist":[],"meta":{"sources":[]},"first":"NATHAN","last":"ANDERSON"}}],"businesses":[],"name":"ANDERSON,NATHAN"}],"seller":[{"personName":[{"pidlist":["281475211005741","281475211005740"],"meta":{"sources":[]},"first":"B","last":"LANGFORD","middle":"J"},{"pidlist":["281475211005741","281475211005740"],"meta":{"sources":[]},"first":"BARBARA","last":"LANGFORD"}],"businessName":[],"pidlist":["281475211005741","281475211005740"],"people":[{"pidlist":["281475211005741"],"name":{"pidlist":[],"meta":{"sources":[]},"first":"B","last":"LANGFORD","middle":"J"}},{"pidlist":["281475211005740"],"name":{"pidlist":[],"meta":{"sources":[]},"first":"BARBARA","last":"LANGFORD"}}],"businesses":[],"name":"LANGFORD,B J & BARBARA"}],"loan":[],"detail":{"receiptDate":{"data":"05/25/2016","sortable":20160525},"transferDate":{"data":"05/25/2016","sortable":20160525},"transferType":"RESALE","deedType":"WARRANTY DEED","quitclaimFlag":"No","armsLengthFlag":"No","docNumber":"6623","docNumberFormat":"0000006623"},"isCurrentOwner":true},{"buyer":[{"personName":[{"pidlist":["281475211005741"],"meta":{"sources":[]},"first":"B","last":"LANGFORD","middle":"J"}],"businessName":[],"pidlist":["281475211005741"],"people":[{"pidlist":["281475211005741"],"name":{"pidlist":[],"meta":{"sources":[]},"first":"B","last":"LANGFORD","middle":"J"}}],"businesses":[],"name":"LANGFORD,B J & BARBARA"}],"seller":[{"personName":[{"pidlist":["281475207060240"],"meta":{"sources":[]},"first":"MIKE","last":"GOMEZ"}],"businessName":[],"pidlist":["281475207060240"],"people":[{"pidlist":["281475207060240"],"name":{"pidlist":[],"meta":{"sources":[]},"first":"MIKE","last":"GOMEZ"}}],"businesses":[],"name":"GOMEZ,MIKE"}],"loan":[],"detail":{"receiptDate":{"data":"03/09/2012","sortable":20120309},"transferDate":{"data":"12/20/2011","sortable":20111220},"transferType":"RESALE","deedType":"QUITCLAIM","quitclaimFlag":"Yes","armsLengthFlag":"No","docNumber":"2869","docNumberFormat":"0000002869"},"isCurrentOwner":false},{"buyer":[{"personName":[{"pidlist":["281475207060240"],"meta":{"sources":[]},"first":"MIKE","last":"GOMEZ"}],"businessName":[],"pidlist":["281475207060240"],"people":[{"pidlist":["281475207060240"],"name":{"pidlist":[],"meta":{"sources":[]},"first":"MIKE","last":"GOMEZ"}}],"businesses":[],"name":"GOMEZ,MIKE"}],"seller":[],"loan":[],"detail":{"receiptDate":{"data":"04/30/2003","sortable":20030430},"transferDate":{"data":"","sortable":0},"transferType":"RESALE","deedType":"GRANT DEED","quitclaimFlag":"No","armsLengthFlag":"No","docNumber":"1005-0482","docNumberFormat":"0010050482"},"isCurrentOwner":false}],"foreclosure":[],"meta":{"sources":[],"count":1},"eid":"14918174216787736","detail":{"state":"TX","county":"HUNT","parcelNumber":"71230","propertyDescription":"S4385 ORIG TOWN OF GREENVILLE BLK 134 LOT 4-5 ACRES .2702","useCode":"MISCELLANEOUS RESIDENTIAL","lotSqft":11770,"buildingSqft":0,"bedrooms":0,"bathrooms":0,"subdivision":"ORIG TOWN OF GREENVILLE","municipality":"HUNT","municipalityCode":"231"},"assessment":{"taxYear":"2019","assessedValue":17190,"marketValue":17190,"landValue":17190,"improvementValue":0,"totalTax":224,"date":{"data":"11/12/2020","sortable":20201112},"assessorYear":"2020"},"address":{"meta":{"sources":[],"firstSeen":0,"lastSeen":0},"data":"2020 JONES ST, GREENVILLE, TX 75401-4725","streetNumber":"2020","street":"JONES","streetSuffix":"ST","city":"GREENVILLE","state":"TX","zip":"75401","zip4":"4725","dateRange":"0000-0000","complete":"2020 JONES ST","county":"HUNT"},"mailingAddress":{"meta":{"sources":[],"firstSeen":0,"lastSeen":0},"data":"2016 JONES ST, GREENVILLE, TX 75401-4725","streetNumber":"2016","street":"JONES","streetSuffix":"ST","city":"GREENVILLE","state":"TX","zip":"75401","zip4":"4725","dateRange":"0000-0000","complete":"2016 JONES ST"}}],"relationship":[],"email":[],"ip":[],"criminal":[],"motorVehicle":[],"judgment":[],"lien":[],"aircraft":[],"social":[],"relatives":[],"associates":[],"addressCities":[],"addressCounties":[],"foreclosure":[],"business":[],"relationshipDetail":[{"phone":[{"meta":{"sources":[],"firstSeen":20201008,"lastSeen":20201008,"count":1,"score":0},"type":"Residential","number":"5802232562","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20210109,"lastSeen":20210109,"count":3,"score":100},"type":"Mobile","number":"9035138300","providerName":"VERIZON WIRELESS-TX"},{"meta":{"sources":[],"firstSeen":20210226,"lastSeen":20210226,"count":3,"score":100},"type":"Mobile","number":"9034222646","providerName":"T-MOBILE USA INC."}],"email":[{"meta":{"sources":[],"firstSeen":20210109,"lastSeen":20210109,"count":1},"data":"GABBY754@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20120715,"lastSeen":20170403,"count":1},"data":"GABBYCHATMAN@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20160303,"lastSeen":20210226,"count":1},"data":"GABRIALCHATMAN@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20071209,"lastSeen":20201008,"count":1},"data":"SEXYOK25@YAHOO.COM"}],"type":"R","ssn":{"linkedPid":[],"meta":{"sources":[],"count":101},"data":"XXXXXXXXX"},"dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":59},"date":{"data":"XX/XX/XXXX","sortable":0},"age":"41"},"address":{"meta":{"sources":[],"count":47},"city":"GREENVILLE","state":"TX","zip":"75401","complete":"4801 PICKETT ST"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":20180731,"lastSeen":20210529,"count":94},"first":"GABRIAL","last":"CHATMAN","pid":"281475172474523"}},{"phone":[{"meta":{"sources":[],"firstSeen":19971201,"lastSeen":19971201,"count":67,"score":82},"type":"Residential","number":"5802230462","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20070215,"lastSeen":20070215,"count":1,"score":72},"type":"Residential","number":"5802232562","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20070919,"lastSeen":20070919,"count":2,"score":100},"type":"Mobile","number":"5802779280","providerName":"SPRINT SPECTRUM L.P."},{"meta":{"sources":[],"firstSeen":20110105,"lastSeen":20110105,"count":70,"score":100},"type":"Residential","number":"5802263566","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20120415,"lastSeen":20120415,"count":67,"score":82},"type":"Residential","number":"5803197671","providerName":"LEVEL 3 COMM - OK"},{"meta":{"sources":[],"firstSeen":20201101,"lastSeen":20201101,"count":2,"score":85},"type":"Mobile","number":"5802208580","providerName":"NEW CINGULAR WRLS IL"},{"meta":{"sources":[],"firstSeen":20210516,"lastSeen":20210516,"count":6,"score":100},"type":"Mobile","number":"5803400376","providerName":"T-MOBILE USA INC."}],"email":[{"meta":{"sources":[],"firstSeen":20100314,"lastSeen":20210516,"count":2},"data":"SUNNYSIDEOFHAVEN@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20111122,"lastSeen":20111122,"count":1},"data":"TEST1294869974013101884@TEST.COM"},{"meta":{"sources":[],"firstSeen":20110401,"lastSeen":20110926,"count":1},"data":"TEST1295029277468375527@TEST.COM"}],"type":"R","ssn":{"linkedPid":[],"meta":{"sources":[],"count":109},"data":"XXXXXXXXX"},"dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":18},"age":"47"},"address":{"meta":{"sources":[],"count":43},"city":"ARDMORE","state":"OK","zip":"73401","complete":"406 PINE ST"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":0,"lastSeen":0,"count":74},"first":"LAWANNA","last":"KNIGHT","pid":"281475172474578"}},{"phone":[{"meta":{"sources":[],"firstSeen":20110509,"lastSeen":20110509,"count":1,"score":0},"type":"Residential","number":"4055245525","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20181226,"lastSeen":20181226,"count":1,"score":0},"type":"Residential","number":"5802232562","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20210218,"lastSeen":20210218,"count":2,"score":100},"type":"Residential","number":"4055632138","providerName":"YMAX COMMS CORP. OK"},{"meta":{"sources":[],"firstSeen":20210504,"lastSeen":20210504,"count":4,"score":100},"type":"Mobile","number":"4052056314","providerName":"VERIZON WIRELESS-OK"}],"email":[{"meta":{"sources":[],"firstSeen":20100616,"lastSeen":20120411,"count":1},"data":"BNESALL@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20120715,"lastSeen":20170403,"count":1},"data":"GABBYCHATMAN@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20201020,"lastSeen":20201103,"count":1},"data":"OMAR@CHATMANCR.COM"},{"meta":{"sources":[],"firstSeen":0,"lastSeen":0,"count":1},"data":"RTC79@MAILCITY.COM"},{"meta":{"sources":[],"firstSeen":0,"lastSeen":0,"count":1},"data":"RTC@MAILCITY.COM"},{"meta":{"sources":[],"firstSeen":20071209,"lastSeen":20181226,"count":1},"data":"SEXYOK25@YAHOO.COM"}],"type":"R","ssn":{"linkedPid":[],"meta":{"sources":[],"count":106},"data":"XXXXXXXXX"},"dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":61},"date":{"data":"XX/XX/XXXX","sortable":0},"age":"42"},"address":{"meta":{"sources":[],"count":17},"city":"OKLAHOMA CITY","state":"OK","zip":"73119","complete":"5617 S MAY AVE APT B"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":0,"lastSeen":0,"count":110},"first":"RAFIN","last":"CHATMAN","pid":"281475172474614"}},{"phone":[{"meta":{"sources":[],"firstSeen":20091115,"lastSeen":20091115,"count":1,"score":72},"type":"Residential","number":"2147414679","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20110101,"lastSeen":20110101,"count":1,"score":72},"type":"Residential","number":"5853282821","providerName":"FRONTIER ROCHESTER"},{"meta":{"sources":[],"firstSeen":20140212,"lastSeen":20140212,"count":1,"score":72},"type":"Residential","number":"5852354333","providerName":"FRONTIER ROCHESTER"},{"meta":{"sources":[],"firstSeen":20170228,"lastSeen":20170228,"count":1,"score":0},"type":"Mobile","number":"9403123557","providerName":"NEW CINGULAR WRLS IL"},{"meta":{"sources":[],"firstSeen":20210503,"lastSeen":20210503,"count":2,"score":65},"type":"Mobile","number":"9405978911","providerName":"SPRINT SPECTRUM L.P."}],"email":[{"meta":{"sources":[],"firstSeen":20090227,"lastSeen":20170228,"count":1},"data":"CHATMANSABRINA@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20171019,"lastSeen":20171019,"count":1},"data":"HREICHART@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20101205,"lastSeen":20210503,"count":2},"data":"SCHATMAN@BELLSOUTH.NET"},{"meta":{"sources":[],"firstSeen":0,"lastSeen":0,"count":1},"data":"SHADEBLACK13@HOTMAIL.COM"}],"type":"R","ssn":{"linkedPid":[],"meta":{"sources":[],"count":107},"data":"XXXXXXXXX"},"dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":37},"date":{"data":"XX/XX/XXXX","sortable":0},"age":"45"},"address":{"meta":{"sources":[],"count":28},"city":"DENTON","state":"TX","zip":"76209","complete":"1007 BULL RUN"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":0,"lastSeen":0,"count":90},"first":"SABRINA","last":"CHATMAN","pid":"281475172474642"}},{"phone":[{"meta":{"sources":[],"firstSeen":20050816,"lastSeen":20050816,"count":1,"score":72},"type":"Residential","number":"5806576319","providerName":"CHICKASAW TEL CO"}],"email":[],"type":"R","ssn":{"linkedPid":[],"meta":{"sources":[],"count":107},"data":"XXXXXXXXX"},"dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":26},"date":{"data":"XX/XX/XXXX","sortable":0},"age":"66"},"address":{"meta":{"sources":[],"count":20},"city":"ARDMORE","state":"OK","zip":"73403","complete":"PO BOX 5093"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":0,"lastSeen":0,"count":67},"first":"HARRIET","last":"CHATMAN","pid":"281475173510558"}},{"phone":[{"meta":{"sources":[],"firstSeen":20120107,"lastSeen":20120107,"count":1,"score":0},"type":"Mobile","number":"5803191013","providerName":"NEW CINGULAR WRLS IL"},{"meta":{"sources":[],"firstSeen":20151016,"lastSeen":20151016,"count":3,"score":100},"type":"Mobile","number":"5802221094","providerName":"NEW CINGULAR WRLS IL"},{"meta":{"sources":[],"firstSeen":20170216,"lastSeen":20170216,"count":3,"score":100},"type":"Mobile","number":"9402842667","providerName":"NEW CINGULAR WRLS IL"},{"meta":{"sources":[],"firstSeen":20190226,"lastSeen":20190226,"count":2,"score":85},"type":"Mobile","number":"9407366596","providerName":"NEW CINGULAR WRLS IL"},{"meta":{"sources":[],"firstSeen":20190328,"lastSeen":20190328,"count":58,"score":200},"type":"Residential","number":"9405807172","providerName":"AT&T CORP."},{"meta":{"sources":[],"firstSeen":20210205,"lastSeen":20210205,"count":2,"score":85},"type":"Mobile","number":"9407361985","providerName":"NEW CINGULAR WRLS IL"},{"meta":{"sources":[],"firstSeen":20210601,"lastSeen":20210601,"count":4,"score":100},"type":"Residential","number":"9405807004","providerName":"AT&T CORP."}],"email":[{"meta":{"sources":[],"firstSeen":20131208,"lastSeen":20170418,"count":2},"data":"AMANDA.CHATMAN@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20141105,"lastSeen":20141117,"count":1},"data":"AMANDA.CHATMAN@YMAIL.COM"},{"meta":{"sources":[],"firstSeen":20150217,"lastSeen":20150312,"count":2},"data":"AMANDACHATMAN380@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20180111,"lastSeen":20210205,"count":2},"data":"AMANDACHATMAN4@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20120107,"lastSeen":20140509,"count":2},"data":"CHATMANAMANDA@YMAIL.COM"},{"meta":{"sources":[],"firstSeen":0,"lastSeen":0,"count":1},"data":"MNDMCCARROLL@YAHOO.COM"}],"type":"R","ssn":{"linkedPid":[],"meta":{"sources":[],"count":101},"data":"XXXXXXXXX"},"dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":19},"date":{"data":"XX/XX/XXXX","sortable":0},"age":"42"},"address":{"meta":{"sources":[],"count":62},"city":"GAINESVILLE","state":"TX","zip":"76240","complete":"1306 THROCKMORTON ST"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":0,"lastSeen":0,"count":78},"first":"AMANDA","last":"CHATMAN","pid":"281475173876606"}},{"phone":[{"meta":{"sources":[],"firstSeen":20091101,"lastSeen":20091101,"count":66,"score":60},"type":"Residential","number":"2143752091","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20091115,"lastSeen":20091115,"count":67,"score":82},"type":"Residential","number":"2143755090","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20130324,"lastSeen":20130324,"count":2,"score":85},"type":"Mobile","number":"2144762855","providerName":"SPRINT SPECTRUM L.P."},{"meta":{"sources":[],"firstSeen":20130402,"lastSeen":20130402,"count":2,"score":85},"type":"Mobile","number":"4693590805","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20130404,"lastSeen":20130404,"count":2,"score":85},"type":"Mobile","number":"2147308890","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20130408,"lastSeen":20130408,"count":2,"score":85},"type":"Mobile","number":"2149002180","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20130422,"lastSeen":20130422,"count":2,"score":85},"type":"Mobile","number":"2142902113","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20130531,"lastSeen":20130531,"count":2,"score":85},"type":"Mobile","number":"2145418230","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20130811,"lastSeen":20130811,"count":1,"score":85},"type":"Mobile","number":"2144698681","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20150304,"lastSeen":20150304,"count":2,"score":85},"type":"Mobile","number":"2149948679","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20160201,"lastSeen":20160201,"count":1,"score":60},"type":"Residential","number":"2149486477","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20170525,"lastSeen":20170525,"count":2,"score":85},"type":"Mobile","number":"2149944924","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20181025,"lastSeen":20181025,"count":2,"score":85},"type":"Mobile","number":"2149946614","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20190611,"lastSeen":20190611,"count":13,"score":65},"type":"Residential","number":"2149431863","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20191110,"lastSeen":20191110,"count":2,"score":85},"type":"Mobile","number":"2146465941","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20200221,"lastSeen":20200221,"count":2,"score":85},"type":"Mobile","number":"2145849102","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20201009,"lastSeen":20201009,"count":5,"score":100},"type":"Mobile","number":"2147600361","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20201218,"lastSeen":20201218,"count":2,"score":85},"type":"Mobile","number":"2142511560","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20201218,"lastSeen":20201218,"count":2,"score":85},"type":"Residential","number":"2149975289","providerName":"ONVOY LLC - TX"}],"email":[{"meta":{"sources":[],"firstSeen":20180507,"lastSeen":20180507,"count":1},"data":"ANDERSON.CHRISTOPHER.CA@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20121212,"lastSeen":20121212,"count":1},"data":"ANDERSON.RICKEY20@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":0,"lastSeen":0,"count":1},"data":"ANDERSON7382@AOL.COM"},{"meta":{"sources":[],"firstSeen":20191014,"lastSeen":20201218,"count":1},"data":"BUCKCHRISTOPHER37@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20181025,"lastSeen":20181025,"count":1},"data":"CBA36.CA@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20150304,"lastSeen":20170525,"count":2},"data":"CHRISTOPHERANDERSON2527.CA@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20130227,"lastSeen":20201009,"count":3},"data":"CHRISTOPHERANDERSON605.CA@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20130811,"lastSeen":20130811,"count":1},"data":"CHRISTOPHERANDERSON605.CA@GMAIL.COMM"},{"meta":{"sources":[],"firstSeen":20170110,"lastSeen":20170110,"count":1},"data":"CRISTI_HAWKEY2@HOTMAIL.COM"}],"type":"R","dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":34},"date":{"data":"XX/XX/XXXX","sortable":0},"age":"39"},"address":{"meta":{"sources":[],"count":9},"city":"DALLAS","state":"TX","zip":"75219","complete":"2615 THE MALL"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":0,"lastSeen":0,"count":81},"first":"CHRISTOPHER","last":"ANDERSON","pid":"281475201593223"}},{"phone":[{"meta":{"sources":[],"firstSeen":20081101,"lastSeen":20081101,"count":67,"score":82},"type":"Residential","number":"9034543870","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20170912,"lastSeen":20170912,"count":1,"score":0},"type":"Mobile","number":"9036915639","providerName":"SPRINT SPECTRUM L.P."},{"meta":{"sources":[],"firstSeen":20191026,"lastSeen":20191026,"count":87,"score":200},"type":"Residential","number":"9034558869","providerName":"SOUTHWESTERN BELL"}],"email":[{"meta":{"sources":[],"firstSeen":20140311,"lastSeen":20140311,"count":1},"data":"COLINEANDERSON@AOL.COM"},{"meta":{"sources":[],"firstSeen":20160222,"lastSeen":20160222,"count":1},"data":"MOB.ENT903@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20160329,"lastSeen":20160329,"count":1},"data":"NANDERSON775@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20170912,"lastSeen":20170912,"count":1},"data":"NATEAND6349@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20151007,"lastSeen":20151007,"count":1},"data":"RANDYANDERSON904@GMAIL.COM"}],"type":"R","ssn":{"linkedPid":[],"meta":{"sources":[],"count":116},"data":"XXXXXXXXX"},"dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":67},"date":{"data":"XX/XX/XXXX","sortable":0},"age":"63"},"address":{"meta":{"sources":[],"count":121},"city":"GREENVILLE","state":"TX","zip":"75401","complete":"2016 JONES ST"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":20020512,"lastSeen":19980518,"count":126},"first":"COLINE","last":"ANDERSON","pid":"281475201593417"}},{"phone":[{"meta":{"sources":[],"firstSeen":20031201,"lastSeen":20031201,"count":68,"score":100},"type":"Residential","number":"9034508426","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20041101,"lastSeen":20041101,"count":66,"score":60},"type":"Residential","number":"9034558869","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20161231,"lastSeen":20161231,"count":57,"score":82},"type":"Mobile","number":"4693215744","providerName":"T-MOBILE USA INC."},{"meta":{"sources":[],"firstSeen":20200926,"lastSeen":20200926,"count":4,"score":100},"type":"Mobile","number":"2143150700","providerName":"T-MOBILE USA INC."}],"email":[{"meta":{"sources":[],"firstSeen":20170729,"lastSeen":20170729,"count":1},"data":"PDAMDERSON0700@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20200417,"lastSeen":20200417,"count":1},"data":"PDANDERSON0700@GMAIL.COM"}],"type":"R","ssn":{"linkedPid":[],"meta":{"sources":[],"count":117},"data":"XXXXXXXXX"},"dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":66},"date":{"data":"XX/XX/XXXX","sortable":0},"age":"68"},"address":{"meta":{"sources":[],"count":87},"city":"DALLAS","state":"TX","zip":"75228","complete":"2900 DILIDO RD APT 212"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":20011225,"lastSeen":20141216,"count":84},"first":"P","last":"ANDERSON","pid":"281475201622192"}},{"phone":[{"meta":{"sources":[],"firstSeen":19990101,"lastSeen":19990101,"count":66,"score":60},"type":"Residential","number":"9032596183","providerName":"TIME WARNER CABLE TX"},{"meta":{"sources":[],"firstSeen":20010101,"lastSeen":20010101,"count":67,"score":82},"type":"Residential","number":"2142219918","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20100806,"lastSeen":20100806,"count":3,"score":80},"type":"Mobile","number":"4692888811","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20130923,"lastSeen":20130923,"count":2,"score":85},"type":"Residential","number":"2142966761","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20150223,"lastSeen":20150223,"count":6,"score":100},"type":"Residential","number":"9722792922","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20160401,"lastSeen":20160401,"count":26,"score":60},"type":"Residential","number":"4699414993","providerName":"TIME WARNER CABLE TX"},{"meta":{"sources":[],"firstSeen":20170510,"lastSeen":20170510,"count":2,"score":85},"type":"Mobile","number":"5046576565","providerName":"SPRINT SPECTRUM L.P."},{"meta":{"sources":[],"firstSeen":20170605,"lastSeen":20170605,"count":3,"score":100},"type":"Mobile","number":"2147724729","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20180107,"lastSeen":20180107,"count":2,"score":85},"type":"Residential","number":"4696087525","providerName":"ONVOY LLC - TX"},{"meta":{"sources":[],"firstSeen":20201220,"lastSeen":20201220,"count":4,"score":100},"type":"Mobile","number":"4696853035","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20210526,"lastSeen":20210526,"count":4,"score":100},"type":"Mobile","number":"6824072139","providerName":"T-MOBILE USA INC."}],"email":[{"meta":{"sources":[],"firstSeen":20120516,"lastSeen":20170228,"count":1},"data":"BOSS1673@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20140706,"lastSeen":20180928,"count":2},"data":"PRYNCE_OF_DALLAS@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20100708,"lastSeen":20150428,"count":1},"data":"TIM.ANDERSON@LAYEREDTECH.COM"},{"meta":{"sources":[],"firstSeen":20161228,"lastSeen":20210526,"count":2},"data":"TIM73AND@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20071021,"lastSeen":20071021,"count":1},"data":"TIMANDERSON16@ATT.NET"},{"meta":{"sources":[],"firstSeen":20111004,"lastSeen":20170216,"count":1},"data":"TIMANDERSON16@CS.COM"},{"meta":{"sources":[],"firstSeen":20071028,"lastSeen":20140211,"count":1},"data":"TIMANDERSON16@HOTMAIL.COM"},{"meta":{"sources":[],"firstSeen":20070518,"lastSeen":20070518,"count":1},"data":"TIMANDERSON4@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20070915,"lastSeen":20070915,"count":1},"data":"TIMANDERSON616@QWEST.NET"},{"meta":{"sources":[],"firstSeen":20040514,"lastSeen":20200524,"count":3},"data":"TIMANDERSON616@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20080313,"lastSeen":20080313,"count":1},"data":"TIMANDERSON@ATT.NET"},{"meta":{"sources":[],"firstSeen":20080318,"lastSeen":20080318,"count":1},"data":"TIMANDERSON@QWEST.NET"},{"meta":{"sources":[],"firstSeen":20110904,"lastSeen":20150225,"count":1},"data":"TIMANDERSON@WEBTV.COM"},{"meta":{"sources":[],"firstSeen":0,"lastSeen":0,"count":1},"data":"TIMOTHY.ANDERSON@BERGENBRUNSWIG.COM"}],"type":"R","ssn":{"linkedPid":[],"meta":{"sources":[],"count":110},"data":"XXXXXXXXX"},"dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":42},"date":{"data":"XX/XX/XXXX","sortable":0},"age":"48"},"address":{"meta":{"sources":[],"count":12},"city":"TALLAHASSEE","state":"FL","zip":"32303","complete":"2164 SHADY OAKS DR"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":0,"lastSeen":0,"count":96},"first":"TIMOTHY","last":"ANDERSON","pid":"281475201630508"}},{"phone":[{"meta":{"sources":[],"firstSeen":20090530,"lastSeen":20090530,"count":7,"score":100},"type":"Residential","number":"9034541196","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20161029,"lastSeen":20161029,"count":72,"score":100},"type":"Residential","number":"9032596153","providerName":"TIME WARNER CABLE TX"},{"meta":{"sources":[],"firstSeen":20210529,"lastSeen":20210529,"count":82,"score":200},"type":"Residential","number":"9034550582","providerName":"SOUTHWESTERN BELL"}],"email":[],"type":"A","ssn":{"linkedPid":[],"meta":{"sources":[],"count":118},"data":"XXXXXXXXX"},"dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":36},"age":"84"},"address":{"meta":{"sources":[],"count":129},"city":"GREENVILLE","state":"TX","zip":"75401","complete":"2310 HENRY ST"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":0,"lastSeen":0,"count":66},"first":"CORLINE","last":"GRIGGS","pid":"281475208098160"}},{"phone":[{"meta":{"sources":[],"firstSeen":20110415,"lastSeen":20110415,"count":68,"score":100},"type":"Residential","number":"9034543870","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20120515,"lastSeen":20120515,"count":2,"score":82},"type":"Residential","number":"9034542714","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20130910,"lastSeen":20130910,"count":68,"score":100},"type":"Residential","number":"9034558291","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20150708,"lastSeen":20150708,"count":3,"score":100},"type":"Residential","number":"9034551857","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20160701,"lastSeen":20160701,"count":62,"score":60},"type":"Mobile","number":"9036919598","providerName":"SPRINT SPECTRUM L.P."},{"meta":{"sources":[],"firstSeen":20161126,"lastSeen":20161126,"count":1,"score":85},"type":"Residential","number":"9034506492","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20180402,"lastSeen":20180402,"count":61,"score":100},"type":"Residential","number":"9032596153","providerName":"TIME WARNER CABLE TX"},{"meta":{"sources":[],"firstSeen":20190924,"lastSeen":20190924,"count":4,"score":100},"type":"Mobile","number":"9034502318","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20200101,"lastSeen":20200101,"count":61,"score":100},"type":"Residential","number":"9034550582","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20200428,"lastSeen":20200428,"count":52,"score":200},"type":"Residential","number":"9034945082","providerName":"TIME WARNER CABLE TX"},{"meta":{"sources":[],"firstSeen":20210211,"lastSeen":20210211,"count":6,"score":100},"type":"Mobile","number":"9034616492","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20210215,"lastSeen":20210215,"count":1,"score":72},"type":"Mobile","number":"9034585094","providerName":"METRO PCS INC"}],"email":[{"meta":{"sources":[],"firstSeen":20140829,"lastSeen":20190924,"count":2},"data":"LASHAWNGRIGGS@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20140906,"lastSeen":20180324,"count":3},"data":"NATE76201@AOL.COM"},{"meta":{"sources":[],"firstSeen":20130910,"lastSeen":20131118,"count":2},"data":"RHONDA.GRIGGS1@AOL.COM"},{"meta":{"sources":[],"firstSeen":20130910,"lastSeen":20130910,"count":1},"data":"RHONDA.GRIGGS@AOL.COM"},{"meta":{"sources":[],"firstSeen":20090119,"lastSeen":20111010,"count":1},"data":"RHONDAGRIGGS@ATT.NET"},{"meta":{"sources":[],"firstSeen":20130910,"lastSeen":20130910,"count":1},"data":"RHOONDA.GRIGGS1@AOL.COM"}],"type":"A","ssn":{"linkedPid":[],"meta":{"sources":[],"count":107},"data":"XXXXXXXXX"},"dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":36},"date":{"data":"XX/XX/XXXX","sortable":0},"age":"45"},"address":{"meta":{"sources":[],"count":103},"city":"GREENVILLE","state":"TX","zip":"75402","complete":"2509 RIDGECREST RD"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":0,"lastSeen":0,"count":118},"first":"RHONDA","last":"GRIGGS","pid":"281475208099605"}},{"phone":[{"meta":{"sources":[],"firstSeen":20050823,"lastSeen":20050823,"count":1,"score":72},"type":"Residential","number":"9034535748","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20051106,"lastSeen":20051106,"count":1,"score":72},"type":"Residential","number":"9034535746","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20090715,"lastSeen":20090715,"count":68,"score":100},"type":"Residential","number":"9034541629","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20090801,"lastSeen":20090801,"count":69,"score":100},"type":"Residential","number":"9724546593","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20120609,"lastSeen":20120609,"count":69,"score":100},"type":"Residential","number":"9034546593","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20210317,"lastSeen":20210317,"count":2,"score":65},"type":"Mobile","number":"9036919593","providerName":"SPRINT SPECTRUM L.P."},{"meta":{"sources":[],"firstSeen":20210423,"lastSeen":20210423,"count":1,"score":72},"type":"Mobile","number":"9034616674","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20210423,"lastSeen":20210423,"count":67,"score":100},"type":"Mobile","number":"9034616673","providerName":"METRO PCS INC"}],"email":[{"meta":{"sources":[],"firstSeen":20131002,"lastSeen":20200318,"count":3},"data":"GRIGGS.THELMA@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20091129,"lastSeen":20210317,"count":2},"data":"THELMA.GRIGGS@ATT.NET"},{"meta":{"sources":[],"firstSeen":20050518,"lastSeen":20050518,"count":1},"data":"THELMA.GRIGGS@CNH.COM"},{"meta":{"sources":[],"firstSeen":20131111,"lastSeen":20131111,"count":1},"data":"THELMAG2261@CS.COM"}],"type":"A","ssn":{"linkedPid":[],"meta":{"sources":[],"count":110},"data":"XXXXXXXXX"},"dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":63},"date":{"data":"XX/XX/XXXX","sortable":0},"age":"49"},"address":{"meta":{"sources":[],"count":116},"city":"GREENVILLE","state":"TX","zip":"75401","complete":"3207 CADDO ST"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":0,"lastSeen":0,"count":117},"first":"THELMA","last":"GRIGGS","pid":"281475208099894"}},{"phone":[{"meta":{"sources":[],"firstSeen":20110701,"lastSeen":20110701,"count":66,"score":60},"type":"Residential","number":"9034501164","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20130925,"lastSeen":20130925,"count":3,"score":95},"type":"Mobile","number":"9032682747","providerName":"SPRINT SPECTRUM L.P."},{"meta":{"sources":[],"firstSeen":20131220,"lastSeen":20131220,"count":3,"score":100},"type":"Residential","number":"9034552109","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20141229,"lastSeen":20141229,"count":2,"score":85},"type":"Mobile","number":"9034502362","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20150112,"lastSeen":20150112,"count":2,"score":85},"type":"Mobile","number":"9034502462","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20150929,"lastSeen":20150929,"count":1,"score":85},"type":"Mobile","number":"9034502929","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20160529,"lastSeen":20160529,"count":2,"score":85},"type":"Residential","number":"9032132469","providerName":"BANDWIDTH.COM - TX"},{"meta":{"sources":[],"firstSeen":20200823,"lastSeen":20200823,"count":2,"score":85},"type":"Mobile","number":"9034613916","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20210502,"lastSeen":20210502,"count":2,"score":85},"type":"Residential","number":"9033957094","providerName":"ONVOY LLC - TX"}],"email":[{"meta":{"sources":[],"firstSeen":20050102,"lastSeen":20050102,"count":1},"data":"GAYLATINOJOHNNY@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20130925,"lastSeen":20210502,"count":2},"data":"JOHNNYREDFAIRY@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20120212,"lastSeen":20180703,"count":1},"data":"JOHNNYREDFAIRY@YAHOO.COM"}],"type":"A","ssn":{"linkedPid":[],"meta":{"sources":[],"count":66},"data":"XXXXXXXXX"},"dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":17},"date":{"data":"XX/XX/XXXX","sortable":0},"age":"47"},"address":{"meta":{"sources":[],"count":32},"city":"GREENVILLE","state":"TX","zip":"75401","complete":"1600 JOE RAMSEY BLVD N APT 117"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":0,"lastSeen":0,"count":107},"first":"JOHNNY","last":"ALANIZ","pid":"562950190324001"}},{"phone":[{"meta":{"sources":[],"firstSeen":20131027,"lastSeen":20131027,"count":2,"score":85},"type":"Mobile","number":"2144138141","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20170210,"lastSeen":20170210,"count":3,"score":200},"type":"Residential","number":"9036234113","providerName":"FRONITER COMM OF TX"},{"meta":{"sources":[],"firstSeen":20190427,"lastSeen":20190427,"count":81,"score":100},"type":"Residential","number":"9034558869","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20200806,"lastSeen":20200806,"count":3,"score":100},"type":"Mobile","number":"2145866522","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20210227,"lastSeen":20210227,"count":2,"score":85},"type":"Mobile","number":"2142596454","providerName":"METRO PCS INC"}],"email":[{"meta":{"sources":[],"firstSeen":20151218,"lastSeen":20210227,"count":2},"data":"MOB.ENT903@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20130327,"lastSeen":20150113,"count":3},"data":"RANDYANDERSON904@GMAIL.COM"}],"type":"R","dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":31},"date":{"data":"XX/XX/XXXX","sortable":0},"age":"39"},"address":{"meta":{"sources":[],"count":106},"city":"GREENVILLE","state":"TX","zip":"75401","complete":"2016 JONES ST"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":20010901,"lastSeen":20201112,"count":106},"first":"RANDY","last":"ANDERSON","pid":"562950190643461"}},{"phone":[{"meta":{"sources":[],"firstSeen":20160104,"lastSeen":20160104,"count":1,"score":0},"type":"Residential","number":"9034559862","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20160405,"lastSeen":20160405,"count":70,"score":100},"type":"Residential","number":"9034546826","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20210610,"lastSeen":20210610,"count":8,"score":100},"type":"Mobile","number":"9032686458","providerName":"SPRINT SPECTRUM L.P."}],"email":[{"meta":{"sources":[],"firstSeen":20091028,"lastSeen":20100823,"count":1},"data":"DELCE2@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20111119,"lastSeen":20210610,"count":3},"data":"RADHA.DRIVER@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20080330,"lastSeen":20160104,"count":1},"data":"RADHAD@LIVE.COM"},{"meta":{"sources":[],"firstSeen":20131226,"lastSeen":20131226,"count":1},"data":"RADHADRIVER1@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20100131,"lastSeen":20131130,"count":1},"data":"RADHADRIVER@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20090911,"lastSeen":20090911,"count":1},"data":"RAPIVEIC@LEO.TAMU-COMMERCE.EDU"},{"meta":{"sources":[],"firstSeen":20090911,"lastSeen":20090911,"count":1},"data":"RCD0007@UNT.EDU"},{"meta":{"sources":[],"firstSeen":20080311,"lastSeen":20210210,"count":2},"data":"RDRIVER@LEO.TAMU-COMMERCE.EDU"}],"type":"R","dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":60},"date":{"data":"XX/XX/XXXX","sortable":0},"age":"38"},"address":{"meta":{"sources":[],"count":16},"city":"PLANO","state":"TX","zip":"75023","complete":"1108 VILLA DOWNS DR"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":20050810,"lastSeen":20091231,"count":106},"first":"RADHA","last":"DRIVER","pid":"562950195053124"}},{"phone":[{"meta":{"sources":[],"firstSeen":20140704,"lastSeen":20140704,"count":2,"score":85},"type":"Mobile","number":"2155006589","providerName":"OMNIPOINT COMM ENTP"},{"meta":{"sources":[],"firstSeen":20170128,"lastSeen":20170128,"count":3,"score":100},"type":"Mobile","number":"4322107385","providerName":"VERIZON WIRELESS-TX"},{"meta":{"sources":[],"firstSeen":20170128,"lastSeen":20170128,"count":3,"score":100},"type":"Mobile","number":"4322305771","providerName":"NEW CINGULAR WRLS IL"},{"meta":{"sources":[],"firstSeen":20170128,"lastSeen":20170128,"count":3,"score":100},"type":"Mobile","number":"4324886746","providerName":"VERIZON WIRELESS-TX"},{"meta":{"sources":[],"firstSeen":20170219,"lastSeen":20170219,"count":3,"score":100},"type":"Mobile","number":"4322693840","providerName":"VERIZON WIRELESS-TX"},{"meta":{"sources":[],"firstSeen":20170322,"lastSeen":20170322,"count":2,"score":85},"type":"Mobile","number":"4322312609","providerName":"VERIZON WIRELESS-TX"},{"meta":{"sources":[],"firstSeen":20170520,"lastSeen":20170520,"count":2,"score":85},"type":"Mobile","number":"4322312906","providerName":"VERIZON WIRELESS-TX"},{"meta":{"sources":[],"firstSeen":20170914,"lastSeen":20170914,"count":2,"score":85},"type":"Mobile","number":"4322320049","providerName":"NEW CINGULAR WRLS IL"},{"meta":{"sources":[],"firstSeen":20171228,"lastSeen":20171228,"count":2,"score":85},"type":"Mobile","number":"4322574226","providerName":"VERIZON WIRELESS-TX"},{"meta":{"sources":[],"firstSeen":20180330,"lastSeen":20180330,"count":2,"score":85},"type":"Mobile","number":"4323816698","providerName":"NEW CINGULAR WRLS IL"},{"meta":{"sources":[],"firstSeen":20180907,"lastSeen":20180907,"count":2,"score":85},"type":"Mobile","number":"4323816694","providerName":"NEW CINGULAR WRLS IL"},{"meta":{"sources":[],"firstSeen":20190507,"lastSeen":20190507,"count":2,"score":85},"type":"Mobile","number":"4322274049","providerName":"VERIZON WIRELESS-TX"},{"meta":{"sources":[],"firstSeen":20191209,"lastSeen":20191209,"count":2,"score":85},"type":"Mobile","number":"9035138463","providerName":"VERIZON WIRELESS-TX"},{"meta":{"sources":[],"firstSeen":20200128,"lastSeen":20200128,"count":2,"score":85},"type":"Mobile","number":"8702140368","providerName":"VERIZON WIRELESS-AR"},{"meta":{"sources":[],"firstSeen":20200809,"lastSeen":20200809,"count":2,"score":85},"type":"Mobile","number":"2703485317","providerName":"VERIZON WIRELESS-KY"},{"meta":{"sources":[],"firstSeen":20201015,"lastSeen":20201015,"count":2,"score":85},"type":"Mobile","number":"2703485325","providerName":"VERIZON WIRELESS-KY"},{"meta":{"sources":[],"firstSeen":20201219,"lastSeen":20201219,"count":2,"score":85},"type":"Mobile","number":"8702148597","providerName":"VERIZON WIRELESS-AR"},{"meta":{"sources":[],"firstSeen":20210202,"lastSeen":20210202,"count":2,"score":85},"type":"Mobile","number":"8702141440","providerName":"VERIZON WIRELESS-AR"},{"meta":{"sources":[],"firstSeen":20210205,"lastSeen":20210205,"count":2,"score":85},"type":"Mobile","number":"8702141448","providerName":"VERIZON WIRELESS-AR"},{"meta":{"sources":[],"firstSeen":20210522,"lastSeen":20210522,"count":2,"score":85},"type":"Mobile","number":"8702136367","providerName":"NEW CINGULAR WRLS IL"}],"email":[{"meta":{"sources":[],"firstSeen":20201202,"lastSeen":20210205,"count":1},"data":"HARRISJENNIFFER53@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20160119,"lastSeen":20160119,"count":1},"data":"JENNIFFERMORA4@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20190702,"lastSeen":20201219,"count":1},"data":"JENNIFFER_HARRIS85@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20140813,"lastSeen":20140813,"count":1},"data":"JENNIFFER_MOR4@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20150308,"lastSeen":20190507,"count":3},"data":"JENNIFFER_MORA4@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20140704,"lastSeen":20140704,"count":1},"data":"JENNIGEE1985@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20210510,"lastSeen":20210522,"count":1},"data":"JHARRIS201585@GMAIL.COM"}],"type":"A","dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":35},"date":{"data":"XX/XX/XXXX","sortable":0},"age":"35"},"address":{"meta":{"sources":[],"count":6},"city":"MOUNTAIN VIEW","state":"AR","zip":"72560","complete":"908 CLARENCE ST APT B"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":20170523,"lastSeen":20180731,"count":72},"first":"JENNIFFER","last":"HARRIS","pid":"844425169866709"}},{"phone":[{"meta":{"sources":[],"firstSeen":20121103,"lastSeen":20121103,"count":3,"score":95},"type":"Mobile","number":"9034502321","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20140411,"lastSeen":20140411,"count":1,"score":85},"type":"Mobile","number":"9034868589","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20161206,"lastSeen":20161206,"count":4,"score":100},"type":"Mobile","number":"2148159777","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20210106,"lastSeen":20210106,"count":5,"score":100},"type":"Mobile","number":"9034585094","providerName":"METRO PCS INC"}],"email":[{"meta":{"sources":[],"firstSeen":20140314,"lastSeen":20200510,"count":2},"data":"ANDREAGRIGGS1@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20120808,"lastSeen":20150214,"count":3},"data":"GRIGGSANDREA14@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20180104,"lastSeen":20180719,"count":1},"data":"GRIGGSANDREA@YAHOO.COM"}],"type":"A","dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":16},"date":{"data":"XX/XX/XXXX","sortable":0},"age":"26"},"address":{"meta":{"sources":[],"count":23},"city":"GREENVILLE","state":"TX","zip":"75402","complete":"2509 RIDGECREST RD"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":20141216,"lastSeen":20201112,"count":29},"first":"ANDREA","last":"GRIGGS","pid":"3940649927511257"}},{"phone":[{"meta":{"sources":[],"firstSeen":20090530,"lastSeen":20090530,"count":3,"score":100},"type":"Residential","number":"2143758598","providerName":"SOUTHWESTERN BELL"},{"meta":{"sources":[],"firstSeen":20150222,"lastSeen":20150222,"count":2,"score":100},"type":"Mobile","number":"4693590805","providerName":"METRO PCS INC"},{"meta":{"sources":[],"firstSeen":20160430,"lastSeen":20160430,"count":3,"score":100},"type":"Residential","number":"9722524524","providerName":"FRONTIER COMM OF TX"},{"meta":{"sources":[],"firstSeen":20210223,"lastSeen":20210223,"count":2,"score":85},"type":"Mobile","number":"2146361209","providerName":"SPRINT SPECTRUM L.P."}],"email":[{"meta":{"sources":[],"firstSeen":20200914,"lastSeen":20210223,"count":1},"data":"BLACK1982DP@GMAIL.COM"}],"type":"R","dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":8},"age":"38"},"address":{"meta":{"sources":[],"count":15},"city":"IRVING","state":"TX","zip":"75038","complete":"4237 CLUB HOUSE PL APT 3182"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":0,"lastSeen":0,"count":18},"first":"DQUAN","last":"PALMER","pid":"3940649940175957"}},{"phone":[{"meta":{"sources":[],"firstSeen":20170124,"lastSeen":20170124,"count":1,"score":85},"type":"Mobile","number":"9034222646","providerName":"T-MOBILE USA INC."},{"meta":{"sources":[],"firstSeen":20191215,"lastSeen":20191215,"count":2,"score":85},"type":"Residential","number":"3072758910","providerName":"ONVOY LLC - WY"},{"meta":{"sources":[],"firstSeen":20210226,"lastSeen":20210226,"count":3,"score":100},"type":"Mobile","number":"9035132227","providerName":"VERIZON WIRELESS-TX"}],"email":[{"meta":{"sources":[],"firstSeen":20201209,"lastSeen":20210226,"count":1},"data":"HANNKAY665@GMAIL.COM"},{"meta":{"sources":[],"firstSeen":20160118,"lastSeen":20160118,"count":1},"data":"ST.JEANKADESHA2001@YAHOO.COM"},{"meta":{"sources":[],"firstSeen":20161123,"lastSeen":20201116,"count":2},"data":"STJEANKADESHA2001@GMAIL.COM"}],"type":"A","dob":{"meta":{"sources":[],"dSources":[],"mSources":[],"ySources":[],"count":11},"date":{"data":"XX/XX/XXXX","sortable":0},"age":"19"},"address":{"meta":{"sources":[],"count":15},"city":"GREENVILLE","state":"TX","zip":"75401","complete":"4801 PICKETT ST"},"name":{"pidlist":[],"meta":{"sources":[],"firstSeen":20190905,"lastSeen":20210529,"count":10},"first":"KADESHA","last":"SAINTJEAN","pid":"63613344765724911"}}],"professional":[],"sameSsn":[],"correlations":[],"pid":"562950190640177","matchScore":0,"sortScore":{"name":70,"complete":0,"zip":0,"city":0,"county":0,"state":0,"ssn":0,"phone":0,"quality":53,"date":0,"completeMail":0,"zipMail":0,"cityMail":0,"countyMail":0,"stateMail":0},"isDead":false}],"fields":["name","address","phone","dob","isDead","relationshipDetail","property"],"includeWeaklyMatched":[],"id":"190eedf4-5552-481a-9e63-ca219cd49b75","query":{"pidlist":[],"naicsCodes":[],"epoch":[],"addresses":[],"firstName":"Nathan","lastName":"Anderson","address":"2020 Jones Street,","nicknamesearch":"true"},"user":{"username":"api-client@blufetch","glba":"nonreg","dppa":"none","companyName":"BLUFETCH TECHNOLOGY LLC"},"idiCOREVersion":"121.0.0"} 
return result
steps.
nodejs_11
auth
to use OAuth tokens and API keys in code via theauths object
code
Write any Node.jscodeand use anynpm package. You can alsoexport datafor use in later steps via return or this.key = 'value', pass input data to your code viaparams, and maintain state across executions with$checkpoint.
async (event, steps) => {
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
}
444
const _ = require("underscore");
const axios = require("axios");
var array = steps.PerformSearch.data.result; //change this after testing

var array2 = [];
var array3 = [];



if(array[0].address){
  let fieldaddressYesorNo = "Address (Y/N/U)";
  let addressYesorNo = "y";
  array2.push({"name": fieldaddressYesorNo, "value": addressYesorNo})
  var addressArray = array[0].address;

  addressArray.forEach(
  function (item, index) 
    {

    let x = (index +1);

    if (addressArray[index].city){
      let fieldCity  = "Address" + " " + x + " " + "City";
      let city = addressArray[index].city;
      array2.push({"name": fieldCity, "value": city});
      }

    if (addressArray[index].county){
      let fieldCounty  = "Address" + " " + x + " " + "County";
      let county = addressArray[index].county;
      array2.push({"name": fieldCounty, "value": county});
      }

    if (addressArray[index].complete){
      let fieldStreet = "Address" + " " + x + " " + "Street Address";
      let street = addressArray[index].complete;
      array2.push({"name": fieldStreet, "value": street}); 
      }
    
    if (addressArray[index].highFrequency){
      let fieldHighFrequency = "Address" + " " + x + " " + "High Frequency";
      let highFrequency = addressArray[index].highFrequency;
      array2.push({"name": fieldHighFrequency, "value": highFrequency});
    }

    if (addressArray[index].dateRange) {
      let fieldDateRange = "Address" + " " + x + " " + "Date Range";
      let dateRange = addressArray[index].dateRange;
      array2.push({"name": fieldDateRange, "value": dateRange});
    }

    if(addressArray[index].isCass){
      let fieldisCass = "Address" + " " + x + " " + "is Cass";
      let isCass = addressArray[index].isCass;
      array2.push({"name": fieldisCass, "value": isCass});
    }

    if(addressArray[index].ownership){
      let fieldownership = "Address" + " " + x + " " + "ownership";
      let ownership = addressArray[index].ownership;
      array2.push({"name": fieldownership, "value": ownership});
    }
    
    if(addressArray[index].rank){
      let fieldrank = "Address" + " " + x + " " + "rank";
      let rank = addressArray[index].rank;
      array2.push({"name": fieldrank, "value": rank});
    }

    if(addressArray[index].state){
      let fieldstate = "Address" + " " + x + " " + "state";
      let state = addressArray[index].state;
      array2.push({"name": fieldstate, "value": state});
    }

    if(addressArray[index].zip){
      let fieldzip = "Address" + " " + x + " " + "Zipcode";
      let zip = addressArray[index].zip;
      array2.push({"name": fieldzip, "value": zip});
    }
   
    if(addressArray[index].meta.firstSeen){
      let fieldaddressfirstSeen = "Address" + " " + x + " " + "First Seen";
      let addressfirstSeen = addressArray[index].meta.firstSeen;
      array2.push({"name": fieldaddressfirstSeen, "value": addressfirstSeen});
    }

    if(addressArray[index].meta.lastSeen){
      let fieldaddresslastSeen = "Address" + " " + x + " " + "Last Seen";
      let addresslastSeen = addressArray[index].meta.lastSeen;
      array2.push({"name": fieldaddresslastSeen, "value": addresslastSeen});
    }
  }
)
}
else{
let fieldaddressYesorNo = "Address (Y/N/U)";
let addressYesorNo = "n";
array2.push({"name": fieldaddressYesorNo, "value": addressYesorNo})
}

if (array[0].phone){

let fieldPhoneYesorNo  = "PH:" + " " + "Phone(Y/N/U)";
let phoneYesorNo = "y";
array2.push({"name": fieldPhoneYesorNo, "value": phoneYesorNo});

var phoneArray = array[0].phone;
phoneArray.forEach(
function (item, index){

  let x = (index +1);

  if (phoneArray[index].number){
    let fieldNumber  = "PH:" + " " + "Phone" + "" + x;
    let number = phoneArray[index].number;
    array2.push({"name": fieldNumber, "value": number});
  }
  
  if (phoneArray[index].type){
    let fieldType  = "PH:" + " " + "Phone" + "" + x + "" + "Type";
    let type = phoneArray[index].type;
    array2.push({"name": fieldType, "value": type});
  }
  
  if (phoneArray[index].meta.firstSeen){
    let fieldFirstSeen  = "PH:" + " " + "Phone" + "" + x + "" + "First Seen";
    let firstSeen = phoneArray[index].meta.firstSeen;
    array2.push({"name": fieldFirstSeen, "value": firstSeen});
  }

  if (phoneArray[index].meta.lastSeen){
    let fieldFirstSeen  = "PH:" + " " + "Phone" + "" + x + "" + "Last Seen";
    let lastSeen = phoneArray[index].meta.lastSeen;
    array2.push({"name": fieldFirstSeen, "value": lastSeen});
  }

  if (phoneArray[index].fake){
    let fieldFake  = "PH:" + " " + "Phone" + "" + x + "" + "Fake";
    let phoneFake = phoneArray[index].fake;
    array2.push({"name": fieldFake, "value": phoneFake});
  }}
)

}

else{
  let fieldPhoneYesorNo  = "PH:" + " " + "Phone(Y/N/U)";
  let phoneYesorNo = "n";
  array2.push({"name": fieldPhoneYesorNo, "value": phoneYesorNo})
}

if (array[0].email){

 let fieldEmailYesorNo  = "EM:" + " " + "Email(Y/N/U)";
 let emailYesorNo = "y";
 array2.push({"name": fieldEmailYesorNo, "value": emailYesorNo});
 var emailArray = array[0].email; 
 emailArray.forEach(
 function (item, index) 
 {
  let x = (index +1);
  if (emailArray[index].data){
    let fieldEmail  = "EM:" + " " + "Email" + "" + x;
    let email = emailArray[index].email;
    array2.push({"name": fieldEmail, "value": email});
     
    if (emailArray[index].meta.firstSeen){
    let fieldEmailFirstSeen  = "EM:" + " " + "Email" + "" + x + "" + "First Seen";
    let emailFirstSeen = emailArray[index].meta.firstSeen;
    array2.push({"name": fieldEmailFirstSeen, "value": emailFirstSeen});
    }
    if (emailArray[index].meta.lastSeen){
      let fieldEmailLastSeen  = "EM:" + " " + "Email" + "" + x + "" + "Last Seen";
      let emailLastSeen = addressArray[index].meta.lastSeen;
      array2.push({"name": fieldEmailLastSeen, "value": emailLastSeen});
    }
  }
 }
)
}

else{
  let fieldEmailYesorNo  = "EM:" + " " + "Email(Y/N/U)";
  let emailYesorNo = "n";
  array2.push({"name": fieldEmailYesorNo, "value": emailYesorNo})
  }
  
if(array[0].relationshipDetail){
  let fieldrelationshipDetailHit = "REL: Hit(Y/N/U)";
  let relationshipDetailHit = "y";
  array2.push({"name": fieldrelationshipDetailHit, "value": relationshipDetailHit})
  var relationshipdetailArray = array[0].relationshipDetail;
  relationshipdetailArray.forEach(
  function (item, index) 
  {
    
    let email = []
    let phone = []
    let x = (index +1);
    if (relationshipdetailArray[index].name){
     
     var firstName = (relationshipdetailArray[index].name.first) ? relationshipdetailArray[index].name.first:"unknown"
      var lastName = (relationshipdetailArray[index].name.last) ? relationshipdetailArray[index].name.last:"unknown";
      var middleName = (relationshipdetailArray[index].name.middle) ? relationshipdetailArray[index].name.middle:"unknown";
      var age = (relationshipdetailArray[index].dob.age) ? relationshipdetailArray[index].dob.age:"unknown";
       var relation_type = (relationshipdetailArray[index].type) ? relationshipdetailArray[index].type:"unknown";
       var relAddressArray = relationshipdetailArray[index].address;

      var address = (relAddressArray.complete) ? relAddressArray.complete:"unknown";
      var city = (relAddressArray.city) ? relAddressArray.city:"unknown";
      var zip = (relAddressArray.zip) ? relAddressArray.zip:"unknown";
      var state = (relAddressArray.state) ? relAddressArray.state:"unknown";
      var suffix = (relAddressArray.suffix) ? relAddressArray.suffix:"unknown";
     

    if (relationshipdetailArray[index].phone){
      var relPhoneArray = relationshipdetailArray[index].phone;
      relPhoneArray.forEach(
        function (item, index){
          let a = (index+1);
          if (relPhoneArray[index].number){
            let fieldrelPhoneNumber = " Phone " + a;
            let relPhoneNumber = relPhoneArray[index].number;
            phone.push({"name": fieldrelPhoneNumber, "value": relPhoneNumber});
          }
        
        }
      )
    }

  if (relationshipdetailArray[index].email){
      var relEmailArray = relationshipdetailArray[index].email;
      relEmailArray.forEach(
        function (item, index){
          let b = (index+1);
          if (relEmailArray[index].email){
            
              let fieldrelEmail = "Email "+ b;
              let relEmail = relEmailArray[index].data;
            email.push({"name": fieldrelEmail, "value": relEmail});
            
          }
        
        }
      )
    }
  
  array3.push({"relation_type":relation_type, "firstName":firstName, "lastName":lastName, "middleName":middleName, "phone":phone, "email":email, "age":age, "address":address, "city":city, "state":state, "zip":zip, "suffix":suffix})
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  }
  }



   
  
)
}
else
{
  let fieldrelationshipDetailHit = "REL: Hit(Y/N/U)";
  let relationshipDetailHit = "n";
array2.push({"name": fieldrelationshipDetailHit, "value": relationshipDetailHit});
}























if (array[0].property){
  var propertyArray = array[0].property;
          array2.push({"name": "PROP: Property (Y/N/U)", "value": "Y"});
propertyArray.forEach(
  function (_item, index) 
  {

    let x = (index +1);

              if (propertyArray[index].owner){
                var ownerArray = array[0].property[index].owner;
                ownerArray.forEach(
                  function (_item, index){
                    let y = (index+1);
                    if (propertyArray[index].owner.people){
                      var ownerpeopleArray = array[0].property[index].people;
                      ownerpeopleArray.forEach(
                        function (_item, index){
                          let z = (index+1);
                          if (ownerpeopleArray[index].name.first){
                            let fieldpropertyOwnerPeopleNameFirst = "PROP " + x + " :" + "Owner " + y + "Person " + z + "First Name";
                            let propertyOwnerPeopleNameFirst = ownerpeopleArray[index].name.first;
                            array2.push({"name": fieldpropertyOwnerPeopleNameFirst, "value": propertyOwnerPeopleNameFirst});
                          }
                           if (ownerpeopleArray[index].name.last){
                            let fieldpropertyOwnerPeopleNameLast = "PROP " + x + " :" + "Owner " + y + "Person " + z + "Last Name";
                            let propertyOwnerPeopleNameLast = ownerpeopleArray[index].name.first;
                            array2.push({"name": fieldpropertyOwnerPeopleNameLast, "value": propertyOwnerPeopleNameLast});
                          }
                          if (ownerpeopleArray[index].name.middle){
                            let fieldpropertyOwnerPeopleNameMiddle = "PROP " + x + " :" + "Owner " + y + "Person " + z + "Middle Name";
                            let propertyOwnerPeopleNameMiddle = ownerpeopleArray[index].name.middle;
                            array2.push({"name": fieldpropertyOwnerPeopleNameMiddle, "value": propertyOwnerPeopleNameMiddle});
                          }
                        }
                        )
                     }
                  }
                  )
              }

    if (propertyArray[index].address){
          
            


        if (propertyArray[index].address.data){
          let fieldpropertyFullAddress = "PROP " + x + " :" +  "Full Address"
                let propertyFullAddress = propertyArray[index].address.data;
        array2.push({"name": fieldpropertyFullAddress, "value": propertyFullAddress});
        }

        if (propertyArray[index].address.city){
          let fieldpropertyCity = "PROP " + x + " :" +  "City"
                let propertyCity = propertyArray[index].address.city;
        array2.push({"name": fieldpropertyCity, "value": propertyCity});
        }
      
    	  if (propertyArray[index].address.complete){
        let fieldpropertyStreetAddress = "PROP " + x + " :" +  "Street Address"
        let propertyStreetAddress = propertyArray[index].address.complete;
        array2.push({"name": fieldpropertyStreetAddress, "value": propertyStreetAddress});
        }

        if (propertyArray[index].address.county){
        let fieldpropertyCounty = "PROP " + x + " :" +  "County"
        let propertyCounty = propertyArray[index].address.city;
        array2.push({"name": fieldpropertyCounty, "value": propertyCounty});
        }

        if (propertyArray[index].address.zip){
        let fieldpropertyZip = "PROP " + x + " :" +  "Zip"
        let propertyZip = propertyArray[index].address.zip;
        array2.push({"name": fieldpropertyZip, "value": propertyZip});
        }

        

        if (propertyArray[index].address.streetSuffix){
        let fieldpropertystreetSuffix = "PROP " + x + " :" +  "Street Suffix"
        let propertystreetSuffix = propertyArray[index].address.streetSuffix;
        array2.push({"name": fieldpropertystreetSuffix, "value": propertystreetSuffix});
        }

         if (propertyArray[index].address.streetNumber){
        let fieldpropertystreetNumber = "PROP " + x + " :" +  "Street Number"
        let propertystreetNumber = propertyArray[index].address.streetNumber;
        array2.push({"name": fieldpropertystreetNumber, "value": propertystreetNumber});
        }

        if (propertyArray[index].address.street){
        let fieldpropertystreet = "PROP " + x + " :" +  "Street"
        let propertystreet = propertyArray[index].address.street;
        array2.push({"name": fieldpropertystreet, "value": propertystreet});
        }

        if (propertyArray[index].address.state){
        let fieldpropertyState = "PROP " + x + " :" +  "State"
        let propertyState = propertyArray[index].address.state;
        array2.push({"name": fieldpropertyState, "value": propertyState});
        }

        if (propertyArray[index].mailingAddress){

          if (propertyArray[index].mailingAddress.state){
          let fieldpropertyMailState = "PROP " + x + " :" +  "Mail State"
          let propertyMailState = propertyArray[index].mailingAddress.state;
          array2.push({"name": fieldpropertyMailState, "value": propertyMailState});
          }

          if (propertyArray[index].mailingAddress.street){
          let fieldpropertyMailStreet = "PROP " + x + " :" +  "Mail Street"
          let propertyMailStreet = propertyArray[index].mailingAddress.street;
          array2.push({"name": fieldpropertyMailStreet, "value": propertyMailStreet});
          }

          if (propertyArray[index].mailingAddress.streetNumber){
          let fieldpropertyMailstreetNumber = "PROP " + x + " :" +  "Mail Street Number"
          let propertyMailstreetNumber = propertyArray[index].mailingAddress.streetNumber;
          array2.push({"name": fieldpropertyMailstreetNumber, "value": propertyMailstreetNumber});
          }
        }
  
    }
   else

array2.push({"name": "PROP: Property (Y/N/U)", "value": "U"});


   
  }
)

}






return {array2:array2, array3:array3}
steps.
send_http_request
Make an HTTP or webhook request and return the response as a step export.
params
URL
 
string ·params.url
Optional
code
async params => {
1
2
3
4
5
6
7
8
9
10
11
}
12
const config = {
  method: params.method,
  url: params.url,
  params: params.query,
  headers: params.headers,
  responseType: params.responseType,
  data: params.data,
}
if (params.auth) config.auth = params.auth
return await require("@pipedreamhq/platform").axios(this, config)
steps.
send_create_fields
auth
to use OAuth tokens and API keys in code via theauths object
code
Write any Node.jscodeand use anynpm package. You can alsoexport datafor use in later steps via return or this.key = 'value', pass input data to your code viaparams, and maintain state across executions with$checkpoint.
async (event, steps) => {
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
}
93
const axios = require("axios")
const _ = require("underscore")

var array1 = steps.nodejs_11.$return_value.array2;
var array2 = steps.send_http_request.$return_value.customFields;
var array3 = []
var array4 = []
var array5 = steps.nodejs_11.$return_value.array3;
var contactid = steps.trigger.event.body.contact_id
var email = steps.trigger.event.body.email
var apikey = steps.send_http_request_1.$return_value.apiKey

async function pushData (body, url){
  var res = await axios.post(url, body)
  console.log("Webhook Hit")
}

async function sortExistingFields (array3, array4, email, contactid, apikey){
  if (array3.length)
  {
    var data = array3  // convert array to string
    result = Object.assign(...data.map(a => ({ [a.id]: a.value })));
      var url = "https://enehyiho9dy16fw.m.pipedream.net";
      var customField = result;
       var body = {contactid:contactid, apikey:apikey, email:email, customField: customField};
    console.log("Sending Values to Webhook")
    const res3 = await pushData(body, url)
    
  }
    else {console.log("array empty, no fields to fill")}
  }


async function sortData ()
{
  for (let i = 0; i < array1.length; i++)
{
    var id = _.findWhere(array2, {name: array1[i].name})
   
   if (typeof id != "undefined")
    {
      console.log("field found for: " + array1[i].name + " , adding to array")
      var value = array1[i].value
      id = id.id
      array3.push({"id": id, "value": value})
    }
    else if (typeof id === "undefined")
    { 
      console.log ("Field Not Found")
      var name = array1[i].name;
      var value = array1[i].value;
      var customField = {"name": name, "value": value}
      var url = "https://enokb58vi03b8nl.m.pipedream.net";
      console.log ("Sending new field to Webhook")
      var body = {contactid:contactid, apikey:apikey, email:email, customField: customField};
      const send = await pushData(body, url)
      
      
     }
  }
  
}




async function subContact ()
{
  for (let i = 0; i < array5.length; i++)
{
        
      console.log ("sending data")
      var contactField =  array5[i]
      var url = "https://enexw5wdigvxm66.m.pipedream.net";
      console.log ("Sending new field to Webhook")
      
      var body = {contactID:steps.trigger.event.body.contact_id,mainContactID:contactid,locationID:steps.trigger.event.body.location.id, apikey:apikey, mainEmail:email, contactField: contactField, mainContactName:steps.trigger.event.body.full_name };
      const send = await pushData(body, url)
          
     
  
}
}


const res = await sortData ()
const res2 = await sortExistingFields(array3, array4, email, contactid, apikey)
const res3 = await subContact();


return {array3:array3, array4:array4}